2018-04-13 09:18:42 +08:00
|
|
|
//! Simple echo websocket server.
|
|
|
|
//! Open `http://localhost:8080/ws/index.html` in browser
|
2018-05-20 18:28:45 -07:00
|
|
|
//! or [python console client](https://github.com/actix/examples/blob/master/websocket/websocket-client.py)
|
2018-04-13 09:18:42 +08:00
|
|
|
//! could be used for testing.
|
|
|
|
|
2019-03-09 18:03:09 -08:00
|
|
|
use std::time::{Duration, Instant};
|
2018-09-27 22:37:19 +03:00
|
|
|
|
2018-04-13 09:18:42 +08:00
|
|
|
use actix::prelude::*;
|
2019-03-18 05:31:32 -07:00
|
|
|
use actix_files as fs;
|
2019-03-26 04:29:00 +01:00
|
|
|
use actix_web::{middleware, web, App, Error, HttpRequest, HttpResponse, HttpServer};
|
2019-03-18 05:31:32 -07:00
|
|
|
use actix_web_actors::ws;
|
2018-04-13 09:18:42 +08:00
|
|
|
|
2018-09-27 22:37:19 +03:00
|
|
|
/// How often heartbeat pings are sent
|
|
|
|
const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(5);
|
|
|
|
/// How long before lack of client response causes a timeout
|
|
|
|
const CLIENT_TIMEOUT: Duration = Duration::from_secs(10);
|
|
|
|
|
2018-04-13 09:18:42 +08:00
|
|
|
/// do websocket handshake and start `MyWebSocket` actor
|
2019-12-16 11:23:36 +06:00
|
|
|
async fn ws_index(r: HttpRequest, stream: web::Payload) -> Result<HttpResponse, Error> {
|
2019-03-18 05:31:32 -07:00
|
|
|
println!("{:?}", r);
|
|
|
|
let res = ws::start(MyWebSocket::new(), &r, stream);
|
2019-12-16 11:23:36 +06:00
|
|
|
println!("{:?}", res);
|
2019-03-18 05:31:32 -07:00
|
|
|
res
|
2018-04-13 09:18:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// websocket connection is long running connection, it easier
|
|
|
|
/// to handle with an actor
|
2018-09-27 22:37:19 +03:00
|
|
|
struct MyWebSocket {
|
|
|
|
/// Client must send ping at least once per 10 seconds (CLIENT_TIMEOUT),
|
|
|
|
/// otherwise we drop connection.
|
|
|
|
hb: Instant,
|
|
|
|
}
|
2018-04-13 09:18:42 +08:00
|
|
|
|
|
|
|
impl Actor for MyWebSocket {
|
|
|
|
type Context = ws::WebsocketContext<Self>;
|
2018-09-27 22:37:19 +03:00
|
|
|
|
|
|
|
/// Method is called on actor start. We start the heartbeat process here.
|
|
|
|
fn started(&mut self, ctx: &mut Self::Context) {
|
|
|
|
self.hb(ctx);
|
|
|
|
}
|
2018-04-13 09:18:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Handler for `ws::Message`
|
2019-12-16 11:23:36 +06:00
|
|
|
impl StreamHandler<Result<ws::Message, ws::ProtocolError>> for MyWebSocket {
|
|
|
|
fn handle(
|
|
|
|
&mut self,
|
|
|
|
msg: Result<ws::Message, ws::ProtocolError>,
|
|
|
|
ctx: &mut Self::Context,
|
|
|
|
) {
|
2018-04-13 09:18:42 +08:00
|
|
|
// process websocket messages
|
|
|
|
println!("WS: {:?}", msg);
|
|
|
|
match msg {
|
2019-12-16 11:23:36 +06:00
|
|
|
Ok(ws::Message::Ping(msg)) => {
|
2018-09-27 22:37:19 +03:00
|
|
|
self.hb = Instant::now();
|
|
|
|
ctx.pong(&msg);
|
|
|
|
}
|
2019-12-16 11:23:36 +06:00
|
|
|
Ok(ws::Message::Pong(_)) => {
|
2018-09-30 14:09:00 -06:00
|
|
|
self.hb = Instant::now();
|
|
|
|
}
|
2019-12-16 11:23:36 +06:00
|
|
|
Ok(ws::Message::Text(text)) => ctx.text(text),
|
|
|
|
Ok(ws::Message::Binary(bin)) => ctx.binary(bin),
|
|
|
|
Ok(ws::Message::Close(_)) => {
|
2018-04-13 09:18:42 +08:00
|
|
|
ctx.stop();
|
|
|
|
}
|
2019-12-16 11:23:36 +06:00
|
|
|
_ => ctx.stop(),
|
2018-04-13 09:18:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-27 22:37:19 +03:00
|
|
|
impl MyWebSocket {
|
|
|
|
fn new() -> Self {
|
|
|
|
Self { hb: Instant::now() }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// helper method that sends ping to client every second.
|
|
|
|
///
|
|
|
|
/// also this method checks heartbeats from client
|
|
|
|
fn hb(&self, ctx: &mut <Self as Actor>::Context) {
|
|
|
|
ctx.run_interval(HEARTBEAT_INTERVAL, |act, ctx| {
|
|
|
|
// check client heartbeats
|
|
|
|
if Instant::now().duration_since(act.hb) > CLIENT_TIMEOUT {
|
|
|
|
// heartbeat timed out
|
|
|
|
println!("Websocket Client heartbeat failed, disconnecting!");
|
|
|
|
|
|
|
|
// stop actor
|
|
|
|
ctx.stop();
|
|
|
|
|
|
|
|
// don't try to send a ping
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-12-16 11:23:36 +06:00
|
|
|
ctx.ping(b"");
|
2018-09-27 22:37:19 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-16 11:23:36 +06:00
|
|
|
#[actix_rt::main]
|
|
|
|
async fn main() -> std::io::Result<()> {
|
2019-03-18 05:31:32 -07:00
|
|
|
std::env::set_var("RUST_LOG", "actix_server=info,actix_web=info");
|
2018-04-13 09:18:42 +08:00
|
|
|
env_logger::init();
|
|
|
|
|
2019-03-18 05:31:32 -07:00
|
|
|
HttpServer::new(|| {
|
2019-03-09 18:03:09 -08:00
|
|
|
App::new()
|
2018-04-13 09:18:42 +08:00
|
|
|
// enable logger
|
2019-03-26 04:29:00 +01:00
|
|
|
.wrap(middleware::Logger::default())
|
2018-04-13 09:18:42 +08:00
|
|
|
// websocket route
|
2019-03-18 05:31:32 -07:00
|
|
|
.service(web::resource("/ws/").route(web::get().to(ws_index)))
|
2018-04-13 09:18:42 +08:00
|
|
|
// static files
|
2019-03-18 05:31:32 -07:00
|
|
|
.service(fs::Files::new("/", "static/").index_file("index.html"))
|
2019-03-09 18:03:09 -08:00
|
|
|
})
|
|
|
|
// start http server on 127.0.0.1:8080
|
2019-03-18 05:31:32 -07:00
|
|
|
.bind("127.0.0.1:8080")?
|
2019-12-25 20:48:33 +04:00
|
|
|
.run()
|
2019-12-16 11:23:36 +06:00
|
|
|
.await
|
2018-04-13 09:18:42 +08:00
|
|
|
}
|