blob: 22040764531f20f57d7a5fff9d60c2edbda7b995 [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(shared_ptr<TProcessor> processor,
Mark Sleed788b2e2006-09-07 01:26:35 +0000112 shared_ptr<TServerTransport> serverTransport,
113 shared_ptr<TTransportFactory> transportFactory,
Mark Slee4af6ed72006-10-25 19:02:49 +0000114 shared_ptr<TProtocolFactory> protocolFactory,
Mark Slee4af6ed72006-10-25 19:02:49 +0000115 shared_ptr<ThreadManager> threadManager) :
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000116 TServer(processor, serverTransport, transportFactory, protocolFactory),
Mark Slee6e3f6372007-03-01 22:05:46 +0000117 threadManager_(threadManager),
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000118 stop_(false), timeout_(0) {}
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000119
120TThreadPoolServer::TThreadPoolServer(shared_ptr<TProcessor> processor,
121 shared_ptr<TServerTransport> serverTransport,
122 shared_ptr<TTransportFactory> inputTransportFactory,
123 shared_ptr<TTransportFactory> outputTransportFactory,
124 shared_ptr<TProtocolFactory> inputProtocolFactory,
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000125 shared_ptr<TProtocolFactory> outputProtocolFactory,
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000126 shared_ptr<ThreadManager> threadManager) :
127 TServer(processor, serverTransport, inputTransportFactory, outputTransportFactory,
128 inputProtocolFactory, outputProtocolFactory),
Mark Slee6e3f6372007-03-01 22:05:46 +0000129 threadManager_(threadManager),
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000130 stop_(false), timeout_(0) {}
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000131
Mark Sleed788b2e2006-09-07 01:26:35 +0000132
Marc Slemko16698852006-08-04 03:16:10 +0000133TThreadPoolServer::~TThreadPoolServer() {}
134
Mark Slee794993d2006-09-20 01:56:10 +0000135void TThreadPoolServer::serve() {
Mark Sleed788b2e2006-09-07 01:26:35 +0000136 shared_ptr<TTransport> client;
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000137 shared_ptr<TTransport> inputTransport;
138 shared_ptr<TTransport> outputTransport;
139 shared_ptr<TProtocol> inputProtocol;
140 shared_ptr<TProtocol> outputProtocol;
Mark Sleed788b2e2006-09-07 01:26:35 +0000141
Marc Slemko16698852006-08-04 03:16:10 +0000142 try {
143 // Start the server listening
144 serverTransport_->listen();
145 } catch (TTransportException& ttx) {
Mark Slee2e8a8d42008-01-16 00:38:20 +0000146 string errStr = string("TThreadPoolServer::run() listen(): ") + ttx.what();
147 GlobalOutput(errStr.c_str());
Marc Slemko16698852006-08-04 03:16:10 +0000148 return;
149 }
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000150
151 // Run the preServe event
152 if (eventHandler_ != NULL) {
153 eventHandler_->preServe();
154 }
155
Mark Slee6e3f6372007-03-01 22:05:46 +0000156 while (!stop_) {
Marc Slemko16698852006-08-04 03:16:10 +0000157 try {
Mark Slee3303f362007-03-05 20:09:37 +0000158 client.reset();
159 inputTransport.reset();
160 outputTransport.reset();
161 inputProtocol.reset();
162 outputProtocol.reset();
163
Mark Sleed788b2e2006-09-07 01:26:35 +0000164 // Fetch client from server
165 client = serverTransport_->accept();
Mark Sleea5a783f2007-03-02 19:41:08 +0000166
Mark Sleed788b2e2006-09-07 01:26:35 +0000167 // Make IO transports
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000168 inputTransport = inputTransportFactory_->getTransport(client);
169 outputTransport = outputTransportFactory_->getTransport(client);
170 inputProtocol = inputProtocolFactory_->getProtocol(inputTransport);
171 outputProtocol = outputProtocolFactory_->getProtocol(outputTransport);
Mark Slee4af6ed72006-10-25 19:02:49 +0000172
Mark Sleed788b2e2006-09-07 01:26:35 +0000173 // Add to threadmanager pool
David Reiss23248712010-10-06 17:10:08 +0000174 threadManager_->add(shared_ptr<TThreadPoolServer::Task>(new TThreadPoolServer::Task(*this, processor_, inputProtocol, outputProtocol, client)), timeout_);
Mark Sleea5a783f2007-03-02 19:41:08 +0000175
Marc Slemko16698852006-08-04 03:16:10 +0000176 } catch (TTransportException& ttx) {
Mark Slee3303f362007-03-05 20:09:37 +0000177 if (inputTransport != NULL) { inputTransport->close(); }
178 if (outputTransport != NULL) { outputTransport->close(); }
179 if (client != NULL) { client->close(); }
Mark Sleea5a783f2007-03-02 19:41:08 +0000180 if (!stop_ || ttx.getType() != TTransportException::INTERRUPTED) {
Mark Slee2e8a8d42008-01-16 00:38:20 +0000181 string errStr = string("TThreadPoolServer: TServerTransport died on accept: ") + ttx.what();
182 GlobalOutput(errStr.c_str());
Mark Sleea5a783f2007-03-02 19:41:08 +0000183 }
Aditya Agarwalfdef47e2007-02-07 03:54:18 +0000184 continue;
185 } catch (TException& tx) {
Mark Slee3303f362007-03-05 20:09:37 +0000186 if (inputTransport != NULL) { inputTransport->close(); }
187 if (outputTransport != NULL) { outputTransport->close(); }
188 if (client != NULL) { client->close(); }
Mark Slee2e8a8d42008-01-16 00:38:20 +0000189 string errStr = string("TThreadPoolServer: Caught TException: ") + tx.what();
190 GlobalOutput(errStr.c_str());
Aditya Agarwalfdef47e2007-02-07 03:54:18 +0000191 continue;
192 } catch (string s) {
Mark Slee3303f362007-03-05 20:09:37 +0000193 if (inputTransport != NULL) { inputTransport->close(); }
194 if (outputTransport != NULL) { outputTransport->close(); }
195 if (client != NULL) { client->close(); }
Mark Slee2e8a8d42008-01-16 00:38:20 +0000196 string errStr = "TThreadPoolServer: Unknown exception: " + s;
197 GlobalOutput(errStr.c_str());
Marc Slemko16698852006-08-04 03:16:10 +0000198 break;
199 }
200 }
Mark Slee6e3f6372007-03-01 22:05:46 +0000201
202 // If stopped manually, join the existing threads
203 if (stop_) {
204 try {
205 serverTransport_->close();
206 threadManager_->join();
207 } catch (TException &tx) {
Mark Slee2e8a8d42008-01-16 00:38:20 +0000208 string errStr = string("TThreadPoolServer: Exception shutting down: ") + tx.what();
209 GlobalOutput(errStr.c_str());
Mark Slee6e3f6372007-03-01 22:05:46 +0000210 }
Mark Sleea5a783f2007-03-02 19:41:08 +0000211 stop_ = false;
Mark Slee6e3f6372007-03-01 22:05:46 +0000212 }
Mark Slee6e3f6372007-03-01 22:05:46 +0000213
Marc Slemko16698852006-08-04 03:16:10 +0000214}
Marc Slemko35452342006-08-03 19:01:37 +0000215
Mark Slee9b82d272007-05-23 05:16:07 +0000216int64_t TThreadPoolServer::getTimeout() const {
217 return timeout_;
218}
219
220void TThreadPoolServer::setTimeout(int64_t value) {
221 timeout_ = value;
222}
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000223
T Jake Lucianib5e62212009-01-31 22:36:20 +0000224}}} // apache::thrift::server