David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 1 | /* |
| 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 Meier | 49ff8b1 | 2012-04-13 09:12:31 +0000 | [diff] [blame] | 20 | #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 Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 28 | #include <thrift/TToString.h> |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 29 | |
| 30 | #include <iostream> |
| 31 | #include <stdexcept> |
| 32 | #include <sstream> |
| 33 | |
| 34 | #include "../gen-cpp/Calculator.h" |
| 35 | |
| 36 | using namespace std; |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 37 | using namespace apache::thrift; |
Jens Geyer | 04a4c15 | 2014-10-14 21:30:28 +0200 | [diff] [blame] | 38 | using namespace apache::thrift::concurrency; |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 39 | using namespace apache::thrift::protocol; |
| 40 | using namespace apache::thrift::transport; |
| 41 | using namespace apache::thrift::server; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 42 | |
| 43 | using namespace tutorial; |
| 44 | using namespace shared; |
| 45 | |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 46 | class CalculatorHandler : public CalculatorIf { |
| 47 | public: |
| 48 | CalculatorHandler() {} |
| 49 | |
| 50 | void ping() { |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 51 | cout << "ping()" << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | int32_t add(const int32_t n1, const int32_t n2) { |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 55 | cout << "add(" << n1 << ", " << n2 << ")" << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 56 | return n1 + n2; |
| 57 | } |
| 58 | |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 59 | int32_t calculate(const int32_t logid, const Work& work) { |
| 60 | cout << "calculate(" << logid << ", " << work << ")" << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 61 | int32_t val; |
| 62 | |
| 63 | switch (work.op) { |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 64 | case Operation::ADD: |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 65 | val = work.num1 + work.num2; |
| 66 | break; |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 67 | case Operation::SUBTRACT: |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 68 | val = work.num1 - work.num2; |
| 69 | break; |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 70 | case Operation::MULTIPLY: |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 71 | val = work.num1 * work.num2; |
| 72 | break; |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 73 | case Operation::DIVIDE: |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 74 | if (work.num2 == 0) { |
| 75 | InvalidOperation io; |
| 76 | io.what = work.op; |
| 77 | io.why = "Cannot divide by 0"; |
| 78 | throw io; |
| 79 | } |
| 80 | val = work.num1 / work.num2; |
| 81 | break; |
| 82 | default: |
| 83 | InvalidOperation io; |
| 84 | io.what = work.op; |
| 85 | io.why = "Invalid Operation"; |
| 86 | throw io; |
| 87 | } |
| 88 | |
| 89 | SharedStruct ss; |
| 90 | ss.key = logid; |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 91 | ss.value = to_string(val); |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 92 | |
| 93 | log[logid] = ss; |
| 94 | |
| 95 | return val; |
| 96 | } |
| 97 | |
| 98 | void getStruct(SharedStruct &ret, const int32_t logid) { |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 99 | cout << "getStruct(" << logid << ")" << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 100 | ret = log[logid]; |
| 101 | } |
| 102 | |
| 103 | void zip() { |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 104 | cout << "zip()" << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | protected: |
| 108 | map<int32_t, SharedStruct> log; |
| 109 | |
| 110 | }; |
| 111 | |
Konrad Grochowski | 157872d | 2014-11-06 19:55:28 +0100 | [diff] [blame^] | 112 | int main() { |
Roger Meier | 5f2d34e | 2013-11-16 16:43:41 +0100 | [diff] [blame] | 113 | boost::shared_ptr<TProtocolFactory> protocolFactory(new TBinaryProtocolFactory()); |
| 114 | boost::shared_ptr<CalculatorHandler> handler(new CalculatorHandler()); |
| 115 | boost::shared_ptr<TProcessor> processor(new CalculatorProcessor(handler)); |
| 116 | boost::shared_ptr<TServerTransport> serverTransport(new TServerSocket(9090)); |
| 117 | boost::shared_ptr<TTransportFactory> transportFactory(new TBufferedTransportFactory()); |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 118 | |
| 119 | TSimpleServer server(processor, |
| 120 | serverTransport, |
| 121 | transportFactory, |
| 122 | protocolFactory); |
| 123 | |
| 124 | |
| 125 | /** |
| 126 | * Or you could do one of these |
| 127 | |
Jens Geyer | 04a4c15 | 2014-10-14 21:30:28 +0200 | [diff] [blame] | 128 | const int workerCount = 4; |
| 129 | |
Roger Meier | 5f2d34e | 2013-11-16 16:43:41 +0100 | [diff] [blame] | 130 | boost::shared_ptr<ThreadManager> threadManager = |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 131 | ThreadManager::newSimpleThreadManager(workerCount); |
Roger Meier | 5f2d34e | 2013-11-16 16:43:41 +0100 | [diff] [blame] | 132 | boost::shared_ptr<PosixThreadFactory> threadFactory = |
| 133 | boost::shared_ptr<PosixThreadFactory>(new PosixThreadFactory()); |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 134 | threadManager->threadFactory(threadFactory); |
| 135 | threadManager->start(); |
| 136 | TThreadPoolServer server(processor, |
| 137 | serverTransport, |
| 138 | transportFactory, |
| 139 | protocolFactory, |
| 140 | threadManager); |
| 141 | |
| 142 | TThreadedServer server(processor, |
| 143 | serverTransport, |
| 144 | transportFactory, |
| 145 | protocolFactory); |
| 146 | |
| 147 | */ |
| 148 | |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 149 | cout << "Starting the server..." << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 150 | server.serve(); |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 151 | cout << "Done." << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 152 | return 0; |
| 153 | } |