blob: c16e32f61b5113bb45c51d9843da6b08d8c7714a [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 */
Mark Slee9f0c6512007-02-28 23:58:26 +000019
Marc Slemko35452342006-08-03 19:01:37 +000020#include "server/TThreadPoolServer.h"
Marc Slemko35452342006-08-03 19:01:37 +000021#include "transport/TTransportException.h"
22#include "concurrency/Thread.h"
23#include "concurrency/ThreadManager.h"
24#include <string>
25#include <iostream>
26
T Jake Lucianib5e62212009-01-31 22:36:20 +000027namespace apache { namespace thrift { namespace server {
Marc Slemko35452342006-08-03 19:01:37 +000028
Mark Slee5ea15f92007-03-05 22:55:59 +000029using boost::shared_ptr;
Marc Slemko35452342006-08-03 19:01:37 +000030using namespace std;
T Jake Lucianib5e62212009-01-31 22:36:20 +000031using namespace apache::thrift;
32using namespace apache::thrift::concurrency;
Roger Meier0069cc42010-10-13 18:10:18 +000033using namespace apache::thrift::protocol;
T Jake Lucianib5e62212009-01-31 22:36:20 +000034using namespace apache::thrift::transport;
Marc Slemko35452342006-08-03 19:01:37 +000035
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000036class TThreadPoolServer::Task : public Runnable {
37
Marc Slemko16698852006-08-04 03:16:10 +000038public:
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000039
40 Task(TThreadPoolServer &server,
41 shared_ptr<TProcessor> processor,
Mark Slee4af6ed72006-10-25 19:02:49 +000042 shared_ptr<TProtocol> input,
David Reiss23248712010-10-06 17:10:08 +000043 shared_ptr<TProtocol> output,
44 shared_ptr<TTransport> transport) :
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000045 server_(server),
Mark Slee2f6404d2006-10-10 01:37:40 +000046 processor_(processor),
47 input_(input),
David Reiss23248712010-10-06 17:10:08 +000048 output_(output),
49 transport_(transport) {
Marc Slemko35452342006-08-03 19:01:37 +000050 }
Marc Slemko16698852006-08-04 03:16:10 +000051
52 ~Task() {}
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000053
Mark Sleeeb0d0242007-01-25 07:58:55 +000054 void run() {
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000055 boost::shared_ptr<TServerEventHandler> eventHandler =
56 server_.getEventHandler();
David Reiss23248712010-10-06 17:10:08 +000057 void* connectionContext = NULL;
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000058 if (eventHandler != NULL) {
David Reiss23248712010-10-06 17:10:08 +000059 connectionContext = eventHandler->createContext(input_, output_);
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000060 }
Mark Sleeb9ff32a2006-11-16 01:00:24 +000061 try {
David Reiss23248712010-10-06 17:10:08 +000062 for (;;) {
63 if (eventHandler != NULL) {
64 eventHandler->processContext(connectionContext, transport_);
65 }
66 if (!processor_->process(input_, output_, connectionContext) ||
67 !input_->getTransport()->peek()) {
Mark Sleeb9ff32a2006-11-16 01:00:24 +000068 break;
69 }
Marc Slemko35452342006-08-03 19:01:37 +000070 }
Bryan Duxbury1e987582011-08-25 17:33:03 +000071 } catch (const TTransportException& ttx) {
Martin Kraemeree341cb2007-02-05 21:40:38 +000072 // This is reasonably expected, client didn't send a full request so just
73 // ignore him
Mark Slee2e8a8d42008-01-16 00:38:20 +000074 // string errStr = string("TThreadPoolServer client died: ") + ttx.what();
75 // GlobalOutput(errStr.c_str());
Bryan Duxbury1e987582011-08-25 17:33:03 +000076 } catch (const std::exception& x) {
77 GlobalOutput.printf("TThreadPoolServer exception %s: %s",
78 typeid(x).name(), x.what());
David Reiss58e4d2c2010-03-09 05:19:43 +000079 } catch (...) {
80 GlobalOutput("TThreadPoolServer, unexpected exception in "
81 "TThreadPoolServer::Task::run()");
Marc Slemko35452342006-08-03 19:01:37 +000082 }
pfunge8abada2008-01-05 23:23:53 +000083
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000084 if (eventHandler != NULL) {
David Reiss23248712010-10-06 17:10:08 +000085 eventHandler->deleteContext(connectionContext, input_, output_);
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000086 }
Mark Slee2e8a8d42008-01-16 00:38:20 +000087
88 try {
89 input_->getTransport()->close();
90 } catch (TTransportException& ttx) {
91 string errStr = string("TThreadPoolServer input close failed: ") + ttx.what();
92 GlobalOutput(errStr.c_str());
93 }
94 try {
95 output_->getTransport()->close();
96 } catch (TTransportException& ttx) {
97 string errStr = string("TThreadPoolServer output close failed: ") + ttx.what();
98 GlobalOutput(errStr.c_str());
99 }
100
Marc Slemko35452342006-08-03 19:01:37 +0000101 }
Mark Slee2f6404d2006-10-10 01:37:40 +0000102
103 private:
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000104 TServer& server_;
Mark Slee2f6404d2006-10-10 01:37:40 +0000105 shared_ptr<TProcessor> processor_;
Mark Slee4af6ed72006-10-25 19:02:49 +0000106 shared_ptr<TProtocol> input_;
107 shared_ptr<TProtocol> output_;
David Reiss23248712010-10-06 17:10:08 +0000108 shared_ptr<TTransport> transport_;
Marc Slemko35452342006-08-03 19:01:37 +0000109};
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000110
Marc Slemko16698852006-08-04 03:16:10 +0000111TThreadPoolServer::~TThreadPoolServer() {}
112
Mark Slee794993d2006-09-20 01:56:10 +0000113void TThreadPoolServer::serve() {
Mark Sleed788b2e2006-09-07 01:26:35 +0000114 shared_ptr<TTransport> client;
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000115 shared_ptr<TTransport> inputTransport;
116 shared_ptr<TTransport> outputTransport;
117 shared_ptr<TProtocol> inputProtocol;
118 shared_ptr<TProtocol> outputProtocol;
Mark Sleed788b2e2006-09-07 01:26:35 +0000119
Marc Slemko16698852006-08-04 03:16:10 +0000120 try {
121 // Start the server listening
122 serverTransport_->listen();
123 } catch (TTransportException& ttx) {
Mark Slee2e8a8d42008-01-16 00:38:20 +0000124 string errStr = string("TThreadPoolServer::run() listen(): ") + ttx.what();
125 GlobalOutput(errStr.c_str());
Marc Slemko16698852006-08-04 03:16:10 +0000126 return;
127 }
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000128
129 // Run the preServe event
130 if (eventHandler_ != NULL) {
131 eventHandler_->preServe();
132 }
133
Mark Slee6e3f6372007-03-01 22:05:46 +0000134 while (!stop_) {
Marc Slemko16698852006-08-04 03:16:10 +0000135 try {
Mark Slee3303f362007-03-05 20:09:37 +0000136 client.reset();
137 inputTransport.reset();
138 outputTransport.reset();
139 inputProtocol.reset();
140 outputProtocol.reset();
141
Mark Sleed788b2e2006-09-07 01:26:35 +0000142 // Fetch client from server
143 client = serverTransport_->accept();
Mark Sleea5a783f2007-03-02 19:41:08 +0000144
Mark Sleed788b2e2006-09-07 01:26:35 +0000145 // Make IO transports
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000146 inputTransport = inputTransportFactory_->getTransport(client);
147 outputTransport = outputTransportFactory_->getTransport(client);
148 inputProtocol = inputProtocolFactory_->getProtocol(inputTransport);
149 outputProtocol = outputProtocolFactory_->getProtocol(outputTransport);
Mark Slee4af6ed72006-10-25 19:02:49 +0000150
Bryan Duxbury6dd9cd02011-09-01 18:06:20 +0000151 shared_ptr<TProcessor> processor = getProcessor(inputProtocol,
152 outputProtocol, client);
153
Mark Sleed788b2e2006-09-07 01:26:35 +0000154 // Add to threadmanager pool
Bryan Duxbury6dd9cd02011-09-01 18:06:20 +0000155 shared_ptr<TThreadPoolServer::Task> task(new TThreadPoolServer::Task(
156 *this, processor, inputProtocol, outputProtocol, client));
157 threadManager_->add(task, timeout_);
Mark Sleea5a783f2007-03-02 19:41:08 +0000158
Marc Slemko16698852006-08-04 03:16:10 +0000159 } catch (TTransportException& ttx) {
Mark Slee3303f362007-03-05 20:09:37 +0000160 if (inputTransport != NULL) { inputTransport->close(); }
161 if (outputTransport != NULL) { outputTransport->close(); }
162 if (client != NULL) { client->close(); }
Mark Sleea5a783f2007-03-02 19:41:08 +0000163 if (!stop_ || ttx.getType() != TTransportException::INTERRUPTED) {
Mark Slee2e8a8d42008-01-16 00:38:20 +0000164 string errStr = string("TThreadPoolServer: TServerTransport died on accept: ") + ttx.what();
165 GlobalOutput(errStr.c_str());
Mark Sleea5a783f2007-03-02 19:41:08 +0000166 }
Aditya Agarwalfdef47e2007-02-07 03:54:18 +0000167 continue;
168 } catch (TException& tx) {
Mark Slee3303f362007-03-05 20:09:37 +0000169 if (inputTransport != NULL) { inputTransport->close(); }
170 if (outputTransport != NULL) { outputTransport->close(); }
171 if (client != NULL) { client->close(); }
Mark Slee2e8a8d42008-01-16 00:38:20 +0000172 string errStr = string("TThreadPoolServer: Caught TException: ") + tx.what();
173 GlobalOutput(errStr.c_str());
Aditya Agarwalfdef47e2007-02-07 03:54:18 +0000174 continue;
175 } catch (string s) {
Mark Slee3303f362007-03-05 20:09:37 +0000176 if (inputTransport != NULL) { inputTransport->close(); }
177 if (outputTransport != NULL) { outputTransport->close(); }
178 if (client != NULL) { client->close(); }
Mark Slee2e8a8d42008-01-16 00:38:20 +0000179 string errStr = "TThreadPoolServer: Unknown exception: " + s;
180 GlobalOutput(errStr.c_str());
Marc Slemko16698852006-08-04 03:16:10 +0000181 break;
182 }
183 }
Mark Slee6e3f6372007-03-01 22:05:46 +0000184
185 // If stopped manually, join the existing threads
186 if (stop_) {
187 try {
188 serverTransport_->close();
189 threadManager_->join();
190 } catch (TException &tx) {
Mark Slee2e8a8d42008-01-16 00:38:20 +0000191 string errStr = string("TThreadPoolServer: Exception shutting down: ") + tx.what();
192 GlobalOutput(errStr.c_str());
Mark Slee6e3f6372007-03-01 22:05:46 +0000193 }
Mark Sleea5a783f2007-03-02 19:41:08 +0000194 stop_ = false;
Mark Slee6e3f6372007-03-01 22:05:46 +0000195 }
Mark Slee6e3f6372007-03-01 22:05:46 +0000196
Marc Slemko16698852006-08-04 03:16:10 +0000197}
Marc Slemko35452342006-08-03 19:01:37 +0000198
Mark Slee9b82d272007-05-23 05:16:07 +0000199int64_t TThreadPoolServer::getTimeout() const {
200 return timeout_;
201}
202
203void TThreadPoolServer::setTimeout(int64_t value) {
204 timeout_ = value;
205}
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000206
T Jake Lucianib5e62212009-01-31 22:36:20 +0000207}}} // apache::thrift::server