1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#![deny(missing_docs)]
#![deny(unused_extern_crates)]
extern crate bincode;
extern crate byteorder;
extern crate serde;
#[macro_use]
extern crate futures;
extern crate tokio;
mod reader;
mod stream;
mod writer;
pub use reader::AsyncBincodeReader;
pub use stream::AsyncBincodeStream;
pub use writer::AsyncBincodeWriter;
pub use writer::{AsyncDestination, BincodeWriterFor, SyncDestination};
use byteorder::{NetworkEndian, WriteBytesExt};
pub fn serialize_into<W, T: ?Sized>(mut writer: W, value: &T) -> bincode::Result<()>
where
W: std::io::Write,
T: serde::Serialize,
{
let c = bincode::config();
let size = c.serialized_size(value)? as u32;
writer.write_u32::<NetworkEndian>(size)?;
c.serialize_into(writer, value)
}
#[cfg(test)]
mod tests {
use super::*;
use futures::{Future, Sink, Stream};
use std::net::SocketAddr;
use std::thread;
#[test]
fn it_works() {
let echo = tokio::net::TcpListener::bind(&SocketAddr::new("127.0.0.1".parse().unwrap(), 0))
.unwrap();
let addr = echo.local_addr().unwrap();
let jh = thread::spawn(move || {
tokio::run(
echo.incoming()
.map_err(bincode::Error::from)
.take(1)
.for_each(|stream| {
let (r, w) = AsyncBincodeStream::<_, usize, usize, _>::from(stream)
.for_async()
.split();
r.forward(w).map(|_| ())
})
.map_err(|e| panic!(e)),
)
});
let client = tokio::net::TcpStream::connect(&addr).wait().unwrap();
let client = AsyncBincodeStream::from(client).for_async();
let client = client.send(42usize).wait().unwrap();
let (got, client) = match client.into_future().wait() {
Ok(x) => x,
Err((e, _)) => panic!(e),
};
assert_eq!(got, Some(42usize));
let client = client.send(44usize).wait().unwrap();
let (got, client) = match client.into_future().wait() {
Ok(x) => x,
Err((e, _)) => panic!(e),
};
assert_eq!(got, Some(44usize));
drop(client);
jh.join().unwrap();
}
}