X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/7723eaf21d7d3d0d865545a890d74f3724bf23d2..de7760b87ad8ca38954140a738d66a133f7021f0:/stglibs/srvconf.lib/servconf.cpp diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index c7bf3d00..4c69c813 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -50,8 +50,10 @@ #include #include +#include #include +#include using namespace STG; @@ -60,6 +62,9 @@ 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; @@ -71,20 +76,23 @@ 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; @@ -121,6 +129,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; @@ -150,7 +165,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, @@ -160,7 +175,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) @@ -182,7 +197,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, @@ -192,7 +207,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) @@ -217,7 +232,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) @@ -225,9 +240,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) @@ -237,7 +258,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) @@ -259,7 +280,7 @@ return pImpl->Exec("", f int SERVCONF::ChgService(const SERVICE_CONF_RES & conf, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf) + "", f, data); +return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf, pImpl->Encoding()) + "", f, data); } int SERVCONF::AddService(const std::string & name, @@ -269,7 +290,7 @@ int SERVCONF::AddService(const std::string & name, int res = pImpl->Exec("AddService", "", f, data); if (res != st_ok) return res; -return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf) + "", f, data); +return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf, pImpl->Encoding()) + "", f, data); } int SERVCONF::DelService(const std::string & name, SIMPLE::CALLBACK f, void * data) @@ -291,7 +312,7 @@ 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) + "", f, data); +return pImpl->Exec("SetCorp", "" + CHG_CORP::Serialize(conf, pImpl->Encoding()) + "", f, data); } int SERVCONF::AddCorp(const std::string & name, @@ -301,7 +322,7 @@ int SERVCONF::AddCorp(const std::string & name, int res = pImpl->Exec("AddCorp", "", f, data); if (res != st_ok) return res; -return pImpl->Exec("SetCorp", "" + CHG_CORP::Serialize(conf) + "", f, data); +return pImpl->Exec("SetCorp", "" + CHG_CORP::Serialize(conf, pImpl->Encoding()) + "", f, data); } int SERVCONF::DelCorp(const std::string & name, SIMPLE::CALLBACK f, void * data) @@ -317,8 +338,20 @@ 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); } //----------------------------------------------------------------------------- @@ -349,11 +382,13 @@ int ret = 0; if ((ret = nt.Connect()) != st_ok) { errorMsg = nt.GetError(); + cp.Failure(errorMsg); return ret; } if ((ret = nt.Transact(request, ParserRecv, this)) != st_ok) { errorMsg = nt.GetError(); + cp.Failure(errorMsg); return ret; }