/usr/include/sipxtapi/net/ProvisioningAgentXmlRpcAdapter.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | //
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef _ProvisioningAgentXmlRpcAdapter_h_
#define _ProvisioningAgentXmlRpcAdapter_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
#include "net/XmlRpcMethod.h"
// DEFINES
#define EXPECTED_STRUCT_FAULT_CODE 1
#define EXPECTED_STRUCT_FAULT_STRING "Argument type error: expected a struct."
#define METHOD_DISPATCH_FAULT_CODE 2
#define METHOD_DISPATCH_FAULT_STRING "Failed to dispatch the target method procedure."
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
class UtlSList;
class UtlContainable;
class HttpRequestContext;
class XmlRpcDispatch;
class XmlRpcResponse;
/**
* This class implements the mapping between the XmlRpc procedure "create" and
* the ProvisioningAgent::create() member function.
*/
class ProvisioningAgentXmlRpcAdapter {
public:
/* //////////////////////////// PUBLIC //////////////////////////////////// */
/* ============================ CREATORS ================================== */
/**
* Default constructor
*/
ProvisioningAgentXmlRpcAdapter(const ProvisioningAgent* pProvisioningAgent,
int serverPort,
bool secureTransport = false);
/**
* Destructor
*/
virtual ~ProvisioningAgentXmlRpcAdapter();
/* ============================ MANIPULATORS ============================== */
/* ============================ ACCESSORS ================================= */
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
XmlRpcDispatch* mpXmlRpcServer;
ProvisioningAgentXmlRpcAdapter(const ProvisioningAgentXmlRpcAdapter& rProvisioningAgentXmlRpcAdapter);
//:Copy constructor (not implemented for this class)
ProvisioningAgentXmlRpcAdapter& operator=(const ProvisioningAgentXmlRpcAdapter& rhs);
//:Assignment operator (not implemented for this class)
};
/**
* This class implements the mapping between the XmlRpc procedure "create" and
* the ProvisioningAgent::create() member function.
*/
class ProvisioningAgentXmlRpcCreate : public XmlRpcMethod {
public:
/* //////////////////////////// PUBLIC //////////////////////////////////// */
/* ============================ CREATORS ================================== */
/* ============================ MANIPULATORS ============================== */
/* ============================ ACCESSORS ================================= */
/**
* Create a dynamic instance of this class and return the pointer to it.
*/
static ProvisioningAgentXmlRpcCreate* get(void) {
return new ProvisioningAgentXmlRpcCreate;
}
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/**
* This is the actual method called by the underlying XmlRpc Dispatcher in
* response to receiving a <methodCall>. It will call the corresponding
* ProvisioningAgent method whos instance is supplied in the
* provisioningAgentInstance argument.
*/
bool execute(const HttpRequestContext& rContext,
UtlSList& rParameters,
void* pProvisioningAgentInstance,
XmlRpcResponse& rResponse,
XmlRpcMethod::ExecutionStatus& rStatus);
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
};
/**
* This class implements the mapping between the XmlRpc procedure "delete" and
* the ProvisioningAgent::delete() member function.
*/
class ProvisioningAgentXmlRpcDelete : public XmlRpcMethod {
public:
/* //////////////////////////// PUBLIC //////////////////////////////////// */
/* ============================ CREATORS ================================== */
/* ============================ MANIPULATORS ============================== */
/* ============================ ACCESSORS ================================= */
/**
* Create a dynamic instance of this class and return the pointer to it.
*/
static ProvisioningAgentXmlRpcDelete* get(void) {
return new ProvisioningAgentXmlRpcDelete;
}
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/**
* This is the actual method called by the underlying XmlRpc Dispatcher in
* response to receiving a <methodCall>. It will call the corresponding
* ProvisioningAgent method whos instance is supplied in the
* provisioningAgentInstance argument.
*/
bool execute(const HttpRequestContext& rContext,
UtlSList& rParameters,
void* pProvisioningAgentInstance,
XmlRpcResponse& rResponse,
XmlRpcMethod::ExecutionStatus& rStatus);
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
};
/**
* This class implements the mapping between the XmlRpc procedure "set" and
* the ProvisioningAgent::set() member function.
*/
class ProvisioningAgentXmlRpcSet : public XmlRpcMethod {
public:
/* //////////////////////////// PUBLIC //////////////////////////////////// */
/* ============================ CREATORS ================================== */
/* ============================ MANIPULATORS ============================== */
/* ============================ ACCESSORS ================================= */
/**
* Create a dynamic instance of this class and return the pointer to it.
*/
static ProvisioningAgentXmlRpcSet* get(void) {
return new ProvisioningAgentXmlRpcSet;
}
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/**
* This is the actual method called by the underlying XmlRpc Dispatcher in
* response to receiving a <methodCall>. It will call the corresponding
* ProvisioningAgent method whos instance is supplied in the
* provisioningAgentInstance argument.
*/
bool execute(const HttpRequestContext& rContext,
UtlSList& rParameters,
void* pProvisioningAgentInstance,
XmlRpcResponse& rResponse,
XmlRpcMethod::ExecutionStatus& rStatus);
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
};
/**
* This class implements the mapping between the XmlRpc procedure "get" and
* the ProvisioningAgent::get() member function.
*/
class ProvisioningAgentXmlRpcGet : public XmlRpcMethod {
public:
/* //////////////////////////// PUBLIC //////////////////////////////////// */
/* ============================ CREATORS ================================== */
/* ============================ MANIPULATORS ============================== */
/* ============================ ACCESSORS ================================= */
/**
* Create a dynamic instance of this class and return the pointer to it.
*/
static ProvisioningAgentXmlRpcGet* get(void) {
return new ProvisioningAgentXmlRpcGet;
}
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/**
* This is the actual method called by the underlying XmlRpc Dispatcher in
* response to receiving a <methodCall>. It will call the corresponding
* ProvisioningAgent method whos instance is supplied in the
* provisioningAgentInstance argument.
*/
bool execute(const HttpRequestContext& rContext,
UtlSList& rParameters,
void* pProvisioningAgentInstance,
XmlRpcResponse& rResponse,
XmlRpcMethod::ExecutionStatus& rStatus);
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
};
/**
* This class implements the mapping between the XmlRpc procedure "action" and
* the ProvisioningAgent::action() member function.
*/
class ProvisioningAgentXmlRpcAction : public XmlRpcMethod {
public:
/* //////////////////////////// PUBLIC //////////////////////////////////// */
/* ============================ CREATORS ================================== */
/* ============================ MANIPULATORS ============================== */
/* ============================ ACCESSORS ================================= */
/**
* Create a dynamic instance of this class and return the pointer to it.
*/
static ProvisioningAgentXmlRpcAction* get(void) {
return new ProvisioningAgentXmlRpcAction;
}
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/**
* This is the actual method called by the underlying XmlRpc Dispatcher in
* response to receiving a <methodCall>. It will call the corresponding
* ProvisioningAgent method whos instance is supplied in the
* provisioningAgentInstance argument.
*/
bool execute(const HttpRequestContext& rContext,
UtlSList& rParameters,
void* pProvisioningAgentInstance,
XmlRpcResponse& rResponse,
XmlRpcMethod::ExecutionStatus& rStatus);
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
};
#endif // _ProvisioningAgentXmlRpcAdapter_h_
|