#include "stg/servconf.h"
#include "netunit.h"
-#include "parsers/auth_by.h"
+
+#include "parsers/simple.h"
+
#include "parsers/server_info.h"
-#include "parsers/check_user.h"
+
+#include "parsers/get_admins.h"
+#include "parsers/get_admin.h"
+#include "parsers/chg_admin.h"
+
+#include "parsers/auth_by.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"
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);
+ int RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data);
+
+ template <class P, typename C>
+ int Exec(const std::string & request, C callback, void * data)
+ {
+ P cp(callback, data);
+ return ExecImpl(request, cp);
+ }
+
+ template <class P, typename C>
+ int Exec(const std::string & tag, const std::string & request, C callback, void * data)
+ {
+ P cp(tag, callback, data);
+ return ExecImpl(request, cp);
+ }
+
private:
NETTRANSACT nt;
std::string errorMsg;
XML_Parser parser;
- template <class P, typename C>
- int Exec(const std::string & request, C callback, void * data);
-
- static bool AnsRecv(void * data, const std::string & chunk, bool final);
+ static bool ParserRecv(void * data, const std::string & chunk, bool final);
+ static bool SimpleRecv(void * data, const std::string & chunk, bool final);
+ int ExecImpl(const std::string & request, PARSER & cp);
};
-bool SERVCONF::IMPL::AnsRecv(void * data, const std::string & chunk, bool final)
+bool SERVCONF::IMPL::ParserRecv(void * data, const std::string & chunk, bool final)
{
SERVCONF::IMPL * sc = static_cast<SERVCONF::IMPL *>(data);
return true;
}
+bool SERVCONF::IMPL::SimpleRecv(void * data, const std::string & chunk, bool final)
+{
+*static_cast<std::string *>(data) += chunk;
+return true;
+}
+
SERVCONF::SERVCONF(const std::string & server, uint16_t port,
const std::string & login, const std::string & password)
: pImpl(new IMPL(server, port, login, password))
SERVCONF::~SERVCONF()
{
- delete pImpl;
+delete pImpl;
}
-int SERVCONF::GetUsers(GET_USERS::CALLBACK f, void * data)
+int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data)
{
- return pImpl->GetUsers( f, data );
+return pImpl->Exec<SERVER_INFO::PARSER>("<GetServerInfo/>", f, data);
}
-int SERVCONF::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data)
+int SERVCONF::RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data)
{
- return pImpl->GetUser(login, f, data);
}
-int SERVCONF::ChgUser(const std::string & request, CHG_USER::CALLBACK f, void * data)
+// -- Admins --
+
+int SERVCONF::GetAdmins(GET_ADMINS::CALLBACK f, void * data)
{
- return pImpl->ChgUser(request, f, data);
+return pImpl->Exec<GET_ADMINS::PARSER>("<GetAdmins/>", f, data);
}
-int SERVCONF::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data)
+int SERVCONF::GetAdmin(const std::string & login, GET_ADMIN::CALLBACK f, void * data)
{
- return pImpl->AuthBy(login, f, data);
+return pImpl->Exec<GET_ADMIN::PARSER>("<GetAdmin login=\"" + login + "\"/>", f, data);
}
-int SERVCONF::SendMessage(const std::string & request, SEND_MESSAGE::CALLBACK f, void * data)
+int SERVCONF::ChgAdmin(const ADMIN_CONF_RES & conf, SIMPLE::CALLBACK f, void * data)
{
- return pImpl->SendMessage(request, f, data);
+return pImpl->Exec<SIMPLE::PARSER>("ChgAdmin", "<ChgAdmin" + CHG_ADMIN::Serialize(conf) + "/>", f, data);
}
-int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data)
+int SERVCONF::AddAdmin(const std::string & login,
+ const ADMIN_CONF_RES & conf,
+ SIMPLE::CALLBACK f, void * data)
{
- return pImpl->ServerInfo(f, data);
+int res = pImpl->Exec<SIMPLE::PARSER>("AddAdmin", "<AddAdmin login=\"" + login + "\"/>", f, data);
+if (res != st_ok)
+ return res;
+return pImpl->Exec<SIMPLE::PARSER>("ChgAdmin", "<ChgAdmin" + CHG_ADMIN::Serialize(conf) + "/>", f, data);
}
-int SERVCONF::CheckUser(const std::string & login, const std::string & password, CHECK_USER::CALLBACK f, void * data)
+int SERVCONF::DelAdmin(const std::string & login, SIMPLE::CALLBACK f, void * data)
{
- return pImpl->CheckUser(login, password, f, data);
+return pImpl->Exec<SIMPLE::PARSER>("DelAdmin", "<DelAdmin login=\"" + login + "\"/>", f, data);
}
-const std::string & SERVCONF::GetStrError() const
+// -- Users --
+
+int SERVCONF::GetUsers(GET_USERS::CALLBACK f, void * data)
{
- return pImpl->GetStrError();
+return pImpl->Exec<GET_USERS::PARSER>("<GetUsers/>", f, data);
}
-//-----------------------------------------------------------------------------
-SERVCONF::IMPL::IMPL(const std::string & server, uint16_t port,
- const std::string & login, const std::string & password)
- : nt( server, port, login, password )
+int SERVCONF::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data)
{
-parser = XML_ParserCreate(NULL);
-nt.SetRxCallback(this, AnsRecv);
+return pImpl->Exec<GET_USER::PARSER>("<GetUser login=\"" + login + "\"/>", f, data);
}
-//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data)
+
+int SERVCONF::ChgUser(const std::string & login,
+ const USER_CONF_RES & conf,
+ const USER_STAT_RES & stat,
+ SIMPLE::CALLBACK f, void * data)
{
-return Exec<GET_USER::PARSER>("<GetUser login=\"" + login + "\"/>", f, data);
+return pImpl->Exec<CHG_USER::PARSER>("<SetUser><Login value=\"" + login + "\"/>" + CHG_USER::Serialize(conf, stat) + "</SetUser>", f, data);
}
-//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data)
+
+int SERVCONF::DelUser(const std::string & login, SIMPLE::CALLBACK f, void * data)
{
-return Exec<AUTH_BY::PARSER>("<GetUserAuthBy login=\"" + login + "\"/>", f, data);
+return pImpl->Exec<SIMPLE::PARSER>("DelUser", "<DelUser login=\"" + login + "\"/>", f, data);
}
-//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::GetUsers(GET_USERS::CALLBACK f, void * data)
+
+int SERVCONF::AddUser(const std::string & login, SIMPLE::CALLBACK f, void * data)
{
-return Exec<GET_USERS::PARSER>("<GetUsers/>", f, data);
+return pImpl->Exec<SIMPLE::PARSER>("AddUser", "<AddUser><Login value=\"" + login + "\"/></AddUser>", f, data);
}
-//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::ServerInfo(SERVER_INFO::CALLBACK f, void * data)
+
+int SERVCONF::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data)
{
-return Exec<SERVER_INFO::PARSER>("<GetServerInfo/>", f, data);
+return pImpl->Exec<AUTH_BY::PARSER>("<GetUserAuthBy login=\"" + login + "\"/>", f, data);
}
-//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::ChgUser(const std::string & request, CHG_USER::CALLBACK f, void * data)
+
+int SERVCONF::SendMessage(const std::string & login, const std::string & text, SIMPLE::CALLBACK f, void * data)
{
-return Exec<CHG_USER::PARSER>(request, f, data);
+return pImpl->Exec<SIMPLE::PARSER>("SendMessage", "<Message login=\"" + login + "\" msgver=\"1\" msgtype=\"1\" repeat=\"0\" repeatperiod=\"0\" showtime=\"0\" text=\"" + Encode12str(text) + "\"/>", f, data);
}
-//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::SendMessage(const std::string & request, SEND_MESSAGE::CALLBACK f, void * data)
+
+int SERVCONF::CheckUser(const std::string & login, const std::string & password, SIMPLE::CALLBACK f, void * data)
+{
+return pImpl->Exec<SIMPLE::PARSER>("CheckUser", "<CheckUser login=\"" + login + "\" password=\"" + password + "\"/>", f, data);
+}
+
+const std::string & SERVCONF::GetStrError() const
{
-return Exec<SEND_MESSAGE::PARSER>(request, f, data);
+return pImpl->GetStrError();
}
+
//-----------------------------------------------------------------------------
-int SERVCONF::IMPL::CheckUser(const std::string & login, const std::string & password, 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 )
{
-return Exec<CHECK_USER::PARSER>("<CheckUser login=\"" + login + "\" password=\"" + password + "\"/>", f, data);
+parser = XML_ParserCreate(NULL);
+nt.SetRxCallback(this, ParserRecv);
}
//-----------------------------------------------------------------------------
void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr)
return errorMsg;
}
//-----------------------------------------------------------------------------
-template <class P, typename C>
-int SERVCONF::IMPL::Exec(const std::string & request, C callback, void * data)
+int SERVCONF::IMPL::ExecImpl(const std::string & request, PARSER & cp)
{
-P cp(callback, data);
XML_ParserReset(parser, NULL);
XML_SetElementHandler(parser, Start, End);
XML_SetUserData(parser, &cp);
return st_ok;
}
+
+int SERVCONF::RawXML(const std::string & request, RAW_XML::CALLBACK f, 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);
+ 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)
+ {
+ nt.SetRxCallback(this, ParserRecv);
+ errorMsg = nt.GetError();
+ f(false, errorMsg, "", data);
+ return ret;
+ }
+nt.SetRxCallback(this, ParserRecv);
+f(true, "", response, data);
+return st_ok;
+}