2006-12-21 03:57:49 +00:00
|
|
|
#include "xmlrpc-c/girerr.hpp"
|
|
|
|
using girerr::error;
|
|
|
|
#include "xmlrpc-c/base.hpp"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace xmlrpc_c {
|
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
rpcOutcome::rpcOutcome() : valid(false) {}
|
2006-12-21 03:57:49 +00:00
|
|
|
|
|
|
|
rpcOutcome::rpcOutcome(xmlrpc_c::value const result) :
|
|
|
|
valid(true), _succeeded(true), result(result)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rpcOutcome::rpcOutcome(xmlrpc_c::fault const fault) :
|
|
|
|
valid(true), _succeeded(false), fault(fault)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
rpcOutcome::succeeded() const {
|
|
|
|
if (!valid)
|
|
|
|
throw(error("Attempt to access rpcOutcome object before setting it"));
|
|
|
|
return _succeeded;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fault
|
|
|
|
rpcOutcome::getFault() const {
|
|
|
|
|
|
|
|
if (!valid)
|
|
|
|
throw(error("Attempt to access rpcOutcome object before setting it"));
|
|
|
|
if (_succeeded)
|
|
|
|
throw(error("Attempt to get fault description from a non-failure "
|
|
|
|
"RPC outcome"));
|
|
|
|
return fault;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
value
|
|
|
|
rpcOutcome::getResult() const {
|
|
|
|
|
|
|
|
if (!valid)
|
|
|
|
throw(error("Attempt to access rpcOutcome object before setting it"));
|
|
|
|
if (!_succeeded)
|
|
|
|
throw(error("Attempt to get result from an unsuccessful RPC outcome"));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|