2018-10-05 06:14:18 +02:00
|
|
|
#![allow(unused_imports, unused_variables, dead_code)]
|
2017-11-09 01:44:23 +01:00
|
|
|
use std::fmt::Write as FmtWrite;
|
2018-06-24 06:42:20 +02:00
|
|
|
use std::io::Write;
|
2017-11-09 01:44:23 +01:00
|
|
|
use std::str::FromStr;
|
2018-06-24 06:30:58 +02:00
|
|
|
use std::{cmp, fmt, io, mem};
|
2017-11-09 01:44:23 +01:00
|
|
|
|
2018-10-05 08:39:11 +02:00
|
|
|
use bytes::{Bytes, BytesMut};
|
2018-10-05 01:22:00 +02:00
|
|
|
use http::header::{HeaderValue, ACCEPT_ENCODING, CONTENT_LENGTH};
|
2018-10-02 18:15:48 +02:00
|
|
|
use http::{StatusCode, Version};
|
2017-11-07 01:23:58 +01:00
|
|
|
|
2018-04-14 01:02:01 +02:00
|
|
|
use body::{Binary, Body};
|
|
|
|
use header::ContentEncoding;
|
2018-10-05 08:39:11 +02:00
|
|
|
use http::Method;
|
|
|
|
use request::Request;
|
2018-10-05 20:04:59 +02:00
|
|
|
use response::Response;
|
2018-10-05 01:22:00 +02:00
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub(crate) enum ResponseLength {
|
|
|
|
Chunked,
|
2018-10-09 00:24:51 +02:00
|
|
|
/// Check if headers contains length or write 0
|
2018-10-09 00:33:38 +02:00
|
|
|
Zero,
|
2018-06-25 06:58:04 +02:00
|
|
|
Length(usize),
|
|
|
|
Length64(u64),
|
2018-10-09 00:24:51 +02:00
|
|
|
/// Do no set content-length
|
2018-06-25 06:58:04 +02:00
|
|
|
None,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
2018-10-05 19:03:10 +02:00
|
|
|
pub(crate) struct ResponseEncoder {
|
2018-06-25 06:58:04 +02:00
|
|
|
head: bool,
|
|
|
|
pub length: ResponseLength,
|
2018-10-05 08:39:11 +02:00
|
|
|
pub te: TransferEncoding,
|
2018-06-25 06:58:04 +02:00
|
|
|
}
|
|
|
|
|
2018-10-05 19:03:10 +02:00
|
|
|
impl Default for ResponseEncoder {
|
2018-10-05 08:39:11 +02:00
|
|
|
fn default() -> Self {
|
2018-10-05 19:03:10 +02:00
|
|
|
ResponseEncoder {
|
2018-10-05 08:39:11 +02:00
|
|
|
head: false,
|
2018-06-25 06:58:04 +02:00
|
|
|
length: ResponseLength::None,
|
2018-10-05 08:39:11 +02:00
|
|
|
te: TransferEncoding::empty(),
|
2018-06-25 06:58:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 19:03:10 +02:00
|
|
|
impl ResponseEncoder {
|
2018-10-09 00:24:51 +02:00
|
|
|
/// Encode message
|
|
|
|
pub fn encode(&mut self, msg: &[u8], buf: &mut BytesMut) -> io::Result<bool> {
|
|
|
|
self.te.encode(msg, buf)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Encode eof
|
|
|
|
pub fn encode_eof(&mut self, buf: &mut BytesMut) -> io::Result<()> {
|
|
|
|
self.te.encode_eof(buf)
|
|
|
|
}
|
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
pub fn update(&mut self, resp: &mut Response, head: bool, version: Version) {
|
2018-10-05 08:39:11 +02:00
|
|
|
self.head = head;
|
2018-06-24 06:30:58 +02:00
|
|
|
|
2018-10-05 08:39:11 +02:00
|
|
|
let version = resp.version().unwrap_or_else(|| version);
|
2018-05-16 01:41:46 +02:00
|
|
|
let mut len = 0;
|
2018-05-17 21:23:37 +02:00
|
|
|
|
2018-05-16 01:41:46 +02:00
|
|
|
let has_body = match resp.body() {
|
2018-10-02 06:16:56 +02:00
|
|
|
Body::Empty => false,
|
|
|
|
Body::Binary(ref bin) => {
|
2018-05-16 01:41:46 +02:00
|
|
|
len = bin.len();
|
2018-10-05 08:39:11 +02:00
|
|
|
true
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2017-11-30 04:18:37 +01:00
|
|
|
_ => true,
|
|
|
|
};
|
2017-11-09 01:44:23 +01:00
|
|
|
|
2018-10-05 08:39:11 +02:00
|
|
|
let has_body = match resp.body() {
|
|
|
|
Body::Empty => false,
|
|
|
|
_ => true,
|
2017-11-09 01:44:23 +01:00
|
|
|
};
|
|
|
|
|
2018-06-24 18:05:44 +02:00
|
|
|
let transfer = match resp.body() {
|
2018-10-02 06:16:56 +02:00
|
|
|
Body::Empty => {
|
2018-10-09 00:24:51 +02:00
|
|
|
self.length = match resp.status() {
|
|
|
|
StatusCode::NO_CONTENT
|
|
|
|
| StatusCode::CONTINUE
|
|
|
|
| StatusCode::SWITCHING_PROTOCOLS
|
|
|
|
| StatusCode::PROCESSING => ResponseLength::None,
|
2018-10-09 00:33:38 +02:00
|
|
|
_ => ResponseLength::Zero,
|
2018-10-09 00:24:51 +02:00
|
|
|
};
|
2018-10-05 08:39:11 +02:00
|
|
|
TransferEncoding::empty()
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2018-10-02 06:16:56 +02:00
|
|
|
Body::Binary(_) => {
|
2018-10-05 08:39:11 +02:00
|
|
|
self.length = ResponseLength::Length(len);
|
|
|
|
TransferEncoding::length(len as u64)
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
2018-10-05 02:00:27 +02:00
|
|
|
Body::Streaming(_) => {
|
2018-01-01 02:26:32 +01:00
|
|
|
if resp.upgrade() {
|
2018-10-05 08:39:11 +02:00
|
|
|
self.length = ResponseLength::None;
|
|
|
|
TransferEncoding::eof()
|
2017-11-09 01:44:23 +01:00
|
|
|
} else {
|
2018-10-05 08:39:11 +02:00
|
|
|
self.streaming_encoding(version, resp)
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2018-05-16 01:41:46 +02:00
|
|
|
// check for head response
|
2018-10-05 08:39:11 +02:00
|
|
|
if self.head {
|
2018-05-16 01:41:46 +02:00
|
|
|
resp.set_body(Body::Empty);
|
2018-10-05 08:39:11 +02:00
|
|
|
} else {
|
|
|
|
self.te = transfer;
|
2018-01-21 01:12:38 +01:00
|
|
|
}
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
2018-01-12 00:26:46 +01:00
|
|
|
|
2018-04-14 01:02:01 +02:00
|
|
|
fn streaming_encoding(
|
2018-10-05 20:04:59 +02:00
|
|
|
&mut self, version: Version, resp: &mut Response,
|
2018-04-14 01:02:01 +02:00
|
|
|
) -> TransferEncoding {
|
2018-01-14 01:17:33 +01:00
|
|
|
match resp.chunked() {
|
|
|
|
Some(true) => {
|
|
|
|
// Enable transfer encoding
|
|
|
|
if version == Version::HTTP_2 {
|
2018-10-05 08:39:11 +02:00
|
|
|
self.length = ResponseLength::None;
|
|
|
|
TransferEncoding::eof()
|
2018-01-14 01:17:33 +01:00
|
|
|
} else {
|
2018-10-05 08:39:11 +02:00
|
|
|
self.length = ResponseLength::Chunked;
|
|
|
|
TransferEncoding::chunked()
|
2018-01-14 01:17:33 +01:00
|
|
|
}
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2018-10-05 08:39:11 +02:00
|
|
|
Some(false) => TransferEncoding::eof(),
|
2018-01-14 01:17:33 +01:00
|
|
|
None => {
|
|
|
|
// if Content-Length is specified, then use it as length hint
|
|
|
|
let (len, chunked) =
|
|
|
|
if let Some(len) = resp.headers().get(CONTENT_LENGTH) {
|
|
|
|
// Content-Length
|
|
|
|
if let Ok(s) = len.to_str() {
|
|
|
|
if let Ok(len) = s.parse::<u64>() {
|
|
|
|
(Some(len), false)
|
|
|
|
} else {
|
|
|
|
error!("illegal Content-Length: {:?}", len);
|
|
|
|
(None, false)
|
|
|
|
}
|
2018-01-12 00:26:46 +01:00
|
|
|
} else {
|
|
|
|
error!("illegal Content-Length: {:?}", len);
|
|
|
|
(None, false)
|
|
|
|
}
|
|
|
|
} else {
|
2018-01-14 01:17:33 +01:00
|
|
|
(None, true)
|
|
|
|
};
|
2018-01-12 00:26:46 +01:00
|
|
|
|
2018-01-14 01:17:33 +01:00
|
|
|
if !chunked {
|
|
|
|
if let Some(len) = len {
|
2018-10-05 08:39:11 +02:00
|
|
|
self.length = ResponseLength::Length64(len);
|
|
|
|
TransferEncoding::length(len)
|
2018-01-14 01:17:33 +01:00
|
|
|
} else {
|
2018-10-05 08:39:11 +02:00
|
|
|
TransferEncoding::eof()
|
2018-01-13 21:46:43 +01:00
|
|
|
}
|
2018-01-14 01:17:33 +01:00
|
|
|
} else {
|
|
|
|
// Enable transfer encoding
|
|
|
|
match version {
|
|
|
|
Version::HTTP_11 => {
|
2018-10-05 08:39:11 +02:00
|
|
|
self.length = ResponseLength::Chunked;
|
|
|
|
TransferEncoding::chunked()
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2018-01-14 01:17:33 +01:00
|
|
|
_ => {
|
2018-10-05 08:39:11 +02:00
|
|
|
self.length = ResponseLength::None;
|
|
|
|
TransferEncoding::eof()
|
2018-01-14 01:17:33 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-12 00:26:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Encoders to handle different Transfer-Encodings.
|
2018-06-24 04:54:01 +02:00
|
|
|
#[derive(Debug)]
|
2017-11-09 01:44:23 +01:00
|
|
|
pub(crate) struct TransferEncoding {
|
|
|
|
kind: TransferEncodingKind,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
|
|
|
enum TransferEncodingKind {
|
|
|
|
/// An Encoder for when Transfer-Encoding includes `chunked`.
|
|
|
|
Chunked(bool),
|
|
|
|
/// An Encoder for when Content-Length is set.
|
|
|
|
///
|
|
|
|
/// Enforces that the body is not longer than the Content-Length header.
|
|
|
|
Length(u64),
|
|
|
|
/// An Encoder for when Content-Length is not known.
|
|
|
|
///
|
2018-01-15 22:47:25 +01:00
|
|
|
/// Application decides when to stop writing.
|
2017-11-09 01:44:23 +01:00
|
|
|
Eof,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TransferEncoding {
|
2017-12-13 06:32:58 +01:00
|
|
|
#[inline]
|
2018-06-24 04:54:01 +02:00
|
|
|
pub fn empty() -> TransferEncoding {
|
2017-11-09 01:44:23 +01:00
|
|
|
TransferEncoding {
|
|
|
|
kind: TransferEncodingKind::Eof,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 06:32:58 +01:00
|
|
|
#[inline]
|
2018-10-05 08:39:11 +02:00
|
|
|
pub fn eof() -> TransferEncoding {
|
2017-11-09 01:44:23 +01:00
|
|
|
TransferEncoding {
|
2018-06-24 04:54:01 +02:00
|
|
|
kind: TransferEncodingKind::Eof,
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 06:32:58 +01:00
|
|
|
#[inline]
|
2018-10-05 08:39:11 +02:00
|
|
|
pub fn chunked() -> TransferEncoding {
|
2017-11-09 01:44:23 +01:00
|
|
|
TransferEncoding {
|
2018-06-24 04:54:01 +02:00
|
|
|
kind: TransferEncodingKind::Chunked(false),
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 06:32:58 +01:00
|
|
|
#[inline]
|
2018-10-05 08:39:11 +02:00
|
|
|
pub fn length(len: u64) -> TransferEncoding {
|
2018-06-24 04:54:01 +02:00
|
|
|
TransferEncoding {
|
|
|
|
kind: TransferEncodingKind::Length(len),
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Encode message. Return `EOF` state of encoder
|
2017-12-14 01:44:35 +01:00
|
|
|
#[inline]
|
2018-10-05 08:39:11 +02:00
|
|
|
pub fn encode(&mut self, msg: &[u8], buf: &mut BytesMut) -> io::Result<bool> {
|
2017-11-09 01:44:23 +01:00
|
|
|
match self.kind {
|
|
|
|
TransferEncodingKind::Eof => {
|
2018-01-15 02:00:28 +01:00
|
|
|
let eof = msg.is_empty();
|
2018-10-05 08:39:11 +02:00
|
|
|
buf.extend_from_slice(msg);
|
2018-01-15 02:00:28 +01:00
|
|
|
Ok(eof)
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2017-11-09 01:44:23 +01:00
|
|
|
TransferEncodingKind::Chunked(ref mut eof) => {
|
|
|
|
if *eof {
|
2018-01-04 18:32:15 +01:00
|
|
|
return Ok(true);
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if msg.is_empty() {
|
|
|
|
*eof = true;
|
2018-10-05 08:39:11 +02:00
|
|
|
buf.extend_from_slice(b"0\r\n\r\n");
|
2017-11-09 01:44:23 +01:00
|
|
|
} else {
|
2018-10-05 08:46:43 +02:00
|
|
|
writeln!(Writer(buf), "{:X}\r", msg.len())
|
2018-01-04 18:32:15 +01:00
|
|
|
.map_err(|e| io::Error::new(io::ErrorKind::Other, e))?;
|
2018-05-30 01:32:39 +02:00
|
|
|
|
2018-10-05 08:39:11 +02:00
|
|
|
buf.reserve(msg.len() + 2);
|
|
|
|
buf.extend_from_slice(msg);
|
|
|
|
buf.extend_from_slice(b"\r\n");
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
2018-01-04 18:32:15 +01:00
|
|
|
Ok(*eof)
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2017-11-09 01:44:23 +01:00
|
|
|
TransferEncodingKind::Length(ref mut remaining) => {
|
2018-01-21 01:12:38 +01:00
|
|
|
if *remaining > 0 {
|
|
|
|
if msg.is_empty() {
|
2018-04-14 01:02:01 +02:00
|
|
|
return Ok(*remaining == 0);
|
2018-01-21 01:12:38 +01:00
|
|
|
}
|
|
|
|
let len = cmp::min(*remaining, msg.len() as u64);
|
2018-05-30 01:32:39 +02:00
|
|
|
|
2018-10-05 08:39:11 +02:00
|
|
|
buf.extend_from_slice(&msg[..len as usize]);
|
2017-11-09 01:44:23 +01:00
|
|
|
|
2018-01-21 01:12:38 +01:00
|
|
|
*remaining -= len as u64;
|
|
|
|
Ok(*remaining == 0)
|
|
|
|
} else {
|
|
|
|
Ok(true)
|
|
|
|
}
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Encode eof. Return `EOF` state of encoder
|
2017-12-14 01:44:35 +01:00
|
|
|
#[inline]
|
2018-10-09 00:24:51 +02:00
|
|
|
pub fn encode_eof(&mut self, buf: &mut BytesMut) -> io::Result<()> {
|
2017-11-09 01:44:23 +01:00
|
|
|
match self.kind {
|
2018-10-09 00:24:51 +02:00
|
|
|
TransferEncodingKind::Eof => Ok(()),
|
|
|
|
TransferEncodingKind::Length(rem) => {
|
|
|
|
if rem != 0 {
|
|
|
|
Err(io::Error::new(io::ErrorKind::UnexpectedEof, ""))
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
2017-11-09 01:44:23 +01:00
|
|
|
TransferEncodingKind::Chunked(ref mut eof) => {
|
|
|
|
if !*eof {
|
|
|
|
*eof = true;
|
2018-10-05 08:39:11 +02:00
|
|
|
buf.extend_from_slice(b"0\r\n\r\n");
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
2018-10-09 00:24:51 +02:00
|
|
|
Ok(())
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 08:46:43 +02:00
|
|
|
struct Writer<'a>(pub &'a mut BytesMut);
|
|
|
|
|
|
|
|
impl<'a> io::Write for Writer<'a> {
|
2017-11-09 01:44:23 +01:00
|
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
2018-10-05 08:46:43 +02:00
|
|
|
self.0.extend_from_slice(buf);
|
2017-11-09 01:44:23 +01:00
|
|
|
Ok(buf.len())
|
|
|
|
}
|
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 18:32:15 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2018-06-24 06:42:20 +02:00
|
|
|
use bytes::Bytes;
|
2018-01-04 18:32:15 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_chunked_te() {
|
2018-10-05 08:46:43 +02:00
|
|
|
let mut bytes = BytesMut::new();
|
|
|
|
let mut enc = TransferEncoding::chunked();
|
2018-05-30 01:32:39 +02:00
|
|
|
{
|
2018-10-05 08:46:43 +02:00
|
|
|
assert!(!enc.encode(b"test", &mut bytes).ok().unwrap());
|
|
|
|
assert!(enc.encode(b"", &mut bytes).ok().unwrap());
|
2018-05-30 01:32:39 +02:00
|
|
|
}
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
2018-10-05 08:46:43 +02:00
|
|
|
bytes.take().freeze(),
|
2018-04-14 01:02:01 +02:00
|
|
|
Bytes::from_static(b"4\r\ntest\r\n0\r\n\r\n")
|
|
|
|
);
|
2018-01-04 18:32:15 +01:00
|
|
|
}
|
|
|
|
}
|