h1 is a simple http 1.1 implementation. The core protocol layout doesn't enforce any concurrency strategry and as a result it is possible to provide small translation modules that can provide an Lwt or Async aware interface.
This is currently a proof-of-concept. There are many rough edges and probably many bugs. Use it at your own risk. That said, the approach seems to work well and in my initial tests the performance seems pretty decent. With some more effort it should be possible to get to a respectable state with extensive tests.
- Asynchronous pull based design
- Execution environment agnostic.
- The library should work on unix, windows and mirageOS, just provide the following functions when creating a connection:
write:(Bigstringaf.t -> pos:int -> len:int -> int promise) refill:(Bigstringaf.t -> pos:int -> len:int -> int promise)
- The library should work on unix, windows and mirageOS, just provide the following functions when creating a connection:
Example using lwt:
let run (sock : Lwt_unix.file_descr) =
let service (_req, body) =
let body = H1_lwt.Body.to_string_stream body in
let%lwt () =
H1_lwt.iter
~f:(fun x ->
Logs.info (fun m -> m "%s" x);
Lwt.return_unit)
body
in
let resp =
Response.create
~headers:
(Headers.of_list
[ ("Content-Length", Int.to_string (Bigstringaf.length text)) ])
`Ok
in
Lwt.return (resp, `Bigstring text)
in
Lwt.catch
(fun () ->
H1_lwt.run_server ~read_buf_size:(10 * 1024) ~write_buf_size:(10 * 1024)
~write:(fun buf ~pos ~len -> Lwt_bytes.write sock buf pos len)
~refill:(fun buf ~pos ~len -> Lwt_bytes.read sock buf pos len)
service)
(fun exn ->
Logs.err (fun m -> m "%s" (Printexc.to_string exn));
Lwt.return_unit)
Example using async:
let run (sock : Fd.t) =
let service (_req, body) =
let body = H1_async.Body.to_string_stream body in
let%bind () =
H1_async.iter
~f:(fun x ->
Logs.info (fun m -> m "%s" x);
return ())
body
in
let resp =
Response.create
~headers:
(Headers.of_list
[ ("Content-Length", Int.to_string (Bigstring.length text)) ])
`Ok
in
return (resp, `Bigstring text)
in
H1_async.run_server ~read_buf_size:(10 * 1024) ~write_buf_size:(10 * 1024)
~write:(fun buf ~pos ~len -> H1_async.write_nonblock sock buf ~pos ~len)
~refill:(fun buf ~pos ~len -> H1_async.read_nonblock sock buf ~pos ~len)
service
- Chunked Encoding
- 0 copy streaming for bodies
- Better error handling
- Add docs
- Http client implementation (This can be pushed till after a full working/tested/documented server implementation)