X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/2da962edada912d8081f7e15db0ac887b98b179e..6b29e16ef9b86fea7d629b23fc55eab3b58a297b:/stglibs/srvconf.lib/servconf.cpp diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index 8b4e259b..330ba8b1 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -45,33 +45,19 @@ public: IMPL(const std::string & server, uint16_t port, const std::string & login, const std::string & password); - int ServerInfo(SERVER_INFO::CALLBACK f, void * data); - - int GetAdmins(GET_ADMINS::CALLBACK f, void * data); - int GetAdmin(const std::string & login, GET_ADMIN::CALLBACK f, void * data); - int ChgAdmin(const std::string & login, const ADMIN_CONF_RES & conf, CHG_ADMIN::CALLBACK f, void * data); - int AddAdmin(const std::string & login, const ADMIN_CONF & conf, GET_ADMIN::CALLBACK f, void * data); - int DelAdmin(const std::string & login, DEL_ADMIN::CALLBACK f, void * data); - - 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 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); + 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); }; @@ -99,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 @@ -151,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) -{ -GET_USER::PARSER parser(f, data); -return Exec("", parser); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data) -{ -AUTH_BY::PARSER parser(f, data); -return Exec("", parser); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::GetUsers(GET_USERS::CALLBACK f, void * data) -{ -GET_USERS::PARSER parser(f, data); -return Exec("", parser); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::ServerInfo(SERVER_INFO::CALLBACK f, void * data) -{ -SERVER_INFO::PARSER parser(f, data); -return Exec("", parser); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::ChgUser(const std::string & request, CHG_USER::CALLBACK f, void * data) -{ -CHG_USER::PARSER parser(f, data); -return Exec(request, parser); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::SendMessage(const std::string & request, SEND_MESSAGE::CALLBACK f, void * data) -{ -SEND_MESSAGE::PARSER parser(f, data); -return Exec(request, parser); -} -//----------------------------------------------------------------------------- -int SERVCONF::IMPL::CheckUser(const std::string & login, const std::string & password, CHECK_USER::CALLBACK f, void * data) -{ -CHECK_USER::PARSER parser(f, data); -return Exec("", parser); -} -//----------------------------------------------------------------------------- void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr) { PARSER * currParser = static_cast(data); @@ -210,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);