X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/2d0dedb8abc45c661e35e729b5ff71724d4d749a..85513928f6a270af94c1477f5ae2773647b04cd7:/stglibs/srvconf.lib/servconf.cpp diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index a9881f05..e7ecfdf4 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -60,6 +60,7 @@ class SERVCONF::IMPL public: IMPL(const std::string & server, uint16_t port, 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); @@ -87,12 +88,12 @@ private: 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); @@ -108,7 +109,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; @@ -137,7 +138,7 @@ 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 >("admins", "", f, data); } @@ -169,7 +170,7 @@ return pImpl->Exec("DelAdmin", "::TYPE f, void * data) { return pImpl->Exec >("tariffs", "", f, data); } @@ -201,7 +202,7 @@ return pImpl->Exec("DelTariff", "::TYPE f, void * data) { return pImpl->Exec >("users", "", f, data); } @@ -246,7 +247,7 @@ return pImpl->Exec("CheckUser", "::TYPE f, void * data) { return pImpl->Exec >("services", "", f, data); } @@ -278,7 +279,7 @@ return pImpl->Exec("DelService", "::TYPE f, void * data) { return pImpl->Exec >("corporations", "", f, data); } @@ -319,7 +320,6 @@ SERVCONF::IMPL::IMPL(const std::string & server, uint16_t port, : nt( server, port, login, password ) { parser = XML_ParserCreate(NULL); -nt.SetRxCallback(this, ParserRecv); } //----------------------------------------------------------------------------- void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr) @@ -349,49 +349,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); + callback(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) +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; }