BOSS 7.1.3
BESIII Offline Software System
Loading...
Searching...
No Matches
Validator.cpp File Reference
#include "XmlRpc.h"
#include <iostream>

Go to the source code of this file.

Classes

class  ArrayOfStructsTest
 
class  CountTheEntities
 
class  EasyStructTest
 
class  EchoStructTest
 
class  ManyTypesTest
 
class  ModerateSizeArrayCheck
 
class  NestedStructTest
 
class  SimpleStructReturnTest
 

Functions

 ArrayOfStructsTest (XmlRpcServer *s)
 
void execute (XmlRpcValue &params, XmlRpcValue &result)
 
 CountTheEntities (XmlRpcServer *s)
 
 EasyStructTest (XmlRpcServer *s)
 
 EchoStructTest (XmlRpcServer *s)
 
 ManyTypesTest (XmlRpcServer *s)
 
 ModerateSizeArrayCheck (XmlRpcServer *s)
 
 NestedStructTest (XmlRpcServer *s)
 
 SimpleStructReturnTest (XmlRpcServer *s)
 
int main (int argc, char *argv[])
 

Variables

XmlRpcServer s
 

Function Documentation

◆ ArrayOfStructsTest()

s::ArrayOfStructsTest ( XmlRpcServer * s)

Definition at line 32 of file Validator.cpp.

◆ CountTheEntities()

s::CountTheEntities ( XmlRpcServer * s)

Definition at line 73 of file Validator.cpp.

◆ EasyStructTest()

s::EasyStructTest ( XmlRpcServer * s)

Definition at line 93 of file Validator.cpp.

◆ EchoStructTest()

s::EchoStructTest ( XmlRpcServer * s)

Definition at line 108 of file Validator.cpp.

◆ execute()

void s::execute ( XmlRpcValue & params,
XmlRpcValue & result )

Definition at line 34 of file Validator.cpp.

39 : public XmlRpcServerMethod
40{
41public:
42 CountTheEntities(XmlRpcServer* s) : XmlRpcServerMethod("validator1.countTheEntities", s) {}
43
XmlRpcServer s
CountTheEntities(XmlRpcServer *s)
Definition Validator.cpp:73
Abstract class representing a single RPC method.
A class to handle XML RPC requests.

◆ main()

int main ( int argc,
char * argv[] )

Definition at line 189 of file Validator.cpp.

190{
191 if (argc != 2) {
192 std::cerr << "Usage: Validator port\n";
193 return -1;
194 }
195 int port = atoi(argv[1]);
196
198
199 // Create the server socket on the specified port
200 s.bindAndListen(port);
201
202 // Wait for requests indefinitely
203 s.work(-1.0);
204
205 return 0;
206}
void setVerbosity(int level)
Sets log message verbosity. This is short for XmlRpcLogHandler::setVerbosity(level)

◆ ManyTypesTest()

s::ManyTypesTest ( XmlRpcServer * s)

Definition at line 124 of file Validator.cpp.

◆ ModerateSizeArrayCheck()

s::ModerateSizeArrayCheck ( XmlRpcServer * s)

Definition at line 145 of file Validator.cpp.

◆ NestedStructTest()

s::NestedStructTest ( XmlRpcServer * s)

Definition at line 167 of file Validator.cpp.

◆ SimpleStructReturnTest()

s::SimpleStructReturnTest ( XmlRpcServer * s)

Definition at line 187 of file Validator.cpp.

Variable Documentation

◆ s