2017-11-27 06:18:38 +01:00
|
|
|
#![cfg_attr(feature="cargo-clippy", allow(needless_pass_by_value))]
|
2017-10-23 20:48:06 +02:00
|
|
|
//! There are two level of statfulness in actix-web. Application has state
|
|
|
|
//! that is shared across all handlers within same Application.
|
|
|
|
//! And individual handler can have state.
|
|
|
|
|
|
|
|
extern crate actix;
|
|
|
|
extern crate actix_web;
|
|
|
|
extern crate env_logger;
|
|
|
|
|
|
|
|
use actix::*;
|
|
|
|
use actix_web::*;
|
|
|
|
use std::cell::Cell;
|
|
|
|
|
|
|
|
struct AppState {
|
|
|
|
counter: Cell<usize>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// somple handle
|
2017-11-27 06:18:38 +01:00
|
|
|
fn index(req: HttpRequest<AppState>) -> HttpResponse {
|
2017-10-23 20:48:06 +02:00
|
|
|
println!("{:?}", req);
|
2017-11-27 06:18:38 +01:00
|
|
|
req.state().counter.set(req.state().counter.get() + 1);
|
2017-11-29 19:31:24 +01:00
|
|
|
|
2017-10-23 20:48:06 +02:00
|
|
|
httpcodes::HTTPOk.with_body(
|
2017-11-27 06:18:38 +01:00
|
|
|
format!("Num of requests: {}", req.state().counter.get()))
|
2017-10-23 20:48:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// `MyWebSocket` counts how many messages it receives from peer,
|
|
|
|
/// websocket-client.py could be used for tests
|
|
|
|
struct MyWebSocket {
|
|
|
|
counter: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Actor for MyWebSocket {
|
2017-11-29 19:31:24 +01:00
|
|
|
type Context = HttpContext<Self, AppState>;
|
2017-10-23 20:48:06 +02:00
|
|
|
}
|
2017-11-27 06:18:38 +01:00
|
|
|
|
2017-10-23 20:48:06 +02:00
|
|
|
impl StreamHandler<ws::Message> for MyWebSocket {}
|
|
|
|
impl Handler<ws::Message> for MyWebSocket {
|
2017-11-29 19:31:24 +01:00
|
|
|
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context)
|
2017-10-23 20:48:06 +02:00
|
|
|
-> Response<Self, ws::Message>
|
|
|
|
{
|
|
|
|
self.counter += 1;
|
|
|
|
println!("WS({}): {:?}", self.counter, msg);
|
|
|
|
match msg {
|
2017-10-30 03:49:59 +01:00
|
|
|
ws::Message::Ping(msg) => ws::WsWriter::pong(ctx, &msg),
|
2017-10-23 20:48:06 +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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
::std::env::set_var("RUST_LOG", "actix_web=info");
|
|
|
|
let _ = env_logger::init();
|
|
|
|
let sys = actix::System::new("ws-example");
|
|
|
|
|
|
|
|
HttpServer::new(
|
2017-11-27 02:30:35 +01:00
|
|
|
Application::build("/", AppState{counter: Cell::new(0)})
|
2017-10-23 20:48:06 +02:00
|
|
|
// enable logger
|
2017-11-10 21:29:54 +01:00
|
|
|
.middleware(middlewares::Logger::default())
|
2017-10-23 20:48:06 +02:00
|
|
|
// websocket route
|
2017-12-04 22:32:05 +01:00
|
|
|
.resource(
|
|
|
|
"/ws/", |r| r.route().method(Method::GET)
|
|
|
|
.handler(|req| ws::start(req, MyWebSocket{counter: 0})))
|
2017-10-23 20:48:06 +02:00
|
|
|
// register simple handler, handle all methods
|
|
|
|
.handler("/", index))
|
|
|
|
.serve::<_, ()>("127.0.0.1:8080").unwrap();
|
|
|
|
|
|
|
|
println!("Started http server: 127.0.0.1:8080");
|
|
|
|
let _ = sys.run();
|
|
|
|
}
|