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
use crate::{
header::{HeaderKey, HeaderValue},
Headers, StatusCode,
};
#[derive(Debug)]
enum ProtocolData<'a> {
Ref(&'a str),
Owned(String),
}
impl<'a> AsRef<str> for ProtocolData<'a> {
fn as_ref(&self) -> &str {
match self {
Self::Ref(tmp) => tmp,
Self::Owned(tmp) => &tmp,
}
}
}
impl<'a> PartialEq for ProtocolData<'a> {
fn eq(&self, other: &ProtocolData<'_>) -> bool {
self.as_ref().eq(other.as_ref())
}
}
#[derive(Debug, PartialEq)]
pub struct Response<'a> {
status_code: StatusCode,
protocol: ProtocolData<'a>,
headers: Headers<'a>,
body: Vec<u8>,
}
impl<'a> Response<'a> {
pub fn new(
protocol: &'a str,
status_code: StatusCode,
headers: Headers<'a>,
body: Vec<u8>,
) -> Self {
Self {
status_code,
protocol: ProtocolData::Ref(protocol),
headers,
body,
}
}
pub(crate) fn new_owned(
protocol: String,
status_code: StatusCode,
headers: Headers<'a>,
body: Vec<u8>,
) -> Self {
Self {
status_code,
protocol: ProtocolData::Owned(protocol),
headers,
body,
}
}
pub fn serialize(&self) -> (Vec<u8>, &[u8]) {
let protocol = self.protocol.as_ref();
let status_code = self.status_code.serialize();
let capacity = protocol.len() + 1 + status_code.len() + 4;
let mut result = Vec::with_capacity(capacity);
result.extend_from_slice(protocol.as_bytes());
result.push(b' ');
result.extend_from_slice(status_code.as_bytes());
result.extend_from_slice("\r\n".as_bytes());
self.headers.serialize(&mut result);
result.extend_from_slice("\r\n".as_bytes());
(result, &self.body)
}
pub fn protocol(&self) -> &str {
self.protocol.as_ref()
}
pub fn status_code(&self) -> &StatusCode {
&self.status_code
}
pub fn headers(&self) -> &Headers<'a> {
&self.headers
}
pub fn body(&self) -> &[u8] {
&self.body
}
pub fn add_header<'b, K, V>(&mut self, key: K, value: V)
where
'b: 'a,
K: Into<HeaderKey<'a>>,
V: Into<HeaderValue<'a>>,
{
self.headers.set(key, value);
}
pub fn set_body(&mut self, n_body: Vec<u8>) {
self.body = n_body;
self.add_header("Content-Length", self.body.len());
}
pub fn is_chunked(&self) -> bool {
match self.headers.get("Transfer-Encoding") {
None => false,
Some(value) => value.eq_ignore_case(&HeaderValue::StrRef("Chunked")),
}
}
pub fn to_owned<'refed, 'owned>(&'refed self) -> Response<'owned> {
Response::new_owned(
self.protocol.as_ref().to_owned(),
self.status_code.clone(),
self.headers.to_owned(),
self.body.clone(),
)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn serialize_valid() {
let mut headers = Headers::new();
headers.set("test-1", "value-1");
let req = Response::new(
"HTTP/1.1",
StatusCode::OK,
headers,
"body".as_bytes().to_vec(),
);
let raw_resp_header = "HTTP/1.1 200 OK\r\ntest-1: value-1\r\n\r\n";
let resp_header = raw_resp_header.as_bytes().to_vec();
let resp_body = "body".as_bytes();
assert_eq!(req.serialize(), (resp_header, resp_body));
}
#[test]
fn serialize_valid_no_body() {
let mut headers = Headers::new();
headers.set("test-1", "value-1");
let req = Response::new("HTTP/1.1", StatusCode::OK, headers, "".as_bytes().to_vec());
let raw_resp_header = "HTTP/1.1 200 OK\r\ntest-1: value-1\r\n\r\n";
let resp_header = raw_resp_header.as_bytes().to_vec();
let resp_body = "".as_bytes();
assert_eq!(req.serialize(), (resp_header, resp_body));
}
#[test]
fn is_chunked_not_set() {
let mut headers = Headers::new();
headers.set("test-1", "value-1");
let resp = Response::new("HTTP/1.1", StatusCode::OK, headers, "".as_bytes().to_vec());
assert_eq!(false, resp.is_chunked());
}
#[test]
fn is_chunked_set() {
let mut headers = Headers::new();
headers.set("Transfer-Encoding", "Chunked");
let resp = Response::new("HTTP/1.1", StatusCode::OK, headers, "".as_bytes().to_vec());
assert_eq!(true, resp.is_chunked());
}
#[test]
fn is_chunked_set_differently() {
let mut headers = Headers::new();
headers.set("Transfer-Encoding", "compress");
let resp = Response::new("HTTP/1.1", StatusCode::OK, headers, "".as_bytes().to_vec());
assert_eq!(false, resp.is_chunked());
}
#[test]
fn to_owned() {
let resp = Response::new("HTTP/1.1", StatusCode::OK, Headers::new(), Vec::new());
let cloned = resp.to_owned();
drop(resp);
assert_eq!(&StatusCode::OK, cloned.status_code())
}
}