1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-18 13:51:50 +01:00

66 lines
1.9 KiB
Rust
Raw Normal View History

2017-10-23 18:42:15 -07: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-20 21:08:38 -07:00
#![allow(unused_variables)]
extern crate actix;
extern crate actix_web;
extern crate env_logger;
2017-10-20 21:08:38 -07:00
use actix::*;
use actix_web::*;
2017-11-29 10:31:24 -08:00
/// do websocket handshake and start `MyWebSocket` actor
2018-01-01 09:31:42 -08:00
fn ws_index(r: HttpRequest) -> Result<HttpResponse> {
2017-12-31 17:26:32 -08:00
ws::start(r, MyWebSocket)
2017-11-29 10:31:24 -08:00
}
/// websocket connection is long running connection, it easier
/// to handle with an actor
2017-10-20 21:08:38 -07:00
struct MyWebSocket;
impl Actor for MyWebSocket {
2018-01-10 10:40:14 -08:00
type Context = ws::WebsocketContext<Self>;
2017-10-20 21:08:38 -07:00
}
2018-01-06 01:06:35 -08:00
/// Handler for `ws::Message`
impl StreamHandler<ws::Message, ws::ProtocolError> for MyWebSocket {
2018-01-05 14:01:19 -08:00
2018-01-10 10:40:14 -08:00
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
2017-10-23 18:42:15 -07:00
// process websocket messages
2017-10-20 21:08:38 -07:00
println!("WS: {:?}", msg);
match msg {
2018-01-10 10:40:14 -08:00
ws::Message::Ping(msg) => ctx.pong(&msg),
2018-02-09 22:46:34 -08:00
ws::Message::Text(text) => ctx.text(text),
2018-01-10 10:40:14 -08:00
ws::Message::Binary(bin) => ctx.binary(bin),
2018-02-27 10:09:24 -08:00
ws::Message::Close(_) => {
2017-10-20 21:08:38 -07:00
ctx.stop();
}
_ => (),
}
}
}
fn main() {
2018-01-27 22:03:03 -08:00
::std::env::set_var("RUST_LOG", "actix_web=info");
let _ = env_logger::init();
2017-10-20 21:08:38 -07:00
let sys = actix::System::new("ws-example");
let _addr = HttpServer::new(
|| Application::new()
// enable logger
2017-12-26 19:59:41 -08:00
.middleware(middleware::Logger::default())
// websocket route
.resource("/ws/", |r| r.method(Method::GET).f(ws_index))
2017-11-29 13:26:55 -08:00
// static files
2018-01-29 03:23:45 -08:00
.handler("/", fs::StaticFiles::new("../static/", true)
.index_file("index.html")))
2017-10-23 18:42:15 -07:00
// start http server on 127.0.0.1:8080
2017-12-17 12:35:04 -08:00
.bind("127.0.0.1:8080").unwrap()
2017-12-19 09:08:36 -08:00
.start();
2017-10-20 21:08:38 -07:00
println!("Started http server: 127.0.0.1:8080");
let _ = sys.run();
}