Crates.io | htwrap |
lib.rs | htwrap |
version | 0.5.5 |
source | src |
created_at | 2024-06-13 08:58:22.10187 |
updated_at | 2024-08-18 07:36:57.071768 |
description | Framework-less Hyper client and server |
homepage | |
repository | https://github.com/andrewbaxter/htwrap |
max_upload_size | |
id | 1270376 |
size | 50,397 |
Minimal wrappers and common utilities for using hyper
as an http client or server.
Using hyper
as a http server directly is easy, so there's not much here, mostly:
In my experience the main thing missing vs a larger http server framework is a router, i.e. an efficient prefix-based map so that dynamic paths can be matched.
async fn handle_req(state: Arc<State>, req: Request<Incoming>) -> Result<Response<Body>, Infallible> {
return Ok(response_200());
}
let mut listener = TcpSocket::bind(&addr)?;
while let Some((conn, _)) = listener.accept().await.ok() {
tokio::spawn({
let state = state.clone();
async move {
match async move {
hyper_util::server::conn::auto::Builder::new(
hyper_util::rt::TokioExecutor::new(),
)
.serve_connection(
hyper_util::rt::TokioIo::new(conn),
hyper::service::service_fn(move |req| handle_req(state, req)),
)
.await
.map_err(
|e| loga::err_with(
"Error serving HTTP on connection",
ea!(err = e.to_string()),
),
)?;
return Ok(()) as Result<(), loga::Error>;
}.await {
Ok(_) => (),
Err(e) => {
log.log_err(StandardFlag::Debug, e.context("Error serving connection"));
},
}
}
});
}
Requests are split in to three stages and there are functions for each:
Establish a connection (connect
).
This does address resolution including "happy eyes" for ipv4/ipv6 resolution.
You can reuse this connection, or create your own connection pool. There's no connection management beyond this.
Send a request and wait for the headers (send
)
Read the body (receive
or receive_stream
)
There are helper methods that combine 2 and 3 above:
send_simple
post
post_json
Various interfaces of popular libraries weren't type safe and made various edge case custom behaviors hard or impossible to implement. The implementations were large and internally tightly coupled, and the maintainers weren't amenable to uncommon use cases.
This library is primarily for my own consumption, but I'd like it to be useful to other people with a similar vision (composable, minimal abstraction, minimal generic usage, minimal macro usage).