1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-19 01:50:10 +00:00
actix-web/examples/echo2.rs

35 lines
1,017 B
Rust
Raw Normal View History

use std::{env, io};
2018-11-28 06:12:04 +00:00
use actix_http::http::HeaderValue;
2019-03-17 08:02:51 +00:00
use actix_http::{error::PayloadError, Error, HttpService, Request, Response};
2018-12-11 02:08:33 +00:00
use actix_server::Server;
2019-03-17 08:02:51 +00:00
use bytes::BytesMut;
use futures::{Future, Stream};
2018-12-11 02:08:33 +00:00
use log::info;
2018-11-28 05:45:08 +00:00
2019-02-13 21:52:11 +00:00
fn handle_request(mut req: Request) -> impl Future<Item = Response, Error = Error> {
2019-03-17 08:02:51 +00:00
req.take_payload()
.fold(BytesMut::new(), move |mut body, chunk| {
body.extend_from_slice(&chunk);
Ok::<_, PayloadError>(body)
})
.from_err()
.and_then(|bytes| {
info!("request body: {:?}", bytes);
let mut res = Response::Ok();
res.header("x-head", HeaderValue::from_static("dummy value!"));
Ok(res.body(bytes))
})
2018-11-28 05:45:08 +00:00
}
fn main() -> io::Result<()> {
2018-11-28 05:45:08 +00:00
env::set_var("RUST_LOG", "echo=info");
env_logger::init();
2018-12-11 02:08:33 +00:00
Server::build()
2018-11-28 06:12:04 +00:00
.bind("echo", "127.0.0.1:8080", || {
2019-03-09 18:39:06 +00:00
HttpService::build().finish(|_req: Request| handle_request(_req))
})?
.run()
2018-11-28 05:45:08 +00:00
}