source: ntrip/trunk/GnssCenter/thrift/test2/server.cpp@ 4944

Last change on this file since 4944 was 4944, checked in by mervart, 11 years ago
File size: 1.5 KB
Line 
1#include <iostream>
2#include <string>
3
4#include <thrift/protocol/TBinaryProtocol.h>
5#include <thrift/server/TThreadedServer.h>
6#include <thrift/transport/TServerSocket.h>
7#include <thrift/transport/TBufferTransports.h>
8
9#include "gen-cpp/myService.h"
10
11using namespace std;
12using namespace boost;
13using namespace ::apache::thrift;
14using namespace ::apache::thrift::protocol;
15using namespace ::apache::thrift::transport;
16using namespace ::apache::thrift::server;
17
18class myService : virtual public myServiceIf {
19 public:
20 myService() {}
21 void answer(std::string& answ, const std::string& question) {
22 // implemented on the client-side only
23 }
24};
25
26class myProcessorFactory : virtual public TProcessorFactory {
27 public:
28 myProcessorFactory() {};
29 shared_ptr<TProcessor> getProcessor(const TConnectionInfo& info) {
30 shared_ptr<myService> service(new myService());
31 shared_ptr<TProcessor> processor(new myServiceProcessor(service));
32 cout << "connection " << endl;
33 return processor;
34 }
35};
36
37int main(int argc, char **argv) {
38 int port = 9090;
39 shared_ptr<TServerSocket> serverTransport(new TServerSocket(port));
40 shared_ptr<myProcessorFactory> processorFactory(new myProcessorFactory());
41 shared_ptr<TTransportFactory> transportFactory(new TBufferedTransportFactory());
42 shared_ptr<TProtocolFactory> protocolFactory(new TBinaryProtocolFactory());
43
44 TThreadedServer server(processorFactory, serverTransport,
45 transportFactory, protocolFactory);
46
47 server.serve();
48
49 return 0;
50}
51
Note: See TracBrowser for help on using the repository browser.