/usr/include/ptclib/pxmlrpc.h is in libpt-dev 2.10.11~dfsg-1ubuntu1.
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 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | /*
* pxmlrpc.h
*
* XML/RPC support
*
* Portable Windows Library
*
* Copyright (c) 2002 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): ______________________________________.
*
* $Revision: 23711 $
* $Author: rjongbloed $
* $Date: 2009-10-28 03:45:13 -0500 (Wed, 28 Oct 2009) $
*/
#ifndef PTLIB_PXMLRPC_H
#define PTLIB_PXMLRPC_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <ptclib/pxml.h>
#if P_XMLRPC
#include <ptclib/url.h>
class PXMLRPCBlock;
class PXMLRPCVariableBase;
class PXMLRPCStructBase;
/////////////////////////////////////////////////////////////////
class PXMLRPC : public PObject
{
PCLASSINFO(PXMLRPC, PObject);
public:
enum {
CannotCreateRequestXML = 100,
CannotParseResponseXML,
CannotParseRequestXML,
HTTPPostFailed,
CannotReadResponseContentBody,
ResponseRootNotMethodResponse,
ResponseEmpty,
ResponseUnknownFormat,
ParamNotValue,
ScalarWithoutElement,
ParamNotStruct,
MemberIncomplete,
MemberUnnamed,
FaultyFault,
RequestHasWrongDocumentType,
RequestHasNoMethodName,
RequestHasNoParms,
MethodNameIsEmpty,
UnknownMethod,
ParamNotArray,
UserFault = 1000,
};
PXMLRPC(
const PURL & url,
PXML::Options options = PXML::NoOptions
);
void SetTimeout(const PTimeInterval & t) { timeout = t; }
PBoolean MakeRequest(const PString & method);
PBoolean MakeRequest(const PString & method, PXMLRPCBlock & response);
PBoolean MakeRequest(PXMLRPCBlock & request, PXMLRPCBlock & response);
PBoolean MakeRequest(const PString & method, const PXMLRPCStructBase & args, PXMLRPCStructBase & reply);
PString GetFaultText() const { return faultText; }
PINDEX GetFaultCode() const { return faultCode; }
static PBoolean ISO8601ToPTime(const PString & iso8601, PTime & val, int tz = PTime::GMT);
static PString PTimeToISO8601(const PTime & val);
protected:
PBoolean PerformRequest(PXMLRPCBlock & request, PXMLRPCBlock & response);
PURL url;
PINDEX faultCode;
PString faultText;
PTimeInterval timeout;
PXML::Options m_options;
};
/////////////////////////////////////////////////////////////////
class PXMLRPCBlock : public PXML
{
PCLASSINFO(PXMLRPCBlock, PXML);
public:
PXMLRPCBlock();
PXMLRPCBlock(const PString & method);
PXMLRPCBlock(const PString & method, const PXMLRPCStructBase & structData);
PBoolean Load(const PString & str);
PXMLElement * GetParams();
PXMLElement * GetParam(PINDEX idx) const;
PINDEX GetParamCount() const;
// used when used as a response
PINDEX GetFaultCode() const { return faultCode; }
PString GetFaultText() const { return faultText; }
void SetFault(PINDEX code, const PString & text) { faultCode = code; faultText = text; }
PBoolean ValidateResponse();
// helper functions for getting parameters
PBoolean GetParams(PXMLRPCStructBase & data);
PBoolean GetParam(PINDEX idx, PString & type, PString & result);
PBoolean GetExpectedParam(PINDEX idx, const PString & expectedType, PString & value);
PBoolean GetParam(PINDEX idx, PString & result);
PBoolean GetParam(PINDEX idx, int & result);
PBoolean GetParam(PINDEX idx, double & result);
PBoolean GetParam(PINDEX idx, PTime & result, int tz = PTime::GMT);
PBoolean GetParam(PINDEX idx, PStringToString & result);
PBoolean GetParam(PINDEX idx, PXMLRPCStructBase & result);
PBoolean GetParam(PINDEX idx, PStringArray & result);
PBoolean GetParam(PINDEX idx, PArray<PStringToString> & result);
// static functions for parsing values
PBoolean ParseScalar(PXMLElement * element, PString & type, PString & value);
PBoolean ParseStruct(PXMLElement * element, PStringToString & structDict);
PBoolean ParseStruct(PXMLElement * element, PXMLRPCStructBase & structData);
PBoolean ParseArray(PXMLElement * element, PStringArray & array);
PBoolean ParseArray(PXMLElement * element, PArray<PStringToString> & array);
PBoolean ParseArray(PXMLElement * element, PXMLRPCVariableBase & array);
// static functions for creating values
static PXMLElement * CreateValueElement(PXMLElement * element);
static PXMLElement * CreateScalar(const PString & type, const PString & scalar);
static PXMLElement * CreateMember(const PString & name, PXMLElement * value);
static PXMLElement * CreateScalar(const PString & str);
static PXMLElement * CreateScalar(int value);
static PXMLElement * CreateScalar(double value);
static PXMLElement * CreateDateAndTime(const PTime & time);
static PXMLElement * CreateBinary(const PBYTEArray & data);
static PXMLElement * CreateStruct();
static PXMLElement * CreateStruct(const PStringToString & dict);
static PXMLElement * CreateStruct(const PStringToString & dict, const PString & typeStr);
static PXMLElement * CreateStruct(const PXMLRPCStructBase & structData);
static PXMLElement * CreateArray(const PStringArray & array);
static PXMLElement * CreateArray(const PStringArray & array, const PString & typeStr);
static PXMLElement * CreateArray(const PStringArray & array, const PStringArray & types);
static PXMLElement * CreateArray(const PArray<PStringToString> & array);
static PXMLElement * CreateArray(const PXMLRPCVariableBase & array);
// helper functions for adding parameters
void AddParam(PXMLElement * parm);
void AddParam(const PString & str);
void AddParam(int value);
void AddParam(double value);
void AddParam(const PTime & time);
void AddParam(const PXMLRPCStructBase & structData);
void AddBinary(const PBYTEArray & data);
void AddStruct(const PStringToString & dict);
void AddStruct(const PStringToString & dict, const PString & typeStr);
void AddArray(const PStringArray & array);
void AddArray(const PStringArray & array, const PString & typeStr);
void AddArray(const PStringArray & array, const PStringArray & types);
void AddArray(const PArray<PStringToString> & array);
protected:
PXMLElement * params;
PString faultText;
PINDEX faultCode;
};
/////////////////////////////////////////////////////////////////
class PXMLRPCVariableBase : public PObject {
PCLASSINFO(PXMLRPCVariableBase, PObject);
protected:
PXMLRPCVariableBase(const char * name, const char * type = NULL);
public:
const char * GetName() const { return name; }
const char * GetType() const { return type; }
virtual void Copy(const PXMLRPCVariableBase & other) = 0;
virtual PString ToString(PINDEX i) const;
virtual void FromString(PINDEX i, const PString & str);
virtual PXMLRPCStructBase * GetStruct(PINDEX i) const;
virtual PBoolean IsArray() const;
virtual PINDEX GetSize() const;
virtual PBoolean SetSize(PINDEX);
PString ToBase64(PAbstractArray & data) const;
void FromBase64(const PString & str, PAbstractArray & data);
protected:
const char * name;
const char * type;
private:
PXMLRPCVariableBase(const PXMLRPCVariableBase &) : PObject() { }
};
class PXMLRPCArrayBase : public PXMLRPCVariableBase {
PCLASSINFO(PXMLRPCArrayBase, PXMLRPCVariableBase);
protected:
PXMLRPCArrayBase(PContainer & array, const char * name, const char * type);
PXMLRPCArrayBase & operator=(const PXMLRPCArrayBase &);
public:
virtual void PrintOn(ostream & strm) const;
virtual void Copy(const PXMLRPCVariableBase & other);
virtual PBoolean IsArray() const;
virtual PINDEX GetSize() const;
virtual PBoolean SetSize(PINDEX);
protected:
PContainer & array;
};
class PXMLRPCArrayObjectsBase : public PXMLRPCArrayBase {
PCLASSINFO(PXMLRPCArrayObjectsBase, PXMLRPCArrayBase);
protected:
PXMLRPCArrayObjectsBase(PArrayObjects & array, const char * name, const char * type);
PXMLRPCArrayObjectsBase & operator=(const PXMLRPCArrayObjectsBase &);
public:
virtual PString ToString(PINDEX i) const;
virtual void FromString(PINDEX i, const PString & str);
virtual PBoolean SetSize(PINDEX);
virtual PObject * CreateObject() const = 0;
protected:
PArrayObjects & array;
};
class PXMLRPCStructBase : public PObject {
PCLASSINFO(PXMLRPCStructBase, PObject);
protected:
PXMLRPCStructBase();
PXMLRPCStructBase & operator=(const PXMLRPCStructBase &);
private:
PXMLRPCStructBase(const PXMLRPCStructBase &) : PObject() { }
public:
void PrintOn(ostream & strm) const;
PINDEX GetNumVariables() const { return variablesByOrder.GetSize(); }
PXMLRPCVariableBase & GetVariable(PINDEX idx) const { return variablesByOrder[idx]; }
PXMLRPCVariableBase * GetVariable(const char * name) const { return variablesByName.GetAt(name); }
void AddVariable(PXMLRPCVariableBase * var);
static PXMLRPCStructBase & GetInitialiser() { return *PAssertNULL(initialiserInstance); }
protected:
void EndConstructor();
PArray<PXMLRPCVariableBase> variablesByOrder;
PDictionary<PString, PXMLRPCVariableBase> variablesByName;
PXMLRPCStructBase * initialiserStack;
static PMutex initialiserMutex;
static PXMLRPCStructBase * initialiserInstance;
};
#define PXMLRPC_STRUCT_BEGIN(name) \
class name : public PXMLRPCStructBase { \
public: name() { EndConstructor(); } \
public: name(const name & other) { EndConstructor(); operator=(other); } \
public: name & operator=(const name & other) { PXMLRPCStructBase::operator=(other); return *this; }
#define PXMLRPC_VARIABLE_CLASS(base, type, variable, xmltype, init, extras) \
private: struct PXMLRPCVar_##variable : public PXMLRPCVariableBase { \
PXMLRPCVar_##variable() \
: PXMLRPCVariableBase(#variable, xmltype), \
instance(((base &)base::GetInitialiser()).variable) \
{ init } \
virtual void PrintOn (ostream & s) const { s << instance; } \
virtual void ReadFrom(istream & s) { s >> instance; } \
virtual void Copy(const PXMLRPCVariableBase & other) \
{ instance = ((PXMLRPCVar_##variable &)other).instance; } \
extras \
type & instance; \
} pxmlrpcvar_##variable
#define PXMLRPC_VARIABLE_CUSTOM(base, type, variable, xmltype, init, extras) \
public: type variable; \
PXMLRPC_VARIABLE_CLASS(base, type, variable, xmltype, init, extras)
#define PXMLRPC_ARRAY_CUSTOM(base, arraytype, basetype, variable, xmltype, par, extras) \
public: arraytype variable; \
private: struct PXMLRPCVar_##variable : public par { \
PXMLRPCVar_##variable() \
: par(((base &)base::GetInitialiser()).variable, #variable, xmltype), \
instance((arraytype &)array) \
{ } \
extras \
arraytype & instance; \
} pxmlrpcvar_##variable
#ifdef DOCPLUSPLUS
}
#endif
#define PXMLRPC_STRUCT_END() \
};
#define PXMLRPC_VARIABLE(base, type, variable, xmltype) \
PXMLRPC_VARIABLE_CUSTOM(base, type, variable, xmltype, ;, ;)
#define PXMLRPC_VARIABLE_INIT(base, type, variable, xmltype, init) \
PXMLRPC_VARIABLE_CUSTOM(base, type, variable, xmltype, instance=init;, ;)
#define PXMLRPC_STRING(base, type, variable) \
PXMLRPC_VARIABLE(base, type, variable, "string")
#define PXMLRPC_STRING_INIT(base, type, variable, init) \
PXMLRPC_VARIABLE_INIT(base, type, variable, "string", init)
#define PXMLRPC_INTEGER(base, type, variable) \
PXMLRPC_VARIABLE(base, type, variable, "int")
#define PXMLRPC_INTEGER_INIT(base, type, variable, init) \
PXMLRPC_VARIABLE_INIT(base, type, variable, "int", init)
#define PXMLRPC_BOOLEAN(base, type, variable) \
PXMLRPC_VARIABLE(base, type, variable, "boolean")
#define PXMLRPC_BOOLEAN_INIT(base, type, variable, init) \
PXMLRPC_VARIABLE_INIT(base, type, variable, "boolean", init)
#define PXMLRPC_DOUBLE(base, type, variable) \
PXMLRPC_VARIABLE(base, type, variable, "double")
#define PXMLRPC_DOUBLE_INIT(base, type, variable, init) \
PXMLRPC_VARIABLE_INIT(base, type, variable, "double", init)
#define PXMLRPC_DATETIME(base, type, variable) \
PXMLRPC_VARIABLE_CUSTOM(base, type, variable, "dateTime.iso8601", ;, \
PString ToString(PINDEX) const { return instance.AsString(PTime::ShortISO8601); } )
#define PXMLRPC_BINARY(base, type, variable) \
PXMLRPC_VARIABLE_CUSTOM(base, type, variable, "base64", ;, \
PString ToString(PINDEX) const { return ToBase64(instance); } \
void FromString(PINDEX, const PString & str) { FromBase64(str, instance); } )
#define PXMLRPC_STRUCT(base, type, variable) \
PXMLRPC_VARIABLE_CUSTOM(base, type, variable, "struct", ;, \
PXMLRPCStructBase * GetStruct(PINDEX) const { return &instance; } )
#define PXMLRPC_ARRAY(base, arraytype, basetype, variable, xmltype) \
PXMLRPC_ARRAY_CUSTOM(base, arraytype, basetype, variable, xmltype, PXMLRPCArrayObjectsBase, \
PObject * CreateObject() const { return new basetype; })
#define PXMLRPC_ARRAY_STRING(base, arraytype, basetype, variable) \
PXMLRPC_ARRAY(base, arraytype, basetype, variable, "string")
#define PXMLRPC_ARRAY_INTEGER(base, type, variable) \
PXMLRPC_ARRAY_CUSTOM(base, PScalarArray<type>, type, variable, "int", PXMLRPCArrayBase, \
PString ToString(PINDEX i) const { return PString(instance[i]); } \
void FromString(PINDEX i, const PString & str) { instance[i] = (type)str.AsInteger(); })
#define PXMLRPC_ARRAY_DOUBLE(base, type, variable) \
PXMLRPC_ARRAY_CUSTOM(base, PScalarArray<type>, type, variable, "double", PXMLRPCArrayBase, \
PString ToString(PINDEX i) const { return psprintf("%f", instance[i]); } \
void FromString(PINDEX i, const PString & str) { instance[i] = (type)str.AsReal(); })
#define PXMLRPC_ARRAY_STRUCT(base, type, variable) \
PXMLRPC_ARRAY_CUSTOM(base, PArray<type>, type, variable, "struct", PXMLRPCArrayObjectsBase, \
PXMLRPCStructBase * GetStruct(PINDEX i) const { return &instance[i]; } \
PObject * CreateObject() const { return new type; })
#define PXMLRPC_FUNC_NOARG_NOREPLY(name) \
PBoolean name() { return MakeRequest(#name); }
#define PXMLRPC_FUNC_SINGLE_ARG(name, vartype, argtype) \
class name##_in : public PXMLRPCStructBase { \
public: name##_in(const argtype & var) : variable(var) { EndConstructor(); } \
vartype(name##_in, argtype, variable);
#define PXMLRPC_FUNC_MULTI_ARGS(name) \
PXMLRPC_STRUCT_BEGIN(name##_in)
#ifdef DOCPLUSPLUS
{
#endif
#define PXMLRPC_FUNC_MULTI_REPLY(name) \
}; PXMLRPC_STRUCT_BEGIN(name##_out)
#ifdef DOCPLUSPLUS
{
#endif
#define PXMLRPC_FUNC_NO_ARGS(name) \
}; \
PBoolean name(name##_out & reply) \
{ return MakeRequest(#name, name##_in(), reply); }
#ifdef DOCPLUSPLUS
{
#endif
#define PXMLRPC_FUNC_STRUCT_ARG(name) \
}; \
class name##_in_carrier : public PXMLRPCStructBase { \
public: name##_in_carrier(const name##_in & var) : variable(var) { EndConstructor(); } \
private: struct var_class : public PXMLRPCVariableBase { \
var_class(const name##_in & var) \
: PXMLRPCVariableBase("variable", "struct"), instance(var) { } \
virtual void PrintOn (ostream & s) const { s << instance; } \
virtual PXMLRPCStructBase * GetStruct(PINDEX) const { return (PXMLRPCStructBase *)&instance; } \
virtual void Copy(const PXMLRPCVariableBase &) { } \
const name##_in & instance; \
} variable; \
}; \
PBoolean name(const name##_in & args, name##_out & reply) \
{ return MakeRequest(#name, name##_in_carrier(args), reply); }
#ifdef DOCPLUSPLUS
{
#endif
#define PXMLRPC_FUNC_NORM_ARGS(name) \
}; \
PBoolean name(const name##_in & args, name##_out & reply) \
{ return MakeRequest(#name, args, reply); }
/////////////////////////////////////////////////////////////////
#endif // P_XMLRPC
#endif // PTLIB_PXMLRPC_H
// End Of File ///////////////////////////////////////////////////////////////
|