18个版本
0.8.3 | 2020年1月23日 |
---|---|
0.7.0 | 2019年9月16日 |
0.6.4 | 2018年12月29日 |
0.6.3 | 2018年11月21日 |
0.3.0 | 2017年11月1日 |
#1343 在 HTTP服务器
71 每月下载量
31KB
587 行
reset-router
一个用于异步Hyper (0.13)的快速基于RegexSet
的路由器
单个处理函数应具有类型 H
,其中
H: Fn(Request) -> F,
F: Future<Output = Result<S, E>> + Send,
S: Into<Response>,
E: Into<Response>,
你可以返回如Ok(Response::new("hello world".into()))
这样的简单内容。除非你需要读取请求体或与其他支持future的事物交互,否则无需担心futures。
用法
use reset_router::{Request, RequestExtensions, Response, Router, SharedService};
use std::sync::Arc;
pub struct Handler(Arc<String>);
impl SharedService for Handler {
type Response = Response;
type Error = Box<dyn std::error::Error + Send + Sync + 'static>;
type Future = futures::future::Ready<Result<Self::Response, Self::Error>>;
fn call(&self, _: Request) -> Self::Future {
futures::future::ready(Ok(http::Response::builder()
.status(200)
.body(format!("Hello, {}!", &self.0).into())
.unwrap()))
}
}
#[derive(Clone)]
pub struct State(pub i32);
async fn hello(req: Request) -> Result<Response, Response> {
let (first_name, last_name) = req.parsed_captures::<(String, String)>()?;
Ok(http::Response::builder()
.status(200)
.body(format!("Hello, {} {}!", first_name, last_name).into())
.unwrap())
}
async fn add(req: Request) -> Result<Response, Response> {
let (add1, add2) = req.parsed_captures::<(i32, i32)>()?;
let state_num: i32 = req.data::<State>().map(|x| x.0).unwrap_or(0);
Ok(http::Response::builder()
.status(200)
.body(
format!("{} + {} + {} = {}\r\n", add1, add2, state_num, add1 + add2 + state_num).into(),
)
.unwrap())
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let router = Router::build()
.data(State(42))
.add(http::Method::POST, r"^/hello/([^/]+)/(.+)$", hello)
.add(http::Method::GET, r"^/hello/([^/]+)/(.+)$", hello)
.add(http::Method::GET, r"^/add/([\d]+)/([\d]+)$", add)
.add(http::Method::GET, r"^/other$", Handler(Arc::new(String::from("world"))))
.add_not_found(|_| {
async {
Ok::<_, Response>(http::Response::builder().status(404).body("404".into()).unwrap())
}
})
.finish()?;
let addr = "0.0.0.0:3000".parse()?;
let server = hyper::Server::bind(&addr).serve(router);
server.await?;
Ok(())
}
当前版本:0.8.1
许可证:MIT
依赖
~13MB
~226K SLoC