/usr/include/sipxtapi/net/XmlRpcMethod.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 | //
// 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 _XMLRPCMETHOD_H_
#define _XMLRPCMETHOD_H_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
#include <utl/UtlString.h>
#include <utl/UtlSList.h>
#include <utl/UtlHashMap.h>
#include <net/HttpRequestContext.h>
#include <net/XmlRpcResponse.h>
// DEFINES
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
class XmlRpcDispatch;
/**
* A XmlRpcMethod is a dynamically loaded object that is invoked by the XmlRpcDispatch
* during the runtime.
*
* This class is the abstract base from which all XML-RPC methods must inherit. Two
* methods must be implemented by the subclasses:
*
* - get() is for XmlRpcDispatch to instantiate the subclass during the runtime. It
* is not a singleton class. The XmlRpcMethod derived objects will be deleted after
* each use in XmlRpcDispatch.
*
* - execute() is for XmlRpcDispatch to execute the XML-RPC request and send back
* the XmlRpcResponse to the client side.
*
* All the params in the XML-RPC request are stored in a UtlSList and passed to
* the service in execute(). All the param values are stored in UtlContainable
* types. The mapping between XML-RPC value types and UtlContainable types is:
*
* - \<i4\> or \<int\> is UtlInt
* - \<i8\> is UtlLongLongInt
* - \<boolean\> is UtlBool
* - \<string\> is UtlString
* - \<dateTime.iso8601\> is UtlDateTime
* - \<array\> is UtlSList
* - \<struct\> is UtlHashMap
*
* \<i8\> is a SIPfoundry extension to XML-RPC that is not compatible with other
* XML-RPC implementations.
* \<double\> and \<base64\> are currently not supported.
*
*/
class XmlRpcMethod
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
typedef enum ExecutionStatus
{
OK,
FAILED,
REQUIRE_AUTHENTICATION
} ExecutionStatus;
/* ============================ CREATORS ================================== */
typedef XmlRpcMethod* Get();
/// Get the instance of this method. Subclasses must provide a definition for this method.
static XmlRpcMethod* get();
/// Destructor
virtual ~XmlRpcMethod();
/// Execute the method. Subclasses must provide a definition for this method.
virtual bool execute(const HttpRequestContext& requestContext, ///< request context
UtlSList& params, ///< request param list
void* userData, ///< user data
XmlRpcResponse& response, ///< request response
ExecutionStatus& status) = 0; ///< execution status
/* ============================ MANIPULATORS ============================== */
/* ============================ ACCESSORS ================================= */
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/// Constructor
XmlRpcMethod();
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
/// Disabled copy constructor
XmlRpcMethod(const XmlRpcMethod& rXmlRpcMethod);
/// Disabled assignment operator
XmlRpcMethod& operator=(const XmlRpcMethod& rhs);
};
/* ============================ INLINE METHODS ============================ */
#endif // _XMLRPCMETHOD_H_
|