1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-02-11 16:45:15 +00:00
actix-web/examples/state/src/main.rs

78 lines
2.2 KiB
Rust
Raw Normal View History

2017-11-27 05:18:38 +00:00
#![cfg_attr(feature="cargo-clippy", allow(needless_pass_by_value))]
2018-01-16 18:59:33 +00:00
//! There are two level of statefulness in actix-web. Application has state
2017-10-23 18:48:06 +00:00
//! 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;
2018-01-01 05:55:25 +00:00
use std::cell::Cell;
2017-10-23 18:48:06 +00:00
use actix::*;
use actix_web::*;
2018-01-01 05:55:25 +00:00
/// Application state
2017-10-23 18:48:06 +00:00
struct AppState {
counter: Cell<usize>,
}
/// somple handle
2017-11-27 05:18:38 +00:00
fn index(req: HttpRequest<AppState>) -> HttpResponse {
2017-10-23 18:48:06 +00:00
println!("{:?}", req);
2017-11-27 05:18:38 +00:00
req.state().counter.set(req.state().counter.get() + 1);
2017-11-29 18:31:24 +00:00
2017-10-23 18:48:06 +00:00
httpcodes::HTTPOk.with_body(
2017-11-27 05:18:38 +00:00
format!("Num of requests: {}", req.state().counter.get()))
2017-10-23 18:48:06 +00: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 {
type Context = ws::WebsocketContext<Self, AppState>;
2017-10-23 18:48:06 +00:00
}
2017-11-27 05:18:38 +00:00
2017-10-23 18:48:06 +00:00
impl Handler<ws::Message> for MyWebSocket {
2018-01-05 22:01:19 +00:00
type Result = ();
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
2017-10-23 18:48:06 +00:00
self.counter += 1;
println!("WS({}): {:?}", self.counter, msg);
match msg {
ws::Message::Ping(msg) => ctx.pong(&msg),
2018-02-13 03:15:39 +00:00
ws::Message::Text(text) => ctx.text(text),
ws::Message::Binary(bin) => ctx.binary(bin),
2017-10-23 18:48:06 +00:00
ws::Message::Closed | ws::Message::Error => {
ctx.stop();
}
_ => (),
}
}
}
fn main() {
::std::env::set_var("RUST_LOG", "actix_web=info");
let _ = env_logger::init();
let sys = actix::System::new("ws-example");
let addr = HttpServer::new(
|| Application::with_state(AppState{counter: Cell::new(0)})
2017-10-23 18:48:06 +00:00
// enable logger
2017-12-27 03:59:41 +00:00
.middleware(middleware::Logger::default())
2017-10-23 18:48:06 +00:00
// websocket route
2017-12-04 21:32:05 +00:00
.resource(
2017-12-06 19:00:39 +00:00
"/ws/", |r|
r.method(Method::GET).f(|req| ws::start(req, MyWebSocket{counter: 0})))
2017-10-23 18:48:06 +00:00
// register simple handler, handle all methods
.resource("/", |r| r.f(index)))
2017-12-17 20:35:04 +00:00
.bind("127.0.0.1:8080").unwrap()
2017-12-19 17:08:36 +00:00
.start();
2017-10-23 18:48:06 +00:00
println!("Started http server: 127.0.0.1:8080");
let _ = sys.run();
}