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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
use std::io;
use std::fmt::Display;
use futures::{Future, Poll, Async};
use tk_bufstream::{WriteBuf, WriteRaw, FutureWriteRaw};
use tokio_io::AsyncWrite;
use base_serializer::{MessageState, HeaderError};
use enums::{Version, Status};
use super::headers::Head;
pub struct Encoder<S> {
state: MessageState,
io: WriteBuf<S>,
}
pub struct EncoderDone<S> {
buf: WriteBuf<S>,
}
#[derive(Debug, Clone, Copy)]
pub struct ResponseConfig {
pub is_head: bool,
pub do_close: bool,
pub version: Version,
}
pub struct FutureRawBody<S>(FutureWriteRaw<S>);
pub struct WaitFlush<S>(Option<Encoder<S>>, usize);
pub struct RawBody<S> {
io: WriteRaw<S>,
}
impl<S> Encoder<S> {
pub fn response_continue(&mut self) {
self.state.response_continue(&mut self.io.out_buf)
}
pub fn status(&mut self, status: Status) {
self.state.response_status(&mut self.io.out_buf,
status.code(), status.reason())
}
pub fn custom_status(&mut self, code: u16, reason: &str) {
self.state.response_status(&mut self.io.out_buf, code, reason)
}
pub fn add_header<V: AsRef<[u8]>>(&mut self, name: &str, value: V)
-> Result<(), HeaderError>
{
self.state.add_header(&mut self.io.out_buf, name, value.as_ref())
}
pub fn format_header<D: Display>(&mut self, name: &str, value: D)
-> Result<(), HeaderError>
{
self.state.format_header(&mut self.io.out_buf, name, value)
}
pub fn add_length(&mut self, n: u64)
-> Result<(), HeaderError>
{
self.state.add_length(&mut self.io.out_buf, n)
}
pub fn add_chunked(&mut self)
-> Result<(), HeaderError>
{
self.state.add_chunked(&mut self.io.out_buf)
}
#[cfg(feature="date_header")]
pub fn add_date(&mut self) {
use httpdate::HttpDate;
use std::time::SystemTime;
self.format_header("Date", HttpDate::from(SystemTime::now()))
.expect("always valid to add a date")
}
pub fn is_started(&self) -> bool {
self.state.is_started()
}
pub fn done_headers(&mut self) -> Result<bool, HeaderError> {
self.state.done_headers(&mut self.io.out_buf)
}
pub fn write_body(&mut self, data: &[u8]) {
self.state.write_body(&mut self.io.out_buf, data)
}
pub fn is_complete(&self) -> bool {
self.state.is_complete()
}
pub fn done(mut self) -> EncoderDone<S> {
self.state.done(&mut self.io.out_buf);
EncoderDone { buf: self.io }
}
pub fn raw_body(self) -> FutureRawBody<S> {
assert!(self.state.is_after_headers());
FutureRawBody(self.io.borrow_raw())
}
pub fn flush(&mut self) -> Result<(), io::Error>
where S: AsyncWrite
{
self.io.flush()
}
pub fn bytes_buffered(&mut self) -> usize {
self.io.out_buf.len()
}
pub fn wait_flush(self, watermark: usize) -> WaitFlush<S> {
WaitFlush(Some(self), watermark)
}
}
impl<S> RawBody<S> {
pub fn done(self) -> EncoderDone<S> {
EncoderDone { buf: self.io.into_buf() }
}
}
impl<S> io::Write for Encoder<S> {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.write_body(buf);
Ok(buf.len())
}
fn flush(&mut self) -> io::Result<()> {
Ok(())
}
}
impl<S: AsyncWrite> AsyncWrite for Encoder<S> {
fn shutdown(&mut self) -> Poll<(), io::Error> {
panic!("Can't shutdown request encoder");
}
}
impl<S: AsyncWrite> io::Write for RawBody<S> {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.io.get_mut().write(buf)
}
fn flush(&mut self) -> io::Result<()> {
self.io.get_mut().flush()
}
}
impl<S: AsyncWrite> AsyncWrite for RawBody<S> {
fn shutdown(&mut self) -> Poll<(), io::Error> {
panic!("Can't shutdown request body");
}
}
pub fn get_inner<S>(e: EncoderDone<S>) -> WriteBuf<S> {
e.buf
}
pub fn new<S>(io: WriteBuf<S>, cfg: ResponseConfig) -> Encoder<S> {
use base_serializer::Body::*;
Encoder {
state: MessageState::ResponseStart {
body: if cfg.is_head { Head } else { Normal },
version: cfg.version,
close: cfg.do_close || cfg.version == Version::Http10,
},
io: io,
}
}
impl ResponseConfig {
pub fn from(req: &Head) -> ResponseConfig {
ResponseConfig {
version: req.version(),
is_head: req.method() == "HEAD",
do_close: req.connection_close(),
}
}
}
impl<S: AsyncWrite> Future for FutureRawBody<S> {
type Item = RawBody<S>;
type Error = io::Error;
fn poll(&mut self) -> Poll<RawBody<S>, io::Error> {
self.0.poll().map(|x| x.map(|y| RawBody { io: y }))
}
}
impl<S: AsyncWrite> Future for WaitFlush<S> {
type Item = Encoder<S>;
type Error = io::Error;
fn poll(&mut self) -> Result<Async<Encoder<S>>, io::Error> {
let bytes_left = {
let enc = self.0.as_mut().expect("future is polled twice");
enc.flush()?;
enc.io.out_buf.len()
};
if bytes_left < self.1 {
Ok(Async::Ready(self.0.take().unwrap()))
} else {
Ok(Async::NotReady)
}
}
}
#[cfg(feature="sendfile")]
mod sendfile {
extern crate tk_sendfile;
use std::io;
use futures::{Async};
use self::tk_sendfile::{Destination, FileOpener, Sendfile};
use super::RawBody;
impl<T: Destination> Destination for RawBody<T> {
fn write_file<O: FileOpener>(&mut self, file: &mut Sendfile<O>)
-> Result<usize, io::Error>
{
self.io.get_mut().write_file(file)
}
fn poll_write(&self) -> Async<()> {
self.io.get_ref().poll_write()
}
}
}
#[cfg(test)]
mod test {
use tk_bufstream::{MockData, IoBuf};
use {Status};
use base_serializer::{MessageState, Body};
use super::{Encoder, EncoderDone};
use enums::Version;
fn do_response11_str<F>(fun: F) -> String
where F: FnOnce(Encoder<MockData>) -> EncoderDone<MockData>
{
let mock = MockData::new();
let done = fun(Encoder {
state: MessageState::ResponseStart {
body: Body::Normal,
version: Version::Http11,
close: false,
},
io: IoBuf::new(mock.clone()).split().0,
});
{done}.buf.flush().unwrap();
String::from_utf8_lossy(&mock.output(..)).to_string()
}
#[test]
fn date_header() {
assert!(do_response11_str(|mut enc| {
enc.status(Status::Ok);
enc.add_date();
enc.add_length(0).unwrap();
enc.done_headers().unwrap();
enc.done()
}).starts_with("HTTP/1.1 200 OK\r\nDate: "));
}
}