Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [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 | */ |
| 19 | |
| 20 | #include <thrift/server/TConnectedClient.h> |
| 21 | |
| 22 | namespace apache { |
| 23 | namespace thrift { |
| 24 | namespace server { |
| 25 | |
| 26 | using apache::thrift::TProcessor; |
| 27 | using apache::thrift::protocol::TProtocol; |
| 28 | using apache::thrift::server::TServerEventHandler; |
| 29 | using apache::thrift::transport::TTransport; |
| 30 | using apache::thrift::transport::TTransportException; |
cyy | 316723a | 2019-01-05 16:35:14 +0800 | [diff] [blame] | 31 | using std::shared_ptr; |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 32 | using std::string; |
| 33 | |
Jim King | 21b6852 | 2015-04-26 18:30:26 -0400 | [diff] [blame] | 34 | TConnectedClient::TConnectedClient(const shared_ptr<TProcessor>& processor, |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 35 | const shared_ptr<TProtocol>& inputProtocol, |
| 36 | const shared_ptr<TProtocol>& outputProtocol, |
| 37 | const shared_ptr<TServerEventHandler>& eventHandler, |
| 38 | const shared_ptr<TTransport>& client) |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame] | 39 | |
Jim King | 21b6852 | 2015-04-26 18:30:26 -0400 | [diff] [blame] | 40 | : processor_(processor), |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 41 | inputProtocol_(inputProtocol), |
| 42 | outputProtocol_(outputProtocol), |
| 43 | eventHandler_(eventHandler), |
| 44 | client_(client), |
Sebastian Zenker | 042580f | 2019-01-29 15:48:12 +0100 | [diff] [blame] | 45 | opaqueContext_(nullptr) { |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame] | 46 | } |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 47 | |
Sebastian Zenker | 042580f | 2019-01-29 15:48:12 +0100 | [diff] [blame] | 48 | TConnectedClient::~TConnectedClient() = default; |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 49 | |
| 50 | void TConnectedClient::run() { |
| 51 | if (eventHandler_) { |
| 52 | opaqueContext_ = eventHandler_->createContext(inputProtocol_, outputProtocol_); |
| 53 | } |
| 54 | |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame] | 55 | for (bool done = false; !done;) { |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 56 | if (eventHandler_) { |
| 57 | eventHandler_->processContext(opaqueContext_, client_); |
| 58 | } |
| 59 | |
| 60 | try { |
| 61 | if (!processor_->process(inputProtocol_, outputProtocol_, opaqueContext_)) { |
| 62 | break; |
| 63 | } |
| 64 | } catch (const TTransportException& ttx) { |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame] | 65 | switch (ttx.getType()) { |
Jim King | f793c2b | 2016-11-10 15:08:21 -0500 | [diff] [blame] | 66 | case TTransportException::END_OF_FILE: |
| 67 | case TTransportException::INTERRUPTED: |
| 68 | case TTransportException::TIMED_OUT: |
| 69 | // Client disconnected or was interrupted or did not respond within the receive timeout. |
| 70 | // No logging needed. Done. |
| 71 | done = true; |
| 72 | break; |
Jim King | 21b6852 | 2015-04-26 18:30:26 -0400 | [diff] [blame] | 73 | |
Jim King | f793c2b | 2016-11-10 15:08:21 -0500 | [diff] [blame] | 74 | default: { |
| 75 | // All other transport exceptions are logged. |
| 76 | // State of connection is unknown. Done. |
| 77 | string errStr = string("TConnectedClient died: ") + ttx.what(); |
| 78 | GlobalOutput(errStr.c_str()); |
| 79 | done = true; |
| 80 | break; |
| 81 | } |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 82 | } |
| 83 | } catch (const TException& tex) { |
Jim King | 21b6852 | 2015-04-26 18:30:26 -0400 | [diff] [blame] | 84 | string errStr = string("TConnectedClient processing exception: ") + tex.what(); |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 85 | GlobalOutput(errStr.c_str()); |
James E. King, III | 7656793 | 2016-11-14 10:30:05 -0500 | [diff] [blame] | 86 | // Disconnect from client, because we could not process the message. |
| 87 | done = true; |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | |
| 91 | cleanup(); |
| 92 | } |
| 93 | |
Konrad Grochowski | 1f6e380 | 2015-05-18 18:10:06 +0200 | [diff] [blame] | 94 | void TConnectedClient::cleanup() { |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 95 | if (eventHandler_) { |
| 96 | eventHandler_->deleteContext(opaqueContext_, inputProtocol_, outputProtocol_); |
| 97 | } |
| 98 | |
| 99 | try { |
| 100 | inputProtocol_->getTransport()->close(); |
| 101 | } catch (const TTransportException& ttx) { |
Jim King | 21b6852 | 2015-04-26 18:30:26 -0400 | [diff] [blame] | 102 | string errStr = string("TConnectedClient input close failed: ") + ttx.what(); |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 103 | GlobalOutput(errStr.c_str()); |
| 104 | } |
Jim King | 21b6852 | 2015-04-26 18:30:26 -0400 | [diff] [blame] | 105 | |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 106 | try { |
| 107 | outputProtocol_->getTransport()->close(); |
| 108 | } catch (const TTransportException& ttx) { |
Jim King | 21b6852 | 2015-04-26 18:30:26 -0400 | [diff] [blame] | 109 | string errStr = string("TConnectedClient output close failed: ") + ttx.what(); |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 110 | GlobalOutput(errStr.c_str()); |
| 111 | } |
Jim King | 21b6852 | 2015-04-26 18:30:26 -0400 | [diff] [blame] | 112 | |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 113 | try { |
| 114 | client_->close(); |
| 115 | } catch (const TTransportException& ttx) { |
Jim King | 21b6852 | 2015-04-26 18:30:26 -0400 | [diff] [blame] | 116 | string errStr = string("TConnectedClient client close failed: ") + ttx.what(); |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 117 | GlobalOutput(errStr.c_str()); |
| 118 | } |
| 119 | } |
Jim King | 5ec805b | 2015-04-26 07:52:40 -0400 | [diff] [blame] | 120 | } |
| 121 | } |
| 122 | } // apache::thrift::server |