1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-25 00:12:59 +01:00
actix-extras/examples/websocket/src/main.rs

86 lines
2.5 KiB
Rust
Raw Normal View History

2017-10-24 03:42:15 +02:00
//! Simple echo websocket server.
//! Open `http://localhost:8080/ws/index.html` in browser
//! or [python console client](https://github.com/actix/actix-web/blob/master/examples/websocket-client.py)
//! could be used for testing.
2017-10-21 06:08:38 +02:00
#![allow(unused_variables)]
extern crate actix;
extern crate actix_web;
extern crate env_logger;
2017-10-21 06:08:38 +02:00
use actix::*;
use actix_web::*;
2018-01-01 18:31:42 +01:00
#[cfg(unix)]
use actix::actors::signal::{ProcessSignals, Subscribe};
2017-10-21 06:08:38 +02:00
2017-11-29 19:31:24 +01:00
/// do websocket handshake and start `MyWebSocket` actor
2018-01-01 18:31:42 +01:00
fn ws_index(r: HttpRequest) -> Result<HttpResponse> {
2018-01-01 02:26:32 +01:00
ws::start(r, MyWebSocket)
2017-11-29 19:31:24 +01:00
}
/// websocket connection is long running connection, it easier
/// to handle with an actor
2017-10-21 06:08:38 +02:00
struct MyWebSocket;
impl Actor for MyWebSocket {
type Context = HttpContext<Self>;
}
2017-10-24 03:42:15 +02:00
/// Standard actix's stream handler for a stream of `ws::Message`
2017-10-22 00:21:16 +02:00
impl StreamHandler<ws::Message> for MyWebSocket {
fn started(&mut self, ctx: &mut Self::Context) {
println!("WebSocket session openned");
}
2017-10-21 06:08:38 +02:00
2017-10-22 00:21:16 +02:00
fn finished(&mut self, ctx: &mut Self::Context) {
println!("WebSocket session closed");
}
}
2017-10-21 06:08:38 +02:00
impl Handler<ws::Message> for MyWebSocket {
fn handle(&mut self, msg: ws::Message, ctx: &mut HttpContext<Self>)
-> Response<Self, ws::Message>
{
2017-10-24 03:42:15 +02:00
// process websocket messages
2017-10-21 06:08:38 +02:00
println!("WS: {:?}", msg);
match msg {
2017-10-30 03:49:59 +01:00
ws::Message::Ping(msg) => ws::WsWriter::pong(ctx, &msg),
2017-10-21 06:08:38 +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() {
2017-11-30 23:42:20 +01:00
::std::env::set_var("RUST_LOG", "actix_web=trace");
let _ = env_logger::init();
2017-10-21 06:08:38 +02:00
let sys = actix::System::new("ws-example");
let _addr = HttpServer::new(
|| Application::new()
// enable logger
2017-12-27 04:59:41 +01:00
.middleware(middleware::Logger::default())
// websocket route
.resource("/ws/", |r| r.method(Method::GET).f(ws_index))
2017-11-29 22:26:55 +01:00
// static files
2018-01-03 00:52:11 +01:00
.handler("/", fs::StaticFiles::new("../static/", true)))
2017-10-24 03:42:15 +02:00
// start http server on 127.0.0.1:8080
2017-12-17 21:35:04 +01:00
.bind("127.0.0.1:8080").unwrap()
2017-12-19 18:08:36 +01:00
.start();
2017-10-21 06:08:38 +02:00
2018-01-01 18:31:42 +01:00
// Subscribe to unix signals
#[cfg(unix)]
{
2018-01-04 04:11:40 +01:00
let signals = actix::Arbiter::system_registry().get::<ProcessSignals>();
signals.send(Subscribe(_addr.subscriber()));
}
2017-10-21 06:08:38 +02:00
println!("Started http server: 127.0.0.1:8080");
let _ = sys.run();
}