nautilus_network/websocket.rs
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 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
// -------------------------------------------------------------------------------------------------
// Copyright (C) 2015-2024 Nautech Systems Pty Ltd. All rights reserved.
// https://nautechsystems.io
//
// Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
// You may not use this file except in compliance with the License.
// You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// -------------------------------------------------------------------------------------------------
//! A high-performance WebSocket client implementation.
use std::{
sync::{
atomic::{AtomicBool, Ordering},
Arc,
},
time::Duration,
};
use futures_util::{
stream::{SplitSink, SplitStream},
SinkExt, StreamExt,
};
use nautilus_cryptography::providers::install_cryptographic_provider;
use pyo3::{prelude::*, types::PyBytes};
use tokio::{net::TcpStream, sync::Mutex, task, time::sleep};
use tokio_tungstenite::{
connect_async,
tungstenite::{client::IntoClientRequest, http::HeaderValue, Error, Message},
MaybeTlsStream, WebSocketStream,
};
use crate::ratelimiter::{clock::MonotonicClock, quota::Quota, RateLimiter};
type MessageWriter = SplitSink<WebSocketStream<MaybeTlsStream<TcpStream>>, Message>;
type SharedMessageWriter =
Arc<Mutex<SplitSink<WebSocketStream<MaybeTlsStream<TcpStream>>, Message>>>;
type MessageReader = SplitStream<WebSocketStream<MaybeTlsStream<TcpStream>>>;
#[derive(Debug, Clone)]
#[cfg_attr(
feature = "python",
pyo3::pyclass(module = "nautilus_trader.core.nautilus_pyo3.network")
)]
pub struct WebSocketConfig {
pub url: String,
pub handler: Arc<PyObject>,
pub headers: Vec<(String, String)>,
pub heartbeat: Option<u64>,
pub heartbeat_msg: Option<String>,
pub ping_handler: Option<Arc<PyObject>>,
pub max_reconnection_tries: Option<u64>,
}
/// `WebSocketClient` connects to a websocket server to read and send messages.
///
/// The client is opinionated about how messages are read and written. It
/// assumes that data can only have one reader but multiple writers.
///
/// The client splits the connection into read and write halves. It moves
/// the read half into a tokio task which keeps receiving messages from the
/// server and calls a handler - a Python function that takes the data
/// as its parameter. It stores the write half in the struct wrapped
/// with an Arc Mutex. This way the client struct can be used to write
/// data to the server from multiple scopes/tasks.
///
/// The client also maintains a heartbeat if given a duration in seconds.
/// It's preferable to set the duration slightly lower - heartbeat more
/// frequently - than the required amount.
struct WebSocketClientInner {
config: WebSocketConfig,
read_task: task::JoinHandle<()>,
heartbeat_task: Option<task::JoinHandle<()>>,
writer: SharedMessageWriter,
}
impl WebSocketClientInner {
/// Create an inner websocket client.
pub async fn connect_url(config: WebSocketConfig) -> Result<Self, Error> {
install_cryptographic_provider();
#[allow(unused_variables)]
let WebSocketConfig {
url,
handler,
heartbeat,
headers,
heartbeat_msg,
ping_handler,
max_reconnection_tries,
} = &config;
let (writer, reader) = Self::connect_with_server(url, headers.clone()).await?;
let writer = Arc::new(Mutex::new(writer));
// Keep receiving messages from socket and pass them as arguments to handler
let read_task = Self::spawn_read_task(reader, handler.clone(), ping_handler.clone());
let heartbeat_task =
Self::spawn_heartbeat_task(*heartbeat, heartbeat_msg.clone(), writer.clone());
Ok(Self {
config,
read_task,
heartbeat_task,
writer,
})
}
/// Connects with the server creating a tokio-tungstenite websocket stream.
#[inline]
pub async fn connect_with_server(
url: &str,
headers: Vec<(String, String)>,
) -> Result<(MessageWriter, MessageReader), Error> {
let mut request = url.into_client_request()?;
let req_headers = request.headers_mut();
// Hacky solution to overcome the new `http` trait bounds
for (key, val) in headers {
let header_value = HeaderValue::from_str(&val)?;
use http::header::HeaderName;
let header_name: HeaderName = key.parse()?;
let header_name_string = header_name.to_string();
let header_name_str: &'static str = Box::leak(header_name_string.into_boxed_str());
req_headers.insert(header_name_str, header_value);
}
connect_async(request).await.map(|resp| resp.0.split())
}
/// Optionally spawn a hearbeat task to periodically ping the server.
pub fn spawn_heartbeat_task(
heartbeat: Option<u64>,
message: Option<String>,
writer: SharedMessageWriter,
) -> Option<task::JoinHandle<()>> {
tracing::debug!("Started task 'heartbeat'");
heartbeat.map(|duration| {
task::spawn(async move {
let duration = Duration::from_secs(duration);
loop {
sleep(duration).await;
let mut guard = writer.lock().await;
let guard_send_response = match message.clone() {
Some(msg) => guard.send(Message::Text(msg)).await,
None => guard.send(Message::Ping(vec![])).await,
};
match guard_send_response {
Ok(()) => tracing::trace!("Sent ping"),
Err(e) => tracing::error!("Error sending ping: {e}"),
}
}
})
})
}
/// Keep receiving messages from socket and pass them as arguments to handler.
pub fn spawn_read_task(
mut reader: MessageReader,
handler: Arc<PyObject>,
ping_handler: Option<Arc<PyObject>>,
) -> task::JoinHandle<()> {
tracing::debug!("Started task 'read'");
task::spawn(async move {
loop {
match reader.next().await {
Some(Ok(Message::Binary(data))) => {
tracing::trace!("Received message <binary> {} bytes", data.len());
if let Err(e) = Python::with_gil(|py| {
handler.call1(py, (PyBytes::new_bound(py, &data),))
}) {
tracing::error!("Error calling handler: {e}");
break;
}
continue;
}
Some(Ok(Message::Text(data))) => {
tracing::trace!("Received message: {data}");
if let Err(e) = Python::with_gil(|py| {
handler.call1(py, (PyBytes::new_bound(py, data.as_bytes()),))
}) {
tracing::error!("Error calling handler: {e}");
break;
}
continue;
}
Some(Ok(Message::Ping(ping))) => {
let payload = String::from_utf8(ping.clone()).expect("Invalid payload");
tracing::trace!("Received ping: {payload}",);
if let Some(ref handler) = ping_handler {
if let Err(e) = Python::with_gil(|py| {
handler.call1(py, (PyBytes::new_bound(py, &ping),))
}) {
tracing::error!("Error calling handler: {e}");
break;
}
}
continue;
}
Some(Ok(Message::Pong(_))) => {
tracing::trace!("Received pong");
}
Some(Ok(Message::Close(_))) => {
tracing::error!("Received close message - terminating");
break;
}
Some(Ok(_)) => (),
Some(Err(e)) => {
tracing::error!("Received error message - terminating: {e}");
break;
}
// Internally tungstenite considers the connection closed when polling
// for the next message in the stream returns None.
None => {
tracing::error!("No message received - terminating");
break;
}
}
}
})
}
/// Shutdown read and hearbeat task and the connection.
///
/// The client must be explicitly shutdown before dropping otherwise
/// the connection might still be alive for some time before terminating.
/// Closing the connection is an async call which cannot be done by the
/// drop method so it must be done explicitly.
pub async fn shutdown(&mut self) {
tracing::debug!("Closing connection");
if !self.read_task.is_finished() {
self.read_task.abort();
tracing::debug!("Aborted message read task");
}
// Cancel heart beat task
if let Some(ref handle) = self.heartbeat_task.take() {
if !handle.is_finished() {
handle.abort();
tracing::debug!("Aborted heartbeat task");
}
}
tracing::debug!("Closing writer");
let mut write_half = self.writer.lock().await;
if let Err(e) = write_half.close().await {
tracing::error!("Error closing writer: {e:?}");
} else {
tracing::debug!("Closed connection");
}
}
/// Reconnect with server.
///
/// Make a new connection with server. Use the new read and write halves
/// to update self writer and read and heartbeat tasks.
pub async fn reconnect(&mut self) -> Result<(), Error> {
self.shutdown().await;
let (new_writer, reader) =
Self::connect_with_server(&self.config.url, self.config.headers.clone()).await?;
let mut guard = self.writer.lock().await;
*guard = new_writer;
drop(guard);
self.read_task = Self::spawn_read_task(
reader,
self.config.handler.clone(),
self.config.ping_handler.clone(),
);
self.heartbeat_task = Self::spawn_heartbeat_task(
self.config.heartbeat,
self.config.heartbeat_msg.clone(),
self.writer.clone(),
);
Ok(())
}
/// Check if the client is still connected.
///
/// The client is connected if the read task has not finished. It is expected
/// that in case of any failure client or server side. The read task will be
/// shutdown or will receive a `Close` frame which will finish it. There
/// might be some delay between the connection being closed and the client
/// detecting.
#[inline]
#[must_use]
pub fn is_alive(&self) -> bool {
!self.read_task.is_finished()
}
}
impl Drop for WebSocketClientInner {
fn drop(&mut self) {
if !self.read_task.is_finished() {
self.read_task.abort();
}
// Cancel heart beat task
if let Some(ref handle) = self.heartbeat_task.take() {
if !handle.is_finished() {
handle.abort();
}
}
}
}
#[cfg_attr(
feature = "python",
pyo3::pyclass(module = "nautilus_trader.core.nautilus_pyo3.network")
)]
pub struct WebSocketClient {
pub(crate) rate_limiter: Arc<RateLimiter<String, MonotonicClock>>,
pub(crate) writer: SharedMessageWriter,
pub(crate) controller_task: task::JoinHandle<()>,
pub(crate) disconnect_mode: Arc<AtomicBool>,
}
impl WebSocketClient {
/// Creates a websocket client.
///
/// Creates an inner client and controller task to reconnect or disconnect
/// the client. Also assumes ownership of writer from inner client.
pub async fn connect(
config: WebSocketConfig,
post_connection: Option<PyObject>,
post_reconnection: Option<PyObject>,
post_disconnection: Option<PyObject>,
keyed_quotas: Vec<(String, Quota)>,
default_quota: Option<Quota>,
) -> Result<Self, Error> {
tracing::debug!("Connecting");
let inner = WebSocketClientInner::connect_url(config.clone()).await?;
let writer = inner.writer.clone();
let disconnect_mode = Arc::new(AtomicBool::new(false));
let controller_task = Self::spawn_controller_task(
inner,
disconnect_mode.clone(),
post_reconnection,
post_disconnection,
config.max_reconnection_tries,
);
let rate_limiter = Arc::new(RateLimiter::new_with_quota(default_quota, keyed_quotas));
if let Some(handler) = post_connection {
Python::with_gil(|py| match handler.call0(py) {
Ok(_) => tracing::debug!("Called `post_connection` handler"),
Err(e) => tracing::error!("Error calling `post_connection` handler: {e}"),
});
};
Ok(Self {
rate_limiter,
writer,
controller_task,
disconnect_mode,
})
}
#[must_use]
pub fn is_disconnected(&self) -> bool {
self.controller_task.is_finished()
}
/// Set disconnect mode to true.
///
/// Controller task will periodically check the disconnect mode
/// and shutdown the client if it is alive
pub async fn disconnect(&self) {
tracing::debug!("Disconnecting");
self.disconnect_mode.store(true, Ordering::SeqCst);
match tokio::time::timeout(Duration::from_secs(5), async {
while !self.is_disconnected() {
sleep(Duration::from_millis(10)).await;
}
})
.await
{
Ok(()) => {
tracing::debug!("Controller task finished");
}
Err(_) => {
tracing::error!("Timeout waiting for controller task to finish");
}
}
}
pub async fn send_bytes(&self, data: Vec<u8>) -> Result<(), Error> {
tracing::trace!("Sending bytes: {data:?}");
let mut guard = self.writer.lock().await;
guard.send(Message::Binary(data)).await
}
pub async fn send_close_message(&self) {
let mut guard = self.writer.lock().await;
match guard.send(Message::Close(None)).await {
Ok(()) => tracing::debug!("Sent close message"),
Err(e) => tracing::error!("Error sending close message: {e}"),
}
}
fn spawn_controller_task(
mut inner: WebSocketClientInner,
disconnect_mode: Arc<AtomicBool>,
post_reconnection: Option<PyObject>,
post_disconnection: Option<PyObject>,
max_reconnection_tries: Option<u64>,
) -> task::JoinHandle<()> {
task::spawn(async move {
let mut retry_counter: u64 = 0;
loop {
sleep(Duration::from_millis(100)).await;
// Check if client needs to disconnect
let disconnect = disconnect_mode.load(Ordering::SeqCst);
match (disconnect, inner.is_alive()) {
(false, false) => match inner.reconnect().await {
Ok(()) => {
tracing::debug!("Reconnected successfully");
retry_counter = 0;
if let Some(ref handler) = post_reconnection {
Python::with_gil(|py| match handler.call0(py) {
Ok(_) => tracing::debug!("Called `post_reconnection` handler"),
Err(e) => {
tracing::error!(
"Error calling `post_reconnection` handler: {e}"
);
}
});
}
}
Err(e) => {
if let Some(max_reconnection_tries) = max_reconnection_tries {
if retry_counter < max_reconnection_tries {
retry_counter += 1;
tracing::warn!("Reconnect failed {e}. Retry {retry_counter}/{max_reconnection_tries}");
sleep(Duration::from_millis(1000)).await;
} else {
tracing::error!("Reconnect failed {e}");
break;
}
} else {
tracing::error!("Reconnect failed {e}");
break;
}
}
},
(true, true) => {
tracing::debug!("Shutting down inner client");
inner.shutdown().await;
if let Some(ref handler) = post_disconnection {
Python::with_gil(|py| match handler.call0(py) {
Ok(_) => tracing::debug!("Called `post_disconnection` handler"),
Err(e) => {
tracing::error!(
"Error calling `post_disconnection` handler: {e}"
);
}
});
}
break;
}
// Close the heartbeat task on disconnect if the connection is already closed
(true, false) => {
tracing::debug!("Inner client is disconnected");
tracing::debug!("Shutting down inner client to clean up running tasks");
inner.shutdown().await;
}
_ => (),
}
}
})
}
}