blob: a486c5aad8a21221dbd5e0055161248c1b5c289e [file] [log] [blame]
Allen George0e22c362017-01-30 07:15:00 -05001// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements. See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership. The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License. You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied. See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18use std::net::{TcpListener, TcpStream};
19use std::sync::Arc;
20use threadpool::ThreadPool;
21
22use {ApplicationError, ApplicationErrorKind};
23use protocol::{TInputProtocol, TInputProtocolFactory, TOutputProtocol, TOutputProtocolFactory};
24use transport::{TIoChannel, TReadTransportFactory, TTcpChannel, TWriteTransportFactory};
25
26use super::TProcessor;
27
28/// Fixed-size thread-pool blocking Thrift server.
29///
30/// A `TServer` listens on a given address and submits accepted connections
31/// to an **unbounded** queue. Connections from this queue are serviced by
32/// the first available worker thread from a **fixed-size** thread pool. Each
33/// accepted connection is handled by that worker thread, and communication
34/// over this thread occurs sequentially and synchronously (i.e. calls block).
35/// Accepted connections have an input half and an output half, each of which
36/// uses a `TTransport` and `TInputProtocol`/`TOutputProtocol` to translate
37/// messages to and from byes. Any combination of `TInputProtocol`, `TOutputProtocol`
38/// and `TTransport` may be used.
39///
40/// # Examples
41///
42/// Creating and running a `TServer` using Thrift-compiler-generated
43/// service code.
44///
45/// ```no_run
46/// use thrift;
47/// use thrift::protocol::{TInputProtocolFactory, TOutputProtocolFactory};
48/// use thrift::protocol::{TBinaryInputProtocolFactory, TBinaryOutputProtocolFactory};
49/// use thrift::protocol::{TInputProtocol, TOutputProtocol};
50/// use thrift::transport::{TBufferedReadTransportFactory, TBufferedWriteTransportFactory, TReadTransportFactory, TWriteTransportFactory};
51/// use thrift::server::{TProcessor, TServer};
52///
53/// //
54/// // auto-generated
55/// //
56///
57/// // processor for `SimpleService`
58/// struct SimpleServiceSyncProcessor;
59/// impl SimpleServiceSyncProcessor {
60/// fn new<H: SimpleServiceSyncHandler>(processor: H) -> SimpleServiceSyncProcessor {
61/// unimplemented!();
62/// }
63/// }
64///
65/// // `TProcessor` implementation for `SimpleService`
66/// impl TProcessor for SimpleServiceSyncProcessor {
67/// fn process(&self, i: &mut TInputProtocol, o: &mut TOutputProtocol) -> thrift::Result<()> {
68/// unimplemented!();
69/// }
70/// }
71///
72/// // service functions for SimpleService
73/// trait SimpleServiceSyncHandler {
74/// fn service_call(&self) -> thrift::Result<()>;
75/// }
76///
77/// //
78/// // user-code follows
79/// //
80///
81/// // define a handler that will be invoked when `service_call` is received
82/// struct SimpleServiceHandlerImpl;
83/// impl SimpleServiceSyncHandler for SimpleServiceHandlerImpl {
84/// fn service_call(&self) -> thrift::Result<()> {
85/// unimplemented!();
86/// }
87/// }
88///
89/// // instantiate the processor
90/// let processor = SimpleServiceSyncProcessor::new(SimpleServiceHandlerImpl {});
91///
92/// // instantiate the server
93/// let i_tr_fact: Box<TReadTransportFactory> = Box::new(TBufferedReadTransportFactory::new());
94/// let i_pr_fact: Box<TInputProtocolFactory> = Box::new(TBinaryInputProtocolFactory::new());
95/// let o_tr_fact: Box<TWriteTransportFactory> = Box::new(TBufferedWriteTransportFactory::new());
96/// let o_pr_fact: Box<TOutputProtocolFactory> = Box::new(TBinaryOutputProtocolFactory::new());
97///
98/// let mut server = TServer::new(
99/// i_tr_fact,
100/// i_pr_fact,
101/// o_tr_fact,
102/// o_pr_fact,
103/// processor,
104/// 10
105/// );
106///
107/// // start listening for incoming connections
108/// match server.listen("127.0.0.1:8080") {
109/// Ok(_) => println!("listen completed"),
110/// Err(e) => println!("listen failed with error {:?}", e),
111/// }
112/// ```
113#[derive(Debug)]
114pub struct TServer<PRC, RTF, IPF, WTF, OPF>
115where
116 PRC: TProcessor + Send + Sync + 'static,
117 RTF: TReadTransportFactory + 'static,
118 IPF: TInputProtocolFactory + 'static,
119 WTF: TWriteTransportFactory + 'static,
120 OPF: TOutputProtocolFactory + 'static,
121{
122 r_trans_factory: RTF,
123 i_proto_factory: IPF,
124 w_trans_factory: WTF,
125 o_proto_factory: OPF,
126 processor: Arc<PRC>,
127 worker_pool: ThreadPool,
128}
129
130impl<PRC, RTF, IPF, WTF, OPF> TServer<PRC, RTF, IPF, WTF, OPF>
131 where PRC: TProcessor + Send + Sync + 'static,
132 RTF: TReadTransportFactory + 'static,
133 IPF: TInputProtocolFactory + 'static,
134 WTF: TWriteTransportFactory + 'static,
135 OPF: TOutputProtocolFactory + 'static {
136 /// Create a `TServer`.
137 ///
138 /// Each accepted connection has an input and output half, each of which
139 /// requires a `TTransport` and `TProtocol`. `TServer` uses
140 /// `read_transport_factory` and `input_protocol_factory` to create
141 /// implementations for the input, and `write_transport_factory` and
142 /// `output_protocol_factory` to create implementations for the output.
143 pub fn new(
144 read_transport_factory: RTF,
145 input_protocol_factory: IPF,
146 write_transport_factory: WTF,
147 output_protocol_factory: OPF,
148 processor: PRC,
149 num_workers: usize,
150 ) -> TServer<PRC, RTF, IPF, WTF, OPF> {
151 TServer {
152 r_trans_factory: read_transport_factory,
153 i_proto_factory: input_protocol_factory,
154 w_trans_factory: write_transport_factory,
155 o_proto_factory: output_protocol_factory,
156 processor: Arc::new(processor),
157 worker_pool: ThreadPool::new_with_name(
158 "Thrift service processor".to_owned(),
159 num_workers,
160 ),
161 }
162 }
163
164 /// Listen for incoming connections on `listen_address`.
165 ///
166 /// `listen_address` should be in the form `host:port`,
167 /// for example: `127.0.0.1:8080`.
168 ///
169 /// Return `()` if successful.
170 ///
171 /// Return `Err` when the server cannot bind to `listen_address` or there
172 /// is an unrecoverable error.
173 pub fn listen(&mut self, listen_address: &str) -> ::Result<()> {
174 let listener = TcpListener::bind(listen_address)?;
175 for stream in listener.incoming() {
176 match stream {
177 Ok(s) => {
178 let (i_prot, o_prot) = self.new_protocols_for_connection(s)?;
179 let processor = self.processor.clone();
180 self.worker_pool
181 .execute(move || handle_incoming_connection(processor, i_prot, o_prot),);
182 }
183 Err(e) => {
184 warn!("failed to accept remote connection with error {:?}", e);
185 }
186 }
187 }
188
189 Err(
190 ::Error::Application(
191 ApplicationError {
192 kind: ApplicationErrorKind::Unknown,
193 message: "aborted listen loop".into(),
194 },
195 ),
196 )
197 }
198
199
200 fn new_protocols_for_connection(
201 &mut self,
202 stream: TcpStream,
203 ) -> ::Result<(Box<TInputProtocol + Send>, Box<TOutputProtocol + Send>)> {
204 // create the shared tcp stream
205 let channel = TTcpChannel::with_stream(stream);
206
207 // split it into two - one to be owned by the
208 // input tran/proto and the other by the output
209 let (r_chan, w_chan) = channel.split()?;
210
211 // input protocol and transport
212 let r_tran = self.r_trans_factory.create(Box::new(r_chan));
213 let i_prot = self.i_proto_factory.create(r_tran);
214
215 // output protocol and transport
216 let w_tran = self.w_trans_factory.create(Box::new(w_chan));
217 let o_prot = self.o_proto_factory.create(w_tran);
218
219 Ok((i_prot, o_prot))
220 }
221}
222
223fn handle_incoming_connection<PRC>(
224 processor: Arc<PRC>,
225 i_prot: Box<TInputProtocol>,
226 o_prot: Box<TOutputProtocol>,
227) where
228 PRC: TProcessor,
229{
230 let mut i_prot = i_prot;
231 let mut o_prot = o_prot;
232 loop {
233 let r = processor.process(&mut *i_prot, &mut *o_prot);
234 if let Err(e) = r {
235 warn!("processor completed with error: {:?}", e);
236 break;
237 }
238 }
239}