]> git.stg.codes - stg.git/blob - libs/srvconf/include/stg/servconf.h
Port to CMake, get rid of os_int.h.
[stg.git] / libs / srvconf / include / stg / servconf.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  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
20  */
21
22 #ifndef __STG_STGLIBS_SERVCONF_H__
23 #define __STG_STGLIBS_SERVCONF_H__
24
25 #include "stg/servconf_types.h"
26
27 #include "stg/admin_conf.h"
28
29 #include <string>
30 #include <cstdint>
31
32 struct USER_CONF_RES;
33 struct USER_STAT_RES;
34 struct TARIFF_DATA_RES;
35 struct SERVICE_CONF_RES;
36 struct CORP_CONF_RES;
37
38 namespace STG
39 {
40
41 class SERVCONF
42 {
43 public:
44     SERVCONF(const std::string & server, uint16_t port,
45              const std::string & login, const std::string & password);
46     SERVCONF(const std::string & server, uint16_t port,
47              const std::string & localAddress, uint16_t localPort,
48              const std::string & login, const std::string & password);
49     ~SERVCONF();
50
51     int ServerInfo(SERVER_INFO::CALLBACK f, void * data);
52
53     int RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data);
54
55     int GetAdmins(GET_CONTAINER::CALLBACK<GET_ADMIN::INFO>::TYPE f, void * data);
56     int GetAdmin(const std::string & login, GET_ADMIN::CALLBACK f, void * data);
57     int ChgAdmin(const ADMIN_CONF_RES & conf, SIMPLE::CALLBACK f, void * data);
58     int AddAdmin(const std::string & login,
59                  const ADMIN_CONF_RES & conf,
60                  SIMPLE::CALLBACK f, void * data);
61     int DelAdmin(const std::string & login, SIMPLE::CALLBACK f, void * data);
62
63     int GetTariffs(GET_CONTAINER::CALLBACK<GET_TARIFF::INFO>::TYPE f, void * data);
64     int GetTariff(const std::string & name, GET_TARIFF::CALLBACK f, void * data);
65     int ChgTariff(const TARIFF_DATA_RES & conf, SIMPLE::CALLBACK f, void * data);
66     int AddTariff(const std::string & name,
67                   const TARIFF_DATA_RES & conf,
68                   SIMPLE::CALLBACK f, void * data);
69     int DelTariff(const std::string & name, SIMPLE::CALLBACK f, void * data);
70
71     int GetUsers(GET_CONTAINER::CALLBACK<GET_USER::INFO>::TYPE f, void * data);
72     int GetUser(const std::string & login, GET_USER::CALLBACK f, void * data);
73     int ChgUser(const std::string & login,
74                 const USER_CONF_RES & conf,
75                 const USER_STAT_RES & stat,
76                 SIMPLE::CALLBACK f, void * data);
77     int DelUser(const std::string & login, SIMPLE::CALLBACK f, void * data);
78     int AddUser(const std::string & login,
79                 const USER_CONF_RES & conf,
80                 const USER_STAT_RES & stat,
81                 SIMPLE::CALLBACK f, void * data);
82     int AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data);
83     int SendMessage(const std::string & login, const std::string & text, SIMPLE::CALLBACK f, void * data);
84     int CheckUser(const std::string & login, const std::string & password, SIMPLE::CALLBACK f, void * data);
85
86     int GetServices(GET_CONTAINER::CALLBACK<GET_SERVICE::INFO>::TYPE f, void * data);
87     int GetService(const std::string & name, GET_SERVICE::CALLBACK f, void * data);
88     int ChgService(const SERVICE_CONF_RES & conf, SIMPLE::CALLBACK f, void * data);
89     int AddService(const std::string & name,
90                    const SERVICE_CONF_RES & conf,
91                    SIMPLE::CALLBACK f, void * data);
92     int DelService(const std::string & name, SIMPLE::CALLBACK f, void * data);
93
94     int GetCorporations(GET_CONTAINER::CALLBACK<GET_CORP::INFO>::TYPE f, void * data);
95     int GetCorp(const std::string & name, GET_CORP::CALLBACK f, void * data);
96     int ChgCorp(const CORP_CONF_RES & conf, SIMPLE::CALLBACK f, void * data);
97     int AddCorp(const std::string & name,
98                 const CORP_CONF_RES & conf,
99                 SIMPLE::CALLBACK f, void * data);
100     int DelCorp(const std::string & name, SIMPLE::CALLBACK f, void * data);
101
102     const std::string & GetStrError() const;
103
104 private:
105     class IMPL;
106     IMPL * pImpl;
107 };
108
109 } // namespace STG
110
111 #endif