blob: 84b79d420f473b16fe3f671909afd1808c519e26 [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
Roger Meier49ff8b12012-04-13 09:12:31 +000020#include <thrift/concurrency/ThreadManager.h>
21#include <thrift/concurrency/PosixThreadFactory.h>
22#include <thrift/protocol/TBinaryProtocol.h>
23#include <thrift/server/TSimpleServer.h>
24#include <thrift/server/TThreadPoolServer.h>
25#include <thrift/server/TThreadedServer.h>
26#include <thrift/transport/TServerSocket.h>
27#include <thrift/transport/TTransportUtils.h>
Konrad Grochowskia8eec712014-09-04 00:56:27 +020028#include <thrift/TToString.h>
Mark Slee07a3aab2007-03-07 05:45:10 +000029
30#include <iostream>
31#include <stdexcept>
32#include <sstream>
33
34#include "../gen-cpp/Calculator.h"
35
36using namespace std;
T Jake Lucianib5e62212009-01-31 22:36:20 +000037using namespace apache::thrift;
Jens Geyer04a4c152014-10-14 21:30:28 +020038using namespace apache::thrift::concurrency;
T Jake Lucianib5e62212009-01-31 22:36:20 +000039using namespace apache::thrift::protocol;
40using namespace apache::thrift::transport;
41using namespace apache::thrift::server;
Mark Slee07a3aab2007-03-07 05:45:10 +000042
43using namespace tutorial;
44using namespace shared;
45
Mark Slee07a3aab2007-03-07 05:45:10 +000046class CalculatorHandler : public CalculatorIf {
Konrad Grochowski16a23a62014-11-13 15:33:38 +010047public:
Mark Slee07a3aab2007-03-07 05:45:10 +000048 CalculatorHandler() {}
49
Konrad Grochowski16a23a62014-11-13 15:33:38 +010050 void ping() { cout << "ping()" << endl; }
Mark Slee07a3aab2007-03-07 05:45:10 +000051
52 int32_t add(const int32_t n1, const int32_t n2) {
Konrad Grochowskia8eec712014-09-04 00:56:27 +020053 cout << "add(" << n1 << ", " << n2 << ")" << endl;
Mark Slee07a3aab2007-03-07 05:45:10 +000054 return n1 + n2;
55 }
56
Konrad Grochowskia8eec712014-09-04 00:56:27 +020057 int32_t calculate(const int32_t logid, const Work& work) {
58 cout << "calculate(" << logid << ", " << work << ")" << endl;
Mark Slee07a3aab2007-03-07 05:45:10 +000059 int32_t val;
60
61 switch (work.op) {
Bryan Duxbury833ae492010-09-27 17:26:02 +000062 case Operation::ADD:
Mark Slee07a3aab2007-03-07 05:45:10 +000063 val = work.num1 + work.num2;
64 break;
Bryan Duxbury833ae492010-09-27 17:26:02 +000065 case Operation::SUBTRACT:
Mark Slee07a3aab2007-03-07 05:45:10 +000066 val = work.num1 - work.num2;
67 break;
Bryan Duxbury833ae492010-09-27 17:26:02 +000068 case Operation::MULTIPLY:
Mark Slee07a3aab2007-03-07 05:45:10 +000069 val = work.num1 * work.num2;
70 break;
Bryan Duxbury833ae492010-09-27 17:26:02 +000071 case Operation::DIVIDE:
Mark Slee07a3aab2007-03-07 05:45:10 +000072 if (work.num2 == 0) {
73 InvalidOperation io;
74 io.what = work.op;
75 io.why = "Cannot divide by 0";
76 throw io;
77 }
78 val = work.num1 / work.num2;
79 break;
80 default:
81 InvalidOperation io;
82 io.what = work.op;
83 io.why = "Invalid Operation";
84 throw io;
85 }
86
87 SharedStruct ss;
88 ss.key = logid;
Konrad Grochowskia8eec712014-09-04 00:56:27 +020089 ss.value = to_string(val);
Mark Slee07a3aab2007-03-07 05:45:10 +000090
91 log[logid] = ss;
92
93 return val;
94 }
95
Konrad Grochowski16a23a62014-11-13 15:33:38 +010096 void getStruct(SharedStruct& ret, const int32_t logid) {
Konrad Grochowskia8eec712014-09-04 00:56:27 +020097 cout << "getStruct(" << logid << ")" << endl;
Mark Slee07a3aab2007-03-07 05:45:10 +000098 ret = log[logid];
99 }
100
Konrad Grochowski16a23a62014-11-13 15:33:38 +0100101 void zip() { cout << "zip()" << endl; }
Mark Slee07a3aab2007-03-07 05:45:10 +0000102
103protected:
104 map<int32_t, SharedStruct> log;
Mark Slee07a3aab2007-03-07 05:45:10 +0000105};
106
Konrad Grochowski157872d2014-11-06 19:55:28 +0100107int main() {
Roger Meier5f2d34e2013-11-16 16:43:41 +0100108 boost::shared_ptr<TProtocolFactory> protocolFactory(new TBinaryProtocolFactory());
109 boost::shared_ptr<CalculatorHandler> handler(new CalculatorHandler());
110 boost::shared_ptr<TProcessor> processor(new CalculatorProcessor(handler));
111 boost::shared_ptr<TServerTransport> serverTransport(new TServerSocket(9090));
112 boost::shared_ptr<TTransportFactory> transportFactory(new TBufferedTransportFactory());
Mark Slee07a3aab2007-03-07 05:45:10 +0000113
Konrad Grochowski16a23a62014-11-13 15:33:38 +0100114 TSimpleServer server(processor, serverTransport, transportFactory, protocolFactory);
Mark Slee07a3aab2007-03-07 05:45:10 +0000115
116 /**
117 * Or you could do one of these
118
Jens Geyer04a4c152014-10-14 21:30:28 +0200119 const int workerCount = 4;
120
Roger Meier5f2d34e2013-11-16 16:43:41 +0100121 boost::shared_ptr<ThreadManager> threadManager =
Mark Slee07a3aab2007-03-07 05:45:10 +0000122 ThreadManager::newSimpleThreadManager(workerCount);
Roger Meier5f2d34e2013-11-16 16:43:41 +0100123 boost::shared_ptr<PosixThreadFactory> threadFactory =
124 boost::shared_ptr<PosixThreadFactory>(new PosixThreadFactory());
Mark Slee07a3aab2007-03-07 05:45:10 +0000125 threadManager->threadFactory(threadFactory);
126 threadManager->start();
127 TThreadPoolServer server(processor,
128 serverTransport,
129 transportFactory,
130 protocolFactory,
131 threadManager);
132
133 TThreadedServer server(processor,
134 serverTransport,
135 transportFactory,
136 protocolFactory);
137
138 */
139
Konrad Grochowskia8eec712014-09-04 00:56:27 +0200140 cout << "Starting the server..." << endl;
Mark Slee07a3aab2007-03-07 05:45:10 +0000141 server.serve();
Konrad Grochowskia8eec712014-09-04 00:56:27 +0200142 cout << "Done." << endl;
Mark Slee07a3aab2007-03-07 05:45:10 +0000143 return 0;
144}