2017-10-24 00:58:05 +02:00
|
|
|
# Actix web [![Build Status](https://travis-ci.org/actix/actix-web.svg?branch=master)](https://travis-ci.org/actix/actix-web) [![Build status](https://ci.appveyor.com/api/projects/status/kkdb4yce7qhm5w85/branch/master?svg=true)](https://ci.appveyor.com/project/fafhrd91/actix-web-hdy9d/branch/master) [![codecov](https://codecov.io/gh/actix/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-web) [![crates.io](http://meritbadge.herokuapp.com/actix-web)](https://crates.io/crates/actix-web)
|
2017-09-30 18:16:59 +02:00
|
|
|
|
2017-10-24 00:58:05 +02:00
|
|
|
Asynchronous web framework for [Actix](https://github.com/actix/actix).
|
2017-09-30 18:16:59 +02:00
|
|
|
|
2017-10-24 00:58:05 +02:00
|
|
|
* [API Documentation (Development)](http://actix.github.io/actix-web/actix_web/)
|
|
|
|
* [API Documentation (Releases)](https://docs.rs/actix-web/)
|
2017-10-31 00:37:26 +01:00
|
|
|
* Cargo package: [actix-web](https://crates.io/crates/actix-web)
|
2017-10-07 08:14:13 +02:00
|
|
|
* Minimum supported Rust version: 1.20 or later
|
2017-09-30 18:16:59 +02:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2017-10-16 19:43:35 +02:00
|
|
|
Actix web is licensed under the [Apache-2.0 license](http://opensource.org/licenses/APACHE-2.0).
|
2017-09-30 18:16:59 +02:00
|
|
|
|
2017-10-07 10:12:43 +02:00
|
|
|
## Features
|
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
* HTTP/1 and HTTP/2
|
|
|
|
* Streaming and pipelining
|
|
|
|
* Keep-alive and slow requests handling
|
|
|
|
* [WebSockets](https://actix.github.io/actix-web/actix_web/ws/index.html)
|
2017-10-23 18:17:24 +02:00
|
|
|
* Configurable request routing
|
2017-10-21 11:08:07 +02:00
|
|
|
* Multipart streams
|
2017-10-23 18:17:24 +02:00
|
|
|
* Middlewares
|
2017-09-30 18:16:59 +02:00
|
|
|
|
2017-11-04 20:36:37 +01:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
To use `actix-web`, add this to your `Cargo.toml`:
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[dependencies]
|
|
|
|
actix-web = { git = "https://github.com/actix/actix-web" }
|
|
|
|
```
|
|
|
|
|
2017-11-04 20:35:19 +01:00
|
|
|
## HTTP/2
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
Actix web automatically upgrades connection to `http/2` if possible.
|
|
|
|
|
|
|
|
### Negotiation
|
2017-11-04 20:33:14 +01:00
|
|
|
|
|
|
|
To use http/2 protocol over tls without prior knowlage requires
|
2017-11-04 20:35:55 +01:00
|
|
|
[tls alpn](https://tools.ietf.org/html/rfc7301). At the moment only
|
2017-11-04 20:33:14 +01:00
|
|
|
rust-openssl supports alpn.
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[dependencies]
|
|
|
|
actix-web = { git = "https://github.com/actix/actix-web", features=["alpn"] }
|
|
|
|
```
|
|
|
|
|
2017-10-07 09:53:36 +02:00
|
|
|
## Example
|
|
|
|
|
2017-10-23 18:20:12 +02:00
|
|
|
* [Basic](https://github.com/actix/actix-web/tree/master/examples/basic.rs)
|
2017-10-23 20:48:06 +02:00
|
|
|
* [Stateful](https://github.com/actix/actix-web/tree/master/examples/state.rs)
|
2017-10-23 18:20:12 +02:00
|
|
|
* [Mulitpart streams](https://github.com/actix/actix-web/tree/master/examples/multipart)
|
|
|
|
* [Simple websocket session](https://github.com/actix/actix-web/tree/master/examples/websocket.rs)
|
2017-10-23 18:16:13 +02:00
|
|
|
* [Tcp/Websocket chat](https://github.com/actix/actix-web/tree/master/examples/websocket-chat)
|
2017-11-04 17:07:44 +01:00
|
|
|
* [SockJS Server](https://github.com/actix/actix-sockjs)
|
2017-10-21 11:08:07 +02:00
|
|
|
|
|
|
|
|
2017-10-07 09:53:36 +02:00
|
|
|
```rust
|
|
|
|
extern crate actix;
|
2017-10-14 16:59:35 +02:00
|
|
|
extern crate actix_web;
|
2017-10-24 02:31:46 +02:00
|
|
|
extern crate env_logger;
|
2017-10-07 09:53:36 +02:00
|
|
|
|
2017-10-16 00:10:35 +02:00
|
|
|
use actix::*;
|
2017-10-14 16:59:35 +02:00
|
|
|
use actix_web::*;
|
2017-10-07 09:53:36 +02:00
|
|
|
|
2017-10-24 02:31:46 +02:00
|
|
|
|
|
|
|
struct MyWebSocket;
|
|
|
|
|
2017-10-31 04:39:56 +01:00
|
|
|
/// Actor with http context
|
2017-10-24 02:31:46 +02:00
|
|
|
impl Actor for MyWebSocket {
|
|
|
|
type Context = HttpContext<Self>;
|
|
|
|
}
|
|
|
|
|
2017-10-31 04:39:56 +01:00
|
|
|
/// Http route handler
|
2017-10-24 02:31:46 +02:00
|
|
|
impl Route for MyWebSocket {
|
|
|
|
type State = ();
|
|
|
|
|
|
|
|
fn request(req: &mut HttpRequest,
|
|
|
|
payload: Payload, ctx: &mut HttpContext<Self>) -> RouteResult<Self>
|
|
|
|
{
|
2017-10-31 04:39:56 +01:00
|
|
|
// websocket handshake
|
2017-10-24 02:31:46 +02:00
|
|
|
let resp = ws::handshake(req)?;
|
2017-10-31 04:39:56 +01:00
|
|
|
// send HttpResponse back to peer
|
2017-10-24 02:31:46 +02:00
|
|
|
ctx.start(resp);
|
2017-10-31 04:39:56 +01:00
|
|
|
// convert bytes stream to a stream of `ws::Message` and handle stream
|
2017-10-24 02:31:46 +02:00
|
|
|
ctx.add_stream(ws::WsStream::new(payload));
|
|
|
|
Reply::async(MyWebSocket)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-31 04:39:56 +01:00
|
|
|
/// Standard actix's stream handler for a stream of `ws::Message`
|
2017-10-24 02:31:46 +02:00
|
|
|
impl StreamHandler<ws::Message> for MyWebSocket {
|
|
|
|
fn started(&mut self, ctx: &mut Self::Context) {
|
|
|
|
println!("WebSocket session openned");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn finished(&mut self, ctx: &mut Self::Context) {
|
|
|
|
println!("WebSocket session closed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Handler<ws::Message> for MyWebSocket {
|
|
|
|
fn handle(&mut self, msg: ws::Message, ctx: &mut HttpContext<Self>)
|
|
|
|
-> Response<Self, ws::Message>
|
|
|
|
{
|
2017-10-31 04:39:56 +01:00
|
|
|
// process websocket messages
|
2017-10-24 02:31:46 +02:00
|
|
|
println!("WS: {:?}", msg);
|
|
|
|
match msg {
|
2017-10-31 04:39:56 +01:00
|
|
|
ws::Message::Ping(msg) => ws::WsWriter::pong(ctx, &msg),
|
2017-10-24 02:31:46 +02:00
|
|
|
ws::Message::Text(text) => ws::WsWriter::text(ctx, &text),
|
|
|
|
ws::Message::Binary(bin) => ws::WsWriter::binary(ctx, bin),
|
|
|
|
ws::Message::Closed | ws::Message::Error => {
|
|
|
|
ctx.stop();
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
Self::empty()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 09:53:36 +02:00
|
|
|
fn main() {
|
2017-10-24 02:31:46 +02:00
|
|
|
::std::env::set_var("RUST_LOG", "actix_web=info");
|
|
|
|
let _ = env_logger::init();
|
|
|
|
let sys = actix::System::new("ws-example");
|
2017-10-07 09:53:36 +02:00
|
|
|
|
2017-10-15 23:17:41 +02:00
|
|
|
HttpServer::new(
|
2017-10-23 18:16:13 +02:00
|
|
|
Application::default("/")
|
2017-10-24 02:31:46 +02:00
|
|
|
// enable logger
|
|
|
|
.middleware(Logger::new(None))
|
|
|
|
// websocket route
|
|
|
|
.resource("/ws/", |r| r.get::<MyWebSocket>())
|
|
|
|
.route_handler("/", StaticFiles::new("examples/static/", true)))
|
2017-10-15 23:53:03 +02:00
|
|
|
.serve::<_, ()>("127.0.0.1:8080").unwrap();
|
2017-10-07 09:53:36 +02:00
|
|
|
|
2017-10-26 15:12:23 +02:00
|
|
|
Arbiter::system().send(msgs::SystemExit(0));
|
2017-10-24 02:31:46 +02:00
|
|
|
let _ = sys.run();
|
2017-10-07 09:53:36 +02:00
|
|
|
}
|
|
|
|
```
|