2017-09-30 16:16:59 +00:00
|
|
|
# Actix Http [![Build Status](https://travis-ci.org/fafhrd91/actix-http.svg?branch=master)](https://travis-ci.org/fafhrd91/actix-http)
|
|
|
|
|
2017-10-07 08:12:43 +00:00
|
|
|
Actix http is a server http framework for Actix framework.
|
2017-09-30 16:16:59 +00:00
|
|
|
|
2017-09-30 16:38:43 +00:00
|
|
|
* [API Documentation](http://fafhrd91.github.io/actix-http/actix_http/)
|
2017-10-07 04:48:14 +00:00
|
|
|
* Cargo package: [actix-http](https://crates.io/crates/actix-http)
|
2017-10-07 06:14:13 +00:00
|
|
|
* Minimum supported Rust version: 1.20 or later
|
2017-09-30 16:16:59 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Actix Http is licensed under the [Apache-2.0 license](http://opensource.org/licenses/APACHE-2.0).
|
|
|
|
|
2017-10-07 08:12:43 +00:00
|
|
|
## Features
|
|
|
|
|
|
|
|
* HTTP 1.1 and 1.0 support
|
|
|
|
* Streaming and pipelining support
|
2017-10-08 05:46:41 +00:00
|
|
|
* [WebSockets support](https://fafhrd91.github.io/actix-http/actix_http/ws/index.html)
|
2017-10-07 08:12:43 +00:00
|
|
|
* Configurable request routing
|
2017-09-30 16:16:59 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
To use `actix-http`, add this to your `Cargo.toml`:
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[dependencies]
|
|
|
|
actix-http = { git = "https://github.com/fafhrd91/actix-http.git" }
|
|
|
|
```
|
|
|
|
|
2017-10-07 07:53:36 +00:00
|
|
|
## Example
|
|
|
|
|
|
|
|
```rust
|
|
|
|
extern crate actix;
|
|
|
|
extern crate actix_http;
|
|
|
|
extern crate futures;
|
|
|
|
use std::net;
|
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
use actix::prelude::*;
|
|
|
|
use actix_http::*;
|
|
|
|
|
|
|
|
// Route
|
|
|
|
struct MyRoute;
|
|
|
|
|
|
|
|
impl Actor for MyRoute {
|
|
|
|
type Context = HttpContext<Self>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Route for MyRoute {
|
|
|
|
type State = ();
|
|
|
|
|
2017-10-08 04:48:00 +00:00
|
|
|
fn request(req: HttpRequest, payload: Option<Payload>,
|
2017-10-07 07:53:36 +00:00
|
|
|
ctx: &mut HttpContext<Self>) -> HttpMessage<Self>
|
|
|
|
{
|
2017-10-08 05:41:02 +00:00
|
|
|
HttpMessage::reply_with(req, httpcodes::HTTPOk)
|
2017-10-07 07:53:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let system = System::new("test".to_owned());
|
|
|
|
|
|
|
|
// create routing map with `MyRoute` route
|
|
|
|
let mut routes = RoutingMap::default();
|
2017-10-08 04:48:00 +00:00
|
|
|
routes
|
|
|
|
.add_resource("/")
|
2017-10-07 07:53:36 +00:00
|
|
|
.post::<MyRoute>();
|
|
|
|
|
|
|
|
// start http server
|
|
|
|
let http = HttpServer::new(routes);
|
|
|
|
http.serve::<()>(
|
|
|
|
&net::SocketAddr::from_str("127.0.0.1:8880").unwrap()).unwrap();
|
|
|
|
|
|
|
|
// stop system
|
|
|
|
Arbiter::handle().spawn_fn(|| {
|
|
|
|
Arbiter::system().send(msgs::SystemExit(0));
|
|
|
|
futures::future::ok(())
|
|
|
|
});
|
|
|
|
|
|
|
|
system.run();
|
|
|
|
println!("Done");
|
|
|
|
}
|
|
|
|
```
|