mirror of https://github.com/sipwise/sems.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
224 lines
5.8 KiB
224 lines
5.8 KiB
/*
|
|
* Copyright (C) 2007 iptego GmbH
|
|
*
|
|
* This file is part of SEMS, a free SIP media server.
|
|
*
|
|
* SEMS is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* For a license to use the sems software under conditions
|
|
* other than those described here, or to purchase support for this
|
|
* software, please contact iptel.org by e-mail at the following addresses:
|
|
* info@iptel.org
|
|
*
|
|
* SEMS is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
#ifndef XMLRPC2DISERVER_H
|
|
#define XMLRPC2DISERVER_H
|
|
|
|
#include "XmlRpc.h"
|
|
#include "MultithreadXmlRpcServer.h"
|
|
using namespace XmlRpc;
|
|
|
|
#include "AmThread.h"
|
|
#include "AmApi.h"
|
|
|
|
#include <map>
|
|
using std::map;
|
|
using std::multimap;
|
|
|
|
#include <string>
|
|
using std::string;
|
|
|
|
#include <time.h>
|
|
|
|
#define DEF_XMLRPCSERVER_WORK_INTERVAL .200 /* 200 ms */
|
|
|
|
#define DEF_XMLRPCSERVERMETHOD(cls_name, func_name) \
|
|
class cls_name \
|
|
: public XmlRpcServerMethod { \
|
|
\
|
|
public: \
|
|
cls_name(XmlRpcServer* s) : \
|
|
XmlRpcServerMethod(func_name, s) { } \
|
|
\
|
|
void execute(XmlRpcValue& params, XmlRpcValue& result); \
|
|
}
|
|
|
|
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerCallsMethod, "calls");
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerSetLoglevelMethod, "set_loglevel");
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerGetLoglevelMethod, "get_loglevel");
|
|
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerSetShutdownmodeMethod, "set_shutdownmode");
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerGetShutdownmodeMethod, "get_shutdownmode");
|
|
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerGetCallsavgMethod, "get_callsavg");
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerGetCallsmaxMethod, "get_callsmax");
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerGetCpsavgMethod, "get_cpsavg");
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerGetCpsmaxMethod, "get_cpsmax");
|
|
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerSetCPSLimitMethod, "set_cpslimit");
|
|
DEF_XMLRPCSERVERMETHOD(XMLRPC2DIServerGetCPSLimitMethod, "get_cpslimit");
|
|
|
|
|
|
class XMLRPC2DIServerDIMethod
|
|
: public XmlRpcServerMethod {
|
|
|
|
public:
|
|
XMLRPC2DIServerDIMethod(XmlRpcServer* s) :
|
|
XmlRpcServerMethod("di", s) { }
|
|
|
|
void execute(XmlRpcValue& params, XmlRpcValue& result);
|
|
};
|
|
|
|
struct DIMethodProxy : public XmlRpcServerMethod
|
|
{
|
|
std::string di_method_name;
|
|
std::string server_method_name;
|
|
|
|
AmDynInvokeFactory* di_factory;
|
|
|
|
DIMethodProxy(std::string const &server_method_name,
|
|
std::string const &di_method_name,
|
|
AmDynInvokeFactory* di_factory);
|
|
|
|
void execute(XmlRpcValue& params, XmlRpcValue& result);
|
|
};
|
|
|
|
class XMLRPC2DIServer
|
|
: public AmEventQueueThread,
|
|
public AmEventHandler
|
|
{
|
|
XmlRpcServer* s;
|
|
|
|
unsigned int port;
|
|
string bind_ip;
|
|
|
|
AmCondition running;
|
|
|
|
XMLRPC2DIServerCallsMethod calls_method;
|
|
XMLRPC2DIServerSetLoglevelMethod setloglevel_method;
|
|
XMLRPC2DIServerGetLoglevelMethod getloglevel_method;
|
|
XMLRPC2DIServerSetShutdownmodeMethod setshutdownmode_method;
|
|
XMLRPC2DIServerGetShutdownmodeMethod getshutdownmode_method;
|
|
|
|
XMLRPC2DIServerGetCallsavgMethod getcallsavg_method;
|
|
XMLRPC2DIServerGetCallsmaxMethod getcallsmax_method;
|
|
XMLRPC2DIServerGetCpsavgMethod getcpsavg_method;
|
|
XMLRPC2DIServerGetCpsmaxMethod getcpsmax_method;
|
|
|
|
XMLRPC2DIServerSetCPSLimitMethod setcpslimit_method;
|
|
XMLRPC2DIServerGetCPSLimitMethod getcpslimit_method;
|
|
|
|
XMLRPC2DIServerDIMethod* di_method;
|
|
void registerMethods(const std::string& iface);
|
|
|
|
void process(AmEvent* ev);
|
|
|
|
public:
|
|
XMLRPC2DIServer(unsigned int port,
|
|
const string& bind_ip,
|
|
bool di_export,
|
|
string &direct_export,
|
|
bool multithreaded = false,
|
|
unsigned int threads = 5);
|
|
|
|
~XMLRPC2DIServer() {
|
|
stop();
|
|
join();
|
|
if (di_method) {
|
|
delete di_method;
|
|
}
|
|
if (s) {
|
|
delete s;
|
|
}
|
|
}
|
|
|
|
bool initialize();
|
|
|
|
void run();
|
|
void on_stop();
|
|
|
|
void waitUntilStarted() { running.wait_for(); }
|
|
|
|
static void xmlrpcval2amargarray(XmlRpcValue& v, AmArg& a,
|
|
size_t start_index);
|
|
|
|
static void xmlrpcval2amarg(XmlRpcValue& v, AmArg& a);
|
|
|
|
/** convert all args in a into result*/
|
|
static void amarg2xmlrpcval(const AmArg& a, XmlRpcValue& result);
|
|
};
|
|
|
|
class XMLRPCServerEntry {
|
|
bool active;
|
|
time_t last_try;
|
|
|
|
public:
|
|
XMLRPCServerEntry(string &s, int p, string &u);
|
|
~XMLRPCServerEntry();
|
|
|
|
bool is_active();
|
|
void set_failed();
|
|
|
|
string server;
|
|
int port;
|
|
string uri;
|
|
};
|
|
|
|
class XMLRPC2DI
|
|
: public AmDynInvokeFactory,
|
|
public AmDynInvoke {
|
|
|
|
static XMLRPC2DIServer* server;
|
|
static unsigned int XMLRPCPort;
|
|
static XMLRPC2DI* _instance;
|
|
static bool configured;
|
|
|
|
int load();
|
|
|
|
// app server
|
|
multimap<string, XMLRPCServerEntry*> servers;
|
|
AmMutex server_mut;
|
|
XMLRPCServerEntry* getServer(const string& app_name);
|
|
|
|
void newConnection(const AmArg& args, AmArg& ret);
|
|
void sendRequest(const AmArg& args, AmArg& ret);
|
|
void sendRequestList(const AmArg& args, AmArg& ret);
|
|
|
|
public:
|
|
XMLRPC2DI(const string& mod_name);
|
|
~XMLRPC2DI() {
|
|
if (server) {
|
|
delete server;
|
|
}
|
|
}
|
|
int onLoad();
|
|
|
|
// DI factory
|
|
AmDynInvoke* getInstance() { return instance(); }
|
|
|
|
// DI API
|
|
static XMLRPC2DI* instance();
|
|
void invoke(const string& method,
|
|
const AmArg& args, AmArg& ret);
|
|
|
|
static time_t ServerRetryAfter;
|
|
static double ServerTimeout;
|
|
|
|
static bool DebugServerParams;
|
|
static bool DebugServerResult;
|
|
};
|
|
|
|
#endif
|