]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/configuration/sgconfig/configproto.h
Область видимості outerSocket, outerAddr і outerAddrLen звужено до
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / configproto.h
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19  */
20
21  /*
22  $Revision: 1.14 $
23  $Date: 2010/10/04 20:24:14 $
24  $Author: faust $
25  */
26
27
28 #ifndef CONFIGPROTO_H
29 #define CONFIGPROTO_H
30
31 #include <expat.h>
32 #include <sys/types.h>
33 #include <sys/socket.h>
34
35 #include <string>
36
37 #include "parser.h"
38 #include "../../../users.h"
39 #include "../../../admins.h"
40 #include "../../../tariffs.h"
41 #include "stg_logger.h"
42
43 using namespace std;
44
45 #define  STG_HEADER     "SG04"
46 #define  OK_HEADER      "OKHD"
47 #define  ERR_HEADER     "ERHD"
48 #define  OK_LOGIN       "OKLG"
49 #define  ERR_LOGIN      "ERLG"
50 #define  OK_LOGINS      "OKLS"
51 #define  ERR_LOGINS     "ERLS"
52
53 //-----------------------------------------------------------------------------
54 class CONFIGPROTO
55 {
56 public:
57     CONFIGPROTO();
58     ~CONFIGPROTO();
59
60     void            SetPort(uint16_t port);
61     void            SetAdmins(ADMINS * a);
62     void            SetUsers(USERS * u);
63     void            SetTariffs(TARIFFS * t);
64     void            SetStore(BASE_STORE * s);
65     void            SetStgSettings(const SETTINGS * s);
66     uint32_t        GetAdminIP() const;
67     int             Prepare();
68     int             Stop();
69     const string &  GetStrError() const;
70     static void *   Run(void * a);
71
72 private:
73     int             RecvHdr(int sock);
74     int             RecvLogin(int sock);
75     int             SendLoginAnswer(int sock, int err);
76     int             SendHdrAnswer(int sock, int err);
77     int             RecvLoginS(int sock);
78     int             SendLoginSAnswer(int sock, int err);
79     int             RecvData(int sock);
80     int             SendDataAnswer(int sock);
81     void            SendError(const char * text);
82     void            WriteLogAccessFailed(uint32_t ip);
83
84     int             ParseCommand();
85
86     list<string>    answerList;
87     list<string>    requestList;
88     uint32_t        adminIP;
89     string          adminLogin;
90     uint16_t        port;
91     pthread_t       thrReciveSendConf;
92     bool            nonstop;
93     int             state;
94     ADMIN           currAdmin;
95     STG_LOGGER &    WriteServLog;
96
97     int                 listenSocket;
98
99     PARSER_GET_SERVER_INFO      parserGetServInfo;
100
101     PARSER_GET_USERS            parserGetUsers;
102     PARSER_GET_USER             parserGetUser;
103     PARSER_CHG_USER             parserChgUser;
104     PARSER_ADD_USER             parserAddUser;
105     PARSER_DEL_USER             parserDelUser;
106     PARSER_CHECK_USER           parserCheckUser;
107     PARSER_SEND_MESSAGE         parserSendMessage;
108
109     PARSER_GET_ADMINS           parserGetAdmins;
110     PARSER_ADD_ADMIN            parserAddAdmin;
111     PARSER_DEL_ADMIN            parserDelAdmin;
112     PARSER_CHG_ADMIN            parserChgAdmin;
113
114     PARSER_GET_TARIFFS          parserGetTariffs;
115     PARSER_ADD_TARIFF           parserAddTariff;
116     PARSER_DEL_TARIFF           parserDelTariff;
117     PARSER_CHG_TARIFF           parserChgTariff;
118
119     ADMINS *                    admins;
120
121     BASE_PARSER *               currParser;
122     vector<BASE_PARSER*>        dataParser;
123
124     XML_Parser                  xmlParser;
125
126     string                      errorStr;
127
128     friend void ParseXMLStart(void *data, const char *el, const char **attr);
129     friend void ParseXMLEnd(void *data, const char *el);
130 };
131 //-----------------------------------------------------------------------------
132 #endif //CONFIGPROTO_H
133