X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/0093be0eb4dbe201a7d63da1de47f98c68987b1d..6b29e16ef9b86fea7d629b23fc55eab3b58a297b:/stglibs/srvconf.lib/servconf.cpp diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index 268749a3..330ba8b1 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -20,29 +20,50 @@ #include "stg/servconf.h" +#include "netunit.h" +#include "parsers/auth_by.h" +#include "parsers/server_info.h" +#include "parsers/check_user.h" +#include "parsers/get_users.h" +#include "parsers/get_user.h" +#include "parsers/chg_user.h" +#include "parsers/send_message.h" +#include "parsers/base.h" + #include "stg/common.h" #include #include -namespace -{ +#include -void ElementStart(void * data, const char * el, const char ** attr) -{ -static_cast(data)->Start(el, attr); -} +using namespace STG; -void ElementEnd(void * data, const char * el) +class SERVCONF::IMPL { -static_cast(data)->End(el); -} +public: + IMPL(const std::string & server, uint16_t port, + const std::string & login, const std::string & password); -} // namespace anonymous + const std::string & GetStrError() const; + static void Start(void * data, const char * el, const char ** attr); + static void End(void * data, const char * el); -bool AnsRecv(void * data, const std::string & chunk, bool final) + template + int Exec(const std::string & request, C callback, void * data); + +private: + NETTRANSACT nt; + + std::string errorMsg; + XML_Parser parser; + + static bool AnsRecv(void * data, const std::string & chunk, bool final); +}; + +bool SERVCONF::IMPL::AnsRecv(void * data, const std::string & chunk, bool final) { -SERVCONF * sc = static_cast(data); +SERVCONF::IMPL * sc = static_cast(data); if (XML_Parse(sc->parser, chunk.c_str(), chunk.length(), final) == XML_STATUS_ERROR) { @@ -56,80 +77,90 @@ if (XML_Parse(sc->parser, chunk.c_str(), chunk.length(), final) == XML_STATUS_ER return true; } -//----------------------------------------------------------------------------- SERVCONF::SERVCONF(const std::string & server, uint16_t port, const std::string & login, const std::string & password) - : currParser(NULL), - nt( server, port, login, password ) + : pImpl(new IMPL(server, port, login, password)) { -parser = XML_ParserCreate(NULL); -nt.SetRxCallback(this, AnsRecv); } -//----------------------------------------------------------------------------- -int SERVCONF::GetUser(const std::string & login, PARSER_GET_USER::CALLBACK f, void * data) + +SERVCONF::~SERVCONF() { -parserGetUser.SetCallback(f, data); -return Exec("", parserGetUser); +delete pImpl; } -//----------------------------------------------------------------------------- -int SERVCONF::AuthBy(const std::string & login, PARSER_AUTH_BY::CALLBACK f, void * data) + +int SERVCONF::GetUsers(GET_USERS::CALLBACK f, void * data) { -parserAuthBy.SetCallback(f, data); -return Exec("", parserAuthBy); +return pImpl->Exec("", f, data); } -//----------------------------------------------------------------------------- -int SERVCONF::GetUsers(PARSER_GET_USERS::CALLBACK f, void * data) + +int SERVCONF::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data) { -parserGetUsers.SetCallback(f, data); -return Exec("", parserGetUsers); +return pImpl->Exec("", f, data); } -//----------------------------------------------------------------------------- -int SERVCONF::ServerInfo(PARSER_SERVER_INFO::CALLBACK f, void * data) + +int SERVCONF::ChgUser(const std::string & request, CHG_USER::CALLBACK f, void * data) { -parserServerInfo.SetCallback(f, data); -return Exec("", parserServerInfo); +return pImpl->Exec(request, f, data); } -//----------------------------------------------------------------------------- -int SERVCONF::ChgUser(const std::string & request, PARSER_CHG_USER::CALLBACK f, void * data) + +int SERVCONF::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data) { -parserChgUser.SetCallback(f, data); -return Exec(request, parserChgUser); +return pImpl->Exec("", f, data); } -//----------------------------------------------------------------------------- -int SERVCONF::SendMessage(const std::string & request, PARSER_SEND_MESSAGE::CALLBACK f, void * data) + +int SERVCONF::SendMessage(const std::string & request, SEND_MESSAGE::CALLBACK f, void * data) +{ +return pImpl->Exec(request, f, data); +} + +int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data) +{ +return pImpl->Exec("", f, data); +} + +int SERVCONF::CheckUser(const std::string & login, const std::string & password, CHECK_USER::CALLBACK f, void * data) { -parserSendMessage.SetCallback(f, data); -return Exec(request, parserSendMessage); +return pImpl->Exec("", f, data); } + +const std::string & SERVCONF::GetStrError() const +{ + return pImpl->GetStrError(); +} + //----------------------------------------------------------------------------- -int SERVCONF::CheckUser(const std::string & login, const std::string & password, PARSER_CHECK_USER::CALLBACK f, void * data) +SERVCONF::IMPL::IMPL(const std::string & server, uint16_t port, + const std::string & login, const std::string & password) + : nt( server, port, login, password ) { -parserCheckUser.SetCallback(f, data); -return Exec("", parserCheckUser); +parser = XML_ParserCreate(NULL); +nt.SetRxCallback(this, AnsRecv); } //----------------------------------------------------------------------------- -void SERVCONF::Start(const char * el, const char ** attr) +void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr) { +PARSER * currParser = static_cast(data); currParser->ParseStart(el, attr); } //----------------------------------------------------------------------------- -void SERVCONF::End(const char * el) +void SERVCONF::IMPL::End(void * data, const char * el) { +PARSER * currParser = static_cast(data); currParser->ParseEnd(el); } //----------------------------------------------------------------------------- -const std::string & SERVCONF::GetStrError() const +const std::string & SERVCONF::IMPL::GetStrError() const { return errorMsg; } //----------------------------------------------------------------------------- -int SERVCONF::Exec(const std::string & request, PARSER & cp) +template +int SERVCONF::IMPL::Exec(const std::string & request, C callback, void * data) { -currParser = &cp; - +P cp(callback, data); XML_ParserReset(parser, NULL); -XML_SetElementHandler(parser, ElementStart, ElementEnd); -XML_SetUserData(parser, this); +XML_SetElementHandler(parser, Start, End); +XML_SetUserData(parser, &cp); int ret = 0; if ((ret = nt.Connect()) != st_ok)