1use std::{collections::HashSet, str::FromStr, time::Duration};
2
3use clap::Parser;
4use tracing::{debug, error, info, warn};
5use tracing_appender::rolling;
6use tycho_common::dto::{Chain, ExtractorIdentity, PaginationParams, ProtocolSystemsRequestBody};
7
8use crate::{
9 deltas::DeltasClient,
10 feed::{
11 component_tracker::ComponentFilter, synchronizer::ProtocolStateSynchronizer,
12 BlockSynchronizer,
13 },
14 rpc::RPCClient,
15 HttpRPCClient, WsDeltasClient,
16};
17
18#[derive(Parser, Debug, Clone, PartialEq)]
23#[clap(version = env!("CARGO_PKG_VERSION"))]
24struct CliArgs {
25 #[clap(long, default_value = "localhost:4242", env = "TYCHO_URL")]
27 tycho_url: String,
28
29 #[clap(short = 'k', long, env = "TYCHO_AUTH_TOKEN")]
32 auth_key: Option<String>,
33
34 #[clap(long)]
36 no_tls: bool,
37
38 #[clap(short = 'c', long, default_value = "ethereum")]
40 pub chain: String,
41
42 #[clap(short = 'e', long, number_of_values = 1)]
45 exchange: Vec<String>,
46
47 #[clap(long, default_value = "10")]
50 min_tvl: u32,
51
52 #[clap(long)]
55 remove_tvl_threshold: Option<u32>,
56
57 #[clap(long)]
60 add_tvl_threshold: Option<u32>,
61
62 #[clap(long, default_value = "600")]
69 block_time: u64,
70
71 #[clap(long, default_value = "1")]
74 timeout: u64,
75
76 #[clap(long, default_value = "logs")]
78 log_folder: String,
79
80 #[clap(long)]
82 example: bool,
83
84 #[clap(long)]
87 no_state: bool,
88
89 #[clap(short='n', long, default_value=None)]
93 max_messages: Option<usize>,
94
95 #[clap(long, default_value = "10")]
98 max_missed_blocks: u64,
99
100 #[clap(long)]
104 include_tvl: bool,
105
106 #[clap(long)]
109 verbose: bool,
110}
111
112impl CliArgs {
113 fn validate(&self) -> Result<(), String> {
114 match (self.remove_tvl_threshold, self.add_tvl_threshold) {
116 (Some(remove), Some(add)) if remove >= add => {
117 return Err("remove_tvl_threshold must be less than add_tvl_threshold".to_string());
118 }
119 (Some(_), None) | (None, Some(_)) => {
120 return Err(
121 "Both remove_tvl_threshold and add_tvl_threshold must be set.".to_string()
122 );
123 }
124 _ => {}
125 }
126
127 Ok(())
128 }
129}
130
131pub async fn run_cli() -> Result<(), String> {
132 let args: CliArgs = CliArgs::parse();
134 args.validate()?;
135
136 let log_level = if args.verbose { "debug" } else { "info" };
138 let (non_blocking, _guard) =
139 tracing_appender::non_blocking(rolling::never(&args.log_folder, "dev_logs.log"));
140 let subscriber = tracing_subscriber::fmt()
141 .with_env_filter(
142 tracing_subscriber::EnvFilter::try_from_default_env()
143 .unwrap_or_else(|_| tracing_subscriber::EnvFilter::new(log_level)),
144 )
145 .with_writer(non_blocking)
146 .finish();
147
148 tracing::subscriber::set_global_default(subscriber)
149 .map_err(|e| format!("Failed to set up logging subscriber: {e}"))?;
150
151 let exchanges: Vec<(String, Option<String>)> = if args.example {
155 vec![
161 (
162 "uniswap_v3".to_string(),
163 Some("0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640".to_string()),
164 ),
165 (
166 "uniswap_v2".to_string(),
167 Some("0xa478c2975ab1ea89e8196811f51a7b7ade33eb11".to_string()),
168 ),
169 ]
170 } else {
171 args.exchange
172 .iter()
173 .filter_map(|e| {
174 if e.contains('-') {
175 let parts: Vec<&str> = e.split('-').collect();
176 if parts.len() == 2 {
177 Some((parts[0].to_string(), Some(parts[1].to_string())))
178 } else {
179 warn!("Ignoring invalid exchange format: {}", e);
180 None
181 }
182 } else {
183 Some((e.to_string(), None))
184 }
185 })
186 .collect()
187 };
188
189 info!("Running with exchanges: {:?}", exchanges);
190
191 run(exchanges, args).await?;
192 Ok(())
193}
194
195async fn run(exchanges: Vec<(String, Option<String>)>, args: CliArgs) -> Result<(), String> {
196 info!("Running with version: {}", option_env!("CARGO_PKG_VERSION").unwrap_or("unknown"));
197 let (tycho_ws_url, tycho_rpc_url) = if args.no_tls || args.auth_key.is_none() {
199 info!("Using non-secure connection: ws:// and http://");
200 let tycho_ws_url = format!("ws://{url}", url = &args.tycho_url);
201 let tycho_rpc_url = format!("http://{url}", url = &args.tycho_url);
202 (tycho_ws_url, tycho_rpc_url)
203 } else {
204 info!("Using secure connection: wss:// and https://");
205 let tycho_ws_url = format!("wss://{url}", url = &args.tycho_url);
206 let tycho_rpc_url = format!("https://{url}", url = &args.tycho_url);
207 (tycho_ws_url, tycho_rpc_url)
208 };
209
210 let ws_client = WsDeltasClient::new(&tycho_ws_url, args.auth_key.as_deref())
211 .map_err(|e| format!("Failed to create WebSocket client: {e}"))?;
212 let rpc_client = HttpRPCClient::new(&tycho_rpc_url, args.auth_key.as_deref())
213 .map_err(|e| format!("Failed to create RPC client: {e}"))?;
214 let chain = Chain::from_str(&args.chain)
215 .map_err(|_| format!("Unknown chain: {chain}", chain = &args.chain))?;
216 let ws_jh = ws_client
217 .connect()
218 .await
219 .map_err(|e| format!("WebSocket client connection error: {e}"))?;
220
221 let mut block_sync = BlockSynchronizer::new(
222 Duration::from_secs(args.block_time),
223 Duration::from_secs(args.timeout),
224 args.max_missed_blocks,
225 );
226
227 if let Some(mm) = &args.max_messages {
228 block_sync.max_messages(*mm);
229 }
230
231 let available_protocols_set = rpc_client
232 .get_protocol_systems(&ProtocolSystemsRequestBody {
233 chain,
234 pagination: PaginationParams { page: 0, page_size: 100 },
235 })
236 .await
237 .map_err(|e| format!("Failed to get protocol systems: {e}"))?
238 .protocol_systems
239 .into_iter()
240 .collect::<HashSet<_>>();
241
242 let requested_protocol_set = exchanges
243 .iter()
244 .map(|(name, _)| name.clone())
245 .collect::<HashSet<_>>();
246
247 let not_requested_protocols = available_protocols_set
248 .difference(&requested_protocol_set)
249 .cloned()
250 .collect::<Vec<_>>();
251
252 if !not_requested_protocols.is_empty() {
253 info!("Other available protocols: {}", not_requested_protocols.join(", "));
254 }
255
256 for (name, address) in exchanges {
257 debug!("Registering exchange: {}", name);
258 let id = ExtractorIdentity { chain, name: name.clone() };
259 let filter = if let Some(address) = address {
260 ComponentFilter::Ids(vec![address])
261 } else if let (Some(remove_tvl), Some(add_tvl)) =
262 (args.remove_tvl_threshold, args.add_tvl_threshold)
263 {
264 ComponentFilter::with_tvl_range(remove_tvl as f64, add_tvl as f64)
265 } else {
266 ComponentFilter::with_tvl_range(args.min_tvl as f64, args.min_tvl as f64)
267 };
268 let sync = ProtocolStateSynchronizer::new(
269 id.clone(),
270 true,
271 filter,
272 32,
273 Duration::from_secs(args.block_time / 2),
274 !args.no_state,
275 args.include_tvl,
276 rpc_client.clone(),
277 ws_client.clone(),
278 args.block_time + args.timeout,
279 );
280 block_sync = block_sync.register_synchronizer(id, sync);
281 }
282
283 let (sync_jh, mut rx) = block_sync
284 .run()
285 .await
286 .map_err(|e| format!("Failed to start block synchronizer: {e}"))?;
287
288 let msg_printer = tokio::spawn(async move {
289 while let Some(result) = rx.recv().await {
290 let msg =
291 result.map_err(|e| format!("Message printer received synchronizer error: {e}"))?;
292
293 if let Ok(msg_json) = serde_json::to_string(&msg) {
294 println!("{msg_json}");
295 } else {
296 error!("Failed to serialize FeedMessage");
298 };
299 }
300
301 Ok::<(), String>(())
302 });
303
304 let (failed_task, shutdown_reason) = tokio::select! {
306 res = ws_jh => (
307 "WebSocket",
308 extract_nested_error(res)
309 ),
310 res = sync_jh => (
311 "BlockSynchronizer",
312 extract_nested_error::<_, _, String>(Ok(res))
313 ),
314 res = msg_printer => (
315 "MessagePrinter",
316 extract_nested_error(res)
317 )
318 };
319
320 debug!("RX closed");
321 Err(format!(
322 "{failed_task} task terminated: {}",
323 shutdown_reason.unwrap_or("unknown reason".to_string())
324 ))
325}
326
327#[inline]
328fn extract_nested_error<T, E1: ToString, E2: ToString>(
329 res: Result<Result<T, E1>, E2>,
330) -> Option<String> {
331 res.map_err(|e| e.to_string())
332 .and_then(|r| r.map_err(|e| e.to_string()))
333 .err()
334}
335
336#[cfg(test)]
337mod cli_tests {
338 use clap::Parser;
339
340 use super::CliArgs;
341
342 #[tokio::test]
343 async fn test_cli_args() {
344 let args = CliArgs::parse_from([
345 "tycho-client",
346 "--tycho-url",
347 "localhost:5000",
348 "--exchange",
349 "uniswap_v2",
350 "--min-tvl",
351 "3000",
352 "--block-time",
353 "50",
354 "--timeout",
355 "5",
356 "--log-folder",
357 "test_logs",
358 "--example",
359 "--max-messages",
360 "1",
361 ]);
362 let exchanges: Vec<String> = vec!["uniswap_v2".to_string()];
363 assert_eq!(args.tycho_url, "localhost:5000");
364 assert_eq!(args.exchange, exchanges);
365 assert_eq!(args.min_tvl, 3000);
366 assert_eq!(args.block_time, 50);
367 assert_eq!(args.timeout, 5);
368 assert_eq!(args.log_folder, "test_logs");
369 assert_eq!(args.max_messages, Some(1));
370 assert!(args.example);
371 }
372}