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 | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 20 | #include "server/TSimpleServer.h" |
Mark Slee | 8d7e1f6 | 2006-06-07 06:48:56 +0000 | [diff] [blame] | 21 | #include "transport/TTransportException.h" |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 22 | #include <string> |
Mark Slee | 8d7e1f6 | 2006-06-07 06:48:56 +0000 | [diff] [blame] | 23 | #include <iostream> |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 24 | |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 25 | namespace apache { namespace thrift { namespace server { |
Marc Slemko | 6f038a7 | 2006-08-03 18:58:09 +0000 | [diff] [blame] | 26 | |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 27 | using namespace std; |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 28 | using namespace apache::thrift; |
| 29 | using namespace apache::thrift::protocol; |
| 30 | using namespace apache::thrift::transport; |
Mark Slee | 5ea15f9 | 2007-03-05 22:55:59 +0000 | [diff] [blame] | 31 | using boost::shared_ptr; |
| 32 | |
Mark Slee | 8d7e1f6 | 2006-06-07 06:48:56 +0000 | [diff] [blame] | 33 | /** |
| 34 | * A simple single-threaded application server. Perfect for unit tests! |
| 35 | * |
Mark Slee | 8d7e1f6 | 2006-06-07 06:48:56 +0000 | [diff] [blame] | 36 | */ |
Mark Slee | 794993d | 2006-09-20 01:56:10 +0000 | [diff] [blame] | 37 | void TSimpleServer::serve() { |
Marc Slemko | 1669885 | 2006-08-04 03:16:10 +0000 | [diff] [blame] | 38 | |
| 39 | shared_ptr<TTransport> client; |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 40 | shared_ptr<TTransport> inputTransport; |
| 41 | shared_ptr<TTransport> outputTransport; |
| 42 | shared_ptr<TProtocol> inputProtocol; |
| 43 | shared_ptr<TProtocol> outputProtocol; |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 44 | |
Mark Slee | 8d7e1f6 | 2006-06-07 06:48:56 +0000 | [diff] [blame] | 45 | try { |
| 46 | // Start the server listening |
| 47 | serverTransport_->listen(); |
| 48 | } catch (TTransportException& ttx) { |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 49 | string errStr = string("TSimpleServer::run() listen(): ") + ttx.what(); |
| 50 | GlobalOutput(errStr.c_str()); |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 51 | return; |
| 52 | } |
| 53 | |
Mark Slee | b4d3e7b | 2007-11-28 01:51:43 +0000 | [diff] [blame] | 54 | // Run the preServe event |
| 55 | if (eventHandler_ != NULL) { |
| 56 | eventHandler_->preServe(); |
| 57 | } |
| 58 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 59 | // Fetch client from server |
Mark Slee | 6e3f637 | 2007-03-01 22:05:46 +0000 | [diff] [blame] | 60 | while (!stop_) { |
Aditya Agarwal | fdef47e | 2007-02-07 03:54:18 +0000 | [diff] [blame] | 61 | try { |
Mark Slee | 8d7e1f6 | 2006-06-07 06:48:56 +0000 | [diff] [blame] | 62 | client = serverTransport_->accept(); |
Aditya Agarwal | 9abb0d6 | 2007-01-24 22:53:54 +0000 | [diff] [blame] | 63 | inputTransport = inputTransportFactory_->getTransport(client); |
| 64 | outputTransport = outputTransportFactory_->getTransport(client); |
| 65 | inputProtocol = inputProtocolFactory_->getProtocol(inputTransport); |
| 66 | outputProtocol = outputProtocolFactory_->getProtocol(outputTransport); |
Aditya Agarwal | fdef47e | 2007-02-07 03:54:18 +0000 | [diff] [blame] | 67 | } catch (TTransportException& ttx) { |
Mark Slee | 3303f36 | 2007-03-05 20:09:37 +0000 | [diff] [blame] | 68 | if (inputTransport != NULL) { inputTransport->close(); } |
| 69 | if (outputTransport != NULL) { outputTransport->close(); } |
| 70 | if (client != NULL) { client->close(); } |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 71 | string errStr = string("TServerTransport died on accept: ") + ttx.what(); |
| 72 | GlobalOutput(errStr.c_str()); |
Aditya Agarwal | fdef47e | 2007-02-07 03:54:18 +0000 | [diff] [blame] | 73 | continue; |
| 74 | } catch (TException& tx) { |
Mark Slee | 3303f36 | 2007-03-05 20:09:37 +0000 | [diff] [blame] | 75 | if (inputTransport != NULL) { inputTransport->close(); } |
| 76 | if (outputTransport != NULL) { outputTransport->close(); } |
| 77 | if (client != NULL) { client->close(); } |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 78 | string errStr = string("Some kind of accept exception: ") + tx.what(); |
| 79 | GlobalOutput(errStr.c_str()); |
Aditya Agarwal | fdef47e | 2007-02-07 03:54:18 +0000 | [diff] [blame] | 80 | continue; |
| 81 | } catch (string s) { |
Mark Slee | 3303f36 | 2007-03-05 20:09:37 +0000 | [diff] [blame] | 82 | if (inputTransport != NULL) { inputTransport->close(); } |
| 83 | if (outputTransport != NULL) { outputTransport->close(); } |
| 84 | if (client != NULL) { client->close(); } |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 85 | string errStr = string("Some kind of accept exception: ") + s; |
| 86 | GlobalOutput(errStr.c_str()); |
Aditya Agarwal | fdef47e | 2007-02-07 03:54:18 +0000 | [diff] [blame] | 87 | break; |
Mark Slee | d788b2e | 2006-09-07 01:26:35 +0000 | [diff] [blame] | 88 | } |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 89 | |
| 90 | void* connectionContext = NULL; |
| 91 | if (eventHandler_ != NULL) { |
| 92 | connectionContext = eventHandler_->createContext(inputProtocol, outputProtocol); |
| 93 | } |
| 94 | try { |
| 95 | for (;;) { |
| 96 | if (eventHandler_ != NULL) { |
| 97 | eventHandler_->processContext(connectionContext, client); |
| 98 | } |
| 99 | if (!processor_->process(inputProtocol, outputProtocol, connectionContext) || |
| 100 | // Peek ahead, is the remote side closed? |
| 101 | !inputProtocol->getTransport()->peek()) { |
| 102 | break; |
| 103 | } |
| 104 | } |
Bryan Duxbury | 1e98758 | 2011-08-25 17:33:03 +0000 | [diff] [blame] | 105 | } catch (const TTransportException& ttx) { |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 106 | string errStr = string("TSimpleServer client died: ") + ttx.what(); |
| 107 | GlobalOutput(errStr.c_str()); |
Bryan Duxbury | 1e98758 | 2011-08-25 17:33:03 +0000 | [diff] [blame] | 108 | } catch (const std::exception& x) { |
| 109 | GlobalOutput.printf("TSimpleServer exception: %s: %s", |
| 110 | typeid(x).name(), x.what()); |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 111 | } catch (...) { |
| 112 | GlobalOutput("TSimpleServer uncaught exception."); |
| 113 | } |
| 114 | if (eventHandler_ != NULL) { |
| 115 | eventHandler_->deleteContext(connectionContext, inputProtocol, outputProtocol); |
| 116 | } |
| 117 | |
| 118 | try { |
| 119 | inputTransport->close(); |
Bryan Duxbury | e04159c | 2011-08-25 17:43:56 +0000 | [diff] [blame] | 120 | } catch (const TTransportException& ttx) { |
| 121 | string errStr = string("TSimpleServer input close failed: ") |
| 122 | + ttx.what(); |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 123 | GlobalOutput(errStr.c_str()); |
| 124 | } |
| 125 | try { |
| 126 | outputTransport->close(); |
Bryan Duxbury | e04159c | 2011-08-25 17:43:56 +0000 | [diff] [blame] | 127 | } catch (const TTransportException& ttx) { |
| 128 | string errStr = string("TSimpleServer output close failed: ") |
| 129 | + ttx.what(); |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 130 | GlobalOutput(errStr.c_str()); |
| 131 | } |
| 132 | try { |
| 133 | client->close(); |
Bryan Duxbury | e04159c | 2011-08-25 17:43:56 +0000 | [diff] [blame] | 134 | } catch (const TTransportException& ttx) { |
| 135 | string errStr = string("TSimpleServer client close failed: ") |
| 136 | + ttx.what(); |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 137 | GlobalOutput(errStr.c_str()); |
| 138 | } |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Mark Slee | 6e3f637 | 2007-03-01 22:05:46 +0000 | [diff] [blame] | 141 | if (stop_) { |
| 142 | try { |
| 143 | serverTransport_->close(); |
| 144 | } catch (TTransportException &ttx) { |
David Reiss | 25df8e7 | 2010-10-06 17:10:54 +0000 | [diff] [blame] | 145 | string errStr = string("TServerTransport failed on close: ") + ttx.what(); |
| 146 | GlobalOutput(errStr.c_str()); |
Mark Slee | 6e3f637 | 2007-03-01 22:05:46 +0000 | [diff] [blame] | 147 | } |
| 148 | stop_ = false; |
| 149 | } |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 150 | } |
Marc Slemko | 6f038a7 | 2006-08-03 18:58:09 +0000 | [diff] [blame] | 151 | |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 152 | }}} // apache::thrift::server |