nautilus_tardis/machine/
mod.rs

1// -------------------------------------------------------------------------------------------------
2//  Copyright (C) 2015-2025 Nautech Systems Pty Ltd. All rights reserved.
3//  https://nautechsystems.io
4//
5//  Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
6//  You may not use this file except in compliance with the License.
7//  You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
8//
9//  Unless required by applicable law or agreed to in writing, software
10//  distributed under the License is distributed on an "AS IS" BASIS,
11//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//  See the License for the specific language governing permissions and
13//  limitations under the License.
14// -------------------------------------------------------------------------------------------------
15
16pub mod client;
17pub mod message;
18pub mod parse;
19pub mod types;
20
21use std::{
22    sync::{
23        Arc,
24        atomic::{AtomicBool, Ordering},
25    },
26    time::Duration,
27};
28
29use async_stream::stream;
30use futures_util::{SinkExt, Stream, StreamExt, stream::SplitSink};
31use message::WsMessage;
32use tokio::net::TcpStream;
33use tokio_tungstenite::{
34    MaybeTlsStream, WebSocketStream, connect_async,
35    tungstenite::{self, protocol::frame::coding::CloseCode},
36};
37use types::{ReplayNormalizedRequestOptions, StreamNormalizedRequestOptions};
38
39pub use crate::machine::client::TardisMachineClient;
40
41pub type Result<T> = std::result::Result<T, Error>;
42
43/// The error that could happen while interacting with Tardis Machine Server.
44#[derive(Debug, thiserror::Error)]
45pub enum Error {
46    /// An error that could happen when an empty options array was given.
47    #[error("Options cannot be empty")]
48    EmptyOptions,
49    /// An error when failed to connect to Tardis' websocket connection.
50    #[error("Failed to connect: {0}")]
51    ConnectFailed(#[from] tungstenite::Error),
52    /// An error when WS connection to the machine server was rejected.
53    #[error("Connection rejected: {reason}")]
54    ConnectRejected {
55        /// The status code for the initial WS connection.
56        status: tungstenite::http::StatusCode,
57        /// The reason why the connection was rejected.
58        reason: String,
59    },
60    /// An error where the websocket connection was closed unexpectedly by Tardis.
61    #[error("Connection closed: {reason}")]
62    ConnectionClosed {
63        /// The reason why the connection was closed.
64        reason: String,
65    },
66    /// An error when deserializing the response from Tardis.
67    #[error("Failed to deserialize message: {0}")]
68    Deserialization(#[from] serde_json::Error),
69}
70
71pub async fn replay_normalized(
72    base_url: &str,
73    options: Vec<ReplayNormalizedRequestOptions>,
74    signal: Arc<AtomicBool>,
75) -> Result<impl Stream<Item = Result<WsMessage>>> {
76    if options.is_empty() {
77        return Err(Error::EmptyOptions);
78    }
79
80    let path = format!("{base_url}/ws-replay-normalized?options=");
81    let options = serde_json::to_string(&options)?;
82
83    let plain_url = format!("{path}{options}");
84    tracing::debug!("Connecting to {plain_url}");
85
86    let url = format!("{path}{}", urlencoding::encode(&options));
87    stream_from_websocket(base_url, url, signal).await
88}
89
90pub async fn stream_normalized(
91    base_url: &str,
92    options: Vec<StreamNormalizedRequestOptions>,
93    signal: Arc<AtomicBool>,
94) -> Result<impl Stream<Item = Result<WsMessage>>> {
95    if options.is_empty() {
96        return Err(Error::EmptyOptions);
97    }
98
99    let path = format!("{base_url}/ws-stream-normalized?options=");
100    let options = serde_json::to_string(&options)?;
101
102    let plain_url = format!("{path}{options}");
103    tracing::debug!("Connecting to {plain_url}");
104
105    let url = format!("{path}{}", urlencoding::encode(&options));
106    stream_from_websocket(base_url, url, signal).await
107}
108
109async fn stream_from_websocket(
110    base_url: &str,
111    url: String,
112    signal: Arc<AtomicBool>,
113) -> Result<impl Stream<Item = Result<WsMessage>>> {
114    let (ws_stream, ws_resp) = connect_async(url).await?;
115
116    handle_connection_response(ws_resp)?;
117    tracing::info!("Connected to {base_url}");
118
119    Ok(stream! {
120        let (writer, mut reader) = ws_stream.split();
121        tokio::spawn(heartbeat(writer));
122
123        // Timeout awaiting the next record before checking signal
124        let timeout = Duration::from_millis(10);
125
126        tracing::info!("Streaming from websocket...");
127
128        loop {
129            if signal.load(Ordering::Relaxed) {
130                tracing::debug!("Shutdown signal received");
131                break;
132            }
133
134            let result = tokio::time::timeout(timeout, reader.next()).await;
135            let msg = match result {
136                Ok(msg) => msg,
137                Err(_) => continue, // Timeout
138            };
139
140            match msg {
141                Some(Ok(msg)) => match msg {
142                    tungstenite::Message::Frame(_)
143                    | tungstenite::Message::Binary(_)
144                    | tungstenite::Message::Pong(_)
145                    | tungstenite::Message::Ping(_) => {
146                        tracing::trace!("Received {msg:?}");
147                        continue; // Skip and continue to the next message
148                    }
149                    tungstenite::Message::Close(Some(frame)) => {
150                        let reason = frame.reason.to_string();
151                        if frame.code == CloseCode::Normal {
152                            tracing::debug!("Connection closed normally: {reason}");
153                        } else {
154                            tracing::error!(
155                                "Connection closed abnormally with code: {:?}, reason: {reason}", frame.code
156                            );
157                            yield Err(Error::ConnectionClosed { reason });
158                        }
159                        break;
160                    }
161                    tungstenite::Message::Close(None) => {
162                        tracing::error!("Connection closed without a frame");
163                        yield Err(Error::ConnectionClosed {
164                            reason: "No close frame provided".to_string()
165                        });
166                        break;
167                    }
168                    tungstenite::Message::Text(msg) => {
169                        match serde_json::from_str::<WsMessage>(&msg) {
170                            Ok(parsed_msg) => yield Ok(parsed_msg),
171                            Err(e) => {
172                                tracing::error!("Failed to deserialize message: {msg}. Error: {e}");
173                                yield Err(Error::Deserialization(e));
174                            }
175                        }
176                    }
177                },
178                Some(Err(e)) => {
179                    tracing::error!("WebSocket error: {e}");
180                    yield Err(Error::ConnectFailed(e));
181                    break;
182                }
183                None => {
184                    tracing::error!("Connection closed unexpectedly");
185                    yield Err(Error::ConnectionClosed {
186                        reason: "Unexpected connection close".to_string(),
187                    });
188                    break;
189                }
190            }
191        }
192
193        tracing::info!("Shutdown stream");
194    })
195}
196
197fn handle_connection_response(ws_resp: tungstenite::http::Response<Option<Vec<u8>>>) -> Result<()> {
198    if ws_resp.status() != tungstenite::http::StatusCode::SWITCHING_PROTOCOLS {
199        return match ws_resp.body() {
200            Some(resp) => Err(Error::ConnectRejected {
201                status: ws_resp.status(),
202                reason: String::from_utf8_lossy(resp).to_string(),
203            }),
204            None => Err(Error::ConnectRejected {
205                status: ws_resp.status(),
206                reason: "Unknown reason".to_string(),
207            }),
208        };
209    }
210    Ok(())
211}
212
213async fn heartbeat(
214    mut sender: SplitSink<WebSocketStream<MaybeTlsStream<TcpStream>>, tungstenite::Message>,
215) {
216    let mut heartbeat_interval = tokio::time::interval(Duration::from_secs(10));
217    let retry_interval = Duration::from_secs(1);
218
219    loop {
220        heartbeat_interval.tick().await;
221        tracing::trace!("Sending PING");
222
223        let mut count = 3;
224        let mut retry_interval = tokio::time::interval(retry_interval);
225
226        while count > 0 {
227            retry_interval.tick().await;
228            let _ = sender.send(tungstenite::Message::Ping(vec![].into())).await;
229            count -= 1;
230        }
231    }
232}