71 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			V
		
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			V
		
	
	
module picohttpparser
 | 
						|
 | 
						|
pub struct Request {
 | 
						|
pub mut:
 | 
						|
	method string
 | 
						|
	path string
 | 
						|
	headers[100] C.phr_header
 | 
						|
	num_headers u64
 | 
						|
	body string
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
[inline]
 | 
						|
pub fn (mut r Request) parse_request(s string, max_headers int) int {
 | 
						|
	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,
 | 
						|
		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]
 | 
						|
pub fn (mut r Request) parse_request_path(s string) int {
 | 
						|
	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]
 | 
						|
pub fn (mut r Request) parse_request_path_pipeline(s string) int {
 | 
						|
	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
 | 
						|
}
 |