nautilus_network/python/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 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
// -------------------------------------------------------------------------------------------------
// 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.
// -------------------------------------------------------------------------------------------------
use std::sync::{atomic::Ordering, Arc};
use futures::SinkExt;
use futures_util::{stream, StreamExt};
use nautilus_core::python::to_pyvalue_err;
use pyo3::{create_exception, exceptions::PyException, prelude::*};
use tokio_tungstenite::tungstenite::Message;
use crate::{
ratelimiter::quota::Quota,
websocket::{WebSocketClient, WebSocketConfig},
};
// Python exception class for websocket errors
create_exception!(network, WebSocketClientError, PyException);
fn to_websocket_pyerr(e: tokio_tungstenite::tungstenite::Error) -> PyErr {
PyErr::new::<WebSocketClientError, _>(e.to_string())
}
#[pymethods]
impl WebSocketConfig {
#[new]
#[pyo3(signature = (url, handler, headers, heartbeat=None, heartbeat_msg=None, ping_handler=None, max_reconnection_tries=3))]
fn py_new(
url: String,
handler: PyObject,
headers: Vec<(String, String)>,
heartbeat: Option<u64>,
heartbeat_msg: Option<String>,
ping_handler: Option<PyObject>,
max_reconnection_tries: Option<u64>,
) -> Self {
Self {
url,
handler: Arc::new(handler),
headers,
heartbeat,
heartbeat_msg,
ping_handler: ping_handler.map(Arc::new),
max_reconnection_tries,
}
}
}
#[pymethods]
impl WebSocketClient {
/// Create a websocket client.
///
/// # Safety
///
/// - Throws an Exception if it is unable to make websocket connection.
#[staticmethod]
#[pyo3(name = "connect", signature = (config, post_connection= None, post_reconnection= None, post_disconnection= None, keyed_quotas = Vec::new(), default_quota = None))]
fn py_connect(
config: WebSocketConfig,
post_connection: Option<PyObject>,
post_reconnection: Option<PyObject>,
post_disconnection: Option<PyObject>,
keyed_quotas: Vec<(String, Quota)>,
default_quota: Option<Quota>,
py: Python<'_>,
) -> PyResult<Bound<PyAny>> {
pyo3_async_runtimes::tokio::future_into_py(py, async move {
Self::connect(
config,
post_connection,
post_reconnection,
post_disconnection,
keyed_quotas,
default_quota,
)
.await
.map_err(to_websocket_pyerr)
})
}
/// Closes the client heart beat and reader task.
///
/// The connection is not completely closed the till all references
/// to the client are gone and the client is dropped.
///
/// # Safety
///
/// - The client should not be used after closing it.
/// - Any auto-reconnect job should be aborted before closing the client.
#[pyo3(name = "disconnect")]
fn py_disconnect<'py>(slf: PyRef<'_, Self>, py: Python<'py>) -> PyResult<Bound<'py, PyAny>> {
let disconnect_mode = slf.disconnect_mode.clone();
pyo3_async_runtimes::tokio::future_into_py(py, async move {
disconnect_mode.store(true, Ordering::SeqCst);
Ok(())
})
}
/// Check if the client is still alive.
///
/// Even if the connection is disconnected the client will still be alive
/// and trying to reconnect. Only when reconnect fails the client will
/// terminate.
///
/// This is particularly useful for checking why a `send` failed. It could
/// be because the connection disconnected and the client is still alive
/// and reconnecting. In such cases the send can be retried after some
/// delay.
#[pyo3(name = "is_alive")]
fn py_is_alive(slf: PyRef<'_, Self>) -> bool {
!slf.controller_task.is_finished()
}
/// Send bytes data to the server.
///
/// # Errors
///
/// - Raises PyRuntimeError if not able to send data.
#[pyo3(name = "send")]
#[pyo3(signature = (data, keys=None))]
fn py_send<'py>(
slf: PyRef<'_, Self>,
data: Vec<u8>,
py: Python<'py>,
keys: Option<Vec<String>>,
) -> PyResult<Bound<'py, PyAny>> {
let keys = keys.unwrap_or_default();
let writer = slf.writer.clone();
let rate_limiter = slf.rate_limiter.clone();
pyo3_async_runtimes::tokio::future_into_py(py, async move {
let tasks = keys.iter().map(|key| rate_limiter.until_key_ready(key));
stream::iter(tasks)
.for_each(|key| async move {
key.await;
})
.await;
// Log after passing rate limit checks
tracing::trace!("Sending binary: {data:?}");
let mut guard = writer.lock().await;
guard
.send(Message::Binary(data))
.await
.map_err(to_websocket_pyerr)
})
}
/// Send UTF-8 encoded bytes as text data to the server, respecting rate limits.
///
/// `data`: The byte data to be sent, which will be converted to a UTF-8 string.
/// `keys`: Optional list of rate limit keys. If provided, the function will wait for rate limits to be met for each key before sending the data.
///
/// # Errors
/// - Raises `PyRuntimeError` if unable to send the data.
///
/// # Example
///
/// When a request is made the URL should be split into all relevant keys within it.
///
/// For request /foo/bar, should pass keys ["foo/bar", "foo"] for rate limiting.
#[pyo3(name = "send_text")]
#[pyo3(signature = (data, keys=None))]
fn py_send_text<'py>(
slf: PyRef<'_, Self>,
data: Vec<u8>,
py: Python<'py>,
keys: Option<Vec<String>>,
) -> PyResult<Bound<'py, PyAny>> {
let data = String::from_utf8(data).map_err(to_pyvalue_err)?;
let keys = keys.unwrap_or_default();
let writer = slf.writer.clone();
let rate_limiter = slf.rate_limiter.clone();
pyo3_async_runtimes::tokio::future_into_py(py, async move {
let tasks = keys.iter().map(|key| rate_limiter.until_key_ready(key));
stream::iter(tasks)
.for_each(|key| async move {
key.await;
})
.await;
// Log after passing rate limit checks
tracing::trace!("Sending text: {data}");
let mut guard = writer.lock().await;
guard
.send(Message::Text(data))
.await
.map_err(to_websocket_pyerr)
})
}
/// Send pong bytes data to the server.
///
/// # Errors
///
/// - Raises PyRuntimeError if not able to send data.
#[pyo3(name = "send_pong")]
fn py_send_pong<'py>(
slf: PyRef<'_, Self>,
data: Vec<u8>,
py: Python<'py>,
) -> PyResult<Bound<'py, PyAny>> {
let data_str = String::from_utf8(data.clone()).map_err(to_pyvalue_err)?;
tracing::trace!("Sending pong: {data_str}");
let writer = slf.writer.clone();
pyo3_async_runtimes::tokio::future_into_py(py, async move {
let mut guard = writer.lock().await;
guard
.send(Message::Pong(data))
.await
.map_err(to_websocket_pyerr)
})
}
}
////////////////////////////////////////////////////////////////////////////////
// Tests
////////////////////////////////////////////////////////////////////////////////
#[cfg(test)]
mod tests {
use futures_util::{SinkExt, StreamExt};
use pyo3::{prelude::*, prepare_freethreaded_python};
use tokio::{
net::TcpListener,
task::{self, JoinHandle},
time::{sleep, Duration},
};
use tokio_tungstenite::{
accept_hdr_async,
tungstenite::{
handshake::server::{self, Callback},
http::HeaderValue,
},
};
use tracing_test::traced_test;
use crate::websocket::{WebSocketClient, WebSocketConfig};
struct TestServer {
task: JoinHandle<()>,
port: u16,
}
#[derive(Debug, Clone)]
struct TestCallback {
key: String,
value: HeaderValue,
}
impl Callback for TestCallback {
fn on_request(
self,
request: &server::Request,
response: server::Response,
) -> Result<server::Response, server::ErrorResponse> {
let _ = response;
let value = request.headers().get(&self.key);
assert!(value.is_some());
if let Some(value) = request.headers().get(&self.key) {
assert_eq!(value, self.value);
}
Ok(response)
}
}
impl TestServer {
async fn setup(key: String, value: String) -> Self {
let server = TcpListener::bind("127.0.0.1:0").await.unwrap();
let port = TcpListener::local_addr(&server).unwrap().port();
let test_call_back = TestCallback {
key,
value: HeaderValue::from_str(&value).unwrap(),
};
// Set up test server
let task = task::spawn(async move {
// Keep accepting connections
loop {
let (conn, _) = server.accept().await.unwrap();
let mut websocket = accept_hdr_async(conn, test_call_back.clone())
.await
.unwrap();
task::spawn(async move {
loop {
let msg = websocket.next().await.unwrap().unwrap();
// We do not want to send back ping/pong messages.
if msg.is_binary() || msg.is_text() {
websocket.send(msg).await.unwrap();
} else if msg.is_close() {
if let Err(e) = websocket.close(None).await {
tracing::debug!("Connection already closed {e}");
};
break;
}
}
});
}
});
Self { task, port }
}
}
impl Drop for TestServer {
fn drop(&mut self) {
self.task.abort();
}
}
#[tokio::test]
#[traced_test]
async fn basic_client_test() {
prepare_freethreaded_python();
const N: usize = 10;
let mut success_count = 0;
let header_key = "hello-custom-key".to_string();
let header_value = "hello-custom-value".to_string();
// Initialize test server
let server = TestServer::setup(header_key.clone(), header_value.clone()).await;
// Create counter class and handler that increments it
let (counter, handler) = Python::with_gil(|py| {
let pymod = PyModule::from_code_bound(
py,
r"
class Counter:
def __init__(self):
self.count = 0
def handler(self, bytes):
if bytes.decode() == 'ping':
self.count = self.count + 1
def get_count(self):
return self.count
counter = Counter()",
"",
"",
)
.unwrap();
let counter = pymod.getattr("counter").unwrap().into_py(py);
let handler = counter.getattr(py, "handler").unwrap().into_py(py);
(counter, handler)
});
let config = WebSocketConfig::py_new(
format!("ws://127.0.0.1:{}", server.port),
Python::with_gil(|py| handler.clone_ref(py)),
vec![(header_key, header_value)],
None,
None,
None,
None,
);
let client = WebSocketClient::connect(config, None, None, None, Vec::new(), None)
.await
.unwrap();
// Send messages that increment the count
for _ in 0..N {
if client.send_bytes(b"ping".to_vec()).await.is_ok() {
success_count += 1;
};
}
// Check count is same as number messages sent
sleep(Duration::from_secs(1)).await;
let count_value: usize = Python::with_gil(|py| {
counter
.getattr(py, "get_count")
.unwrap()
.call0(py)
.unwrap()
.extract(py)
.unwrap()
});
assert_eq!(count_value, success_count);
//////////////////////////////////////////////////////////////////////
// Close connection client should reconnect and send messages
//////////////////////////////////////////////////////////////////////
// close the connection
// client should reconnect automatically
client.send_close_message().await;
// Send messages that increment the count
sleep(Duration::from_secs(2)).await;
for _ in 0..N {
if client.send_bytes(b"ping".to_vec()).await.is_ok() {
success_count += 1;
};
}
// Check count is same as number messages sent
sleep(Duration::from_secs(1)).await;
let count_value: usize = Python::with_gil(|py| {
counter
.getattr(py, "get_count")
.unwrap()
.call0(py)
.unwrap()
.extract(py)
.unwrap()
});
assert_eq!(count_value, success_count);
assert_eq!(success_count, N + N);
// Shutdown client
client.disconnect().await;
assert!(client.is_disconnected());
}
#[tokio::test]
#[traced_test]
async fn message_ping_test() {
prepare_freethreaded_python();
let header_key = "hello-custom-key".to_string();
let header_value = "hello-custom-value".to_string();
let (checker, handler) = Python::with_gil(|py| {
let pymod = PyModule::from_code_bound(
py,
r"
class Checker:
def __init__(self):
self.check = False
def handler(self, bytes):
if bytes.decode() == 'heartbeat message':
self.check = True
def get_check(self):
return self.check
checker = Checker()",
"",
"",
)
.unwrap();
let checker = pymod.getattr("checker").unwrap().into_py(py);
let handler = checker.getattr(py, "handler").unwrap().into_py(py);
(checker, handler)
});
// Initialize test server and config
let server = TestServer::setup(header_key.clone(), header_value.clone()).await;
let config = WebSocketConfig::py_new(
format!("ws://127.0.0.1:{}", server.port),
Python::with_gil(|py| handler.clone_ref(py)),
vec![(header_key, header_value)],
Some(1),
Some("heartbeat message".to_string()),
None,
None,
);
let client = WebSocketClient::connect(config, None, None, None, Vec::new(), None)
.await
.unwrap();
// Check if ping message has the correct message
sleep(Duration::from_secs(2)).await;
let check_value: bool = Python::with_gil(|py| {
checker
.getattr(py, "get_check")
.unwrap()
.call0(py)
.unwrap()
.extract(py)
.unwrap()
});
assert!(check_value);
// Shutdown client
client.disconnect().await;
assert!(client.is_disconnected());
}
}