2014-01-05 22:58:00 +00:00
|
|
|
#ifndef CLIEVER_CONFIG
|
|
|
|
#define CLIEVER_CONFIG
|
|
|
|
|
|
|
|
using namespace boost::gregorian;
|
|
|
|
using namespace boost::posix_time;
|
|
|
|
|
|
|
|
class mdDataSource {
|
|
|
|
|
|
|
|
bool enabled;
|
|
|
|
std::string fullName;
|
|
|
|
int port;
|
|
|
|
int ip;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::map<std::string,mdDataSource*> localSourcesByClaimedName;
|
|
|
|
|
|
|
|
class clientDaemonConfig {
|
|
|
|
public:
|
|
|
|
|
|
|
|
bool runCommander;
|
|
|
|
bool terminateRequest;
|
|
|
|
char configPath[256],logPath[256],origCmd[32];
|
|
|
|
pid_t clipsProcess;
|
|
|
|
pid_t daemonProcess;
|
|
|
|
pid_t shellProcess;
|
|
|
|
std::string mdAddress;
|
|
|
|
std::string deviceName;
|
|
|
|
std::string telemetryPortStr;
|
|
|
|
int cluster,
|
|
|
|
debugThreshold,
|
2014-01-11 19:34:15 +00:00
|
|
|
eppServers[MAX_PEER];
|
2014-01-05 22:58:00 +00:00
|
|
|
int telemetryPort; // talks to central server with this
|
|
|
|
date epoch(CD_EPOCH);
|
|
|
|
localSourcesByClaimedName localDevices;
|
|
|
|
|
|
|
|
clientDaemonConfig() { terminateRequest = false;
|
|
|
|
mdAddress = std::string(MD_DEFAULT_IP);
|
|
|
|
strcpy(configPath,"./");
|
|
|
|
deviceName = std::string("TEST");
|
|
|
|
debugThreshold = MAX_DEBUG;
|
|
|
|
strcpy(logPath,"/tmp");
|
|
|
|
runCommander = true;
|
2014-01-11 19:34:15 +00:00
|
|
|
memset(eppServers,0,sizeof(eppServers));
|
2014-01-05 22:58:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int loadMachineConfiguration();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef
|
|
|
|
struct CD_GLOBAL {
|
|
|
|
char id[7];
|
|
|
|
pid_t daemon_pid;
|
|
|
|
bool cmdrShutdown;
|
|
|
|
bool graceful;
|
|
|
|
}
|
2014-01-11 02:22:40 +00:00
|
|
|
ac_cd_global;
|
2014-01-05 22:58:00 +00:00
|
|
|
|
|
|
|
#endif
|