X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/6c05b2e63b58b19df2f35707fa12f238a18458e7..0cfa021cfd1395e2f6146d52f9e5ffa64be17976:/stglibs/srvconf.lib/servconf.cpp diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index 92773d7f..78db78c8 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -16,6 +16,7 @@ /* * Author : Boris Mikhailenko + * Author : Maxim Mamontov */ #include "stg/servconf.h" @@ -23,30 +24,36 @@ #include "netunit.h" #include "parsers/simple.h" +#include "parsers/get_container.h" #include "parsers/server_info.h" -#include "parsers/get_admins.h" #include "parsers/get_admin.h" #include "parsers/chg_admin.h" -#include "parsers/get_tariffs.h" #include "parsers/get_tariff.h" #include "parsers/chg_tariff.h" #include "parsers/auth_by.h" -#include "parsers/get_users.h" #include "parsers/get_user.h" #include "parsers/chg_user.h" +#include "parsers/get_service.h" +#include "parsers/chg_service.h" + +#include "parsers/get_corp.h" +#include "parsers/chg_corp.h" + #include "parsers/base.h" #include "stg/common.h" #include #include +#include #include +#include using namespace STG; @@ -55,6 +62,10 @@ class SERVCONF::IMPL public: IMPL(const std::string & server, uint16_t port, const std::string & login, const std::string & password); + IMPL(const std::string & server, uint16_t port, + const std::string & localAddress, uint16_t localPort, + const std::string & login, const std::string & password); + ~IMPL() { XML_ParserFree(parser); } const std::string & GetStrError() const; static void Start(void * data, const char * el, const char ** attr); @@ -65,37 +76,41 @@ public: template int Exec(const std::string & request, C callback, void * data) { - P cp(callback, data); + P cp(callback, data, encoding); return ExecImpl(request, cp); } template int Exec(const std::string & tag, const std::string & request, C callback, void * data) { - P cp(tag, callback, data); + P cp(tag, callback, data, encoding); return ExecImpl(request, cp); } + const std::string & Encoding() const { return encoding; } + private: NETTRANSACT nt; + std::string encoding; std::string errorMsg; XML_Parser parser; - static bool ParserRecv(void * data, const std::string & chunk, bool final); - static bool SimpleRecv(void * data, const std::string & chunk, bool final); + static bool ParserRecv(const std::string & chunk, bool final, void * data); + static bool SimpleRecv(const std::string & chunk, bool final, void * data); int ExecImpl(const std::string & request, PARSER & cp); }; -bool SERVCONF::IMPL::ParserRecv(void * data, const std::string & chunk, bool final) +bool SERVCONF::IMPL::ParserRecv(const std::string & chunk, bool final, void * data) { SERVCONF::IMPL * sc = static_cast(data); if (XML_Parse(sc->parser, chunk.c_str(), chunk.length(), final) == XML_STATUS_ERROR) { - strprintf(&sc->errorMsg, "XML parse error at line %d: %s", + strprintf(&sc->errorMsg, "XML parse error at line %d, %d: %s. Is final: %d", static_cast(XML_GetCurrentLineNumber(sc->parser)), - XML_ErrorString(XML_GetErrorCode(sc->parser))); + static_cast(XML_GetCurrentColumnNumber(sc->parser)), + XML_ErrorString(XML_GetErrorCode(sc->parser)), (int)final); printf("%s\n", sc->errorMsg.c_str()); return false; } @@ -103,7 +118,7 @@ if (XML_Parse(sc->parser, chunk.c_str(), chunk.length(), final) == XML_STATUS_ER return true; } -bool SERVCONF::IMPL::SimpleRecv(void * data, const std::string & chunk, bool /*final*/) +bool SERVCONF::IMPL::SimpleRecv(const std::string & chunk, bool /*final*/, void * data) { *static_cast(data) += chunk; return true; @@ -115,6 +130,13 @@ SERVCONF::SERVCONF(const std::string & server, uint16_t port, { } +SERVCONF::SERVCONF(const std::string & server, uint16_t port, + const std::string & localAddress, uint16_t localPort, + const std::string & login, const std::string & password) + : pImpl(new IMPL(server, port, localAddress, localPort, login, password)) +{ +} + SERVCONF::~SERVCONF() { delete pImpl; @@ -132,9 +154,9 @@ return pImpl->RawXML(request, f, data); // -- Admins -- -int SERVCONF::GetAdmins(GET_ADMINS::CALLBACK f, void * data) +int SERVCONF::GetAdmins(GET_CONTAINER::CALLBACK::TYPE f, void * data) { -return pImpl->Exec("", f, data); +return pImpl->Exec >("admins", "", f, data); } int SERVCONF::GetAdmin(const std::string & login, GET_ADMIN::CALLBACK f, void * data) @@ -144,7 +166,7 @@ return pImpl->Exec("", f, int SERVCONF::ChgAdmin(const ADMIN_CONF_RES & conf, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("ChgAdmin", "", f, data); +return pImpl->Exec("ChgAdmin", "Encoding()) + "/>", f, data); } int SERVCONF::AddAdmin(const std::string & login, @@ -154,7 +176,7 @@ int SERVCONF::AddAdmin(const std::string & login, int res = pImpl->Exec("AddAdmin", "", f, data); if (res != st_ok) return res; -return pImpl->Exec("ChgAdmin", "", f, data); +return pImpl->Exec("ChgAdmin", "Encoding()) + "/>", f, data); } int SERVCONF::DelAdmin(const std::string & login, SIMPLE::CALLBACK f, void * data) @@ -164,9 +186,9 @@ return pImpl->Exec("DelAdmin", "::TYPE f, void * data) { -return pImpl->Exec("", f, data); +return pImpl->Exec >("tariffs", "", f, data); } int SERVCONF::GetTariff(const std::string & name, GET_TARIFF::CALLBACK f, void * data) @@ -176,7 +198,7 @@ return pImpl->Exec("", f, int SERVCONF::ChgTariff(const TARIFF_DATA_RES & tariffData, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData) + "", f, data); +return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData, pImpl->Encoding()) + "", f, data); } int SERVCONF::AddTariff(const std::string & name, @@ -186,7 +208,7 @@ int SERVCONF::AddTariff(const std::string & name, int res = pImpl->Exec("AddTariff", "", f, data); if (res != st_ok) return res; -return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData) + "", f, data); +return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData, pImpl->Encoding()) + "", f, data); } int SERVCONF::DelTariff(const std::string & name, SIMPLE::CALLBACK f, void * data) @@ -196,9 +218,9 @@ return pImpl->Exec("DelTariff", "::TYPE f, void * data) { -return pImpl->Exec("", f, data); +return pImpl->Exec >("users", "", f, data); } int SERVCONF::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data) @@ -211,7 +233,7 @@ int SERVCONF::ChgUser(const std::string & login, const USER_STAT_RES & stat, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("" + CHG_USER::Serialize(conf, stat) + "", f, data); +return pImpl->Exec("" + CHG_USER::Serialize(conf, stat, pImpl->Encoding()) + "", f, data); } int SERVCONF::DelUser(const std::string & login, SIMPLE::CALLBACK f, void * data) @@ -219,9 +241,15 @@ int SERVCONF::DelUser(const std::string & login, SIMPLE::CALLBACK f, void * data return pImpl->Exec("DelUser", "", f, data); } -int SERVCONF::AddUser(const std::string & login, SIMPLE::CALLBACK f, void * data) +int SERVCONF::AddUser(const std::string & login, + const USER_CONF_RES & conf, + const USER_STAT_RES & stat, + SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("AddUser", "", f, data); +int res = pImpl->Exec("AddUser", "", f, data); +if (res != st_ok) + return res; +return pImpl->Exec("" + CHG_USER::Serialize(conf, stat, pImpl->Encoding()) + "", f, data); } int SERVCONF::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data) @@ -231,7 +259,7 @@ return pImpl->Exec("", int SERVCONF::SendMessage(const std::string & login, const std::string & text, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("SendMessage", "", f, data); +return pImpl->Exec("SendMessageResult", "", f, data); } int SERVCONF::CheckUser(const std::string & login, const std::string & password, SIMPLE::CALLBACK f, void * data) @@ -239,6 +267,70 @@ int SERVCONF::CheckUser(const std::string & login, const std::string & password, return pImpl->Exec("CheckUser", "", f, data); } +// -- Services -- + +int SERVCONF::GetServices(GET_CONTAINER::CALLBACK::TYPE f, void * data) +{ +return pImpl->Exec >("services", "", f, data); +} + +int SERVCONF::GetService(const std::string & name, GET_SERVICE::CALLBACK f, void * data) +{ +return pImpl->Exec("", f, data); +} + +int SERVCONF::ChgService(const SERVICE_CONF_RES & conf, SIMPLE::CALLBACK f, void * data) +{ +return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf, pImpl->Encoding()) + "", f, data); +} + +int SERVCONF::AddService(const std::string & name, + const SERVICE_CONF_RES & conf, + SIMPLE::CALLBACK f, void * data) +{ +int res = pImpl->Exec("AddService", "", f, data); +if (res != st_ok) + return res; +return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf, pImpl->Encoding()) + "", f, data); +} + +int SERVCONF::DelService(const std::string & name, SIMPLE::CALLBACK f, void * data) +{ +return pImpl->Exec("DelService", "", f, data); +} + +// -- Corporations -- + +int SERVCONF::GetCorporations(GET_CONTAINER::CALLBACK::TYPE f, void * data) +{ +return pImpl->Exec >("corporations", "", f, data); +} + +int SERVCONF::GetCorp(const std::string & name, GET_CORP::CALLBACK f, void * data) +{ +return pImpl->Exec("", f, data); +} + +int SERVCONF::ChgCorp(const CORP_CONF_RES & conf, SIMPLE::CALLBACK f, void * data) +{ +return pImpl->Exec("SetCorp", "" + CHG_CORP::Serialize(conf, pImpl->Encoding()) + "", f, data); +} + +int SERVCONF::AddCorp(const std::string & name, + const CORP_CONF_RES & conf, + SIMPLE::CALLBACK f, void * data) +{ +int res = pImpl->Exec("AddCorp", "", f, data); +if (res != st_ok) + return res; +return pImpl->Exec("SetCorp", "" + CHG_CORP::Serialize(conf, pImpl->Encoding()) + "", f, data); +} + +int SERVCONF::DelCorp(const std::string & name, SIMPLE::CALLBACK f, void * data) +{ +return pImpl->Exec("DelCorp", "", f, data); +} + const std::string & SERVCONF::GetStrError() const { return pImpl->GetStrError(); @@ -247,10 +339,21 @@ return pImpl->GetStrError(); //----------------------------------------------------------------------------- SERVCONF::IMPL::IMPL(const std::string & server, uint16_t port, const std::string & login, const std::string & password) - : nt( server, port, login, password ) + : nt(server, port, login, password) { +setlocale(LC_ALL, ""); +encoding = nl_langinfo(CODESET); +parser = XML_ParserCreate(NULL); +} +//----------------------------------------------------------------------------- +SERVCONF::IMPL::IMPL(const std::string & server, uint16_t port, + const std::string & localAddress, uint16_t localPort, + const std::string & login, const std::string & password) + : nt(server, port, localAddress, localPort, login, password) +{ +setlocale(LC_ALL, ""); +encoding = nl_langinfo(CODESET); parser = XML_ParserCreate(NULL); -nt.SetRxCallback(this, ParserRecv); } //----------------------------------------------------------------------------- void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr) @@ -280,49 +383,38 @@ int ret = 0; if ((ret = nt.Connect()) != st_ok) { errorMsg = nt.GetError(); + cp.Failure(errorMsg); return ret; } -if ((ret = nt.Transact(request.c_str())) != st_ok) - { - errorMsg = nt.GetError(); - return ret; - } -if ((ret = nt.Disconnect()) != st_ok) +if ((ret = nt.Transact(request, ParserRecv, this)) != st_ok) { errorMsg = nt.GetError(); + cp.Failure(errorMsg); return ret; } +nt.Disconnect(); return st_ok; } -int SERVCONF::IMPL::RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data) +int SERVCONF::IMPL::RawXML(const std::string & request, RAW_XML::CALLBACK callback, void * data) { -std::string response; -nt.SetRxCallback(&response, SimpleRecv); int ret = 0; if ((ret = nt.Connect()) != st_ok) { - nt.SetRxCallback(this, ParserRecv); - errorMsg = nt.GetError(); - f(false, errorMsg, "", data); - return ret; - } -if ((ret = nt.Transact(request.c_str())) != st_ok) - { - nt.SetRxCallback(this, ParserRecv); errorMsg = nt.GetError(); - f(false, errorMsg, "", data); + callback(false, errorMsg, "", data); return ret; } -if ((ret = nt.Disconnect()) != st_ok) +std::string response; +if ((ret = nt.Transact(request, SimpleRecv, &response)) != st_ok) { - nt.SetRxCallback(this, ParserRecv); errorMsg = nt.GetError(); - f(false, errorMsg, "", data); + callback(false, errorMsg, "", data); return ret; } -nt.SetRxCallback(this, ParserRecv); -f(true, "", response, data); + +nt.Disconnect(); +callback(true, "", response, data); return st_ok; }