Menu

[r1294]: / advanced / src / cpp / pstream.cpp  Maximize  Restore  History

Download this file

128 lines (86 with data), 3.6 kB

  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
/*=============================================================================
pstream
===============================================================================
Client XML transport for Xmlrpc-c based on a very simple byte
stream.
The protocol we use is the "packet socket" protocol, which
is an Xmlrpc-c invention. It is an almost trivial representation of
a sequence of packets on a byte stream.
A transport object talks to exactly one server over its lifetime.
You can create a pstream transport from any file descriptor from which
you can read and write a bidirectional character stream. Typically,
it's a TCP socket.
This transport is synchronous only. It does not provide a working
'start' method. You have at most one outstanding RPC and wait for
it to complete.
By Bryan Henderson 07.05.12.
Contributed to the public domain by its author.
=============================================================================*/
#include <memory>
#include "xmlrpc-c/girerr.hpp"
using girerr::throwf;
#include "xmlrpc-c/packetsocket.hpp"
#include "xmlrpc-c/client_transport.hpp"
using namespace std;
namespace xmlrpc_c {
clientXmlTransport_pstream::constrOpt::constrOpt() {
present.fd = false;
}
#define DEFINE_OPTION_SETTER(OPTION_NAME, TYPE) \
clientXmlTransport_pstream::constrOpt & \
clientXmlTransport_pstream::constrOpt::OPTION_NAME(TYPE const& arg) { \
this->value.OPTION_NAME = arg; \
this->present.OPTION_NAME = true; \
return *this; \
}
DEFINE_OPTION_SETTER(fd, xmlrpc_socket);
#undef DEFINE_OPTION_SETTER
clientXmlTransport_pstream::clientXmlTransport_pstream(constrOpt const& opt) {
if (!opt.present.fd)
throwf("You must provide a 'fd' constructor option.");
auto_ptr<packetSocket> packetSocketAP;
try {
auto_ptr<packetSocket> p(new packetSocket(opt.value.fd));
packetSocketAP = p;
} catch (exception const& e) {
throwf("Unable to create packet socket out of file descriptor %d. %s",
opt.value.fd, e.what());
}
this->packetSocketP = packetSocketAP.get();
packetSocketAP.release();
}
clientXmlTransport_pstream::~clientXmlTransport_pstream() {
delete(this->packetSocketP);
}
void
clientXmlTransport_pstream::call(
carriageParm * const carriageParmP,
string const& callXml,
string * const responseXmlP) {
carriageParm_pstream * const carriageParmPstreamP(
dynamic_cast<carriageParm_pstream *>(carriageParmP));
if (carriageParmPstreamP == NULL)
throwf("Pstream client XML transport called with carriage "
"parameter object not of class carriageParm_pstream");
packetPtr const callPacketP(new packet(callXml.c_str(), callXml.length()));
try {
this->packetSocketP->writeWait(callPacketP);
} catch (exception const& e) {
throwf("Failed to write the call to the packet socket. %s", e.what());
}
packetPtr responsePacketP;
try {
bool eof;
this->packetSocketP->readWait(&eof, &responsePacketP);
if (eof)
throwf("The other end closed the socket before sending "
"the response.");
} catch (exception const& e) {
throwf("We sent the call, but couldn't get the response. %s",
e.what());
}
*responseXmlP =
string(reinterpret_cast<char *>(responsePacketP->getBytes()),
responsePacketP->getLength());
}
} // namespace
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.