2022-01-31 18:30:34 +01:00
|
|
|
use std::{convert::Infallible, io, time::Duration};
|
2019-03-09 16:37:23 +01:00
|
|
|
|
2021-12-08 23:58:50 +01:00
|
|
|
use actix_http::{
|
|
|
|
header::HeaderValue, HttpMessage, HttpService, Request, Response, StatusCode,
|
|
|
|
};
|
2018-12-11 03:08:33 +01:00
|
|
|
use actix_server::Server;
|
2018-11-23 05:12:40 +01:00
|
|
|
|
2020-01-06 16:15:04 +01:00
|
|
|
#[actix_rt::main]
|
|
|
|
async fn main() -> io::Result<()> {
|
2021-05-06 21:24:18 +02:00
|
|
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
2018-11-23 05:12:40 +01:00
|
|
|
|
2018-12-11 03:08:33 +01:00
|
|
|
Server::build()
|
2021-06-17 18:57:58 +02:00
|
|
|
.bind("hello-world", ("127.0.0.1", 8080), || {
|
2019-03-09 19:39:06 +01:00
|
|
|
HttpService::build()
|
2022-01-31 18:30:34 +01:00
|
|
|
.client_request_timeout(Duration::from_secs(1))
|
|
|
|
.client_disconnect_timeout(Duration::from_secs(1))
|
2021-12-08 23:58:50 +01:00
|
|
|
.on_connect_ext(|_, ext| {
|
|
|
|
ext.insert(42u32);
|
|
|
|
})
|
|
|
|
.finish(|req: Request| async move {
|
2021-06-17 18:57:58 +02:00
|
|
|
log::info!("{:?}", req);
|
|
|
|
|
2021-04-14 03:00:14 +02:00
|
|
|
let mut res = Response::build(StatusCode::OK);
|
2021-12-08 07:01:11 +01:00
|
|
|
res.insert_header(("x-head", HeaderValue::from_static("dummy value!")));
|
2021-06-17 18:57:58 +02:00
|
|
|
|
2021-12-08 23:58:50 +01:00
|
|
|
let forty_two = req.extensions().get::<u32>().unwrap().to_string();
|
|
|
|
res.insert_header((
|
|
|
|
"x-forty-two",
|
|
|
|
HeaderValue::from_str(&forty_two).unwrap(),
|
|
|
|
));
|
|
|
|
|
2021-06-17 18:57:58 +02:00
|
|
|
Ok::<_, Infallible>(res.body("Hello world!"))
|
2018-12-06 23:32:52 +01:00
|
|
|
})
|
2019-12-02 12:33:11 +01:00
|
|
|
.tcp()
|
2019-03-09 16:37:23 +01:00
|
|
|
})?
|
|
|
|
.run()
|
2020-01-06 16:15:04 +01:00
|
|
|
.await
|
2018-11-23 05:12:40 +01:00
|
|
|
}
|