blob: a00930778c97bbc50faeccf2e678936f647a691d [file] [log] [blame]
Allen George8b96bfb2016-11-02 08:01:08 -04001// 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 byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
Allen George8b96bfb2016-11-02 08:01:08 -040019use std::cmp;
20use std::io;
Allen Georgeb7084cb2017-12-13 07:34:49 -050021use std::io::{Read, Write};
Allen George8b96bfb2016-11-02 08:01:08 -040022
Allen George0e22c362017-01-30 07:15:00 -050023use super::{TReadTransport, TReadTransportFactory, TWriteTransport, TWriteTransportFactory};
Allen George8b96bfb2016-11-02 08:01:08 -040024
25/// Default capacity of the read buffer in bytes.
Allen George0e22c362017-01-30 07:15:00 -050026const READ_CAPACITY: usize = 4096;
Allen George8b96bfb2016-11-02 08:01:08 -040027
Allen George0e22c362017-01-30 07:15:00 -050028/// Default capacity of the write buffer in bytes.
29const WRITE_CAPACITY: usize = 4096;
Allen George8b96bfb2016-11-02 08:01:08 -040030
Allen George0e22c362017-01-30 07:15:00 -050031/// Transport that reads framed messages.
Allen George8b96bfb2016-11-02 08:01:08 -040032///
Allen George0e22c362017-01-30 07:15:00 -050033/// A `TFramedReadTransport` maintains a fixed-size internal read buffer.
34/// On a call to `TFramedReadTransport::read(...)` one full message - both
35/// fixed-length header and bytes - is read from the wrapped channel and
36/// buffered. Subsequent read calls are serviced from the internal buffer
37/// until it is exhausted, at which point the next full message is read
38/// from the wrapped channel.
Allen George8b96bfb2016-11-02 08:01:08 -040039///
40/// # Examples
41///
Allen George0e22c362017-01-30 07:15:00 -050042/// Create and use a `TFramedReadTransport`.
Allen George8b96bfb2016-11-02 08:01:08 -040043///
44/// ```no_run
Allen George0e22c362017-01-30 07:15:00 -050045/// use std::io::Read;
46/// use thrift::transport::{TFramedReadTransport, TTcpChannel};
Allen George8b96bfb2016-11-02 08:01:08 -040047///
Allen George0e22c362017-01-30 07:15:00 -050048/// let mut c = TTcpChannel::new();
49/// c.open("localhost:9090").unwrap();
Allen George8b96bfb2016-11-02 08:01:08 -040050///
Allen George0e22c362017-01-30 07:15:00 -050051/// let mut t = TFramedReadTransport::new(c);
Allen George8b96bfb2016-11-02 08:01:08 -040052///
Allen George8b96bfb2016-11-02 08:01:08 -040053/// t.read(&mut vec![0u8; 1]).unwrap();
Allen George8b96bfb2016-11-02 08:01:08 -040054/// ```
Allen George0e22c362017-01-30 07:15:00 -050055#[derive(Debug)]
56pub struct TFramedReadTransport<C>
57where
58 C: Read,
59{
Allen Georgeb7084cb2017-12-13 07:34:49 -050060 buf: Vec<u8>,
Allen George0e22c362017-01-30 07:15:00 -050061 pos: usize,
62 cap: usize,
63 chan: C,
Allen George8b96bfb2016-11-02 08:01:08 -040064}
65
Allen George0e22c362017-01-30 07:15:00 -050066impl<C> TFramedReadTransport<C>
67where
68 C: Read,
69{
Allen Georgeb7084cb2017-12-13 07:34:49 -050070 /// Create a `TFramedReadTransport` with a default-sized
71 /// internal read buffer that wraps the given `TIoChannel`.
Allen George0e22c362017-01-30 07:15:00 -050072 pub fn new(channel: C) -> TFramedReadTransport<C> {
73 TFramedReadTransport::with_capacity(READ_CAPACITY, channel)
Allen George8b96bfb2016-11-02 08:01:08 -040074 }
75
Allen Georgeb7084cb2017-12-13 07:34:49 -050076 /// Create a `TFramedTransport` with an internal read buffer
77 /// of size `read_capacity` that wraps the given `TIoChannel`.
Allen George0e22c362017-01-30 07:15:00 -050078 pub fn with_capacity(read_capacity: usize, channel: C) -> TFramedReadTransport<C> {
79 TFramedReadTransport {
Allen Georgeb7084cb2017-12-13 07:34:49 -050080 buf: vec![0; read_capacity], // FIXME: do I actually have to do this?
Allen George0e22c362017-01-30 07:15:00 -050081 pos: 0,
82 cap: 0,
83 chan: channel,
Allen George8b96bfb2016-11-02 08:01:08 -040084 }
85 }
86}
87
Allen George0e22c362017-01-30 07:15:00 -050088impl<C> Read for TFramedReadTransport<C>
89where
90 C: Read,
91{
Allen George8b96bfb2016-11-02 08:01:08 -040092 fn read(&mut self, b: &mut [u8]) -> io::Result<usize> {
Allen George0e22c362017-01-30 07:15:00 -050093 if self.cap - self.pos == 0 {
94 let message_size = self.chan.read_i32::<BigEndian>()? as usize;
Allen Georgeb7084cb2017-12-13 07:34:49 -050095
96 let buf_capacity = cmp::max(message_size, READ_CAPACITY);
97 self.buf.resize(buf_capacity, 0);
98
Allen George0e22c362017-01-30 07:15:00 -050099 self.chan.read_exact(&mut self.buf[..message_size])?;
Allen George0e22c362017-01-30 07:15:00 -0500100 self.cap = message_size as usize;
Allen Georgeb7084cb2017-12-13 07:34:49 -0500101 self.pos = 0;
Allen George8b96bfb2016-11-02 08:01:08 -0400102 }
103
Allen George0e22c362017-01-30 07:15:00 -0500104 let nread = cmp::min(b.len(), self.cap - self.pos);
105 b[..nread].clone_from_slice(&self.buf[self.pos..self.pos + nread]);
106 self.pos += nread;
Allen George8b96bfb2016-11-02 08:01:08 -0400107
108 Ok(nread)
109 }
110}
111
Allen George0e22c362017-01-30 07:15:00 -0500112/// Factory for creating instances of `TFramedReadTransport`.
113#[derive(Default)]
114pub struct TFramedReadTransportFactory;
115
116impl TFramedReadTransportFactory {
117 pub fn new() -> TFramedReadTransportFactory {
118 TFramedReadTransportFactory {}
119 }
120}
121
122impl TReadTransportFactory for TFramedReadTransportFactory {
123 /// Create a `TFramedReadTransport`.
124 fn create(&self, channel: Box<Read + Send>) -> Box<TReadTransport + Send> {
125 Box::new(TFramedReadTransport::new(channel))
126 }
127}
128
129/// Transport that writes framed messages.
130///
131/// A `TFramedWriteTransport` maintains a fixed-size internal write buffer. All
132/// writes are made to this buffer and are sent to the wrapped channel only
133/// when `TFramedWriteTransport::flush()` is called. On a flush a fixed-length
134/// header with a count of the buffered bytes is written, followed by the bytes
135/// themselves.
136///
137/// # Examples
138///
139/// Create and use a `TFramedWriteTransport`.
140///
141/// ```no_run
142/// use std::io::Write;
143/// use thrift::transport::{TFramedWriteTransport, TTcpChannel};
144///
145/// let mut c = TTcpChannel::new();
146/// c.open("localhost:9090").unwrap();
147///
148/// let mut t = TFramedWriteTransport::new(c);
149///
150/// t.write(&[0x00]).unwrap();
151/// t.flush().unwrap();
152/// ```
153#[derive(Debug)]
154pub struct TFramedWriteTransport<C>
155where
156 C: Write,
157{
Allen Georgeb7084cb2017-12-13 07:34:49 -0500158 buf: Vec<u8>,
Allen George0e22c362017-01-30 07:15:00 -0500159 channel: C,
160}
161
162impl<C> TFramedWriteTransport<C>
163where
164 C: Write,
165{
Allen Georgeb7084cb2017-12-13 07:34:49 -0500166 /// Create a `TFramedWriteTransport` with default-sized internal
167 /// write buffer that wraps the given `TIoChannel`.
Allen George0e22c362017-01-30 07:15:00 -0500168 pub fn new(channel: C) -> TFramedWriteTransport<C> {
169 TFramedWriteTransport::with_capacity(WRITE_CAPACITY, channel)
170 }
171
Allen Georgeb7084cb2017-12-13 07:34:49 -0500172 /// Create a `TFramedWriteTransport` with an internal write buffer
173 /// of size `write_capacity` that wraps the given `TIoChannel`.
Allen George0e22c362017-01-30 07:15:00 -0500174 pub fn with_capacity(write_capacity: usize, channel: C) -> TFramedWriteTransport<C> {
175 TFramedWriteTransport {
Allen Georgeb7084cb2017-12-13 07:34:49 -0500176 buf: Vec::with_capacity(write_capacity),
177 channel,
Allen George0e22c362017-01-30 07:15:00 -0500178 }
179 }
180}
181
182impl<C> Write for TFramedWriteTransport<C>
183where
184 C: Write,
185{
Allen George8b96bfb2016-11-02 08:01:08 -0400186 fn write(&mut self, b: &[u8]) -> io::Result<usize> {
Allen Georgeb7084cb2017-12-13 07:34:49 -0500187 let current_capacity = self.buf.capacity();
188 let available_space = current_capacity - self.buf.len();
189 if b.len() > available_space {
190 let additional_space = cmp::max(b.len() - available_space, current_capacity);
191 self.buf.reserve(additional_space);
Allen George8b96bfb2016-11-02 08:01:08 -0400192 }
193
Allen Georgeb7084cb2017-12-13 07:34:49 -0500194 self.buf.extend_from_slice(b);
195 Ok(b.len())
Allen George8b96bfb2016-11-02 08:01:08 -0400196 }
197
198 fn flush(&mut self) -> io::Result<()> {
Allen Georgeb7084cb2017-12-13 07:34:49 -0500199 let message_size = self.buf.len();
Allen George8b96bfb2016-11-02 08:01:08 -0400200
201 if let 0 = message_size {
202 return Ok(());
203 } else {
Allen Georgeef7a1892018-12-16 18:01:37 -0500204 self.channel.write_i32::<BigEndian>(message_size as i32)?;
Allen George8b96bfb2016-11-02 08:01:08 -0400205 }
206
Allen Georgeb7084cb2017-12-13 07:34:49 -0500207 // will spin if the underlying channel can't be written to
Allen George8b96bfb2016-11-02 08:01:08 -0400208 let mut byte_index = 0;
Allen Georgeb7084cb2017-12-13 07:34:49 -0500209 while byte_index < message_size {
210 let nwrite = self.channel.write(&self.buf[byte_index..message_size])?;
211 byte_index = cmp::min(byte_index + nwrite, message_size);
Allen George8b96bfb2016-11-02 08:01:08 -0400212 }
213
Allen Georgeb7084cb2017-12-13 07:34:49 -0500214 let buf_capacity = cmp::min(self.buf.capacity(), WRITE_CAPACITY);
215 self.buf.resize(buf_capacity, 0);
216 self.buf.clear();
217
Allen George0e22c362017-01-30 07:15:00 -0500218 self.channel.flush()
Allen George8b96bfb2016-11-02 08:01:08 -0400219 }
220}
221
Allen George0e22c362017-01-30 07:15:00 -0500222/// Factory for creating instances of `TFramedWriteTransport`.
Allen George8b96bfb2016-11-02 08:01:08 -0400223#[derive(Default)]
Allen George0e22c362017-01-30 07:15:00 -0500224pub struct TFramedWriteTransportFactory;
Allen George8b96bfb2016-11-02 08:01:08 -0400225
Allen George0e22c362017-01-30 07:15:00 -0500226impl TFramedWriteTransportFactory {
227 pub fn new() -> TFramedWriteTransportFactory {
228 TFramedWriteTransportFactory {}
Allen George8b96bfb2016-11-02 08:01:08 -0400229 }
230}
231
Allen George0e22c362017-01-30 07:15:00 -0500232impl TWriteTransportFactory for TFramedWriteTransportFactory {
233 /// Create a `TFramedWriteTransport`.
234 fn create(&self, channel: Box<Write + Send>) -> Box<TWriteTransport + Send> {
235 Box::new(TFramedWriteTransport::new(channel))
Allen George8b96bfb2016-11-02 08:01:08 -0400236 }
237}
238
239#[cfg(test)]
240mod tests {
Allen Georgeb7084cb2017-12-13 07:34:49 -0500241 use super::*;
Allen Georgeef7a1892018-12-16 18:01:37 -0500242 use transport::mem::TBufferChannel;
Allen Georgeb7084cb2017-12-13 07:34:49 -0500243
244 // FIXME: test a forced reserve
245
246 #[test]
247 fn must_read_message_smaller_than_initial_buffer_size() {
248 let c = TBufferChannel::with_capacity(10, 10);
249 let mut t = TFramedReadTransport::with_capacity(8, c);
250
Allen Georgeef7a1892018-12-16 18:01:37 -0500251 t.chan.set_readable_bytes(&[
252 0x00, 0x00, 0x00, 0x04, /* message size */
253 0x00, 0x01, 0x02, 0x03, /* message body */
254 ]);
Allen Georgeb7084cb2017-12-13 07:34:49 -0500255
256 let mut buf = vec![0; 8];
257
258 // we've read exactly 4 bytes
259 assert_eq!(t.read(&mut buf).unwrap(), 4);
260 assert_eq!(&buf[..4], &[0x00, 0x01, 0x02, 0x03]);
261 }
262
263 #[test]
264 fn must_read_message_greater_than_initial_buffer_size() {
265 let c = TBufferChannel::with_capacity(10, 10);
266 let mut t = TFramedReadTransport::with_capacity(2, c);
267
Allen Georgeef7a1892018-12-16 18:01:37 -0500268 t.chan.set_readable_bytes(&[
269 0x00, 0x00, 0x00, 0x04, /* message size */
270 0x00, 0x01, 0x02, 0x03, /* message body */
271 ]);
Allen Georgeb7084cb2017-12-13 07:34:49 -0500272
273 let mut buf = vec![0; 8];
274
275 // we've read exactly 4 bytes
276 assert_eq!(t.read(&mut buf).unwrap(), 4);
277 assert_eq!(&buf[..4], &[0x00, 0x01, 0x02, 0x03]);
278 }
279
280 #[test]
281 fn must_read_multiple_messages_in_sequence_correctly() {
282 let c = TBufferChannel::with_capacity(10, 10);
283 let mut t = TFramedReadTransport::with_capacity(2, c);
284
285 //
286 // 1st message
287 //
288
Allen Georgeef7a1892018-12-16 18:01:37 -0500289 t.chan.set_readable_bytes(&[
290 0x00, 0x00, 0x00, 0x04, /* message size */
291 0x00, 0x01, 0x02, 0x03, /* message body */
292 ]);
Allen Georgeb7084cb2017-12-13 07:34:49 -0500293
294 let mut buf = vec![0; 8];
295
296 // we've read exactly 4 bytes
297 assert_eq!(t.read(&mut buf).unwrap(), 4);
298 assert_eq!(&buf, &[0x00, 0x01, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00]);
299
300 //
301 // 2nd message
302 //
303
Allen Georgeef7a1892018-12-16 18:01:37 -0500304 t.chan.set_readable_bytes(&[
305 0x00, 0x00, 0x00, 0x01, /* message size */
306 0x04, /* message body */
307 ]);
Allen Georgeb7084cb2017-12-13 07:34:49 -0500308
309 let mut buf = vec![0; 8];
310
311 // we've read exactly 1 byte
312 assert_eq!(t.read(&mut buf).unwrap(), 1);
313 assert_eq!(&buf, &[0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
314 }
315
316 #[test]
317 fn must_write_message_smaller_than_buffer_size() {
318 let mem = TBufferChannel::with_capacity(0, 0);
319 let mut t = TFramedWriteTransport::with_capacity(20, mem);
320
321 let b = vec![0; 10];
322
323 // should have written 10 bytes
324 assert_eq!(t.write(&b).unwrap(), 10);
325 }
326
327 #[test]
328 fn must_return_zero_if_caller_calls_write_with_empty_buffer() {
329 let mem = TBufferChannel::with_capacity(0, 10);
330 let mut t = TFramedWriteTransport::with_capacity(10, mem);
331
332 let expected: [u8; 0] = [];
333
334 assert_eq!(t.write(&[]).unwrap(), 0);
335 assert_eq_transport_written_bytes!(t, expected);
336 }
337
338 #[test]
339 fn must_write_to_inner_transport_on_flush() {
340 let mem = TBufferChannel::with_capacity(10, 10);
341 let mut t = TFramedWriteTransport::new(mem);
342
343 let b: [u8; 5] = [0x00, 0x01, 0x02, 0x03, 0x04];
344 assert_eq!(t.write(&b).unwrap(), 5);
345 assert_eq_transport_num_written_bytes!(t, 0);
346
347 assert!(t.flush().is_ok());
348
349 let expected_bytes = [
Allen Georgeef7a1892018-12-16 18:01:37 -0500350 0x00, 0x00, 0x00, 0x05, /* message size */
351 0x00, 0x01, 0x02, 0x03, 0x04, /* message body */
Allen Georgeb7084cb2017-12-13 07:34:49 -0500352 ];
353
354 assert_eq_transport_written_bytes!(t, expected_bytes);
355 }
356
357 #[test]
358 fn must_write_message_greater_than_buffer_size_00() {
359 let mem = TBufferChannel::with_capacity(0, 10);
360
361 // IMPORTANT: DO **NOT** CHANGE THE WRITE_CAPACITY OR THE NUMBER OF BYTES TO BE WRITTEN!
362 // these lengths were chosen to be just long enough
363 // that doubling the capacity is a **worse** choice than
364 // simply resizing the buffer to b.len()
365
366 let mut t = TFramedWriteTransport::with_capacity(1, mem);
367 let b = [0x00, 0x01, 0x02];
368
369 // should have written 3 bytes
370 assert_eq!(t.write(&b).unwrap(), 3);
371 assert_eq_transport_num_written_bytes!(t, 0);
372
373 assert!(t.flush().is_ok());
374
375 let expected_bytes = [
Allen Georgeef7a1892018-12-16 18:01:37 -0500376 0x00, 0x00, 0x00, 0x03, /* message size */
377 0x00, 0x01, 0x02, /* message body */
Allen Georgeb7084cb2017-12-13 07:34:49 -0500378 ];
379
380 assert_eq_transport_written_bytes!(t, expected_bytes);
381 }
382
383 #[test]
384 fn must_write_message_greater_than_buffer_size_01() {
385 let mem = TBufferChannel::with_capacity(0, 10);
386
387 // IMPORTANT: DO **NOT** CHANGE THE WRITE_CAPACITY OR THE NUMBER OF BYTES TO BE WRITTEN!
388 // these lengths were chosen to be just long enough
389 // that doubling the capacity is a **better** choice than
390 // simply resizing the buffer to b.len()
391
392 let mut t = TFramedWriteTransport::with_capacity(2, mem);
393 let b = [0x00, 0x01, 0x02];
394
395 // should have written 3 bytes
396 assert_eq!(t.write(&b).unwrap(), 3);
397 assert_eq_transport_num_written_bytes!(t, 0);
398
399 assert!(t.flush().is_ok());
400
401 let expected_bytes = [
Allen Georgeef7a1892018-12-16 18:01:37 -0500402 0x00, 0x00, 0x00, 0x03, /* message size */
403 0x00, 0x01, 0x02, /* message body */
Allen Georgeb7084cb2017-12-13 07:34:49 -0500404 ];
405
406 assert_eq_transport_written_bytes!(t, expected_bytes);
407 }
408
409 #[test]
410 fn must_return_error_if_nothing_can_be_written_to_inner_transport_on_flush() {
411 let mem = TBufferChannel::with_capacity(0, 0);
412 let mut t = TFramedWriteTransport::with_capacity(1, mem);
413
414 let b = vec![0; 10];
415
416 // should have written 10 bytes
417 assert_eq!(t.write(&b).unwrap(), 10);
418
419 // let's flush
420 let r = t.flush();
421
422 // this time we'll error out because the flush can't write to the underlying channel
423 assert!(r.is_err());
424 }
425
426 #[test]
427 fn must_write_successfully_after_flush() {
428 // IMPORTANT: write capacity *MUST* be greater
429 // than message sizes used in this test + 4-byte frame header
430 let mem = TBufferChannel::with_capacity(0, 10);
431 let mut t = TFramedWriteTransport::with_capacity(5, mem);
432
433 // write and flush
434 let first_message: [u8; 5] = [0x00, 0x01, 0x02, 0x03, 0x04];
435 assert_eq!(t.write(&first_message).unwrap(), 5);
436 assert!(t.flush().is_ok());
437
438 let mut expected = Vec::new();
439 expected.write_all(&[0x00, 0x00, 0x00, 0x05]).unwrap(); // message size
440 expected.extend_from_slice(&first_message);
441
442 // check the flushed bytes
443 assert_eq!(t.channel.write_bytes(), expected);
444
445 // reset our underlying transport
446 t.channel.empty_write_buffer();
447
448 let second_message: [u8; 3] = [0x05, 0x06, 0x07];
449 assert_eq!(t.write(&second_message).unwrap(), 3);
450 assert!(t.flush().is_ok());
451
452 expected.clear();
453 expected.write_all(&[0x00, 0x00, 0x00, 0x03]).unwrap(); // message size
454 expected.extend_from_slice(&second_message);
455
456 // check the flushed bytes
457 assert_eq!(t.channel.write_bytes(), expected);
458 }
Allen George8b96bfb2016-11-02 08:01:08 -0400459}