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)
{
std::string errorMsg;
XML_Parser parser;
- 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))
return pImpl->Exec<SERVER_INFO::PARSER>("<GetServerInfo/>", f, data);
}
+int SERVCONF::RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data)
+{
+}
+
// -- Admins --
int SERVCONF::GetAdmins(GET_ADMINS::CALLBACK f, void * data)
return pImpl->Exec<SIMPLE::PARSER>("ChgAdmin", "<ChgAdmin" + CHG_ADMIN::Serialize(conf) + "/>", f, data);
}
-int SERVCONF::AddAdmin(const std::string & login, const ADMIN_CONF & conf, SIMPLE::CALLBACK f, void * data)
+int SERVCONF::AddAdmin(const std::string & login,
+ const ADMIN_CONF_RES & conf,
+ SIMPLE::CALLBACK f, void * data)
{
int res = pImpl->Exec<SIMPLE::PARSER>("AddAdmin", "<AddAdmin login=\"" + login + "\"/>", f, data);
if (res != st_ok)
return pImpl->Exec<GET_USER::PARSER>("<GetUser login=\"" + login + "\"/>", f, data);
}
-int SERVCONF::ChgUser(const std::string & request, SIMPLE::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 pImpl->Exec<CHG_USER::PARSER>(request, f, data);
+return pImpl->Exec<CHG_USER::PARSER>("<SetUser><Login value=\"" + login + "\"/>" + CHG_USER::Serialize(conf, stat) + "</SetUser>", f, data);
}
int SERVCONF::DelUser(const std::string & login, SIMPLE::CALLBACK f, void * data)
: nt( server, port, login, password )
{
parser = XML_ParserCreate(NULL);
-nt.SetRxCallback(this, AnsRecv);
+nt.SetRxCallback(this, ParserRecv);
}
//-----------------------------------------------------------------------------
void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr)
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;
+}