File: server_pstream.cpp

package info (click to toggle)
xmlrpc-c 1.60.05-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,132 kB
  • sloc: ansic: 55,332; cpp: 13,541; sh: 3,321; makefile: 2,556; perl: 593; xml: 134
file content (821 lines) | stat: -rw-r--r-- 19,745 bytes parent folder | download | duplicates (8)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
/*=============================================================================
                                  server_pstream
===============================================================================
  Test the pstream server C++ facilities of XML-RPC for C/C++.
  
=============================================================================*/

#include "xmlrpc_config.h"

#if MSVCRT
  #include <winsock2.h>
  #include <io.h>
#else
  #include <unistd.h>
  #include <sys/socket.h>
  #include <arpa/inet.h>
  #include <netinet/in.h>
#endif

#include <errno.h>
#include <string>
#include <cstring>
#include <fcntl.h>

#include "xmlrpc-c/config.h"

#if MSVCRT
  int
  xmlrpc_win32_socketpair(int    const domain,
                          int    const type,
                          int    const protocol,
                          SOCKET       socks[2]);
#endif

#include "xmlrpc-c/girerr.hpp"
using girerr::error;
using girerr::throwf;
#include "xmlrpc-c/sleep_int.h"
#include "xmlrpc-c/base.hpp"
#include "xmlrpc-c/registry.hpp"
#include "xmlrpc-c/server_pstream.hpp"

#include "tools.hpp"
#include "server_pstream.hpp"

using namespace xmlrpc_c;
using namespace std;


namespace {

static void
setNonBlocking(XMLRPC_SOCKET const socket) {
    
#if MSVCRT
    u_long iMode = 1;
    ioctlsocket(socket, FIONBIO, &iMode);
#else
    fcntl(socket, F_SETFL, O_NONBLOCK);
#endif
}



#define ESC_STR "\x1B"


static string const
xmlPrologue("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n");

static string const
packetStart(ESC_STR "PKT");

static string const
packetEnd(ESC_STR "END");


class callInfo_test : public callInfo {
public:
    callInfo_test() : info("this is a test") {}
    string const info;
};



class sampleAddMethod : public method {
public:
    sampleAddMethod() {
        this->_signature = "i:ii";
        this->_help = "This method adds two integers together";
    }
    void
    execute(xmlrpc_c::paramList const& paramList,
            value *             const  retvalP) {
        
        int const addend(paramList.getInt(0));
        int const adder(paramList.getInt(1));
        
        paramList.verifyEnd(2);
        
        *retvalP = value_int(addend + adder);
    }
};

string const sampleAddCallXml(
    xmlPrologue +
    "<methodCall>\r\n"
    "<methodName>sample.add</methodName>\r\n"
    "<params>\r\n"
    "<param><value><i4>5</i4></value></param>\r\n"
    "<param><value><i4>7</i4></value></param>\r\n"
    "</params>\r\n"
    "</methodCall>\r\n"
    );
    
string const sampleAddResponseXml(
    xmlPrologue +
    "<methodResponse>\r\n"
    "<params>\r\n"
    "<param><value><i4>12</i4></value></param>\r\n"
    "</params>\r\n"
    "</methodResponse>\r\n"
    );


class testCallInfoMethod : public method2 {

public:
    virtual void
    execute(paramList        const& paramList,
            const callInfo * const  callInfoPtr,
            value *          const  retvalP) {

        const callInfo_test * const callInfoP(
            dynamic_cast<const callInfo_test *>(callInfoPtr));

        TEST(callInfoP != NULL);
        
        paramList.verifyEnd(0);

        TEST(callInfoP->info == string("this is a test"));
        
        *retvalP = value_nil();
    }
};

string const testCallInfoCallXml(
    xmlPrologue +
    "<methodCall>\r\n"
    "<methodName>test.callinfo</methodName>\r\n"
    "<params>\r\n"
    "</params>\r\n"
    "</methodCall>\r\n"
    );

string const testCallInfoResponseXml(
    xmlPrologue +
    "<methodResponse>\r\n"
    "<params>\r\n"
    "<param><value><nil/></value>"
    "</param>\r\n"
    "</params>\r\n"
    "</methodResponse>\r\n"
    );



static void
waitForNetworkTransport() {
/*----------------------------------------------------------------------------
   Wait for a message to travel through the network.

   This is part of our hack to allow us to test client/server communication
   without the bother of a separate thread for each.  One party writes
   to a socket, causing the OS to buffer the message, then the other party
   reads from the socket, getting the buffered message.  We never wait
   to send or receive, because with only one thread to do both, we would
   deadlock.  Instead, we just count on the buffer being big enough.

   But on some systems, the message doesn't immediately travel like this.  It
   takes action by an independent thread (provided by the OS) to move the
   message.  In particular, we've seen this behavior on Windows (2010.10).

   So we just sleep for a small amount of time to let the message move.
-----------------------------------------------------------------------------*/

    // xmlrpc_millisecond_sleep() is allowed to return early, and on Windows
    // it does that in preference to returning late insofar as the clock
    // resolution doesn't allow returning at the exact time.  It is rumored
    // that Windows clock period may be as long as 40 milliseconds.

    xmlrpc_millisecond_sleep(50);
}



class client {
/*----------------------------------------------------------------------------
   This is an object you can use as a client to test a packet stream
   server.

   You attach the 'serverFd' member to your packet stream server, then
   call the 'sendCall' method to send a call to your server, then call
   the 'recvResp' method to get the response.

   Destroying the object closes the connection.

   We rely on typical, though unguaranteed socket function: we need to
   be able to write 'contents' to the socket in a single write()
   system call before the other side reads anything -- i.e. the socket
   has to have a buffer that big.  We do this because we're lazy; doing
   it right would require forking a writer process.
-----------------------------------------------------------------------------*/
public:

    client();
    
    ~client();

    void
    sendCall(string const& callBytes) const;

    void
    hangup();

    void
    recvResp(string * const respBytesP) const;

    int serverFd;

private:

    int clientFd;
};



client::client() {

    enum {
        SERVER = 0,
        CLIENT = 1,
    };
    XMLRPC_SOCKET sockets[2];
    int rc;

    rc = XMLRPC_SOCKETPAIR(AF_UNIX, SOCK_STREAM, 0, sockets);

    if (rc < 0)
        throwf("Failed to create UNIX domain stream socket pair "
               "as test tool.  errno=%d (%s)",
               errno, strerror(errno));
    else {
        setNonBlocking(sockets[CLIENT]);

        this->serverFd = sockets[SERVER];
        this->clientFd = sockets[CLIENT];
    }
}



client::~client() {

    XMLRPC_CLOSESOCKET(this->clientFd);
    XMLRPC_CLOSESOCKET(this->serverFd);
}



void
client::sendCall(string const& packetBytes) const {

    int rc;

    rc = send(this->clientFd, packetBytes.c_str(), packetBytes.length(), 0);

    waitForNetworkTransport();

    if (rc < 0)
        throwf("send() of test data to socket failed, errno=%d (%s)",
               errno, strerror(errno));
    else {
        unsigned int bytesWritten(rc);

        if (bytesWritten != packetBytes.length())
            throwf("Short write to socket");
    }
}



void
client::hangup() {

    // Closing the socket (close()) would be a better simulation of the
    // real world, and easier, but we shut down just the client->server
    // half of the socket and remain open to receive an RPC response.
    // That's because this test program is lazy and does the client and
    // server in the same thread, depending on socket buffering on the
    // receive side to provide parallelism.  We need to be able to do the
    // following sequence:
    //
    //   - Client sends call
    //   - Client hangs up
    //   - Server gets call
    //   - Server sends response
    //   - Client gets response
    //   - Server notices hangup

    shutdown(this->clientFd, 1);  // Shutdown for transmission only
}



void
client::recvResp(string * const packetBytesP) const {

    char buffer[4096];
    int rc;

    waitForNetworkTransport();

    rc = recv(this->clientFd, buffer, sizeof(buffer), 0);

    if (rc < 0)
        throwf("recv() from socket failed, errno=%d (%s)",
               errno, strerror(errno));
    else {
        unsigned int bytesReceived(rc);

        *packetBytesP = string(buffer, bytesReceived);
    }
}



static void
testEmptyStream(registry const& myRegistry) {
/*----------------------------------------------------------------------------
   Here we send the pstream server an empty stream; i.e. we close the
   socket from the client end without sending anything.

   This should cause the server to recognize EOF.
-----------------------------------------------------------------------------*/

    client client;

    serverPstreamConn server(serverPstreamConn::constrOpt()
                             .registryP(&myRegistry)
                             .socketFd(client.serverFd));

    client.hangup();

    bool eof;
    server.runOnce(&eof);

    TEST(eof);
}



static void
testBrokenPacket(registry const& myRegistry) {
/*----------------------------------------------------------------------------
   Here we send a stream that is not a legal packetsocket stream: it
   doesn't have any control word.
-----------------------------------------------------------------------------*/
    client client;

    serverPstreamConn server(serverPstreamConn::constrOpt()
                             .registryP(&myRegistry)
                             .socketFd(client.serverFd));

    client.sendCall("junk");
    client.hangup();

    bool eof;

    EXPECT_ERROR(
        server.runOnce(&eof);
        );
}



static void
testEmptyPacket(registry const& myRegistry) {
/*----------------------------------------------------------------------------
   Here we send the pstream server one empty packet.  It should respond
   with one packet, being an XML-RPC fault response complaining that the
   call is not valid XML.
-----------------------------------------------------------------------------*/
    client client;

    serverPstreamConn server(serverPstreamConn::constrOpt()
                             .registryP(&myRegistry)
                             .socketFd(client.serverFd));

    client.sendCall(packetStart + packetEnd);

    bool eof;
    server.runOnce(&eof);

    TEST(!eof);

    string response;
    client.recvResp(&response);

    // We ought to validate that the response is a complaint about
    // the empty call

    client.hangup();

    server.runOnce(&eof);

    TEST(eof);
}



static void
testCallInfo(client *            const  clientP,
             serverPstreamConn * const  serverP) {
    
    string const testCallInfoCallStream(
        packetStart + testCallInfoCallXml + packetEnd
        );

    string const testCallInfoResponseStream(
        packetStart + testCallInfoResponseXml + packetEnd
        );

    clientP->sendCall(testCallInfoCallStream);
    
    callInfo_test callInfo;
    int nointerrupt(0);
    bool eof;
    serverP->runOnce(&callInfo, &nointerrupt, &eof);

    TEST(!eof);

    string response;
    clientP->recvResp(&response);

    TEST(response == testCallInfoResponseStream);
}



static void
testNormalCall(registry const& myRegistry) {

    string const sampleAddGoodCallStream(
        packetStart + sampleAddCallXml + packetEnd
        );

    string const sampleAddGoodResponseStream(
        packetStart + sampleAddResponseXml + packetEnd
        );

    client client;

    serverPstreamConn server(serverPstreamConn::constrOpt()
                             .registryP(&myRegistry)
                             .socketFd(client.serverFd));

    client.sendCall(sampleAddGoodCallStream);

    bool eof;

    int interrupt(1);
    server.runOnce(&interrupt, &eof); // returns without reading socket
    TEST(!eof);

    server.runOnce(&eof);

    TEST(!eof);

    string response;
    client.recvResp(&response);

    TEST(response == sampleAddGoodResponseStream);
    
    testCallInfo(&client, &server);

    client.hangup();

    server.runOnce(&eof);

    TEST(eof);
}



static void
testNoWaitCall(registry const& myRegistry) {

    string const sampleAddGoodCallStream(
        packetStart +
        xmlPrologue +
        "<methodCall>\r\n"
        "<methodName>sample.add</methodName>\r\n"
        "<params>\r\n"
        "<param><value><i4>5</i4></value></param>\r\n"
        "<param><value><i4>7</i4></value></param>\r\n"
        "</params>\r\n"
        "</methodCall>\r\n" +
        packetEnd
        );
    

    string const sampleAddGoodResponseStream(
        packetStart +
        xmlPrologue +
        "<methodResponse>\r\n"
        "<params>\r\n"
        "<param><value><i4>12</i4></value></param>\r\n"
        "</params>\r\n"
        "</methodResponse>\r\n" +
        packetEnd
        );

    client client;

    serverPstreamConn server(serverPstreamConn::constrOpt()
                             .registryP(&myRegistry)
                             .socketFd(client.serverFd));

    bool eof;
    bool gotOne;
    string response;

    server.runOnceNoWait(&eof, &gotOne);

    TEST(!eof);
    TEST(!gotOne);

    server.runOnceNoWait(&eof);

    TEST(!eof);

    client.sendCall(sampleAddGoodCallStream);

    server.runOnceNoWait(&eof, &gotOne);

    TEST(!eof);
    TEST(gotOne);

    client.recvResp(&response);

    TEST(response == sampleAddGoodResponseStream);
    
    client.sendCall(sampleAddGoodCallStream);

    server.runOnce(&eof);

    TEST(!eof);
    client.recvResp(&response);
    TEST(response == sampleAddGoodResponseStream);

    client.hangup();

    server.runOnce(&eof);

    TEST(eof);
}



static void
testMultiRpcRunNoRpc(registry const& myRegistry) {

    client client;

    serverPstreamConn server(serverPstreamConn::constrOpt()
                             .registryP(&myRegistry)
                             .socketFd(client.serverFd));

    client.hangup();

    server.run();
}



static void
testMultiRpcRunOneRpc(registry const& myRegistry) {

    string const sampleAddGoodCallStream(
        packetStart +
        xmlPrologue +
        "<methodCall>\r\n"
        "<methodName>sample.add</methodName>\r\n"
        "<params>\r\n"
        "<param><value><i4>5</i4></value></param>\r\n"
        "<param><value><i4>7</i4></value></param>\r\n"
        "</params>\r\n"
        "</methodCall>\r\n" +
        packetEnd
        );
    

    string const sampleAddGoodResponseStream(
        packetStart +
        xmlPrologue +
        "<methodResponse>\r\n"
        "<params>\r\n"
        "<param><value><i4>12</i4></value></param>\r\n"
        "</params>\r\n"
        "</methodResponse>\r\n" +
        packetEnd
        );

    client client;

    serverPstreamConn server(serverPstreamConn::constrOpt()
                             .registryP(&myRegistry)
                             .socketFd(client.serverFd));


    client.sendCall(sampleAddGoodCallStream);
    client.hangup();

    int interrupt;

    interrupt = 1;
    server.run(&interrupt);  // Returns without reading socket

    interrupt = 0;
    server.run(&interrupt);  // Does the buffered RPC

    string response;
    client.recvResp(&response);

    TEST(response == sampleAddGoodResponseStream);
}



class serverPstreamConnTestSuite : public testSuite {

public:
    virtual string suiteName() {
        return "serverPstreamConnTestSuite";
    }
    virtual void runtests(unsigned int const) {
        registry myRegistry;
        
        myRegistry.addMethod("sample.add",
                             methodPtr(new sampleAddMethod));
        myRegistry.addMethod("test.callinfo",
                             methodPtr(new testCallInfoMethod));

        registryPtr myRegistryP(new registry);

        myRegistryP->addMethod("sample.add", methodPtr(new sampleAddMethod));

        EXPECT_ERROR(  // Empty options
            serverPstreamConn::constrOpt opt;
            serverPstreamConn server(opt);
            );

        EXPECT_ERROR(  // No registry
            serverPstreamConn server(serverPstreamConn::constrOpt()
                                     .socketFd(3));
            );

        EXPECT_ERROR(  // No socket fd
            serverPstreamConn server(serverPstreamConn::constrOpt()
                                     .registryP(&myRegistry));
            );
        
        testEmptyStream(myRegistry);

        testBrokenPacket(myRegistry);

        testEmptyPacket(myRegistry);

        testNormalCall(myRegistry);

        testNoWaitCall(myRegistry);

        testMultiRpcRunNoRpc(myRegistry);

        testMultiRpcRunOneRpc(myRegistry);
    }
};



static void
testMultiConnInterrupt(registry const& myRegistry) {

    // We use a nonexistent file descriptor, but the server won't
    // ever access it, so it won't know.

    serverPstream server(serverPstream::constrOpt()
                         .registryP(&myRegistry)
                         .socketFd(37));

    int interrupt(1);  // interrupt immediately

    server.runSerial(&interrupt);
}



class derivedServer : public xmlrpc_c::serverPstream {
public:
    derivedServer(serverPstream::constrOpt const& constrOpt) :
        serverPstream(constrOpt),
        info("this is my derived server") {}

    string const info;
};



class multiTestCallInfoMethod : public method2 {

// The test isn't sophisticated enough actually to do an RPC, so this
// code never runs.  We just want to see if it compiles.

public:
    virtual void
    execute(paramList        const& paramList,
            const callInfo * const  callInfoPtr,
            value *          const  retvalP) {

        const callInfo_serverPstream * const callInfoP(
            dynamic_cast<const callInfo_serverPstream *>(callInfoPtr));

        TEST(callInfoP != NULL);
        
        paramList.verifyEnd(0);

        derivedServer * const derivedServerP(
            dynamic_cast<derivedServer *>(callInfoP->serverP));

        TEST(derivedServerP->info == string("this is my derived server"));

        TEST(callInfoP->clientAddr.sa_family == AF_INET);
        TEST(callInfoP->clientAddrSize >= sizeof(struct sockaddr_in));
        
        *retvalP = value_nil();
    }
};

static void
testMultiConnCallInfo() {

    registry myRegistry;
        
    myRegistry.addMethod("testCallInfo",
                         methodPtr(new multiTestCallInfoMethod));

    derivedServer server(serverPstream::constrOpt()
                         .registryP(&myRegistry)
                         .socketFd(37));
}



class multiConnServerTestSuite : public testSuite {

public:
    virtual string suiteName() {
        return "multiConnServerTestSuite";
    }
    virtual void runtests(unsigned int const) {
        registry myRegistry;
        
        myRegistry.addMethod("sample.add",
                             methodPtr(new sampleAddMethod));

        registryPtr myRegistryP(new registry);

        myRegistryP->addMethod("sample.add", methodPtr(new sampleAddMethod));

        EXPECT_ERROR(  // Empty options
            serverPstream::constrOpt opt;
            serverPstream server(opt);
            );

        EXPECT_ERROR(  // No registry
            serverPstream server(serverPstream::constrOpt()
                                 .socketFd(3));
            );

        EXPECT_ERROR(  // No socket fd
            serverPstream server(serverPstream::constrOpt()
                                 .registryP(&myRegistry));
            );
        
        testMultiConnInterrupt(myRegistry);

        testMultiConnCallInfo();
    }
};



} // unnamed namespace



string
serverPstreamTestSuite::suiteName() {
    return "serverPstreamTestSuite";
}


void
serverPstreamTestSuite::runtests(unsigned int const indentation) {

    serverPstreamConnTestSuite().run(indentation + 1);

    multiConnServerTestSuite().run(indentation + 1);
}