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 | */ |
Mark Slee | 9f0c651 | 2007-02-28 23:58:26 +0000 | [diff] [blame] | 19 | |
Mark Slee | d788b2e | 2006-09-07 01:26:35 +0000 | [diff] [blame] | 20 | #ifndef _THRIFT_SERVER_TSERVER_H_ |
| 21 | #define _THRIFT_SERVER_TSERVER_H_ 1 |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 22 | |
Marc Slemko | 1669885 | 2006-08-04 03:16:10 +0000 | [diff] [blame] | 23 | #include <TProcessor.h> |
Mark Slee | d788b2e | 2006-09-07 01:26:35 +0000 | [diff] [blame] | 24 | #include <transport/TServerTransport.h> |
Mark Slee | 4af6ed7 | 2006-10-25 19:02:49 +0000 | [diff] [blame] | 25 | #include <protocol/TBinaryProtocol.h> |
Marc Slemko | 3ea0033 | 2006-08-17 01:11:13 +0000 | [diff] [blame] | 26 | #include <concurrency/Thread.h> |
Marc Slemko | 1669885 | 2006-08-04 03:16:10 +0000 | [diff] [blame] | 27 | |
| 28 | #include <boost/shared_ptr.hpp> |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 29 | |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 30 | namespace apache { namespace thrift { namespace server { |
Marc Slemko | 6f038a7 | 2006-08-03 18:58:09 +0000 | [diff] [blame] | 31 | |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 32 | using apache::thrift::TProcessor; |
| 33 | using apache::thrift::protocol::TBinaryProtocolFactory; |
| 34 | using apache::thrift::protocol::TProtocol; |
| 35 | using apache::thrift::protocol::TProtocolFactory; |
| 36 | using apache::thrift::transport::TServerTransport; |
| 37 | using apache::thrift::transport::TTransport; |
| 38 | using apache::thrift::transport::TTransportFactory; |
Marc Slemko | 6f038a7 | 2006-08-03 18:58:09 +0000 | [diff] [blame] | 39 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 40 | /** |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 41 | * Virtual interface class that can handle events from the server core. To |
| 42 | * use this you should subclass it and implement the methods that you care |
| 43 | * about. Your subclass can also store local data that you may care about, |
| 44 | * such as additional "arguments" to these methods (stored in the object |
| 45 | * instance's state). |
| 46 | */ |
| 47 | class TServerEventHandler { |
| 48 | public: |
| 49 | |
| 50 | virtual ~TServerEventHandler() {} |
| 51 | |
| 52 | /** |
| 53 | * Called before the server begins. |
| 54 | */ |
| 55 | virtual void preServe() {} |
| 56 | |
| 57 | /** |
| 58 | * Called when a new client has connected and is about to being processing. |
| 59 | */ |
David Reiss | 2324871 | 2010-10-06 17:10:08 +0000 | [diff] [blame] | 60 | virtual void* createContext(boost::shared_ptr<TProtocol> input, |
| 61 | boost::shared_ptr<TProtocol> output) { |
| 62 | (void)input; |
| 63 | (void)output; |
| 64 | return NULL; |
| 65 | } |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 66 | |
| 67 | /** |
David Reiss | 2324871 | 2010-10-06 17:10:08 +0000 | [diff] [blame] | 68 | * Called when a client has finished request-handling to delete server |
| 69 | * context. |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 70 | */ |
David Reiss | 2324871 | 2010-10-06 17:10:08 +0000 | [diff] [blame] | 71 | virtual void deleteContext(void* serverContext, |
| 72 | boost::shared_ptr<TProtocol>input, |
| 73 | boost::shared_ptr<TProtocol>output) { |
| 74 | (void)serverContext; |
| 75 | (void)input; |
| 76 | (void)output; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Called when a client is about to call the processor. |
| 81 | */ |
| 82 | virtual void processContext(void* serverContext, |
| 83 | boost::shared_ptr<TTransport> transport) { |
| 84 | (void)serverContext; |
| 85 | (void)transport; |
| 86 | } |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 87 | |
| 88 | protected: |
| 89 | |
| 90 | /** |
| 91 | * Prevent direct instantiation. |
| 92 | */ |
| 93 | TServerEventHandler() {} |
| 94 | |
| 95 | }; |
| 96 | |
| 97 | /** |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 98 | * Thrift server. |
| 99 | * |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 100 | */ |
Aditya Agarwal | d622e96 | 2006-10-11 02:42:49 +0000 | [diff] [blame] | 101 | class TServer : public concurrency::Runnable { |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 102 | public: |
| 103 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 104 | virtual ~TServer() {} |
Mark Slee | 4af6ed7 | 2006-10-25 19:02:49 +0000 | [diff] [blame] | 105 | |
Mark Slee | 794993d | 2006-09-20 01:56:10 +0000 | [diff] [blame] | 106 | virtual void serve() = 0; |
Aditya Agarwal | d622e96 | 2006-10-11 02:42:49 +0000 | [diff] [blame] | 107 | |
Mark Slee | 6e3f637 | 2007-03-01 22:05:46 +0000 | [diff] [blame] | 108 | virtual void stop() {} |
| 109 | |
Aditya Agarwal | d622e96 | 2006-10-11 02:42:49 +0000 | [diff] [blame] | 110 | // Allows running the server as a Runnable thread |
Mark Slee | 4af6ed7 | 2006-10-25 19:02:49 +0000 | [diff] [blame] | 111 | virtual void run() { |
| 112 | serve(); |
| 113 | } |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 114 | |
Bryan Duxbury | 6dd9cd0 | 2011-09-01 18:06:20 +0000 | [diff] [blame^] | 115 | boost::shared_ptr<TProcessorFactory> getProcessorFactory() { |
| 116 | return processorFactory_; |
Mark Slee | 2f6404d | 2006-10-10 01:37:40 +0000 | [diff] [blame] | 117 | } |
Aditya Agarwal | 1ea9052 | 2007-01-19 02:02:12 +0000 | [diff] [blame] | 118 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 119 | boost::shared_ptr<TServerTransport> getServerTransport() { |
Aditya Agarwal | 1ea9052 | 2007-01-19 02:02:12 +0000 | [diff] [blame] | 120 | return serverTransport_; |
| 121 | } |
| 122 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 123 | boost::shared_ptr<TTransportFactory> getInputTransportFactory() { |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 124 | return inputTransportFactory_; |
| 125 | } |
| 126 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 127 | boost::shared_ptr<TTransportFactory> getOutputTransportFactory() { |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 128 | return outputTransportFactory_; |
Aditya Agarwal | 1ea9052 | 2007-01-19 02:02:12 +0000 | [diff] [blame] | 129 | } |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 130 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 131 | boost::shared_ptr<TProtocolFactory> getInputProtocolFactory() { |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 132 | return inputProtocolFactory_; |
Mark Slee | 4af6ed7 | 2006-10-25 19:02:49 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 135 | boost::shared_ptr<TProtocolFactory> getOutputProtocolFactory() { |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 136 | return outputProtocolFactory_; |
| 137 | } |
Aditya Agarwal | 1ea9052 | 2007-01-19 02:02:12 +0000 | [diff] [blame] | 138 | |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 139 | boost::shared_ptr<TServerEventHandler> getEventHandler() { |
| 140 | return eventHandler_; |
| 141 | } |
| 142 | |
Marc Slemko | 1669885 | 2006-08-04 03:16:10 +0000 | [diff] [blame] | 143 | protected: |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 144 | TServer(boost::shared_ptr<TProcessor> processor): |
Bryan Duxbury | 6dd9cd0 | 2011-09-01 18:06:20 +0000 | [diff] [blame^] | 145 | processorFactory_(new TSingletonProcessorFactory(processor)) { |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 146 | setInputTransportFactory(boost::shared_ptr<TTransportFactory>(new TTransportFactory())); |
| 147 | setOutputTransportFactory(boost::shared_ptr<TTransportFactory>(new TTransportFactory())); |
| 148 | setInputProtocolFactory(boost::shared_ptr<TProtocolFactory>(new TBinaryProtocolFactory())); |
| 149 | setOutputProtocolFactory(boost::shared_ptr<TProtocolFactory>(new TBinaryProtocolFactory())); |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 150 | } |
| 151 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 152 | TServer(boost::shared_ptr<TProcessor> processor, |
| 153 | boost::shared_ptr<TServerTransport> serverTransport): |
Bryan Duxbury | 6dd9cd0 | 2011-09-01 18:06:20 +0000 | [diff] [blame^] | 154 | processorFactory_(new TSingletonProcessorFactory(processor)), |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 155 | serverTransport_(serverTransport) { |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 156 | setInputTransportFactory(boost::shared_ptr<TTransportFactory>(new TTransportFactory())); |
| 157 | setOutputTransportFactory(boost::shared_ptr<TTransportFactory>(new TTransportFactory())); |
| 158 | setInputProtocolFactory(boost::shared_ptr<TProtocolFactory>(new TBinaryProtocolFactory())); |
| 159 | setOutputProtocolFactory(boost::shared_ptr<TProtocolFactory>(new TBinaryProtocolFactory())); |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 162 | TServer(boost::shared_ptr<TProcessor> processor, |
| 163 | boost::shared_ptr<TServerTransport> serverTransport, |
| 164 | boost::shared_ptr<TTransportFactory> transportFactory, |
| 165 | boost::shared_ptr<TProtocolFactory> protocolFactory): |
Bryan Duxbury | 6dd9cd0 | 2011-09-01 18:06:20 +0000 | [diff] [blame^] | 166 | processorFactory_(new TSingletonProcessorFactory(processor)), |
Mark Slee | d788b2e | 2006-09-07 01:26:35 +0000 | [diff] [blame] | 167 | serverTransport_(serverTransport), |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 168 | inputTransportFactory_(transportFactory), |
| 169 | outputTransportFactory_(transportFactory), |
| 170 | inputProtocolFactory_(protocolFactory), |
| 171 | outputProtocolFactory_(protocolFactory) {} |
Mark Slee | d788b2e | 2006-09-07 01:26:35 +0000 | [diff] [blame] | 172 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 173 | TServer(boost::shared_ptr<TProcessor> processor, |
| 174 | boost::shared_ptr<TServerTransport> serverTransport, |
| 175 | boost::shared_ptr<TTransportFactory> inputTransportFactory, |
| 176 | boost::shared_ptr<TTransportFactory> outputTransportFactory, |
| 177 | boost::shared_ptr<TProtocolFactory> inputProtocolFactory, |
| 178 | boost::shared_ptr<TProtocolFactory> outputProtocolFactory): |
Bryan Duxbury | 6dd9cd0 | 2011-09-01 18:06:20 +0000 | [diff] [blame^] | 179 | processorFactory_(new TSingletonProcessorFactory(processor)), |
Mark Slee | 4af6ed7 | 2006-10-25 19:02:49 +0000 | [diff] [blame] | 180 | serverTransport_(serverTransport), |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 181 | inputTransportFactory_(inputTransportFactory), |
| 182 | outputTransportFactory_(outputTransportFactory), |
| 183 | inputProtocolFactory_(inputProtocolFactory), |
| 184 | outputProtocolFactory_(outputProtocolFactory) {} |
Mark Slee | 4af6ed7 | 2006-10-25 19:02:49 +0000 | [diff] [blame] | 185 | |
Bryan Duxbury | 6dd9cd0 | 2011-09-01 18:06:20 +0000 | [diff] [blame^] | 186 | /** |
| 187 | * Get a TProcessor to handle calls on a particular connection. |
| 188 | * |
| 189 | * This method should only be called once per connection (never once per |
| 190 | * call). This allows the TProcessorFactory to return a different processor |
| 191 | * for each connection if it desires. |
| 192 | */ |
| 193 | boost::shared_ptr<TProcessor> getProcessor( |
| 194 | boost::shared_ptr<TProtocol> inputProtocol, |
| 195 | boost::shared_ptr<TProtocol> outputProtocol, |
| 196 | boost::shared_ptr<TTransport> transport) { |
| 197 | TConnectionInfo connInfo; |
| 198 | connInfo.input = inputProtocol; |
| 199 | connInfo.output = outputProtocol; |
| 200 | connInfo.transport = transport; |
| 201 | return processorFactory_->getProcessor(connInfo); |
| 202 | } |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 203 | |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 204 | // Class variables |
Bryan Duxbury | 6dd9cd0 | 2011-09-01 18:06:20 +0000 | [diff] [blame^] | 205 | boost::shared_ptr<TProcessorFactory> processorFactory_; |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 206 | boost::shared_ptr<TServerTransport> serverTransport_; |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 207 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 208 | boost::shared_ptr<TTransportFactory> inputTransportFactory_; |
| 209 | boost::shared_ptr<TTransportFactory> outputTransportFactory_; |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 210 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 211 | boost::shared_ptr<TProtocolFactory> inputProtocolFactory_; |
| 212 | boost::shared_ptr<TProtocolFactory> outputProtocolFactory_; |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 213 | |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 214 | boost::shared_ptr<TServerEventHandler> eventHandler_; |
| 215 | |
David Reiss | ef22dc6 | 2007-11-30 20:38:49 +0000 | [diff] [blame] | 216 | public: |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 217 | void setInputTransportFactory(boost::shared_ptr<TTransportFactory> inputTransportFactory) { |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 218 | inputTransportFactory_ = inputTransportFactory; |
| 219 | } |
| 220 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 221 | void setOutputTransportFactory(boost::shared_ptr<TTransportFactory> outputTransportFactory) { |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 222 | outputTransportFactory_ = outputTransportFactory; |
| 223 | } |
| 224 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 225 | void setInputProtocolFactory(boost::shared_ptr<TProtocolFactory> inputProtocolFactory) { |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 226 | inputProtocolFactory_ = inputProtocolFactory; |
| 227 | } |
| 228 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 229 | void setOutputProtocolFactory(boost::shared_ptr<TProtocolFactory> outputProtocolFactory) { |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 230 | outputProtocolFactory_ = outputProtocolFactory; |
| 231 | } |
| 232 | |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 233 | void setServerEventHandler(boost::shared_ptr<TServerEventHandler> eventHandler) { |
| 234 | eventHandler_ = eventHandler; |
| 235 | } |
| 236 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 237 | }; |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 238 | |
veeve | 01d187c | 2008-02-26 05:12:08 +0000 | [diff] [blame] | 239 | /** |
| 240 | * Helper function to increase the max file descriptors limit |
| 241 | * for the current process and all of its children. |
| 242 | * By default, tries to increase it to as much as 2^24. |
| 243 | */ |
| 244 | int increase_max_fds(int max_fds=(1<<24)); |
| 245 | |
| 246 | |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 247 | }}} // apache::thrift::server |
Marc Slemko | 6f038a7 | 2006-08-03 18:58:09 +0000 | [diff] [blame] | 248 | |
Mark Slee | d788b2e | 2006-09-07 01:26:35 +0000 | [diff] [blame] | 249 | #endif // #ifndef _THRIFT_SERVER_TSERVER_H_ |