2008-05-23 20:56:24 +00:00
|
|
|
#include <cassert>
|
2006-12-21 03:57:49 +00:00
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include "xmlrpc-c/girerr.hpp"
|
2008-05-23 20:56:24 +00:00
|
|
|
using girerr::throwf;
|
2006-12-21 03:57:49 +00:00
|
|
|
#include "xmlrpc-c/girmem.hpp"
|
|
|
|
using girmem::autoObject;
|
|
|
|
using girmem::autoObjectPtr;
|
|
|
|
#include "xmlrpc-c/base.h"
|
|
|
|
#include "xmlrpc-c/base.hpp"
|
2008-05-23 20:56:24 +00:00
|
|
|
#include "env_wrap.hpp"
|
|
|
|
|
2006-12-21 03:57:49 +00:00
|
|
|
#include "xmlrpc-c/registry.hpp"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace xmlrpc_c;
|
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
void
|
|
|
|
throwIfError(env_wrap const& env) {
|
|
|
|
|
|
|
|
if (env.env_c.fault_occurred)
|
|
|
|
throw(girerr::error(env.env_c.fault_string));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2006-12-21 03:57:49 +00:00
|
|
|
namespace xmlrpc_c {
|
|
|
|
|
|
|
|
|
|
|
|
method::method() :
|
|
|
|
_signature("?"),
|
|
|
|
_help("No help is available for this method")
|
|
|
|
{};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
method::~method() {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
methodPtr::methodPtr(method * const methodP) {
|
2008-05-23 20:56:24 +00:00
|
|
|
this->point(methodP);
|
2006-12-21 03:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
method *
|
|
|
|
methodPtr::operator->() const {
|
|
|
|
|
|
|
|
autoObject * const p(this->objectP);
|
|
|
|
return dynamic_cast<method *>(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
defaultMethod::~defaultMethod() {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
defaultMethodPtr::defaultMethodPtr() {}
|
|
|
|
|
|
|
|
|
|
|
|
defaultMethodPtr::defaultMethodPtr(defaultMethod * const methodP) {
|
2008-05-23 20:56:24 +00:00
|
|
|
this->point(methodP);
|
2006-12-21 03:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
defaultMethod *
|
|
|
|
defaultMethodPtr::operator->() const {
|
|
|
|
|
|
|
|
autoObject * const p(this->objectP);
|
|
|
|
return dynamic_cast<defaultMethod *>(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
defaultMethod *
|
2008-05-23 20:56:24 +00:00
|
|
|
defaultMethodPtr::get() const {
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
autoObject * const p(this->objectP);
|
|
|
|
return dynamic_cast<defaultMethod *>(p);
|
2006-12-21 03:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
registry::registry() {
|
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
env_wrap env;
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
this->c_registryP = xmlrpc_registry_new(&env.env_c);
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
throwIfError(env);
|
2006-12-21 03:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
registry::~registry(void) {
|
|
|
|
|
|
|
|
xmlrpc_registry_free(this->c_registryP);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
registryPtr::registryPtr() {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
registryPtr::registryPtr(registry * const registryP) {
|
|
|
|
this->point(registryP);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
registry *
|
|
|
|
registryPtr::operator->() const {
|
|
|
|
|
|
|
|
autoObject * const p(this->objectP);
|
|
|
|
return dynamic_cast<registry *>(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
registry *
|
|
|
|
registryPtr::get() const {
|
|
|
|
|
|
|
|
autoObject * const p(this->objectP);
|
|
|
|
return dynamic_cast<registry *>(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-12-21 03:57:49 +00:00
|
|
|
static xmlrpc_c::paramList
|
|
|
|
pListFromXmlrpcArray(xmlrpc_value * const arrayP) {
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
Convert an XML-RPC array in C (not C++) form to a parameter list object
|
|
|
|
that can be passed to a method execute method.
|
|
|
|
|
|
|
|
This is glue code to allow us to hook up C++ Xmlrpc-c code to
|
|
|
|
C Xmlrpc-c code.
|
|
|
|
-----------------------------------------------------------------------------*/
|
2008-05-23 20:56:24 +00:00
|
|
|
env_wrap env;
|
2006-12-21 03:57:49 +00:00
|
|
|
|
|
|
|
XMLRPC_ASSERT_ARRAY_OK(arrayP);
|
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
unsigned int const arraySize = xmlrpc_array_size(&env.env_c, arrayP);
|
|
|
|
|
|
|
|
assert(!env.env_c.fault_occurred);
|
2006-12-21 03:57:49 +00:00
|
|
|
|
|
|
|
xmlrpc_c::paramList paramList(arraySize);
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < arraySize; ++i) {
|
|
|
|
xmlrpc_value * arrayItemP;
|
2008-05-23 20:56:24 +00:00
|
|
|
|
|
|
|
xmlrpc_array_read_item(&env.env_c, arrayP, i, &arrayItemP);
|
|
|
|
assert(!env.env_c.fault_occurred);
|
2006-12-21 03:57:49 +00:00
|
|
|
|
|
|
|
paramList.add(xmlrpc_c::value(arrayItemP));
|
|
|
|
|
|
|
|
xmlrpc_DECREF(arrayItemP);
|
|
|
|
}
|
|
|
|
return paramList;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static xmlrpc_value *
|
|
|
|
c_executeMethod(xmlrpc_env * const envP,
|
|
|
|
xmlrpc_value * const paramArrayP,
|
|
|
|
void * const methodPtr) {
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
This is a function designed to be called via a C registry to
|
|
|
|
execute an XML-RPC method, but use a C++ method object to do the
|
|
|
|
work. You register this function as the method function and a
|
|
|
|
pointer to the C++ method object as the method data in the C
|
|
|
|
registry.
|
|
|
|
|
|
|
|
If we had a pure C++ registry, this would be unnecessary.
|
|
|
|
|
|
|
|
Since we can't throw an error back to the C code, we catch anything
|
|
|
|
the XML-RPC method's execute() method throws, and any error we
|
|
|
|
encounter in processing the result it returns, and turn it into an
|
|
|
|
XML-RPC method failure. This will cause a leak if the execute()
|
|
|
|
method actually created a result, since it will not get destroyed.
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
|
|
xmlrpc_c::method * const methodP =
|
|
|
|
static_cast<xmlrpc_c::method *>(methodPtr);
|
|
|
|
xmlrpc_c::paramList const paramList(pListFromXmlrpcArray(paramArrayP));
|
|
|
|
|
|
|
|
xmlrpc_value * retval;
|
|
|
|
|
|
|
|
try {
|
|
|
|
xmlrpc_c::value result;
|
|
|
|
|
|
|
|
try {
|
|
|
|
methodP->execute(paramList, &result);
|
2008-05-23 20:56:24 +00:00
|
|
|
} catch (xmlrpc_c::fault const& fault) {
|
|
|
|
xmlrpc_env_set_fault(envP, fault.getCode(),
|
|
|
|
fault.getDescription().c_str());
|
2006-12-21 03:57:49 +00:00
|
|
|
}
|
2008-05-23 20:56:24 +00:00
|
|
|
if (!envP->fault_occurred) {
|
|
|
|
if (result.isInstantiated())
|
|
|
|
retval = result.cValue();
|
|
|
|
else
|
|
|
|
throwf("Xmlrpc-c user's xmlrpc_c::method object's "
|
|
|
|
"'execute method' failed to set the RPC result "
|
|
|
|
"value.");
|
|
|
|
}
|
|
|
|
} catch (exception const& e) {
|
|
|
|
xmlrpc_faultf(envP, "Unexpected error executing code for "
|
|
|
|
"particular method, detected by Xmlrpc-c "
|
|
|
|
"method registry code. Method did not "
|
|
|
|
"fail; rather, it did not complete at all. %s",
|
|
|
|
e.what());
|
2006-12-21 03:57:49 +00:00
|
|
|
} catch (...) {
|
|
|
|
xmlrpc_env_set_fault(envP, XMLRPC_INTERNAL_ERROR,
|
2008-05-23 20:56:24 +00:00
|
|
|
"Unexpected error executing code for "
|
|
|
|
"particular method, detected by Xmlrpc-c "
|
|
|
|
"method registry code. Method did not "
|
2006-12-21 03:57:49 +00:00
|
|
|
"fail; rather, it did not complete at all.");
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static xmlrpc_value *
|
|
|
|
c_executeDefaultMethod(xmlrpc_env * const envP,
|
|
|
|
const char * const , // host
|
|
|
|
const char * const methodName,
|
|
|
|
xmlrpc_value * const paramArrayP,
|
|
|
|
void * const methodPtr) {
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
This is a function designed to be called via a C registry to
|
|
|
|
execute an XML-RPC method, but use a C++ method object to do the
|
|
|
|
work. You register this function as the default method function and a
|
|
|
|
pointer to the C++ default method object as the method data in the C
|
|
|
|
registry.
|
|
|
|
|
|
|
|
If we had a pure C++ registry, this would be unnecessary.
|
|
|
|
|
|
|
|
Since we can't throw an error back to the C code, we catch anything
|
|
|
|
the XML-RPC method's execute() method throws, and any error we
|
|
|
|
encounter in processing the result it returns, and turn it into an
|
|
|
|
XML-RPC method failure. This will cause a leak if the execute()
|
|
|
|
method actually created a result, since it will not get destroyed.
|
|
|
|
-----------------------------------------------------------------------------*/
|
2008-05-23 20:56:24 +00:00
|
|
|
defaultMethod * const methodP =
|
|
|
|
static_cast<defaultMethod *>(methodPtr);
|
|
|
|
paramList const paramList(pListFromXmlrpcArray(paramArrayP));
|
2006-12-21 03:57:49 +00:00
|
|
|
|
|
|
|
xmlrpc_value * retval;
|
|
|
|
|
|
|
|
try {
|
|
|
|
xmlrpc_c::value result;
|
2008-05-23 20:56:24 +00:00
|
|
|
|
2006-12-21 03:57:49 +00:00
|
|
|
try {
|
|
|
|
methodP->execute(methodName, paramList, &result);
|
2008-05-23 20:56:24 +00:00
|
|
|
} catch (xmlrpc_c::fault const& fault) {
|
|
|
|
xmlrpc_env_set_fault(envP, fault.getCode(),
|
|
|
|
fault.getDescription().c_str());
|
|
|
|
}
|
|
|
|
if (!envP->fault_occurred) {
|
|
|
|
if (result.isInstantiated())
|
|
|
|
retval = result.cValue();
|
|
|
|
else
|
|
|
|
throwf("Xmlrpc-c user's xmlrpc_c::defaultMethod object's "
|
|
|
|
"'execute method' failed to set the RPC result "
|
|
|
|
"value.");
|
2006-12-21 03:57:49 +00:00
|
|
|
}
|
2008-05-23 20:56:24 +00:00
|
|
|
} catch (exception const& e) {
|
|
|
|
xmlrpc_faultf(envP, "Unexpected error executing default "
|
|
|
|
"method code, detected by Xmlrpc-c "
|
|
|
|
"method registry code. Method did not "
|
|
|
|
"fail; rather, it did not complete at all. %s",
|
|
|
|
e.what());
|
2006-12-21 03:57:49 +00:00
|
|
|
} catch (...) {
|
|
|
|
xmlrpc_env_set_fault(envP, XMLRPC_INTERNAL_ERROR,
|
2008-05-23 20:56:24 +00:00
|
|
|
"Unexpected error executing default "
|
|
|
|
"method code, detected by Xmlrpc-c "
|
|
|
|
"method registry code. Method did not "
|
2006-12-21 03:57:49 +00:00
|
|
|
"fail; rather, it did not complete at all.");
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2008-05-23 20:56:24 +00:00
|
|
|
registry::addMethod(string const name,
|
|
|
|
methodPtr const methodP) {
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
this->methodList.push_back(methodP);
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
env_wrap env;
|
2006-12-21 03:57:49 +00:00
|
|
|
|
|
|
|
xmlrpc_registry_add_method_w_doc(
|
2008-05-23 20:56:24 +00:00
|
|
|
&env.env_c, this->c_registryP, NULL,
|
2006-12-21 03:57:49 +00:00
|
|
|
name.c_str(), &c_executeMethod,
|
2008-05-23 20:56:24 +00:00
|
|
|
(void*) methodP.get(),
|
2006-12-21 03:57:49 +00:00
|
|
|
methodP->signature().c_str(), methodP->help().c_str());
|
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
throwIfError(env);
|
2006-12-21 03:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2008-05-23 20:56:24 +00:00
|
|
|
registry::setDefaultMethod(defaultMethodPtr const methodP) {
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
this->defaultMethodP = methodP;
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
env_wrap env;
|
|
|
|
|
2006-12-21 03:57:49 +00:00
|
|
|
xmlrpc_registry_set_default_method(
|
2008-05-23 20:56:24 +00:00
|
|
|
&env.env_c, this->c_registryP,
|
|
|
|
&c_executeDefaultMethod, (void*) methodP.get());
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
throwIfError(env);
|
2006-12-21 03:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
registry::disableIntrospection() {
|
|
|
|
|
|
|
|
xmlrpc_registry_disable_introspection(this->c_registryP);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
static xmlrpc_server_shutdown_fn shutdownServer;
|
|
|
|
|
|
|
|
static void
|
|
|
|
shutdownServer(xmlrpc_env * const envP,
|
|
|
|
void * const context,
|
|
|
|
const char * const comment,
|
|
|
|
void * const callInfo) {
|
|
|
|
|
|
|
|
registry::shutdown * const shutdownP(
|
|
|
|
static_cast<registry::shutdown *>(context));
|
|
|
|
|
|
|
|
assert(shutdownP != NULL);
|
|
|
|
|
|
|
|
try {
|
|
|
|
shutdownP->doit(string(comment), callInfo);
|
|
|
|
} catch (exception const& e) {
|
|
|
|
xmlrpc_env_set_fault(envP, XMLRPC_INTERNAL_ERROR, e.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
registry::setShutdown(const registry::shutdown * const shutdownP) {
|
|
|
|
|
|
|
|
void * const context(const_cast<registry::shutdown *>(shutdownP));
|
|
|
|
|
|
|
|
xmlrpc_registry_set_shutdown(this->c_registryP,
|
|
|
|
&shutdownServer,
|
|
|
|
context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
registry::setDialect(xmlrpc_dialect const dialect) {
|
|
|
|
|
|
|
|
env_wrap env;
|
|
|
|
|
|
|
|
xmlrpc_registry_set_dialect(&env.env_c, this->c_registryP, dialect);
|
|
|
|
|
|
|
|
throwIfError(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-12-21 03:57:49 +00:00
|
|
|
void
|
|
|
|
registry::processCall(string const& callXml,
|
|
|
|
string * const responseXmlP) const {
|
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
Process an XML-RPC call whose XML is 'callXml'.
|
|
|
|
|
|
|
|
Return the response XML as *responseXmlP.
|
|
|
|
|
|
|
|
If we are unable to execute the call, we throw an error. But if
|
|
|
|
the call executes and the method merely fails in an XML-RPC sense, we
|
|
|
|
don't. In that case, *responseXmlP indicates the failure.
|
|
|
|
-----------------------------------------------------------------------------*/
|
2008-05-23 20:56:24 +00:00
|
|
|
env_wrap env;
|
2006-12-21 03:57:49 +00:00
|
|
|
xmlrpc_mem_block * output;
|
|
|
|
|
|
|
|
// For the pure C++ version, this will have to parse 'callXml'
|
|
|
|
// into a method name and parameters, look up the method name in
|
|
|
|
// the registry, call the method's execute() method, then marshall
|
|
|
|
// the result into XML and return it as *responseXmlP. It will
|
|
|
|
// also have to execute system methods (e.g. introspection)
|
|
|
|
// itself. This will be more or less like what
|
|
|
|
// xmlrpc_registry_process_call() does.
|
|
|
|
|
|
|
|
output = xmlrpc_registry_process_call(
|
2008-05-23 20:56:24 +00:00
|
|
|
&env.env_c, this->c_registryP, NULL,
|
|
|
|
callXml.c_str(), callXml.length());
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
throwIfError(env);
|
2006-12-21 03:57:49 +00:00
|
|
|
|
|
|
|
*responseXmlP = string(XMLRPC_MEMBLOCK_CONTENTS(char, output),
|
|
|
|
XMLRPC_MEMBLOCK_SIZE(char, output));
|
|
|
|
|
|
|
|
xmlrpc_mem_block_free(output);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmlrpc_registry *
|
|
|
|
registry::c_registry() const {
|
|
|
|
|
|
|
|
return this->c_registryP;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
2008-05-23 20:56:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
registry::shutdown::~shutdown() {}
|