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
#![allow(dead_code)]
use std::{io, slice, str, fmt};
use std::fs::File;
use std::io::{Error, Read, BufReader};
use std::net::SocketAddr;
use std::collections::HashMap;
use std::collections::hash_map::Entry::*;
use std::ops::DerefMut;
use std::cmp;
use std::str::FromStr;
use tokio_core::io::{EasyBuf, EasyBufMut};
use unicase::UniCase;
use httparse;
use url::form_urlencoded;
use server::{HttpRequest, Multipart, Entries, SaveResult};
use super::buffer::Buffer;
use Method;
use Handler;
use Router;
use Logger;
#[derive(Clone)]
struct ReqReader {
inner: EasyBuf,
pos: usize,
cap: usize,
}
impl ReqReader {
fn new(inner: EasyBuf) -> ReqReader {
ReqReader{ inner: inner.clone(), pos: 0, cap: inner.len() }
}
fn consume(&mut self, amt: usize) {
self.pos = cmp::min(self.pos + amt, self.cap);
}
fn reset(&mut self) {
self.pos = 0;
self.cap = self.inner.len();
}
fn as_slice(&self) -> &[u8] {
self.inner.as_slice()
}
}
impl Read for ReqReader {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
let len = cmp::min(buf.len(), self.cap - self.pos);
buf[0..len].copy_from_slice(&self.inner.as_slice()[self.pos..self.pos + len]);
self.consume(len);
Ok(len)
}
}
#[derive(Clone)]
pub struct Request {
content_length: usize,
content_type: String,
content_type_metadata: String,
host: String,
method: Slice,
password: String,
path: Slice,
payload: Slice,
query: Slice,
request_line: String,
scheme: String,
uri: String,
username: String,
version: u8,
remote_addr: Option<SocketAddr>,
headers: Vec<(Slice, Slice)>,
data: ReqReader,
handler: Option<Handler>,
pub logger: Option<Logger>,
}
type Slice = (usize, usize);
#[derive(Debug)]
pub struct RequestHeaders<'req> {
pub headers: slice::Iter<'req, (Slice, Slice)>,
req: &'req Request,
}
impl Read for Request {
fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> Result<usize, io::Error> {
let len = try!(self.data.read(buf));
Ok(len)
}
}
impl Request {
pub fn content_length(&self) -> usize {
self.content_length
}
pub fn content_type(&self) -> &str {
match self.content_type.find(';') {
Some(index) => &self.content_type[..index],
None => &self.content_type,
}
}
pub fn content_type_metadata(&self) -> Option<&str> {
if self.content_type_metadata.is_empty() {
None
} else {
Some(&self.content_type_metadata)
}
}
pub fn content_type_all(&self) -> &str {
&self.content_type
}
pub fn host(&self) -> &str {
&self.host
}
pub fn handler(&self) -> Option<Handler> {
self.handler
}
pub fn method(&self) -> Method {
let method = str::from_utf8(self.slice(&self.method)).unwrap();
Method::from_str(method).unwrap_or(Method::Get)
}
pub fn password(&self) -> &str {
&self.password
}
pub fn path(&self) -> &str {
str::from_utf8(self.slice(&self.path)).unwrap()
}
pub fn payload(&self) -> Option<&[u8]> {
if self.payload.0 == 0 && self.payload.1 == 0 {
None
} else {
Some(self.slice(&self.payload))
}
}
pub fn query(&self) -> Option<HashMap<String, Vec<String>>> {
if self.query.0 == 0 && self.query.1 == 0 {
None
} else {
let data = str::from_utf8(self.slice(&self.query)).unwrap();
Some(combine_duplicates(form_urlencoded::parse(data.as_bytes()).into_owned()))
}
}
pub fn urldecode(&self, data: &[u8]) -> Option<HashMap<String, Vec<String>>> {
if data.is_empty() {
None
} else {
Some(combine_duplicates(form_urlencoded::parse(data).into_owned()))
}
}
pub fn scheme(&self) -> &str {
&self.scheme
}
pub fn set_scheme(&mut self, scheme: &str) -> &str {
self.scheme = scheme.to_string();
&self.scheme
}
pub fn set_remote_addr(&mut self, remote_addr: SocketAddr) {
self.remote_addr = Some(remote_addr);
}
pub fn remote_addr(&mut self) -> Option<SocketAddr> {
self.remote_addr
}
pub fn request_line(&self) -> &str {
&self.request_line
}
pub fn uri(&self) -> &str {
&self.uri
}
pub fn user_agent(&self) -> Option<&str> {
self.header("user-agent")
}
pub fn user_name(&self) -> &str {
&self.username
}
pub fn version(&self) -> u8 {
self.version
}
pub fn header(&self, key: &str) -> Option<&str> {
match self.headers().find(|&(k, v)| UniCase(k) == UniCase(key)) {
Some((key, value)) => Some(str::from_utf8(value).unwrap_or("")),
None => None
}
}
pub fn headers(&self) -> RequestHeaders {
RequestHeaders {
headers: self.headers.iter(),
req: self,
}
}
fn slice(&self, slice: &Slice) -> &[u8] {
&self.data.as_slice()[slice.0..slice.1]
}
}
fn header<'a>(req: &'a mut httparse::Request, key: &str) -> Option<&'a str> {
let value: &str;
for h in req.headers.iter() {
if UniCase(h.name) == UniCase(key) {
value = str::from_utf8(h.value).unwrap_or("");
if value.is_empty() {
return None;
} else {
return Some(value);
}
}
}
None
}
impl fmt::Debug for Request {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "<HTTP Request {} {}>", self.method(), self.path())
}
}
fn combine_duplicates<I: Iterator<Item=(String, String)>>(collection: I) -> HashMap<String, Vec<String>> {
let mut deduplicated: HashMap<String, Vec<String>> = HashMap::new();
for (k, v) in collection {
match deduplicated.entry(k) {
Occupied(entry) => { entry.into_mut().push(v); },
Vacant(entry) => { entry.insert(vec![v]); },
};
}
deduplicated
}
pub fn decode(buf: &mut EasyBuf,
remote_addr: Option<SocketAddr>,
router: Option<Router>,
logger: Option<Logger>)
-> io::Result<Option<Request>> {
let (content_length, content_type, content_type_metadata, handler, host, method, path, payload, query, request_line, scheme, uri, version, headers, amt) = {
let mut headers = [httparse::EMPTY_HEADER; 16];
let mut r = httparse::Request::new(&mut headers);
let status = try!(r.parse(buf.as_slice()).map_err(|e| {
let msg = format!("failed to parse http request: {:?}", e);
io::Error::new(io::ErrorKind::Other, msg)
}));
let mut amt = match status {
httparse::Status::Complete(amt) => amt,
httparse::Status::Partial => return Ok(None),
};
let toslice = |a: &[u8]| {
let start = a.as_ptr() as usize - buf.as_slice().as_ptr() as usize;
assert!(start < buf.len());
(start, start + a.len())
};
let scheme = String::from("http");
let host = header(&mut r, "host").unwrap_or("").to_string();
let content_type: String;
match r.method {
Some("POST") | Some("PUT") => content_type = header(&mut r, "content-type").unwrap_or("application/octet-stream").to_string(),
Some(_) => content_type = header(&mut r, "accept").unwrap_or("text/plain").to_string(),
None => content_type = "application/octet-stream".to_string(),
}
let mut content_type_metadata = String::new();
match content_type.find(';') {
Some(index) => {
content_type_metadata = content_type[index+1..].trim().to_string();
},
None => {},
}
let content_length: usize = header(&mut r, "content-length").unwrap_or("0").parse::<usize>().unwrap_or(0);
amt += content_length;
let method = toslice(r.method.unwrap().as_bytes());
let uri = toslice(r.path.unwrap().as_bytes());
let uri_str = r.path.unwrap();
let query: Slice;
let path: Slice;
let payload: Slice = if content_length > 0 {((amt as u64 - content_length as u64) as usize, amt)} else {(0,0)};
if let Some(index) = uri_str.find('?') {
path = (uri.0, uri.0 + index);
query = (path.1 + 1, uri.1);
} else {
path = (uri.0, uri.1);
query = (0, 0);
}
let uri = format!("{}://{}{}", scheme, host, uri_str);
let mut handler: Option<Handler> = None;
if router.is_some() {
let m = Method::from_str(r.method.unwrap()).unwrap();
let p = str::from_utf8(&buf.as_slice()[path.0..path.1]).unwrap_or("");
handler = router.unwrap().find_handler_with_method_and_path(m, p);
}
let request_line = format!("{} {} HTTP/1.{}", r.method.unwrap(), r.path.unwrap_or(""), r.version.unwrap());
(
content_length,
content_type,
content_type_metadata,
handler,
host,
method,
path,
payload,
query,
request_line,
scheme,
uri,
r.version.unwrap(),
r.headers
.iter()
.map(|h| (toslice(h.name.as_bytes()), toslice(h.value)))
.collect(),
amt
)
};
let res = Request {
content_length: content_length,
content_type: content_type,
content_type_metadata: content_type_metadata,
host: host,
method: method,
password: "".to_string(),
path: path,
payload: payload,
query: query,
remote_addr: remote_addr,
request_line: request_line,
scheme: scheme,
uri: uri,
username: "".to_string(),
version: version,
headers: headers,
data: ReqReader::new(buf.drain_to(amt)),
handler: handler,
logger: logger,
};
Ok(Some(res))
}
impl<'req> Iterator for RequestHeaders<'req> {
type Item = (&'req str, &'req [u8]);
fn next(&mut self) -> Option<(&'req str, &'req [u8])> {
self.headers.next().map(|&(ref a, ref b)| {
let a = self.req.slice(a);
let b = self.req.slice(b);
(str::from_utf8(a).unwrap(), b)
})
}
}
impl HttpRequest for Request {
type Body = Self;
fn multipart_boundary(&self) -> Option<&str> {
const BOUNDARY: &'static str = "boundary=";
match self.content_type_metadata() {
Some(meta) => {
let index = meta.find(BOUNDARY).unwrap_or(0) + BOUNDARY.len();
Some(&meta[index..])
},
None => None
}
}
fn body(self) -> Self::Body {
self
}
}