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> |
cyy | ca8af9b | 2019-01-11 22:13:12 +0800 | [diff] [blame] | 21 | #include <thrift/concurrency/ThreadFactory.h> |
Roger Meier | 49ff8b1 | 2012-04-13 09:12:31 +0000 | [diff] [blame] | 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> |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 27 | #include <thrift/transport/TSocket.h> |
Roger Meier | 49ff8b1 | 2012-04-13 09:12:31 +0000 | [diff] [blame] | 28 | #include <thrift/transport/TTransportUtils.h> |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 29 | #include <thrift/TToString.h> |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 30 | |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 31 | #include <iostream> |
| 32 | #include <stdexcept> |
| 33 | #include <sstream> |
| 34 | |
| 35 | #include "../gen-cpp/Calculator.h" |
| 36 | |
| 37 | using namespace std; |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 38 | using namespace apache::thrift; |
Jens Geyer | 04a4c15 | 2014-10-14 21:30:28 +0200 | [diff] [blame] | 39 | using namespace apache::thrift::concurrency; |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 40 | using namespace apache::thrift::protocol; |
| 41 | using namespace apache::thrift::transport; |
| 42 | using namespace apache::thrift::server; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 43 | |
| 44 | using namespace tutorial; |
| 45 | using namespace shared; |
| 46 | |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 47 | class CalculatorHandler : public CalculatorIf { |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 48 | public: |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 49 | CalculatorHandler() {} |
| 50 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 51 | void ping() { cout << "ping()" << endl; } |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 52 | |
| 53 | int32_t add(const int32_t n1, const int32_t n2) { |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 54 | cout << "add(" << n1 << ", " << n2 << ")" << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 55 | return n1 + n2; |
| 56 | } |
| 57 | |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 58 | int32_t calculate(const int32_t logid, const Work& work) { |
| 59 | cout << "calculate(" << logid << ", " << work << ")" << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 60 | int32_t val; |
| 61 | |
| 62 | switch (work.op) { |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 63 | case Operation::ADD: |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 64 | val = work.num1 + work.num2; |
| 65 | break; |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 66 | case Operation::SUBTRACT: |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 67 | val = work.num1 - work.num2; |
| 68 | break; |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 69 | case Operation::MULTIPLY: |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 70 | val = work.num1 * work.num2; |
| 71 | break; |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 72 | case Operation::DIVIDE: |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 73 | if (work.num2 == 0) { |
| 74 | InvalidOperation io; |
Konrad Grochowski | 3b115df | 2015-05-18 17:58:36 +0200 | [diff] [blame] | 75 | io.whatOp = work.op; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 76 | io.why = "Cannot divide by 0"; |
| 77 | throw io; |
| 78 | } |
| 79 | val = work.num1 / work.num2; |
| 80 | break; |
| 81 | default: |
| 82 | InvalidOperation io; |
Konrad Grochowski | 3b115df | 2015-05-18 17:58:36 +0200 | [diff] [blame] | 83 | io.whatOp = work.op; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 84 | io.why = "Invalid Operation"; |
| 85 | throw io; |
| 86 | } |
| 87 | |
| 88 | SharedStruct ss; |
| 89 | ss.key = logid; |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 90 | ss.value = to_string(val); |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 91 | |
| 92 | log[logid] = ss; |
| 93 | |
| 94 | return val; |
| 95 | } |
| 96 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 97 | void getStruct(SharedStruct& ret, const int32_t logid) { |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 98 | cout << "getStruct(" << logid << ")" << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 99 | ret = log[logid]; |
| 100 | } |
| 101 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 102 | void zip() { cout << "zip()" << endl; } |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 103 | |
| 104 | protected: |
| 105 | map<int32_t, SharedStruct> log; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 106 | }; |
| 107 | |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 108 | /* |
| 109 | CalculatorIfFactory is code generated. |
| 110 | CalculatorCloneFactory is useful for getting access to the server side of the |
| 111 | transport. It is also useful for making per-connection state. Without this |
| 112 | CloneFactory, all connections will end up sharing the same handler instance. |
| 113 | */ |
| 114 | class CalculatorCloneFactory : virtual public CalculatorIfFactory { |
| 115 | public: |
| 116 | virtual ~CalculatorCloneFactory() {} |
| 117 | virtual CalculatorIf* getHandler(const ::apache::thrift::TConnectionInfo& connInfo) |
| 118 | { |
cyy | 316723a | 2019-01-05 16:35:14 +0800 | [diff] [blame] | 119 | std::shared_ptr<TSocket> sock = std::dynamic_pointer_cast<TSocket>(connInfo.transport); |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 120 | cout << "Incoming connection\n"; |
| 121 | cout << "\tSocketInfo: " << sock->getSocketInfo() << "\n"; |
| 122 | cout << "\tPeerHost: " << sock->getPeerHost() << "\n"; |
| 123 | cout << "\tPeerAddress: " << sock->getPeerAddress() << "\n"; |
| 124 | cout << "\tPeerPort: " << sock->getPeerPort() << "\n"; |
| 125 | return new CalculatorHandler; |
| 126 | } |
| 127 | virtual void releaseHandler( ::shared::SharedServiceIf* handler) { |
| 128 | delete handler; |
| 129 | } |
| 130 | }; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 131 | |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 132 | int main() { |
| 133 | TThreadedServer server( |
cyy | 316723a | 2019-01-05 16:35:14 +0800 | [diff] [blame] | 134 | std::make_shared<CalculatorProcessorFactory>(std::make_shared<CalculatorCloneFactory>()), |
| 135 | std::make_shared<TServerSocket>(9090), //port |
| 136 | std::make_shared<TBufferedTransportFactory>(), |
| 137 | std::make_shared<TBinaryProtocolFactory>()); |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 138 | |
| 139 | /* |
| 140 | // if you don't need per-connection state, do the following instead |
| 141 | TThreadedServer server( |
cyy | 316723a | 2019-01-05 16:35:14 +0800 | [diff] [blame] | 142 | std::make_shared<CalculatorProcessor>(std::make_shared<CalculatorHandler>()), |
| 143 | std::make_shared<TServerSocket>(9090), //port |
| 144 | std::make_shared<TBufferedTransportFactory>(), |
| 145 | std::make_shared<TBinaryProtocolFactory>()); |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 146 | */ |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 147 | |
| 148 | /** |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 149 | * Here are some alternate server types... |
| 150 | |
| 151 | // This server only allows one connection at a time, but spawns no threads |
| 152 | TSimpleServer server( |
cyy | 316723a | 2019-01-05 16:35:14 +0800 | [diff] [blame] | 153 | std::make_shared<CalculatorProcessor>(std::make_shared<CalculatorHandler>()), |
| 154 | std::make_shared<TServerSocket>(9090), |
| 155 | std::make_shared<TBufferedTransportFactory>(), |
| 156 | std::make_shared<TBinaryProtocolFactory>()); |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 157 | |
Jens Geyer | 04a4c15 | 2014-10-14 21:30:28 +0200 | [diff] [blame] | 158 | const int workerCount = 4; |
| 159 | |
cyy | 316723a | 2019-01-05 16:35:14 +0800 | [diff] [blame] | 160 | std::shared_ptr<ThreadManager> threadManager = |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 161 | ThreadManager::newSimpleThreadManager(workerCount); |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 162 | threadManager->threadFactory( |
cyy | ca8af9b | 2019-01-11 22:13:12 +0800 | [diff] [blame] | 163 | std::make_shared<ThreadFactory>()); |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 164 | threadManager->start(); |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 165 | |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 166 | // This server allows "workerCount" connection at a time, and reuses threads |
| 167 | TThreadPoolServer server( |
cyy | 316723a | 2019-01-05 16:35:14 +0800 | [diff] [blame] | 168 | std::make_shared<CalculatorProcessorFactory>(std::make_shared<CalculatorCloneFactory>()), |
| 169 | std::make_shared<TServerSocket>(9090), |
| 170 | std::make_shared<TBufferedTransportFactory>(), |
| 171 | std::make_shared<TBinaryProtocolFactory>(), |
Ben Craig | 74086f1 | 2015-07-04 17:18:58 -0500 | [diff] [blame] | 172 | threadManager); |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 173 | */ |
| 174 | |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 175 | cout << "Starting the server..." << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 176 | server.serve(); |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 177 | cout << "Done." << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 178 | return 0; |
| 179 | } |