mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-04 04:05:15 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
58 lines
1.1 KiB
C++
58 lines
1.1 KiB
C++
#include "xmlrpc-c/girerr.hpp"
|
|
using girerr::error;
|
|
#include "xmlrpc-c/base.hpp"
|
|
|
|
using namespace std;
|
|
|
|
namespace xmlrpc_c {
|
|
|
|
rpcOutcome::rpcOutcome() : valid(false) {}
|
|
|
|
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
|
|
|