Public Member Functions | Public Attributes | Static Public Attributes | Protected Types | Protected Member Functions | Protected Attributes | List of all members
XmlRpc::XmlRpcClient Class Reference

A class to send XML RPC requests to a server and return the results. More...

#include <XmlRpcClient.h>

Inheritance diagram for XmlRpc::XmlRpcClient:
Inheritance graph
[legend]

Public Member Functions

virtual void close ()
 Close the connection. More...
 
bool execute (const char *method, XmlRpcValue const &params, XmlRpcValue &result)
 
bool executeCheckDone (XmlRpcValue &result)
 
bool executeNonBlock (const char *method, XmlRpcValue const &params)
 
const std::string & getHost ()
 
int getPort () const
 
const std::string & getUri ()
 
virtual unsigned handleEvent (unsigned eventType)
 
bool isFault () const
 Returns true if the result of the last execute() was a fault response. More...
 
 XmlRpcClient (const char *host, int port, const char *uri=0)
 
virtual ~XmlRpcClient ()
 Destructor. More...
 
- Public Member Functions inherited from XmlRpc::XmlRpcSource
int getfd () const
 Return the file descriptor being monitored. More...
 
bool getKeepOpen () const
 Return whether the file descriptor should be kept open if it is no longer monitored. More...
 
void setfd (int fd)
 Specify the file descriptor to monitor. More...
 
void setKeepOpen (bool b=true)
 Specify whether the file descriptor should be kept open if it is no longer monitored. More...
 
 XmlRpcSource (int fd=-1, bool deleteOnClose=false)
 
virtual ~XmlRpcSource ()
 Destructor. More...
 

Public Attributes

int _bytesWritten
 
int _contentLength
 
XmlRpcDispatch _disp
 
bool _eof
 
bool _executing
 
std::string _header
 
bool _isFault
 
std::string _request
 
std::string _response
 
int _sendAttempts
 

Static Public Attributes

static const char FAULT_TAG [] = "<fault>"
 
static const char METHODRESPONSE_TAG [] = "<methodResponse>"
 
static const char PARAM_ETAG [] = "</param>"
 
static const char PARAM_TAG [] = "<param>"
 
static const char PARAMS_ETAG [] = "</params>"
 
static const char PARAMS_TAG [] = "<params>"
 
static const char REQUEST_BEGIN []
 
static const char REQUEST_END [] = "</methodCall>\r\n"
 
static const char REQUEST_END_METHODNAME [] = "</methodName>\r\n"
 

Protected Types

enum  ClientConnectionState {
  NO_CONNECTION, CONNECTING, WRITE_REQUEST, READ_HEADER,
  READ_RESPONSE, IDLE
}
 

Protected Member Functions

virtual bool doConnect ()
 
virtual std::string generateHeader (std::string const &body)
 
virtual bool generateRequest (const char *method, XmlRpcValue const &params)
 
virtual bool parseResponse (XmlRpcValue &result)
 
virtual bool readHeader ()
 
virtual bool readResponse ()
 
virtual bool setupConnection ()
 
virtual bool writeRequest ()
 

Protected Attributes

ClientConnectionState _connectionState
 
std::string _host
 
int _port
 
std::string _uri
 

Detailed Description

A class to send XML RPC requests to a server and return the results.

Definition at line 26 of file XmlRpcClient.h.

Member Enumeration Documentation

Enumerator
NO_CONNECTION 
CONNECTING 
WRITE_REQUEST 
READ_HEADER 
READ_RESPONSE 
IDLE 

Definition at line 90 of file XmlRpcClient.h.

Constructor & Destructor Documentation

XmlRpcClient::XmlRpcClient ( const char *  host,
int  port,
const char *  uri = 0 
)

Construct a client to connect to the server at the specified host:port address

Parameters
hostThe name of the remote machine hosting the server
portThe port on the remote machine where the server is listening
uriAn optional string to be sent as the URI in the HTTP GET header

Definition at line 32 of file XmlRpcClient.cpp.

XmlRpcClient::~XmlRpcClient ( )
virtual

Destructor.

Definition at line 51 of file XmlRpcClient.cpp.

Member Function Documentation

void XmlRpcClient::close ( )
virtual

Close the connection.

Reimplemented from XmlRpc::XmlRpcSource.

Definition at line 58 of file XmlRpcClient.cpp.

bool XmlRpcClient::doConnect ( )
protectedvirtual

Definition at line 219 of file XmlRpcClient.cpp.

bool XmlRpcClient::execute ( const char *  method,
XmlRpcValue const &  params,
XmlRpcValue result 
)

Execute the named procedure on the remote server.

Parameters
methodThe name of the remote procedure to execute
paramsAn array of the arguments for the method
resultThe result value to be returned to the client
Returns
true if the request was sent and a result received (although the result might be a fault).

Currently this is a synchronous (blocking) implementation (execute does not return until it receives a response or an error). Use isFault() to determine whether the result is a fault response.

Definition at line 80 of file XmlRpcClient.cpp.

bool XmlRpcClient::executeCheckDone ( XmlRpcValue result)

Definition at line 146 of file XmlRpcClient.cpp.

bool XmlRpcClient::executeNonBlock ( const char *  method,
XmlRpcValue const &  params 
)

Definition at line 120 of file XmlRpcClient.cpp.

std::string XmlRpcClient::generateHeader ( std::string const &  body)
protectedvirtual

Definition at line 296 of file XmlRpcClient.cpp.

bool XmlRpcClient::generateRequest ( const char *  method,
XmlRpcValue const &  params 
)
protectedvirtual

Definition at line 251 of file XmlRpcClient.cpp.

const std::string& XmlRpc::XmlRpcClient::getHost ( )
inline

Definition at line 98 of file XmlRpcClient.h.

int XmlRpc::XmlRpcClient::getPort ( ) const
inline

Definition at line 100 of file XmlRpcClient.h.

const std::string& XmlRpc::XmlRpcClient::getUri ( )
inline

Definition at line 99 of file XmlRpcClient.h.

unsigned XmlRpcClient::handleEvent ( unsigned  eventType)
virtual

Handle server responses. Called by the event dispatcher during execute.

Parameters
eventTypeThe type of event that occurred.
See also
XmlRpcDispatch::EventType

Implements XmlRpc::XmlRpcSource.

Definition at line 164 of file XmlRpcClient.cpp.

bool XmlRpc::XmlRpcClient::isFault ( ) const
inline

Returns true if the result of the last execute() was a fault response.

Definition at line 65 of file XmlRpcClient.h.

bool XmlRpcClient::parseResponse ( XmlRpcValue result)
protectedvirtual

Definition at line 462 of file XmlRpcClient.cpp.

bool XmlRpcClient::readHeader ( )
protectedvirtual

Definition at line 350 of file XmlRpcClient.cpp.

bool XmlRpcClient::readResponse ( )
protectedvirtual

Definition at line 423 of file XmlRpcClient.cpp.

bool XmlRpcClient::setupConnection ( )
protectedvirtual

Definition at line 194 of file XmlRpcClient.cpp.

bool XmlRpcClient::writeRequest ( )
protectedvirtual

Definition at line 325 of file XmlRpcClient.cpp.

Member Data Documentation

int XmlRpc::XmlRpcClient::_bytesWritten

Definition at line 111 of file XmlRpcClient.h.

ClientConnectionState XmlRpc::XmlRpcClient::_connectionState
protected

Definition at line 91 of file XmlRpcClient.h.

int XmlRpc::XmlRpcClient::_contentLength

Definition at line 124 of file XmlRpcClient.h.

XmlRpcDispatch XmlRpc::XmlRpcClient::_disp

Definition at line 127 of file XmlRpcClient.h.

bool XmlRpc::XmlRpcClient::_eof

Definition at line 118 of file XmlRpcClient.h.

bool XmlRpc::XmlRpcClient::_executing

Definition at line 115 of file XmlRpcClient.h.

std::string XmlRpc::XmlRpcClient::_header

Definition at line 104 of file XmlRpcClient.h.

std::string XmlRpc::XmlRpcClient::_host
protected

Definition at line 94 of file XmlRpcClient.h.

bool XmlRpc::XmlRpcClient::_isFault

Definition at line 121 of file XmlRpcClient.h.

int XmlRpc::XmlRpcClient::_port
protected

Definition at line 96 of file XmlRpcClient.h.

std::string XmlRpc::XmlRpcClient::_request

Definition at line 103 of file XmlRpcClient.h.

std::string XmlRpc::XmlRpcClient::_response

Definition at line 105 of file XmlRpcClient.h.

int XmlRpc::XmlRpcClient::_sendAttempts

Definition at line 108 of file XmlRpcClient.h.

std::string XmlRpc::XmlRpcClient::_uri
protected

Definition at line 95 of file XmlRpcClient.h.

const char XmlRpcClient::FAULT_TAG = "<fault>"
static

Definition at line 38 of file XmlRpcClient.h.

const char XmlRpcClient::METHODRESPONSE_TAG = "<methodResponse>"
static

Definition at line 37 of file XmlRpcClient.h.

const char XmlRpcClient::PARAM_ETAG = "</param>"
static

Definition at line 34 of file XmlRpcClient.h.

const char XmlRpcClient::PARAM_TAG = "<param>"
static

Definition at line 33 of file XmlRpcClient.h.

const char XmlRpcClient::PARAMS_ETAG = "</params>"
static

Definition at line 32 of file XmlRpcClient.h.

const char XmlRpcClient::PARAMS_TAG = "<params>"
static

Definition at line 31 of file XmlRpcClient.h.

const char XmlRpcClient::REQUEST_BEGIN
static
Initial value:
=
"<?xml version=\"1.0\"?>\r\n"
"<methodCall><methodName>"

Definition at line 29 of file XmlRpcClient.h.

const char XmlRpcClient::REQUEST_END = "</methodCall>\r\n"
static

Definition at line 35 of file XmlRpcClient.h.

const char XmlRpcClient::REQUEST_END_METHODNAME = "</methodName>\r\n"
static

Definition at line 30 of file XmlRpcClient.h.


The documentation for this class was generated from the following files:


xmlrpcpp
Author(s): Chris Morley, Konstantin Pilipchuk, Morgan Quigley, Austin Hendrix, Dirk Thomas
autogenerated on Mon Nov 2 2020 03:52:24