1use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
19use std::cmp;
20use std::io;
21use std::io::{Read, Write};
22
23use super::{TReadTransport, TReadTransportFactory, TWriteTransport, TWriteTransportFactory};
24
25const READ_CAPACITY: usize = 4096;
27
28const WRITE_CAPACITY: usize = 4096;
30
31#[derive(Debug)]
56pub struct TFramedReadTransport<C>
57where
58 C: Read,
59{
60 buf: Vec<u8>,
61 pos: usize,
62 cap: usize,
63 chan: C,
64}
65
66impl<C> TFramedReadTransport<C>
67where
68 C: Read,
69{
70 pub fn new(channel: C) -> TFramedReadTransport<C> {
73 TFramedReadTransport::with_capacity(READ_CAPACITY, channel)
74 }
75
76 pub fn with_capacity(read_capacity: usize, channel: C) -> TFramedReadTransport<C> {
79 TFramedReadTransport {
80 buf: vec![0; read_capacity], pos: 0,
82 cap: 0,
83 chan: channel,
84 }
85 }
86}
87
88impl<C> Read for TFramedReadTransport<C>
89where
90 C: Read,
91{
92 fn read(&mut self, b: &mut [u8]) -> io::Result<usize> {
93 if self.cap - self.pos == 0 {
94 let message_size = self.chan.read_i32::<BigEndian>()? as usize;
95
96 let buf_capacity = cmp::max(message_size, READ_CAPACITY);
97 self.buf.resize(buf_capacity, 0);
98
99 self.chan.read_exact(&mut self.buf[..message_size])?;
100 self.cap = message_size as usize;
101 self.pos = 0;
102 }
103
104 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;
107
108 Ok(nread)
109 }
110}
111
112#[derive(Default)]
114pub struct TFramedReadTransportFactory;
115
116impl TFramedReadTransportFactory {
117 pub fn new() -> TFramedReadTransportFactory {
118 TFramedReadTransportFactory {}
119 }
120}
121
122impl TReadTransportFactory for TFramedReadTransportFactory {
123 fn create(&self, channel: Box<dyn Read + Send>) -> Box<dyn TReadTransport + Send> {
125 Box::new(TFramedReadTransport::new(channel))
126 }
127}
128
129#[derive(Debug)]
154pub struct TFramedWriteTransport<C>
155where
156 C: Write,
157{
158 buf: Vec<u8>,
159 channel: C,
160}
161
162impl<C> TFramedWriteTransport<C>
163where
164 C: Write,
165{
166 pub fn new(channel: C) -> TFramedWriteTransport<C> {
169 TFramedWriteTransport::with_capacity(WRITE_CAPACITY, channel)
170 }
171
172 pub fn with_capacity(write_capacity: usize, channel: C) -> TFramedWriteTransport<C> {
175 TFramedWriteTransport {
176 buf: Vec::with_capacity(write_capacity),
177 channel,
178 }
179 }
180}
181
182impl<C> Write for TFramedWriteTransport<C>
183where
184 C: Write,
185{
186 fn write(&mut self, b: &[u8]) -> io::Result<usize> {
187 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);
192 }
193
194 self.buf.extend_from_slice(b);
195 Ok(b.len())
196 }
197
198 fn flush(&mut self) -> io::Result<()> {
199 let message_size = self.buf.len();
200
201 if let 0 = message_size {
202 return Ok(());
203 } else {
204 self.channel.write_i32::<BigEndian>(message_size as i32)?;
205 }
206
207 let mut byte_index = 0;
209 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);
212 }
213
214 let buf_capacity = cmp::min(self.buf.capacity(), WRITE_CAPACITY);
215 self.buf.resize(buf_capacity, 0);
216 self.buf.clear();
217
218 self.channel.flush()
219 }
220}
221
222#[derive(Default)]
224pub struct TFramedWriteTransportFactory;
225
226impl TFramedWriteTransportFactory {
227 pub fn new() -> TFramedWriteTransportFactory {
228 TFramedWriteTransportFactory {}
229 }
230}
231
232impl TWriteTransportFactory for TFramedWriteTransportFactory {
233 fn create(&self, channel: Box<dyn Write + Send>) -> Box<dyn TWriteTransport + Send> {
235 Box::new(TFramedWriteTransport::new(channel))
236 }
237}
238
239#[cfg(test)]
240mod tests {
241 use super::*;
242 use crate::transport::mem::TBufferChannel;
243
244 #[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
251 t.chan.set_readable_bytes(&[
252 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x02, 0x03, ]);
255
256 let mut buf = vec![0; 8];
257
258 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
268 t.chan.set_readable_bytes(&[
269 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x02, 0x03, ]);
272
273 let mut buf = vec![0; 8];
274
275 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 t.chan.set_readable_bytes(&[
290 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x02, 0x03, ]);
293
294 let mut buf = vec![0; 8];
295
296 assert_eq!(t.read(&mut buf).unwrap(), 4);
298 assert_eq!(&buf, &[0x00, 0x01, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00]);
299
300 t.chan.set_readable_bytes(&[
305 0x00, 0x00, 0x00, 0x01, 0x04, ]);
308
309 let mut buf = vec![0; 8];
310
311 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 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 = [
350 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x02, 0x03, 0x04, ];
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 let mut t = TFramedWriteTransport::with_capacity(1, mem);
367 let b = [0x00, 0x01, 0x02];
368
369 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 = [
376 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x02, ];
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 let mut t = TFramedWriteTransport::with_capacity(2, mem);
393 let b = [0x00, 0x01, 0x02];
394
395 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 = [
402 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x02, ];
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 assert_eq!(t.write(&b).unwrap(), 10);
418
419 let r = t.flush();
421
422 assert!(r.is_err());
424 }
425
426 #[test]
427 fn must_write_successfully_after_flush() {
428 let mem = TBufferChannel::with_capacity(0, 10);
431 let mut t = TFramedWriteTransport::with_capacity(5, mem);
432
433 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(); expected.extend_from_slice(&first_message);
441
442 assert_eq!(t.channel.write_bytes(), expected);
444
445 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(); expected.extend_from_slice(&second_message);
455
456 assert_eq!(t.channel.write_bytes(), expected);
458 }
459}