X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/abe068d00ecc304c855886f5e511b563b352dd0a..6b29e16ef9b86fea7d629b23fc55eab3b58a297b:/stglibs/srvconf.lib/servconf.cpp?ds=sidebyside diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index 325ee5f2..330ba8b1 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -45,34 +45,19 @@ public: IMPL(const std::string & server, uint16_t port, const std::string & login, const std::string & password); - int GetUsers(GET_USERS::CALLBACK f, void * data); - int GetUser(const std::string & login, GET_USER::CALLBACK f, void * data); - int ChgUser(const std::string & request, CHG_USER::CALLBACK f, void * data); - int AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data); - int SendMessage(const std::string & request, SEND_MESSAGE::CALLBACK f, void * data); - int ServerInfo(SERVER_INFO::CALLBACK f, void * data); - int CheckUser(const std::string & login, const std::string & password, CHECK_USER::CALLBACK f, void * data); - const std::string & GetStrError() const; static void Start(void * data, const char * el, const char ** attr); static void End(void * data, const char * el); -private: - GET_USERS::PARSER parserGetUsers; - GET_USER::PARSER parserGetUser; - AUTH_BY::PARSER parserAuthBy; - SERVER_INFO::PARSER parserServerInfo; - CHG_USER::PARSER parserChgUser; - CHECK_USER::PARSER parserCheckUser; - SEND_MESSAGE::PARSER parserSendMessage; + template + int Exec(const std::string & request, C callback, void * data); +private: NETTRANSACT nt; std::string errorMsg; XML_Parser parser; - int Exec(const std::string & request, PARSER & cp); - static bool AnsRecv(void * data, const std::string & chunk, bool final); }; @@ -100,42 +85,42 @@ SERVCONF::SERVCONF(const std::string & server, uint16_t port, SERVCONF::~SERVCONF() { - delete pImpl; +delete pImpl; } int SERVCONF::GetUsers(GET_USERS::CALLBACK f, void * data) { - return pImpl->GetUsers( f, data ); +return pImpl->Exec("", f, data); } int SERVCONF::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data) { - return pImpl->GetUser(login, f, data); +return pImpl->Exec("", f, data); } int SERVCONF::ChgUser(const std::string & request, CHG_USER::CALLBACK f, void * data) { - return pImpl->ChgUser(request, f, data); +return pImpl->Exec(request, f, data); } int SERVCONF::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data) { - return pImpl->AuthBy(login, f, data); +return pImpl->Exec("", f, data); } int SERVCONF::SendMessage(const std::string & request, SEND_MESSAGE::CALLBACK f, void * data) { - return pImpl->SendMessage(request, f, data); +return pImpl->Exec(request, f, data); } int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data) { - return pImpl->ServerInfo(f, data); +return pImpl->Exec("", f, data); } int SERVCONF::CheckUser(const std::string & login, const std::string & password, CHECK_USER::CALLBACK f, void * data) { - return pImpl->CheckUser(login, password, f, data); +return pImpl->Exec("", f, data); } const std::string & SERVCONF::GetStrError() const @@ -152,48 +137,6 @@ parser = XML_ParserCreate(NULL); nt.SetRxCallback(this, AnsRecv); } //----------------------------------------------------------------------------- -int SERVCONF::IMPL::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data) -{ -parserGetUser.SetCallback(f, data); -return Exec("", parserGetUser); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data) -{ -parserAuthBy.SetCallback(f, data); -return Exec("", parserAuthBy); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::GetUsers(GET_USERS::CALLBACK f, void * data) -{ -parserGetUsers.SetCallback(f, data); -return Exec("", parserGetUsers); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::ServerInfo(SERVER_INFO::CALLBACK f, void * data) -{ -parserServerInfo.SetCallback(f, data); -return Exec("", parserServerInfo); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::ChgUser(const std::string & request, CHG_USER::CALLBACK f, void * data) -{ -parserChgUser.SetCallback(f, data); -return Exec(request, parserChgUser); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::SendMessage(const std::string & request, SEND_MESSAGE::CALLBACK f, void * data) -{ -parserSendMessage.SetCallback(f, data); -return Exec(request, parserSendMessage); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::CheckUser(const std::string & login, const std::string & password, CHECK_USER::CALLBACK f, void * data) -{ -parserCheckUser.SetCallback(f, data); -return Exec("", parserCheckUser); -} -//----------------------------------------------------------------------------- void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr) { PARSER * currParser = static_cast(data); @@ -211,8 +154,10 @@ const std::string & SERVCONF::IMPL::GetStrError() const return errorMsg; } //----------------------------------------------------------------------------- -int SERVCONF::IMPL::Exec(const std::string & request, PARSER & cp) +template +int SERVCONF::IMPL::Exec(const std::string & request, C callback, void * data) { +P cp(callback, data); XML_ParserReset(parser, NULL); XML_SetElementHandler(parser, Start, End); XML_SetUserData(parser, &cp);