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.
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.
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
18 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
22 #ifndef __STG_STGLIBS_SERVCONF_H__
23 #define __STG_STGLIBS_SERVCONF_H__
25 #include "stg/servconf_types.h"
27 #include "stg/admin_conf.h"
28 #include "stg/os_int.h"
34 struct TARIFF_DATA_RES;
35 struct SERVICE_CONF_RES;
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);
51 int ServerInfo(SERVER_INFO::CALLBACK f, void * data);
53 int RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data);
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);
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);
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);
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);
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);
102 const std::string & GetStrError() const;