1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 09:18:26 +00:00
actix-web/actix-web/examples/uds.rs

50 lines
1.5 KiB
Rust
Raw Normal View History

2020-02-07 14:16:32 +00:00
use actix_web::{get, web, HttpRequest};
#[cfg(unix)]
use actix_web::{middleware, App, Error, HttpResponse, HttpServer};
#[get("/resource1/{name}/index.html")]
2019-11-21 15:34:04 +00:00
async fn index(req: HttpRequest, name: web::Path<String>) -> String {
println!("REQ: {:?}", req);
format!("Hello: {}!\r\n", name)
}
2020-02-07 14:16:32 +00:00
#[cfg(unix)]
2019-11-20 17:33:22 +00:00
async fn index_async(req: HttpRequest) -> Result<&'static str, Error> {
println!("REQ: {:?}", req);
Ok("Hello world!\r\n")
}
#[get("/")]
2019-11-21 15:34:04 +00:00
async fn no_params() -> &'static str {
"Hello world!\r\n"
}
2019-11-21 15:34:04 +00:00
#[cfg(unix)]
2020-06-18 14:45:30 +00:00
#[actix_web::main]
2019-11-26 11:16:33 +00:00
async fn main() -> std::io::Result<()> {
2021-01-07 02:41:05 +00:00
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
HttpServer::new(|| {
App::new()
.wrap(middleware::DefaultHeaders::new().add(("X-Version", "0.2")))
.wrap(middleware::Compress::default())
2019-11-21 15:34:04 +00:00
.wrap(middleware::Logger::default())
.service(index)
.service(no_params)
.service(
web::resource("/resource2/index.html")
.wrap(middleware::DefaultHeaders::new().add(("X-Version-R2", "0.3")))
2021-03-08 20:32:19 +00:00
.default_service(web::route().to(HttpResponse::MethodNotAllowed))
2019-11-21 15:34:04 +00:00
.route(web::get().to(index_async)),
)
2019-11-21 15:34:04 +00:00
.service(web::resource("/test1.html").to(|| async { "Test\r\n" }))
})
.bind_uds("/Users/fafhrd91/uds-test")?
.workers(1)
.run()
2019-11-26 11:16:33 +00:00
.await
}
2019-11-21 15:34:04 +00:00
#[cfg(not(unix))]
fn main() {}