v/vlib/picohttpparser/request.v

71 lines
1.3 KiB
V
Raw Normal View History

2020-01-23 03:26:30 +01:00
module picohttpparser
pub struct Request {
pub mut:
2020-01-23 03:26:30 +01:00
method string
path string
headers[100] C.phr_header
2020-01-23 03:26:30 +01:00
num_headers u64
body string
2020-01-23 03:26:30 +01:00
}
2020-01-23 03:26:30 +01:00
[inline]
pub fn (mut r Request) parse_request(s string, max_headers int) int {
2020-01-23 03:26:30 +01:00
method_len := u64(0)
path_len := u64(0)
minor_version := 0
num_headers := u64(max_headers)
pret := C.phr_parse_request(
s.str, s.len,
&r.method, &method_len,
&r.path, &path_len,
&minor_version,
r.headers, &num_headers,
2020-01-23 03:26:30 +01:00
0
)
if pret > 0 {
r.method = tos(r.method.str, int(method_len))
r.path = tos(r.path.str, int(path_len))
r.num_headers = num_headers
}
return pret
}
[inline]
2020-05-17 13:51:18 +02:00
pub fn (mut r Request) parse_request_path(s string) int {
2020-01-23 03:26:30 +01:00
method_len := u64(0)
path_len := u64(0)
pret := C.phr_parse_request_path(
s.str, s.len,
&r.method, &method_len,
&r.path, &path_len
)
if pret > 0 {
r.method = tos(r.method.str, int(method_len))
r.path = tos(r.path.str, int(path_len))
}
return pret
}
[inline]
2020-05-17 13:51:18 +02:00
pub fn (mut r Request) parse_request_path_pipeline(s string) int {
2020-01-23 03:26:30 +01:00
method_len := u64(0)
path_len := u64(0)
pret := C.phr_parse_request_path_pipeline(
s.str, s.len,
&r.method, &method_len,
&r.path, &path_len
)
if pret > 0 {
r.method = tos(r.method.str, int(method_len))
r.path = tos(r.path.str, int(path_len))
}
return pret
}