1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
//!
//! async WebSocket server functionality (requires tokio executor)
//!
use async_trait::async_trait;
use downcast_rs::*;
use futures::{future::FutureExt, select};
use futures_util::{
stream::{SplitSink, SplitStream},
SinkExt, StreamExt,
};
use std::net::SocketAddr;
use std::pin::Pin;
use std::sync::atomic::AtomicU64;
use std::sync::Arc;
use std::time::Duration;
use tokio::net::{TcpListener, TcpStream};
use tokio::sync::mpsc::{
UnboundedReceiver as TokioUnboundedReceiver, UnboundedSender as TokioUnboundedSender,
};
use tokio_tungstenite::{accept_async_with_config, WebSocketStream};
use tungstenite::Error as WebSocketError;
use workflow_core::channel::DuplexChannel;
use workflow_log::*;
pub mod error;
pub mod result;
pub use error::Error;
pub use result::Result;
pub use tungstenite::protocol::WebSocketConfig;
pub use tungstenite::Message;
/// WebSocket stream sender for dispatching [`tungstenite::Message`].
/// This stream object must have a mutable reference and can not be cloned.
pub type WebSocketSender = SplitSink<WebSocketStream<TcpStream>, Message>;
/// WebSocket stream receiver for receiving [`tungstenite::Message`].
/// This stream object must have a mutable reference and can not be cloned.
pub type WebSocketReceiver = SplitStream<WebSocketStream<TcpStream>>;
/// WebSocketSink [`tokio::sync::mpsc::UnboundedSender`] for dispatching
/// messages from within the [`WebSocketHandler::message`]. This is an
/// `MPSC` channel that can be cloned and retained externally for the
/// lifetime of the WebSocket connection.
pub type WebSocketSink = TokioUnboundedSender<Message>;
/// WebSocketHandler trait that represents the WebSocket processor
/// functionality. This trait is supplied to the WebSocket
/// which subsequently invokes it's functions during websocket
/// connection and messages. The trait can override `with_handshake()` method
/// to enable invocation of the `handshake()` method upon receipt of the
/// first valid websocket message from the incoming connection.
#[async_trait]
pub trait WebSocketHandler
where
Arc<Self>: Sync,
{
/// Context type used by impl trait to represent websocket connection
type Context: Send + Sync;
/// Called immediately when connection is established.
/// This function should return an error to terminate the connection.
/// If the server manages a client ban list, it should process it
/// in this function and return an [`Error`] to prevent further processing.
async fn connect(self: &Arc<Self>, _peer: &SocketAddr) -> Result<()> {
Ok(())
}
/// Called upon websocket disconnection
async fn disconnect(self: &Arc<Self>, _ctx: Self::Context, _result: Result<()>) {}
/// Called after [`Self::connect()`], after creating the [`tokio::sync::mpsc`] sender `sink`
/// channel, allowing the server to execute additional handshake communication phase,
/// or retain the sink for external message dispatch (such as server-side notifications).
async fn handshake(
self: &Arc<Self>,
peer: &SocketAddr,
sender: &mut WebSocketSender,
receiver: &mut WebSocketReceiver,
sink: &WebSocketSink,
) -> Result<Self::Context>;
/// Called for every websocket message
/// This function can return an error to terminate the connection
async fn message(
self: &Arc<Self>,
ctx: &Self::Context,
msg: Message,
sink: &WebSocketSink,
) -> Result<()>;
async fn ctl(self: &Arc<Self>, _msg: Message, _sender: &mut WebSocketSender) -> Result<()> {
Ok(())
}
}
/// WebSocketServer that provides the main websocket connection
/// and message processing loop that delivers messages to the
/// installed WebSocketHandler trait.
pub struct WebSocketServer<T>
where
T: WebSocketHandler + Send + Sync + 'static + Sized,
{
pub connections: AtomicU64,
pub handler: Arc<T>,
pub stop: DuplexChannel,
}
impl<T> WebSocketServer<T>
where
T: WebSocketHandler + Send + Sync + 'static,
{
pub fn new(handler: Arc<T>) -> Arc<Self> {
let connections = AtomicU64::new(0);
Arc::new(WebSocketServer {
connections,
handler,
stop: DuplexChannel::oneshot(),
})
}
async fn handle_connection(
self: &Arc<Self>,
peer: SocketAddr,
stream: TcpStream,
config: Option<WebSocketConfig>,
) -> Result<()> {
let ws_stream = accept_async_with_config(stream, config).await?;
// let ws_stream = accept_async(stream, config).await?;
self.handler.connect(&peer).await?;
// log_trace!("WebSocket connected: {}", peer);
let (mut ws_sender, mut ws_receiver) = ws_stream.split();
let (sink_sender, sink_receiver) = tokio::sync::mpsc::unbounded_channel::<Message>();
let ctx = self
.handler
.handshake(&peer, &mut ws_sender, &mut ws_receiver, &sink_sender)
.await?;
let result = self
.connection_task(&ctx, ws_sender, ws_receiver, sink_sender, sink_receiver)
.await;
self.handler.disconnect(ctx, result).await;
// log_trace!("WebSocket disconnected: {}", peer);
Ok(())
}
async fn connection_task(
self: &Arc<Self>,
ctx: &T::Context,
mut ws_sender: WebSocketSender,
mut ws_receiver: WebSocketReceiver,
sink_sender: TokioUnboundedSender<Message>,
mut sink_receiver: TokioUnboundedReceiver<Message>,
) -> Result<()> {
// let mut interval = tokio::time::interval(Duration::from_millis(1000));
loop {
tokio::select! {
msg = sink_receiver.recv() => {
let msg = msg.unwrap();
if let Message::Close(_) = msg {
ws_sender.send(msg).await?;
break;
} else {
ws_sender.send(msg).await?;
}
},
msg = ws_receiver.next() => {
match msg {
Some(msg) => {
let msg = msg?;
match msg {
Message::Binary(_) | Message::Text(_) => {
self.handler.message(ctx, msg, &sink_sender).await?;
},
Message::Close(_) => {
self.handler.message(ctx, msg, &sink_sender).await?;
break;
},
Message::Ping(_) | Message::Pong(_) => {
self.handler.ctl(msg, &mut ws_sender).await?;
},
_ => {
}
}
}
None => {
return Err(Error::AbnormalClose);
}
}
}
// _ = interval.tick() => {
// ws_sender.send(Message::Ping([0].to_vec())).await?;
// }
}
}
Ok(())
}
async fn bind(self: &Arc<Self>, addr: &str) -> Result<TcpListener> {
let listener = TcpListener::bind(&addr).await.map_err(|err| {
Error::Listen(format!(
"WebSocket server unable to listen on `{addr}`: {err}",
))
})?;
// log_trace!("WebSocket server listening on: {}", addr);
Ok(listener)
}
async fn accept(self: &Arc<Self>, stream: TcpStream, config: Option<WebSocketConfig>) {
let peer = stream
.peer_addr()
.expect("WebSocket connected streams should have a peer address");
let self_ = self.clone();
tokio::spawn(async move {
if let Err(e) = self_.handle_connection(peer, stream, config).await {
match e {
Error::WebSocketError(WebSocketError::ConnectionClosed)
| Error::WebSocketError(WebSocketError::Protocol(_))
| Error::WebSocketError(WebSocketError::Utf8) => (),
err => log_error!("Error processing connection: {}", err),
}
}
});
}
pub async fn listen(
self: Arc<Self>,
addr: &str,
config: Option<WebSocketConfig>,
) -> Result<()> {
let listener = self.bind(addr).await?;
loop {
select! {
stream = listener.accept().fuse() => {
if let Ok((stream,_)) = stream {
self.accept(stream, config).await;
}
},
_ = self.stop.request.receiver.recv().fuse() => break,
}
}
self.stop
.response
.sender
.send(())
.await
.map_err(|err| Error::Done(err.to_string()))
}
pub fn stop(&self) -> Result<()> {
self.stop
.request
.sender
.try_send(())
.map_err(|err| Error::Stop(err.to_string()))
}
pub async fn join(&self) -> Result<()> {
self.stop
.response
.receiver
.recv()
.await
.map_err(|err| Error::Join(err.to_string()))
}
pub async fn stop_and_join(&self) -> Result<()> {
self.stop()?;
self.join().await
}
}
/// Base WebSocketServer trait allows the [`WebSocketServer<T>`] struct
/// to be retained by the trait reference by castring it to the trait
/// as follows:
///
/// ```rust
/// use std::sync::Arc;
/// use async_trait::async_trait;
/// use workflow_websocket::server::{Result,WebSocketServerTrait};
///
/// struct Server{}
///
/// #[async_trait]
/// impl WebSocketServerTrait for Server{
/// async fn listen(self: Arc<Self>, addr: &str) -> Result<()>{
/// Ok(())
/// }
/// fn stop(&self) -> Result<()>{
/// Ok(())
/// }
/// async fn join(&self) -> Result<()>{
/// Ok(())
/// }
/// async fn stop_and_join(&self) -> Result<()>{
/// Ok(())
/// }
/// }
/// let server_trait: Arc<dyn WebSocketServerTrait> = Arc::new(Server{});
/// let server = server_trait.downcast_arc::<Server>();
/// ```
/// This can help simplify web socket handling in case the supplied
/// `T` generic contains complex generic types that typically
/// results in generics propagating up into the ownership type chain.
///
/// This trait is used in the [`workflow-rpc`](https://docs.rs/workflow-rpc)
/// crate to isolate `RpcHandler` generics from the RpcServer owning the WebSocket.
///
#[async_trait]
pub trait WebSocketServerTrait: DowncastSync {
async fn listen(self: Arc<Self>, addr: &str, config: Option<WebSocketConfig>) -> Result<()>;
fn stop(&self) -> Result<()>;
async fn join(&self) -> Result<()>;
async fn stop_and_join(&self) -> Result<()>;
}
impl_downcast!(sync WebSocketServerTrait);
#[async_trait]
impl<T> WebSocketServerTrait for WebSocketServer<T>
where
T: WebSocketHandler + Send + Sync + 'static + Sized,
{
async fn listen(self: Arc<Self>, addr: &str, config: Option<WebSocketConfig>) -> Result<()> {
self.listen(addr, config).await
}
fn stop(&self) -> Result<()> {
self.stop()
}
async fn join(&self) -> Result<()> {
self.join().await
}
async fn stop_and_join(&self) -> Result<()> {
self.stop_and_join().await
}
}
pub mod handshake {
//!
//! Module containing simple convenience handshake functions
//! such as `greeting()`
//!
use super::*;
/// Handshake closure function type for [`greeting()`] handshake
pub type HandshakeFn = Pin<Box<dyn Send + Sync + Fn(&str) -> Result<()>>>;
/// Simple greeting handshake where supplied closure receives
/// the first message from the client and should return
/// `Ok(())` to proceed or [`Error`] to abort the connection.
pub async fn greeting<'ws>(
timeout_duration: Duration,
_sender: &'ws mut WebSocketSender,
receiver: &'ws mut WebSocketReceiver,
handler: HandshakeFn,
) -> Result<()> {
let delay = tokio::time::sleep(timeout_duration);
tokio::select! {
msg = receiver.next() => {
if let Some(Ok(msg)) = msg {
if msg.is_text() || msg.is_binary() {
return handler(msg.to_text()?);
}
}
Err(Error::MalformedHandshake)
}
_ = delay => {
Err(Error::ConnectionTimeout)
}
}
}
}