This repository was archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathparser.rs
140 lines (121 loc) · 4.14 KB
/
parser.rs
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
// Copyright 2013 The Servo Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! Higher-level Rust constructs for http_parser
use http_parser;
use std::vec::raw::from_buf_raw;
use std::libc::{c_int, c_void, c_char, size_t};
use std::ptr::{null, to_unsafe_ptr};
use http_parser::{http_parser_settings, HTTP_RESPONSE};
use http_parser::{http_parser_init, http_parser_execute};
pub type HttpCallback = @fn() -> bool;
pub type HttpDataCallback = @fn(data: ~[u8]) -> bool;
pub struct ParserCallbacks {
on_message_begin: HttpCallback,
on_url: HttpDataCallback,
on_header_field: HttpDataCallback,
on_header_value: HttpDataCallback,
on_headers_complete: HttpCallback,
on_body: HttpDataCallback,
on_message_complete: HttpCallback
}
pub struct Parser {
http_parser: http_parser::http_parser,
settings: http_parser_settings
}
pub fn Parser() -> Parser {
let http_parser = http_parser::struct_http_parser {
_type_flags: 0,
state: 0,
header_state: 0,
index: 0,
nread: 0,
content_length: 0,
http_major: 0,
http_minor: 0,
status_code: 0,
method: 0,
http_errno_upgrade: 0,
data: null()
};
unsafe {
http_parser_init(&http_parser, HTTP_RESPONSE);
}
let settings = http_parser::struct_http_parser_settings {
on_message_begin: on_message_begin,
on_url: on_url,
on_header_field: on_header_field,
on_header_value: on_header_value,
on_headers_complete: on_headers_complete,
on_body: on_body,
on_message_complete: on_message_complete
};
Parser {
http_parser: http_parser,
settings: settings
}
}
impl Parser {
pub fn execute(&mut self, data: &[u8], callbacks: &ParserCallbacks) -> uint {
unsafe {
self.http_parser.data = to_unsafe_ptr(callbacks) as *c_void;
do data.as_imm_buf |buf, _| {
http_parser_execute(&self.http_parser,
&self.settings,
buf as *c_char,
data.len() as size_t) as uint
}
}
}
pub fn status_code(&self) -> uint {
self.http_parser.status_code as uint
}
}
fn callbacks(http_parser: *http_parser::http_parser) -> *ParserCallbacks {
unsafe {
assert!((*http_parser).data.is_not_null());
return (*http_parser).data as *ParserCallbacks;
}
}
extern fn on_message_begin(http_parser: *http_parser::http_parser) -> c_int {
unsafe {
(!((*callbacks(http_parser)).on_message_begin)()) as c_int
}
}
extern fn on_url(http_parser: *http_parser::http_parser, at: *u8, length: size_t) -> c_int {
unsafe {
(!(((*callbacks(http_parser)).on_url)(from_buf_raw(at, length as uint)))) as c_int
}
}
extern fn on_header_field(http_parser: *http_parser::http_parser, at: *u8, length: size_t) ->
c_int {
unsafe {
(!((*callbacks(http_parser)).on_header_field)(from_buf_raw(at, length as uint))) as c_int
}
}
extern fn on_header_value(http_parser: *http_parser::http_parser, at: *u8, length: size_t) ->
c_int {
unsafe {
(!((*callbacks(http_parser)).on_header_value)(from_buf_raw(at, length as uint))) as c_int
}
}
extern fn on_headers_complete(http_parser: *http_parser::http_parser) -> c_int {
unsafe {
(!((*callbacks(http_parser)).on_headers_complete)()) as c_int
}
}
extern fn on_body(http_parser: *http_parser::http_parser, at: *u8, length: size_t) -> c_int {
unsafe {
(!((*callbacks(http_parser)).on_body)(from_buf_raw(at, length as uint))) as c_int
}
}
extern fn on_message_complete(http_parser: *http_parser::http_parser) -> c_int {
unsafe {
(!((*callbacks(http_parser)).on_message_complete)()) as c_int
}
}