mirror of
https://github.com/hyperium/hyper.git
synced 2026-01-25 02:16:14 +00:00
This replaces the usage of `tokio::io::{AsyncRead, AsyncWrite}` in hyper's public API with new traits in the `hyper::rt` module.
Closes #3110
BREAKING CHANGE: Any IO transport type provided must not implement `hyper::rt::{Read, Write}` instead of
`tokio::io` traits. You can grab a helper type from `hyper-util` to wrap Tokio types, or implement the traits yourself,
if it's a custom type.
111 lines
3.7 KiB
Rust
111 lines
3.7 KiB
Rust
#![deny(warnings)]
|
|
|
|
use std::net::SocketAddr;
|
|
|
|
use bytes::Bytes;
|
|
use http_body_util::{combinators::BoxBody, BodyExt, Empty, Full};
|
|
use hyper::body::Frame;
|
|
use hyper::server::conn::http1;
|
|
use hyper::service::service_fn;
|
|
use hyper::{body::Body, Method, Request, Response, StatusCode};
|
|
use tokio::net::TcpListener;
|
|
|
|
#[path = "../benches/support/mod.rs"]
|
|
mod support;
|
|
use support::TokioIo;
|
|
|
|
/// This is our service handler. It receives a Request, routes on its
|
|
/// path, and returns a Future of a Response.
|
|
async fn echo(
|
|
req: Request<hyper::body::Incoming>,
|
|
) -> Result<Response<BoxBody<Bytes, hyper::Error>>, hyper::Error> {
|
|
match (req.method(), req.uri().path()) {
|
|
// Serve some instructions at /
|
|
(&Method::GET, "/") => Ok(Response::new(full(
|
|
"Try POSTing data to /echo such as: `curl localhost:3000/echo -XPOST -d \"hello world\"`",
|
|
))),
|
|
|
|
// Simply echo the body back to the client.
|
|
(&Method::POST, "/echo") => Ok(Response::new(req.into_body().boxed())),
|
|
|
|
// Convert to uppercase before sending back to client using a stream.
|
|
(&Method::POST, "/echo/uppercase") => {
|
|
let frame_stream = req.into_body().map_frame(|frame| {
|
|
let frame = if let Ok(data) = frame.into_data() {
|
|
data.iter()
|
|
.map(|byte| byte.to_ascii_uppercase())
|
|
.collect::<Bytes>()
|
|
} else {
|
|
Bytes::new()
|
|
};
|
|
|
|
Frame::data(frame)
|
|
});
|
|
|
|
Ok(Response::new(frame_stream.boxed()))
|
|
}
|
|
|
|
// Reverse the entire body before sending back to the client.
|
|
//
|
|
// Since we don't know the end yet, we can't simply stream
|
|
// the chunks as they arrive as we did with the above uppercase endpoint.
|
|
// So here we do `.await` on the future, waiting on concatenating the full body,
|
|
// then afterwards the content can be reversed. Only then can we return a `Response`.
|
|
(&Method::POST, "/echo/reversed") => {
|
|
// To protect our server, reject requests with bodies larger than
|
|
// 64kbs of data.
|
|
let max = req.body().size_hint().upper().unwrap_or(u64::MAX);
|
|
if max > 1024 * 64 {
|
|
let mut resp = Response::new(full("Body too big"));
|
|
*resp.status_mut() = hyper::StatusCode::PAYLOAD_TOO_LARGE;
|
|
return Ok(resp);
|
|
}
|
|
|
|
let whole_body = req.collect().await?.to_bytes();
|
|
|
|
let reversed_body = whole_body.iter().rev().cloned().collect::<Vec<u8>>();
|
|
Ok(Response::new(full(reversed_body)))
|
|
}
|
|
|
|
// Return the 404 Not Found for other routes.
|
|
_ => {
|
|
let mut not_found = Response::new(empty());
|
|
*not_found.status_mut() = StatusCode::NOT_FOUND;
|
|
Ok(not_found)
|
|
}
|
|
}
|
|
}
|
|
|
|
fn empty() -> BoxBody<Bytes, hyper::Error> {
|
|
Empty::<Bytes>::new()
|
|
.map_err(|never| match never {})
|
|
.boxed()
|
|
}
|
|
|
|
fn full<T: Into<Bytes>>(chunk: T) -> BoxBody<Bytes, hyper::Error> {
|
|
Full::new(chunk.into())
|
|
.map_err(|never| match never {})
|
|
.boxed()
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
|
|
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
|
|
|
|
let listener = TcpListener::bind(addr).await?;
|
|
println!("Listening on http://{}", addr);
|
|
loop {
|
|
let (stream, _) = listener.accept().await?;
|
|
let io = TokioIo::new(stream);
|
|
|
|
tokio::task::spawn(async move {
|
|
if let Err(err) = http1::Builder::new()
|
|
.serve_connection(io, service_fn(echo))
|
|
.await
|
|
{
|
|
println!("Error serving connection: {:?}", err);
|
|
}
|
|
});
|
|
}
|
|
}
|