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 <class P, typename C>
+ 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);
};
SERVCONF::~SERVCONF()
{
- delete pImpl;
+delete pImpl;
}
int SERVCONF::GetUsers(GET_USERS::CALLBACK f, void * data)
{
- return pImpl->GetUsers( f, data );
+return pImpl->Exec<GET_USERS::PARSER>("<GetUsers/>", f, data);
}
int SERVCONF::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data)
{
- return pImpl->GetUser(login, f, data);
+return pImpl->Exec<GET_USER::PARSER>("<GetUser login=\"" + login + "\"/>", f, data);
}
int SERVCONF::ChgUser(const std::string & request, CHG_USER::CALLBACK f, void * data)
{
- return pImpl->ChgUser(request, f, data);
+return pImpl->Exec<CHG_USER::PARSER>(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<AUTH_BY::PARSER>("<GetUserAuthBy login=\"" + login + "\"/>", f, data);
}
int SERVCONF::SendMessage(const std::string & request, SEND_MESSAGE::CALLBACK f, void * data)
{
- return pImpl->SendMessage(request, f, data);
+return pImpl->Exec<SEND_MESSAGE::PARSER>(request, f, data);
}
int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data)
{
- return pImpl->ServerInfo(f, data);
+return pImpl->Exec<SERVER_INFO::PARSER>("<GetServerInfo/>", 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<CHECK_USER::PARSER>("<CheckUser login=\"" + login + "\" password=\"" + password + "\"/>", f, data);
}
const std::string & SERVCONF::GetStrError() const
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("<GetUser login=\"" + login + "\"/>", parser);
-}
-//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data)
-{
-AUTH_BY::PARSER parser(f, data);
-return Exec("<GetUserAuthBy login=\"" + login + "\"/>", parser);
-}
-//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::GetUsers(GET_USERS::CALLBACK f, void * data)
-{
-GET_USERS::PARSER parser(f, data);
-return Exec("<GetUsers/>", parser);
-}
-//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::ServerInfo(SERVER_INFO::CALLBACK f, void * data)
-{
-SERVER_INFO::PARSER parser(f, data);
-return Exec("<GetServerInfo/>", 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("<CheckUser login=\"" + login + "\" password=\"" + password + "\"/>", parser);
-}
-//-----------------------------------------------------------------------------
void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr)
{
PARSER * currParser = static_cast<PARSER *>(data);
return errorMsg;
}
//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::Exec(const std::string & request, PARSER & cp)
+template <class P, typename C>
+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);