X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/760c0ea6e896fd918bfd096a06e334e769041db2..6664a19ff9913571d49a9252e58fddaa9cda7f30:/projects/stargazer/plugins/configuration/sgconfig/configproto.h diff --git a/projects/stargazer/plugins/configuration/sgconfig/configproto.h b/projects/stargazer/plugins/configuration/sgconfig/configproto.h index 96e976c8..aac913f6 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/configproto.h +++ b/projects/stargazer/plugins/configuration/sgconfig/configproto.h @@ -33,14 +33,13 @@ #include #include +#include +#include "stg/users.h" +#include "stg/admins.h" +#include "stg/tariffs.h" +#include "stg/logger.h" #include "parser.h" -#include "../../../users.h" -#include "../../../admins.h" -#include "../../../tariffs.h" -#include "stg_logger.h" - -using namespace std; #define STG_HEADER "SG04" #define OK_HEADER "OKHD" @@ -51,8 +50,7 @@ using namespace std; #define ERR_LOGINS "ERLS" //----------------------------------------------------------------------------- -class CONFIGPROTO -{ +class CONFIGPROTO { public: CONFIGPROTO(); ~CONFIGPROTO(); @@ -61,18 +59,18 @@ public: void SetAdmins(ADMINS * a); void SetUsers(USERS * u); void SetTariffs(TARIFFS * t); - void SetStore(BASE_STORE * s); + void SetStore(STORE * s); void SetStgSettings(const SETTINGS * s); - uint32_t GetAdminIP() const; + uint32_t GetAdminIP() const { return adminIP; } int Prepare(); int Stop(); - const string & GetStrError() const; - static void * Run(void * a); + const std::string & GetStrError() const { return errorStr; } + void Run(); private: int RecvHdr(int sock); int RecvLogin(int sock); - int SendLoginAnswer(int sock, int err); + int SendLoginAnswer(int sock); int SendHdrAnswer(int sock, int err); int RecvLoginS(int sock); int SendLoginSAnswer(int sock, int err); @@ -83,18 +81,18 @@ private: int ParseCommand(); - list answerList; - list requestList; - uint32_t adminIP; - string adminLogin; - uint16_t port; - pthread_t thrReciveSendConf; - bool nonstop; - int state; - ADMIN currAdmin; - STG_LOGGER & WriteServLog; + std::list answerList; + std::list requestList; + uint32_t adminIP; + std::string adminLogin; + uint16_t port; + pthread_t thrReciveSendConf; + bool nonstop; + int state; + ADMIN * currAdmin; + STG_LOGGER & WriteServLog; - int listenSocket; + int listenSocket; PARSER_GET_SERVER_INFO parserGetServInfo; @@ -119,15 +117,14 @@ private: ADMINS * admins; BASE_PARSER * currParser; - vector dataParser; + vector dataParser; XML_Parser xmlParser; - string errorStr; + std::string errorStr; friend void ParseXMLStart(void *data, const char *el, const char **attr); friend void ParseXMLEnd(void *data, const char *el); }; //----------------------------------------------------------------------------- #endif //CONFIGPROTO_H -