X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/2a1f23881feba670f3bb614e19409b5f4e90b211..3f044094a85b8542286107bd6a9da921fc990681:/stglibs/srvconf.lib/servconf.cpp diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index 950669f2..01f21790 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -56,6 +56,8 @@ public: static void Start(void * data, const char * el, const char ** attr); static void End(void * data, const char * el); + int RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data); + template int Exec(const std::string & request, C callback, void * data) { @@ -76,11 +78,12 @@ private: std::string errorMsg; XML_Parser parser; - static bool AnsRecv(void * data, const std::string & chunk, bool final); + static bool ParserRecv(void * data, const std::string & chunk, bool final); + static bool SimpleRecv(void * data, const std::string & chunk, bool final); int ExecImpl(const std::string & request, PARSER & cp); }; -bool SERVCONF::IMPL::AnsRecv(void * data, const std::string & chunk, bool final) +bool SERVCONF::IMPL::ParserRecv(void * data, const std::string & chunk, bool final) { SERVCONF::IMPL * sc = static_cast(data); @@ -96,6 +99,12 @@ 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) +{ +*static_cast(data) += chunk; +return true; +} + SERVCONF::SERVCONF(const std::string & server, uint16_t port, const std::string & login, const std::string & password) : pImpl(new IMPL(server, port, login, password)) @@ -112,6 +121,10 @@ int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data) return pImpl->Exec("", f, data); } +int SERVCONF::RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data) +{ +} + // -- Admins -- int SERVCONF::GetAdmins(GET_ADMINS::CALLBACK f, void * data) @@ -129,7 +142,9 @@ int SERVCONF::ChgAdmin(const ADMIN_CONF_RES & conf, SIMPLE::CALLBACK f, void * d return pImpl->Exec("ChgAdmin", "", f, data); } -int SERVCONF::AddAdmin(const std::string & login, const ADMIN_CONF & conf, SIMPLE::CALLBACK f, void * data) +int SERVCONF::AddAdmin(const std::string & login, + const ADMIN_CONF_RES & conf, + SIMPLE::CALLBACK f, void * data) { int res = pImpl->Exec("AddAdmin", "", f, data); if (res != st_ok) @@ -154,9 +169,12 @@ int SERVCONF::GetUser(const std::string & login, GET_USER::CALLBACK f, void * da return pImpl->Exec("", f, data); } -int SERVCONF::ChgUser(const std::string & request, SIMPLE::CALLBACK f, void * data) +int SERVCONF::ChgUser(const std::string & login, + const USER_CONF_RES & conf, + const USER_STAT_RES & stat, + SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec(request, f, data); +return pImpl->Exec("" + CHG_USER::Serialize(conf, stat) + "", f, data); } int SERVCONF::DelUser(const std::string & login, SIMPLE::CALLBACK f, void * data) @@ -195,7 +213,7 @@ SERVCONF::IMPL::IMPL(const std::string & server, uint16_t port, : nt( server, port, login, password ) { parser = XML_ParserCreate(NULL); -nt.SetRxCallback(this, AnsRecv); +nt.SetRxCallback(this, ParserRecv); } //----------------------------------------------------------------------------- void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr) @@ -240,3 +258,34 @@ if ((ret = nt.Disconnect()) != st_ok) return st_ok; } + +int SERVCONF::RawXML(const std::string & request, RAW_XML::CALLBACK f, 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); + return ret; + } +if ((ret = nt.Disconnect()) != st_ok) + { + nt.SetRxCallback(this, ParserRecv); + errorMsg = nt.GetError(); + f(false, errorMsg, "", data); + return ret; + } +nt.SetRxCallback(this, ParserRecv); +f(true, "", response, data); +return st_ok; +}