2017-10-24 01:42:15 +00: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 04:08:38 +00:00
|
|
|
#![allow(unused_variables)]
|
|
|
|
extern crate actix;
|
|
|
|
extern crate actix_web;
|
2017-10-22 05:59:09 +00:00
|
|
|
extern crate env_logger;
|
2017-10-21 04:08:38 +00:00
|
|
|
|
|
|
|
use actix::*;
|
|
|
|
use actix_web::*;
|
|
|
|
|
|
|
|
|
|
|
|
struct MyWebSocket;
|
|
|
|
|
|
|
|
impl Actor for MyWebSocket {
|
|
|
|
type Context = HttpContext<Self>;
|
|
|
|
}
|
|
|
|
|
2017-10-24 01:42:15 +00:00
|
|
|
/// Http route handler
|
2017-10-21 04:08:38 +00:00
|
|
|
impl Route for MyWebSocket {
|
|
|
|
type State = ();
|
|
|
|
|
2017-10-22 05:59:09 +00:00
|
|
|
fn request(req: &mut HttpRequest,
|
2017-10-22 16:13:29 +00:00
|
|
|
payload: Payload, ctx: &mut HttpContext<Self>) -> RouteResult<Self>
|
2017-10-21 04:08:38 +00:00
|
|
|
{
|
2017-10-24 01:42:15 +00:00
|
|
|
// websocket handshake
|
2017-10-23 00:33:24 +00:00
|
|
|
let resp = ws::handshake(req)?;
|
2017-10-24 01:42:15 +00:00
|
|
|
// send HttpResponse back to peer
|
2017-10-22 16:13:29 +00:00
|
|
|
ctx.start(resp);
|
2017-10-24 01:42:15 +00:00
|
|
|
// convert bytes stream to a stream of `ws::Message` and register it
|
2017-10-22 16:13:29 +00:00
|
|
|
ctx.add_stream(ws::WsStream::new(payload));
|
|
|
|
Reply::async(MyWebSocket)
|
2017-10-21 04:08:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-24 01:42:15 +00:00
|
|
|
/// Standard actix's stream handler for a stream of `ws::Message`
|
2017-10-21 22:21:16 +00:00
|
|
|
impl StreamHandler<ws::Message> for MyWebSocket {
|
|
|
|
fn started(&mut self, ctx: &mut Self::Context) {
|
|
|
|
println!("WebSocket session openned");
|
|
|
|
}
|
2017-10-21 04:08:38 +00:00
|
|
|
|
2017-10-21 22:21:16 +00:00
|
|
|
fn finished(&mut self, ctx: &mut Self::Context) {
|
|
|
|
println!("WebSocket session closed");
|
|
|
|
}
|
|
|
|
}
|
2017-10-21 04:08:38 +00: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 01:42:15 +00:00
|
|
|
// process websocket messages
|
2017-10-21 04:08:38 +00:00
|
|
|
println!("WS: {:?}", msg);
|
|
|
|
match msg {
|
|
|
|
ws::Message::Ping(msg) => ws::WsWriter::pong(ctx, msg),
|
|
|
|
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-10-22 05:59:09 +00:00
|
|
|
::std::env::set_var("RUST_LOG", "actix_web=info");
|
|
|
|
let _ = env_logger::init();
|
2017-10-21 04:08:38 +00:00
|
|
|
let sys = actix::System::new("ws-example");
|
|
|
|
|
|
|
|
HttpServer::new(
|
2017-10-22 01:54:24 +00:00
|
|
|
Application::default("/")
|
2017-10-22 05:59:09 +00:00
|
|
|
// enable logger
|
|
|
|
.middleware(Logger::new(None))
|
|
|
|
// websocket route
|
2017-10-21 04:08:38 +00:00
|
|
|
.resource("/ws/", |r| r.get::<MyWebSocket>())
|
2017-10-22 05:59:09 +00:00
|
|
|
.route_handler("/", StaticFiles::new("examples/static/", true)))
|
2017-10-24 01:42:15 +00:00
|
|
|
// start http server on 127.0.0.1:8080
|
2017-10-21 04:08:38 +00:00
|
|
|
.serve::<_, ()>("127.0.0.1:8080").unwrap();
|
|
|
|
|
|
|
|
println!("Started http server: 127.0.0.1:8080");
|
|
|
|
let _ = sys.run();
|
|
|
|
}
|