[go: up one dir, main page]

Menu

[r881]: / codeblue2 / common / conf.h  Maximize  Restore  History

Download this file

120 lines (97 with data), 3.4 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*****************************************************************************
Copyright (c) 2001 - 2009, The Board of Trustees of the University of Illinois.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above
copyright notice, this list of conditions and the
following disclaimer.
* Redistributions in binary form must reproduce the
above copyright notice, this list of conditions
and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Illinois
nor the names of its contributors may be used to
endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/
/*****************************************************************************
written by
Yunhong Gu, last updated 02/09/2009
*****************************************************************************/
#ifndef __CONF_H__
#define __CONF_H__
#include <string>
#include <fstream>
#include <vector>
#include <sys/types.h>
#include <stdint.h>
struct Param
{
std::string m_strName;
std::vector<std::string> m_vstrValue;
};
class ConfParser
{
public:
int init(const std::string& path);
void close();
int getNextParam(Param& param);
private:
char* getToken(char* str, std::string& token);
private:
std::ifstream m_ConfFile;
std::vector<std::string> m_vstrLines;
std::vector<std::string>::iterator m_ptrLine;
int m_iLineCount;
};
class MasterConf
{
public:
int init(const std::string& path);
public:
int m_iServerPort; // server port
std::string m_strSecServIP; // security server IP
int m_iSecServPort; // security server port
int m_iMaxActiveUser; // maximum active user
std::string m_strHomeDir; // data directory
int m_iReplicaNum; // number of replicas of each file
};
class SlaveConf
{
public:
int init(const std::string& path);
public:
std::string m_strMasterHost;
int m_iMasterPort;
std::string m_strHomeDir;
int64_t m_llMaxDataSize;
int m_iMaxServiceNum;
std::string m_strLocalIP;
std::string m_strPublicIP;
int m_iClusterID;
};
class ClientConf
{
public:
int init(const std::string& path);
public:
std::string m_strUserName;
std::string m_strPassword;
std::string m_strMasterIP;
int m_iMasterPort;
std::string m_strCertificate;
};
#endif