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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
use super::fuse::Fuse;
use super::Encoder;
use bytes::{Buf, BytesMut};
use futures_sink::Sink;
use futures_util::io::{AsyncRead, AsyncWrite};
use futures_util::ready;
use pin_project_lite::pin_project;
use std::io::{Error, ErrorKind};
use std::marker::Unpin;
use std::ops::{Deref, DerefMut};
use std::pin::Pin;
use std::task::{Context, Poll};
pin_project! {
#[derive(Debug)]
pub struct FramedWrite<T, E> {
#[pin]
inner: FramedWrite2<Fuse<T, E>>,
}
}
impl<T, E> FramedWrite<T, E>
where
T: AsyncWrite,
E: Encoder,
{
pub fn new(inner: T, encoder: E) -> Self {
Self {
inner: framed_write_2(Fuse::new(inner, encoder), None),
}
}
pub fn from_parts(
FramedWriteParts {
io,
encoder,
buffer,
..
}: FramedWriteParts<T, E>,
) -> Self {
Self {
inner: framed_write_2(Fuse::new(io, encoder), Some(buffer)),
}
}
pub fn send_high_water_mark(&self) -> usize {
self.inner.high_water_mark
}
pub fn set_send_high_water_mark(&mut self, hwm: usize) {
self.inner.high_water_mark = hwm;
}
pub fn into_parts(self) -> FramedWriteParts<T, E> {
let (fuse, buffer) = self.inner.into_parts();
FramedWriteParts {
io: fuse.t,
encoder: fuse.u,
buffer,
_priv: (),
}
}
pub fn into_inner(self) -> T {
self.into_parts().io
}
pub fn encoder(&self) -> &E {
&self.inner.u
}
pub fn encoder_mut(&mut self) -> &mut E {
&mut self.inner.u
}
}
impl<T, E> Sink<E::Item> for FramedWrite<T, E>
where
T: AsyncWrite + Unpin,
E: Encoder,
{
type Error = E::Error;
fn poll_ready(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
self.project().inner.poll_ready(cx)
}
fn start_send(self: Pin<&mut Self>, item: E::Item) -> Result<(), Self::Error> {
self.project().inner.start_send(item)
}
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
self.project().inner.poll_flush(cx)
}
fn poll_close(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
self.project().inner.poll_close(cx)
}
}
impl<T, E> Deref for FramedWrite<T, E> {
type Target = T;
fn deref(&self) -> &T {
&self.inner
}
}
impl<T, E> DerefMut for FramedWrite<T, E> {
fn deref_mut(&mut self) -> &mut T {
&mut self.inner
}
}
pin_project! {
#[derive(Debug)]
pub struct FramedWrite2<T> {
#[pin]
pub inner: T,
pub high_water_mark: usize,
buffer: BytesMut,
}
}
impl<T> Deref for FramedWrite2<T> {
type Target = T;
fn deref(&self) -> &T {
&self.inner
}
}
impl<T> DerefMut for FramedWrite2<T> {
fn deref_mut(&mut self) -> &mut T {
&mut self.inner
}
}
const DEFAULT_SEND_HIGH_WATER_MARK: usize = 131072;
pub fn framed_write_2<T>(inner: T, buffer: Option<BytesMut>) -> FramedWrite2<T> {
FramedWrite2 {
inner,
high_water_mark: DEFAULT_SEND_HIGH_WATER_MARK,
buffer: buffer.unwrap_or_else(|| BytesMut::with_capacity(1028 * 8)),
}
}
impl<T: AsyncRead + Unpin> AsyncRead for FramedWrite2<T> {
fn poll_read(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut [u8],
) -> Poll<Result<usize, Error>> {
self.project().inner.poll_read(cx, buf)
}
}
impl<T> Sink<T::Item> for FramedWrite2<T>
where
T: AsyncWrite + Encoder + Unpin,
{
type Error = T::Error;
fn poll_ready(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
let this = &mut *self;
while this.buffer.len() >= this.high_water_mark {
let num_write = ready!(Pin::new(&mut this.inner).poll_write(cx, &this.buffer))?;
if num_write == 0 {
return Poll::Ready(Err(err_eof().into()));
}
this.buffer.advance(num_write);
}
Poll::Ready(Ok(()))
}
fn start_send(mut self: Pin<&mut Self>, item: T::Item) -> Result<(), Self::Error> {
let this = &mut *self;
this.inner.encode(item, &mut this.buffer)
}
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
let mut this = self.project();
while !this.buffer.is_empty() {
let num_write = ready!(Pin::new(&mut this.inner).poll_write(cx, &this.buffer))?;
if num_write == 0 {
return Poll::Ready(Err(err_eof().into()));
}
this.buffer.advance(num_write);
}
this.inner.poll_flush(cx).map_err(Into::into)
}
fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
ready!(self.as_mut().poll_flush(cx))?;
self.project().inner.poll_close(cx).map_err(Into::into)
}
}
impl<T> FramedWrite2<T> {
pub fn into_parts(self) -> (T, BytesMut) {
(self.inner, self.buffer)
}
}
fn err_eof() -> Error {
Error::new(ErrorKind::UnexpectedEof, "End of file")
}
pub struct FramedWriteParts<T, E> {
pub io: T,
pub encoder: E,
pub buffer: BytesMut,
_priv: (),
}
impl<T, E> FramedWriteParts<T, E> {
pub fn map_encoder<G, F>(self, f: F) -> FramedWriteParts<T, G>
where
G: Encoder,
F: FnOnce(E) -> G,
{
FramedWriteParts {
io: self.io,
encoder: f(self.encoder),
buffer: self.buffer,
_priv: (),
}
}
}