blob: 0894cfa5f8293b6ae14eede3529e7330a77885ab [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;
33using namespace apache::thrift::protocol;;
34using 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,
43 shared_ptr<TProtocol> output) :
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000044 server_(server),
Mark Slee2f6404d2006-10-10 01:37:40 +000045 processor_(processor),
46 input_(input),
47 output_(output) {
Marc Slemko35452342006-08-03 19:01:37 +000048 }
Marc Slemko16698852006-08-04 03:16:10 +000049
50 ~Task() {}
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000051
Mark Sleeeb0d0242007-01-25 07:58:55 +000052 void run() {
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000053 boost::shared_ptr<TServerEventHandler> eventHandler =
54 server_.getEventHandler();
55 if (eventHandler != NULL) {
56 eventHandler->clientBegin(input_, output_);
57 }
Mark Sleeb9ff32a2006-11-16 01:00:24 +000058 try {
59 while (processor_->process(input_, output_)) {
Aditya Agarwal9abb0d62007-01-24 22:53:54 +000060 if (!input_->getTransport()->peek()) {
Mark Sleeb9ff32a2006-11-16 01:00:24 +000061 break;
62 }
Marc Slemko35452342006-08-03 19:01:37 +000063 }
Mark Sleeb9ff32a2006-11-16 01:00:24 +000064 } catch (TTransportException& ttx) {
Martin Kraemeree341cb2007-02-05 21:40:38 +000065 // This is reasonably expected, client didn't send a full request so just
66 // ignore him
Mark Slee2e8a8d42008-01-16 00:38:20 +000067 // string errStr = string("TThreadPoolServer client died: ") + ttx.what();
68 // GlobalOutput(errStr.c_str());
Mark Sleeb9ff32a2006-11-16 01:00:24 +000069 } catch (TException& x) {
Mark Slee2e8a8d42008-01-16 00:38:20 +000070 string errStr = string("TThreadPoolServer exception: ") + x.what();
71 GlobalOutput(errStr.c_str());
pfung78ee85c2007-12-13 22:30:47 +000072 } catch (std::exception &x) {
Mark Slee2e8a8d42008-01-16 00:38:20 +000073 string errStr = string("TThreadPoolServer, std::exception: ") + x.what();
74 GlobalOutput(errStr.c_str());
Marc Slemko35452342006-08-03 19:01:37 +000075 }
pfunge8abada2008-01-05 23:23:53 +000076
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000077 if (eventHandler != NULL) {
78 eventHandler->clientEnd(input_, output_);
79 }
Mark Slee2e8a8d42008-01-16 00:38:20 +000080
81 try {
82 input_->getTransport()->close();
83 } catch (TTransportException& ttx) {
84 string errStr = string("TThreadPoolServer input close failed: ") + ttx.what();
85 GlobalOutput(errStr.c_str());
86 }
87 try {
88 output_->getTransport()->close();
89 } catch (TTransportException& ttx) {
90 string errStr = string("TThreadPoolServer output close failed: ") + ttx.what();
91 GlobalOutput(errStr.c_str());
92 }
93
Marc Slemko35452342006-08-03 19:01:37 +000094 }
Mark Slee2f6404d2006-10-10 01:37:40 +000095
96 private:
Mark Sleeb4d3e7b2007-11-28 01:51:43 +000097 TServer& server_;
Mark Slee2f6404d2006-10-10 01:37:40 +000098 shared_ptr<TProcessor> processor_;
Mark Slee4af6ed72006-10-25 19:02:49 +000099 shared_ptr<TProtocol> input_;
100 shared_ptr<TProtocol> output_;
Mark Slee2f6404d2006-10-10 01:37:40 +0000101
Marc Slemko35452342006-08-03 19:01:37 +0000102};
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000103
Marc Slemko16698852006-08-04 03:16:10 +0000104TThreadPoolServer::TThreadPoolServer(shared_ptr<TProcessor> processor,
Mark Sleed788b2e2006-09-07 01:26:35 +0000105 shared_ptr<TServerTransport> serverTransport,
106 shared_ptr<TTransportFactory> transportFactory,
Mark Slee4af6ed72006-10-25 19:02:49 +0000107 shared_ptr<TProtocolFactory> protocolFactory,
Mark Slee4af6ed72006-10-25 19:02:49 +0000108 shared_ptr<ThreadManager> threadManager) :
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000109 TServer(processor, serverTransport, transportFactory, protocolFactory),
Mark Slee6e3f6372007-03-01 22:05:46 +0000110 threadManager_(threadManager),
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000111 stop_(false), timeout_(0) {}
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000112
113TThreadPoolServer::TThreadPoolServer(shared_ptr<TProcessor> processor,
114 shared_ptr<TServerTransport> serverTransport,
115 shared_ptr<TTransportFactory> inputTransportFactory,
116 shared_ptr<TTransportFactory> outputTransportFactory,
117 shared_ptr<TProtocolFactory> inputProtocolFactory,
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000118 shared_ptr<TProtocolFactory> outputProtocolFactory,
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000119 shared_ptr<ThreadManager> threadManager) :
120 TServer(processor, serverTransport, inputTransportFactory, outputTransportFactory,
121 inputProtocolFactory, outputProtocolFactory),
Mark Slee6e3f6372007-03-01 22:05:46 +0000122 threadManager_(threadManager),
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000123 stop_(false), timeout_(0) {}
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000124
Mark Sleed788b2e2006-09-07 01:26:35 +0000125
Marc Slemko16698852006-08-04 03:16:10 +0000126TThreadPoolServer::~TThreadPoolServer() {}
127
Mark Slee794993d2006-09-20 01:56:10 +0000128void TThreadPoolServer::serve() {
Mark Sleed788b2e2006-09-07 01:26:35 +0000129 shared_ptr<TTransport> client;
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000130 shared_ptr<TTransport> inputTransport;
131 shared_ptr<TTransport> outputTransport;
132 shared_ptr<TProtocol> inputProtocol;
133 shared_ptr<TProtocol> outputProtocol;
Mark Sleed788b2e2006-09-07 01:26:35 +0000134
Marc Slemko16698852006-08-04 03:16:10 +0000135 try {
136 // Start the server listening
137 serverTransport_->listen();
138 } catch (TTransportException& ttx) {
Mark Slee2e8a8d42008-01-16 00:38:20 +0000139 string errStr = string("TThreadPoolServer::run() listen(): ") + ttx.what();
140 GlobalOutput(errStr.c_str());
Marc Slemko16698852006-08-04 03:16:10 +0000141 return;
142 }
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000143
144 // Run the preServe event
145 if (eventHandler_ != NULL) {
146 eventHandler_->preServe();
147 }
148
Mark Slee6e3f6372007-03-01 22:05:46 +0000149 while (!stop_) {
Marc Slemko16698852006-08-04 03:16:10 +0000150 try {
Mark Slee3303f362007-03-05 20:09:37 +0000151 client.reset();
152 inputTransport.reset();
153 outputTransport.reset();
154 inputProtocol.reset();
155 outputProtocol.reset();
156
Mark Sleed788b2e2006-09-07 01:26:35 +0000157 // Fetch client from server
158 client = serverTransport_->accept();
Mark Sleea5a783f2007-03-02 19:41:08 +0000159
Mark Sleed788b2e2006-09-07 01:26:35 +0000160 // Make IO transports
Aditya Agarwal9abb0d62007-01-24 22:53:54 +0000161 inputTransport = inputTransportFactory_->getTransport(client);
162 outputTransport = outputTransportFactory_->getTransport(client);
163 inputProtocol = inputProtocolFactory_->getProtocol(inputTransport);
164 outputProtocol = outputProtocolFactory_->getProtocol(outputTransport);
Mark Slee4af6ed72006-10-25 19:02:49 +0000165
Mark Sleed788b2e2006-09-07 01:26:35 +0000166 // Add to threadmanager pool
Mark Sleeb4d3e7b2007-11-28 01:51:43 +0000167 threadManager_->add(shared_ptr<TThreadPoolServer::Task>(new TThreadPoolServer::Task(*this, processor_, inputProtocol, outputProtocol)), timeout_);
Mark Sleea5a783f2007-03-02 19:41:08 +0000168
Marc Slemko16698852006-08-04 03:16:10 +0000169 } catch (TTransportException& ttx) {
Mark Slee3303f362007-03-05 20:09:37 +0000170 if (inputTransport != NULL) { inputTransport->close(); }
171 if (outputTransport != NULL) { outputTransport->close(); }
172 if (client != NULL) { client->close(); }
Mark Sleea5a783f2007-03-02 19:41:08 +0000173 if (!stop_ || ttx.getType() != TTransportException::INTERRUPTED) {
Mark Slee2e8a8d42008-01-16 00:38:20 +0000174 string errStr = string("TThreadPoolServer: TServerTransport died on accept: ") + ttx.what();
175 GlobalOutput(errStr.c_str());
Mark Sleea5a783f2007-03-02 19:41:08 +0000176 }
Aditya Agarwalfdef47e2007-02-07 03:54:18 +0000177 continue;
178 } catch (TException& tx) {
Mark Slee3303f362007-03-05 20:09:37 +0000179 if (inputTransport != NULL) { inputTransport->close(); }
180 if (outputTransport != NULL) { outputTransport->close(); }
181 if (client != NULL) { client->close(); }
Mark Slee2e8a8d42008-01-16 00:38:20 +0000182 string errStr = string("TThreadPoolServer: Caught TException: ") + tx.what();
183 GlobalOutput(errStr.c_str());
Aditya Agarwalfdef47e2007-02-07 03:54:18 +0000184 continue;
185 } catch (string s) {
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 = "TThreadPoolServer: Unknown exception: " + s;
190 GlobalOutput(errStr.c_str());
Marc Slemko16698852006-08-04 03:16:10 +0000191 break;
192 }
193 }
Mark Slee6e3f6372007-03-01 22:05:46 +0000194
195 // If stopped manually, join the existing threads
196 if (stop_) {
197 try {
198 serverTransport_->close();
199 threadManager_->join();
200 } catch (TException &tx) {
Mark Slee2e8a8d42008-01-16 00:38:20 +0000201 string errStr = string("TThreadPoolServer: Exception shutting down: ") + tx.what();
202 GlobalOutput(errStr.c_str());
Mark Slee6e3f6372007-03-01 22:05:46 +0000203 }
Mark Sleea5a783f2007-03-02 19:41:08 +0000204 stop_ = false;
Mark Slee6e3f6372007-03-01 22:05:46 +0000205 }
Mark Slee6e3f6372007-03-01 22:05:46 +0000206
Marc Slemko16698852006-08-04 03:16:10 +0000207}
Marc Slemko35452342006-08-03 19:01:37 +0000208
Mark Slee9b82d272007-05-23 05:16:07 +0000209int64_t TThreadPoolServer::getTimeout() const {
210 return timeout_;
211}
212
213void TThreadPoolServer::setTimeout(int64_t value) {
214 timeout_ = value;
215}
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000216
T Jake Lucianib5e62212009-01-31 22:36:20 +0000217}}} // apache::thrift::server