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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
//! Mecha10 Messaging Layer
//!
//! This crate provides a Redis Streams-based pub/sub messaging system for
//! inter-node communication in the Mecha10 framework.
//!
//! # Features
//!
//! - Type-safe message serialization/deserialization
//! - Redis Streams backend for reliable message delivery
//! - Topic-based routing
//! - Consumer groups for load balancing
//! - Message acknowledgment and retry
//! - Automatic reconnection
//!
//! # Example
//!
//! ```rust
//! use mecha10_messaging::{MessageBus, Message};
//! use serde::{Deserialize, Serialize};
//!
//! #[derive(Debug, Serialize, Deserialize)]
//! struct LaserScan {
//! ranges: Vec<f32>,
//! timestamp: u64,
//! }
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let mut bus = MessageBus::connect("redis://localhost:6379", "robot-1").await?;
//!
//! // Subscribe to topic
//! let mut rx = bus.subscribe::<LaserScan>("/scan", "processing").await?;
//!
//! // Publish message
//! let scan = LaserScan { ranges: vec![1.0, 2.0, 3.0], timestamp: 12345 };
//! bus.publish("/scan", &scan).await?;
//!
//! // Receive message
//! if let Some(msg) = rx.recv().await {
//! println!("Received scan: {:?}", msg.payload);
//! msg.ack().await?;
//! }
//! # Ok(())
//! # }
//! ```
use redis::aio::MultiplexedConnection;
use redis::{AsyncCommands, Client, RedisError};
use serde::{de::DeserializeOwned, Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::Arc;
use std::time::Duration;
use thiserror::Error;
use tokio::sync::{mpsc, RwLock};
/// Messaging errors
#[derive(Debug, Error)]
pub enum MessagingError {
#[error("Redis error: {0}")]
Redis(#[from] RedisError),
#[error("Serialization error: {0}")]
Serialization(#[from] serde_json::Error),
#[error("Connection error: {0}")]
Connection(String),
#[error("Subscription error: {0}")]
Subscription(String),
#[error("Channel closed")]
ChannelClosed,
}
/// Result type for messaging operations
pub type Result<T> = std::result::Result<T, MessagingError>;
/// Configuration for connection retry logic
#[derive(Debug, Clone)]
pub struct RetryConfig {
/// Maximum number of connection attempts
pub max_attempts: usize,
/// Initial delay between retries
pub initial_delay: Duration,
/// Maximum delay between retries
pub max_delay: Duration,
/// Multiplier for exponential backoff
pub multiplier: f64,
}
impl Default for RetryConfig {
fn default() -> Self {
Self {
max_attempts: 5,
initial_delay: Duration::from_millis(100),
max_delay: Duration::from_secs(10),
multiplier: 2.0,
}
}
}
/// A message envelope containing metadata and payload
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Message<T> {
/// Message ID (Redis Stream ID)
pub id: String,
/// Topic the message was published to
pub topic: String,
/// Publisher node ID
pub publisher: String,
/// Timestamp (milliseconds since epoch)
pub timestamp: u64,
/// Message payload
pub payload: T,
/// Internal: Redis client for acknowledgment
#[serde(skip)]
ack_client: Option<Client>,
/// Internal: consumer group for acknowledgment
#[serde(skip)]
consumer_group: Option<String>,
}
impl<T> Message<T> {
/// Acknowledge the message (mark as processed)
pub async fn ack(&self) -> Result<()> {
if let (Some(client), Some(group)) = (&self.ack_client, &self.consumer_group) {
// Create connection only when ACK is needed
let mut conn = client
.get_multiplexed_async_connection()
.await
.map_err(MessagingError::Redis)?;
let _: () = conn
.xack(&self.topic, group, &[&self.id])
.await
.map_err(MessagingError::Redis)?;
}
Ok(())
}
/// Negative acknowledgment (mark for retry)
pub async fn nack(&self) -> Result<()> {
// Redis Streams will automatically retry pending messages
// We just don't ACK it, and it will be redelivered
Ok(())
}
}
/// Subscriber handle for receiving messages
pub struct Subscriber<T> {
rx: mpsc::UnboundedReceiver<Message<T>>,
topic: String,
}
impl<T> Subscriber<T> {
/// Receive the next message
pub async fn recv(&mut self) -> Option<Message<T>> {
self.rx.recv().await
}
/// Get the topic this subscriber is listening to
pub fn topic(&self) -> &str {
&self.topic
}
}
/// Message bus for pub/sub communication
pub struct MessageBus {
client: Client,
connection: Arc<RwLock<MultiplexedConnection>>,
node_id: String,
namespace: String,
subscriptions: Arc<RwLock<HashMap<String, tokio::task::JoinHandle<()>>>>,
}
impl MessageBus {
/// Connect to Redis and create a new message bus
///
/// Uses exponential backoff retry logic for resilient connection establishment.
///
/// # Arguments
///
/// * `redis_url` - Redis connection URL (e.g., "redis://localhost:6379")
/// * `node_id` - Unique identifier for this node
///
/// # Example
///
/// ```rust
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let bus = MessageBus::connect("redis://localhost:6379", "camera-node").await?;
/// # Ok(())
/// # }
/// ```
pub async fn connect(redis_url: &str, node_id: &str) -> Result<Self> {
Self::connect_with_retry(redis_url, node_id, RetryConfig::default()).await
}
/// Connect to Redis with custom retry configuration
///
/// # Arguments
///
/// * `redis_url` - Redis connection URL
/// * `node_id` - Unique identifier for this node
/// * `retry_config` - Retry configuration for exponential backoff
///
/// # Example
///
/// ```rust
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let retry_config = RetryConfig {
/// max_attempts: 10,
/// initial_delay: Duration::from_millis(200),
/// max_delay: Duration::from_secs(30),
/// multiplier: 2.0,
/// };
/// let bus = MessageBus::connect_with_retry(
/// "redis://localhost:6379",
/// "camera-node",
/// retry_config
/// ).await?;
/// # Ok(())
/// # }
/// ```
pub async fn connect_with_retry(redis_url: &str, node_id: &str, retry_config: RetryConfig) -> Result<Self> {
let client = Client::open(redis_url).map_err(MessagingError::Redis)?;
let mut attempt = 0;
let mut delay = retry_config.initial_delay;
loop {
attempt += 1;
match client.get_multiplexed_async_connection().await {
Ok(connection) => {
if attempt > 1 {
tracing::info!(
node_id = node_id,
attempts = attempt,
"Successfully connected to Redis after retries"
);
}
return Ok(Self {
client,
connection: Arc::new(RwLock::new(connection)),
node_id: node_id.to_string(),
namespace: "mecha10".to_string(),
subscriptions: Arc::new(RwLock::new(HashMap::new())),
});
}
Err(e) => {
if attempt >= retry_config.max_attempts {
tracing::error!(
node_id = node_id,
attempts = attempt,
error = %e,
"Failed to connect to Redis after maximum retry attempts"
);
return Err(MessagingError::Connection(format!(
"Failed to connect to Redis after {} attempts: {}",
attempt, e
)));
}
tracing::warn!(
node_id = node_id,
attempt = attempt,
max_attempts = retry_config.max_attempts,
delay_ms = delay.as_millis(),
error = %e,
"Redis connection failed, retrying"
);
tokio::time::sleep(delay).await;
// Calculate next delay with exponential backoff
delay = std::cmp::min(
Duration::from_secs_f64(delay.as_secs_f64() * retry_config.multiplier),
retry_config.max_delay,
);
}
}
}
}
/// Set the namespace for topic isolation
///
/// Namespaces allow multiple robots/fleets to use the same Redis instance
/// without topic collisions.
pub fn set_namespace(&mut self, namespace: &str) {
self.namespace = namespace.to_string();
}
/// Publish a message to a topic
///
/// # Arguments
///
/// * `topic` - Topic name (e.g., "/scan", "/odom")
/// * `payload` - Message payload (must be serializable)
///
/// # Example
///
/// ```rust
/// # use serde::{Serialize, Deserialize};
/// # #[derive(Serialize, Deserialize)]
/// # struct Point { x: f32, y: f32 }
/// # async fn example(bus: &mut MessageBus) -> Result<(), Box<dyn std::error::Error>> {
/// bus.publish("/position", &Point { x: 1.0, y: 2.0 }).await?;
/// # Ok(())
/// # }
/// ```
pub async fn publish<T: Serialize>(&mut self, topic: &str, payload: &T) -> Result<()> {
let full_topic = format!("{}:{}", self.namespace, topic);
let envelope = serde_json::json!({
"publisher": self.node_id,
"timestamp": std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.unwrap()
.as_millis() as u64,
"payload": payload,
});
let data = serde_json::to_string(&envelope)?;
let mut conn = self.connection.write().await;
// Use XADD with MAXLEN to keep approximately the last N messages in the stream
// The ~ makes it approximate/efficient (Redis can trim at any point)
// This prevents Redis from evicting empty streams and ensures stream persistence
//
// For camera/sensor streams that need low latency, calculate buffer based on target latency
// Target: 200ms buffer to balance latency vs frame loss
//
// Buffer calculation based on camera FPS (configurable via MECHA10_CAMERA_FPS env var):
// 15 FPS → 3 frames (200ms)
// 20 FPS → 4 frames (200ms)
// 30 FPS → 6 frames (200ms)
// 60 FPS → 12 frames (200ms)
let maxlen = if topic.contains("/camera/") || topic.contains("/video/") || topic.contains("/image/") {
// Read camera FPS from environment (default: 30)
let fps = std::env::var("MECHA10_CAMERA_FPS")
.ok()
.and_then(|s| s.parse::<f32>().ok())
.unwrap_or(30.0);
// Calculate buffer size for ~200ms latency
let target_latency_ms = 200.0;
let buffer_frames = ((fps * target_latency_ms) / 1000.0).ceil() as usize;
buffer_frames.max(2) // Minimum 2 frames to prevent underflow
} else {
100 // Default: keep last 100 messages for other topics
};
let _: () = conn
.xadd_maxlen(
&full_topic,
redis::streams::StreamMaxlen::Approx(maxlen),
"*",
&[("data", data)],
)
.await
.map_err(MessagingError::Redis)?;
Ok(())
}
/// Subscribe to a topic with a consumer group
///
/// Consumer groups allow multiple nodes to process messages in parallel,
/// with each message delivered to only one consumer in the group.
///
/// # Arguments
///
/// * `topic` - Topic name (e.g., "/scan", "/odom")
/// * `consumer_group` - Consumer group name (e.g., "processing", "logging")
///
/// # Example
///
/// ```rust
/// # use serde::{Serialize, Deserialize};
/// # #[derive(Serialize, Deserialize)]
/// # struct LaserScan { ranges: Vec<f32> }
/// # async fn example(bus: &mut MessageBus) -> Result<(), Box<dyn std::error::Error>> {
/// let mut rx = bus.subscribe::<LaserScan>("/scan", "slam").await?;
/// while let Some(msg) = rx.recv().await {
/// println!("Received: {:?}", msg.payload);
/// msg.ack().await?;
/// }
/// # Ok(())
/// # }
/// ```
pub async fn subscribe<T: DeserializeOwned + Send + 'static>(
&mut self,
topic: &str,
consumer_group: &str,
) -> Result<Subscriber<T>> {
let full_topic = format!("{}:{}", self.namespace, topic);
let consumer_id = format!("{}:{}", self.node_id, uuid::Uuid::new_v4());
// Create consumer group with retry logic (exponential backoff)
let max_retries = 5;
let mut retry_count = 0;
let mut group_created = false;
while retry_count < max_retries {
let mut conn = self.connection.write().await;
let result: std::result::Result<(), RedisError> =
conn.xgroup_create_mkstream(&full_topic, consumer_group, "$").await;
drop(conn);
match result {
Ok(_) => {
tracing::info!(
"✅ Created consumer group '{}' for topic '{}'",
consumer_group,
full_topic
);
group_created = true;
break;
}
Err(e) => {
let err_msg = e.to_string();
// Group already exists is OK
if err_msg.contains("BUSYGROUP") {
tracing::debug!(
"Consumer group '{}' already exists for topic '{}'",
consumer_group,
full_topic
);
group_created = true;
break;
}
retry_count += 1;
if retry_count < max_retries {
let delay = std::time::Duration::from_millis(100 * 2_u64.pow(retry_count - 1));
tracing::warn!(
"⚠️ Failed to create consumer group '{}' for topic '{}' (attempt {}/{}): {:?}. Retrying in {:?}...",
consumer_group, full_topic, retry_count, max_retries, e, delay
);
tokio::time::sleep(delay).await;
} else {
tracing::error!(
"❌ Failed to create consumer group '{}' for topic '{}' after {} attempts: {:?}",
consumer_group,
full_topic,
max_retries,
e
);
return Err(MessagingError::Subscription(format!(
"Failed to create consumer group after {} retries: {}",
max_retries, e
)));
}
}
}
}
if !group_created {
return Err(MessagingError::Subscription(format!(
"Failed to verify consumer group creation for topic '{}'",
full_topic
)));
}
// Create channel for messages
let (tx, rx) = mpsc::unbounded_channel();
// Spawn background task to read from stream
let client = self.client.clone();
let full_topic_clone = full_topic.clone();
let consumer_group_clone = consumer_group.to_string();
let consumer_id_clone = consumer_id.clone();
let task = tokio::spawn(async move {
tracing::info!(
"📡 Background subscription task started for topic '{}' group '{}'",
full_topic_clone,
consumer_group_clone
);
loop {
match client.get_multiplexed_async_connection().await {
Ok(mut conn) => {
// Read messages from stream
let result: std::result::Result<redis::streams::StreamReadReply, RedisError> = conn
.xread_options(
&[&full_topic_clone],
&[">"],
&redis::streams::StreamReadOptions::default()
.group(&consumer_group_clone, &consumer_id_clone)
.count(10)
.block(1000),
)
.await;
match result {
Ok(reply) => {
tracing::debug!(
"📨 Received {} keys from stream '{}'",
reply.keys.len(),
full_topic_clone
);
for stream_key in reply.keys {
for stream_id in stream_key.ids {
// Parse message
match stream_id.map.get("data") {
Some(redis::Value::BulkString(bytes)) => {
match std::str::from_utf8(bytes) {
Ok(json_str) => {
match serde_json::from_str::<serde_json::Value>(json_str) {
Ok(envelope) => {
match serde_json::from_value::<T>(
envelope["payload"].clone(),
) {
Ok(payload) => {
let msg = Message {
id: stream_id.id.clone(),
topic: full_topic_clone.clone(),
publisher: envelope["publisher"]
.as_str()
.unwrap_or("")
.to_string(),
timestamp: envelope["timestamp"]
.as_u64()
.unwrap_or(0),
payload,
ack_client: Some(client.clone()),
consumer_group: Some(
consumer_group_clone.clone(),
),
};
if tx.send(msg).is_err() {
tracing::warn!("Channel closed, subscriber dropped for topic '{}'", full_topic_clone);
return;
// Subscriber dropped
}
}
Err(e) => {
tracing::warn!(
"Failed to deserialize payload for topic '{}' msg '{}': {:?}",
full_topic_clone, stream_id.id, e
);
}
}
}
Err(e) => {
tracing::warn!(
"Failed to parse JSON envelope for topic '{}' msg '{}': {:?}",
full_topic_clone, stream_id.id, e
);
}
}
}
Err(e) => {
tracing::warn!(
"Failed to decode UTF-8 for topic '{}' msg '{}': {:?}",
full_topic_clone,
stream_id.id,
e
);
}
}
}
Some(other) => {
tracing::warn!(
"Unexpected Redis value type for topic '{}' msg '{}': {:?}",
full_topic_clone,
stream_id.id,
other
);
}
None => {
tracing::warn!(
"Missing 'data' field for topic '{}' msg '{}'",
full_topic_clone,
stream_id.id
);
}
}
}
}
}
Err(e) => {
let err_msg = e.to_string();
tracing::warn!(
"❌ XREAD failed for topic '{}' group '{}': {:?}",
full_topic_clone,
consumer_group_clone,
e
);
// If consumer group doesn't exist, try to recreate it
if err_msg.contains("NOGROUP") {
tracing::warn!(
"🔄 Consumer group '{}' missing, attempting to recreate...",
consumer_group_clone
);
let result: std::result::Result<(), RedisError> = conn
.xgroup_create_mkstream(&full_topic_clone, &consumer_group_clone, "$")
.await;
match result {
Ok(_) => {
tracing::info!(
"✅ Recreated consumer group '{}' for topic '{}'",
consumer_group_clone,
full_topic_clone
);
}
Err(create_err) => {
tracing::error!(
"❌ Failed to recreate consumer group '{}': {:?}",
consumer_group_clone,
create_err
);
}
}
}
tokio::time::sleep(tokio::time::Duration::from_secs(1)).await;
}
}
}
Err(e) => {
tracing::warn!(
"❌ Failed to get Redis connection for topic '{}': {:?}",
full_topic_clone,
e
);
tokio::time::sleep(tokio::time::Duration::from_secs(1)).await;
}
}
}
});
// Store task handle
let mut subs = self.subscriptions.write().await;
subs.insert(full_topic, task);
Ok(Subscriber {
rx,
topic: topic.to_string(),
})
}
/// Subscribe to multiple topics matching a wildcard pattern
///
/// Enables aggregated subscriptions across multiple topics using wildcard patterns.
/// Useful for collecting data from multiple robots (e.g., `*/camera/rgb` subscribes
/// to camera feeds from all robots).
///
/// # Arguments
///
/// * `pattern` - Wildcard pattern with `*` as placeholder (e.g., "*/camera/rgb", "robot-*/scan")
/// * `consumer_group` - Consumer group name for load balancing
///
/// # Pattern Syntax
///
/// - `*` matches any segment in the topic path
/// - `*/camera/rgb` matches "robot-1/camera/rgb", "robot-2/camera/rgb", etc.
/// - `robot-*/scan` matches "robot-1/scan", "robot-alpha/scan", etc.
///
/// # Example
///
/// ```rust,no_run
/// # use serde::{Serialize, Deserialize};
/// # #[derive(Serialize, Deserialize)]
/// # struct Frame { data: Vec<u8> }
/// # async fn example(bus: &mut MessageBus) -> Result<(), Box<dyn std::error::Error>> {
/// // Subscribe to camera feeds from ALL robots
/// let mut rx = bus.subscribe_pattern::<Frame>("*/camera/rgb", "vision-processing").await?;
///
/// while let Some(msg) = rx.recv().await {
/// println!("Received frame from robot: {}", msg.topic);
/// // Process frame from any robot
/// msg.ack().await?;
/// }
/// # Ok(())
/// # }
/// ```
///
/// # Implementation
///
/// This method:
/// 1. Converts wildcard pattern to Redis KEYS pattern
/// 2. Discovers all matching topics using `discover_topics()`
/// 3. Subscribes to each discovered topic with the same consumer group
/// 4. Multiplexes messages from all topics into a single receiver
///
/// # Note
///
/// This performs initial topic discovery using Redis KEYS command. For dynamic
/// topic discovery (new topics appearing after subscription), consider polling
/// `discover_topics()` periodically and creating new subscriptions.
pub async fn subscribe_pattern<T: DeserializeOwned + Send + 'static>(
&mut self,
pattern: &str,
consumer_group: &str,
) -> Result<Subscriber<T>> {
// Convert wildcard pattern to Redis KEYS pattern
// Example: "*/camera/rgb" -> "mecha10:*/camera/rgb"
let full_pattern = format!("{}:{}", self.namespace, pattern);
// Discover all topics matching the pattern
let topics = self.discover_topics(&full_pattern).await?;
if topics.is_empty() {
tracing::warn!(
pattern = pattern,
"No topics found matching pattern, subscriber will not receive messages until topics are created"
);
}
// Create a single channel for all matching topics
let (tx, rx) = mpsc::unbounded_channel();
// Subscribe to each discovered topic
for topic in topics {
let full_topic = format!("{}:{}", self.namespace, topic);
let consumer_id = format!("{}:{}", self.node_id, uuid::Uuid::new_v4());
// Create consumer group if it doesn't exist
let mut conn = self.connection.write().await;
let _: std::result::Result<(), RedisError> =
conn.xgroup_create_mkstream(&full_topic, consumer_group, "$").await;
drop(conn);
// Spawn background task to read from this stream
let client = self.client.clone();
let full_topic_clone = full_topic.clone();
let consumer_group_clone = consumer_group.to_string();
let consumer_id_clone = consumer_id.clone();
let tx_clone = tx.clone();
let topic_clone = topic.clone();
let task = tokio::spawn(async move {
loop {
match client.get_multiplexed_async_connection().await {
Ok(mut conn) => {
// Read messages from stream
let result: std::result::Result<redis::streams::StreamReadReply, RedisError> = conn
.xread_options(
&[&full_topic_clone],
&[">"],
&redis::streams::StreamReadOptions::default()
.group(&consumer_group_clone, &consumer_id_clone)
.count(10)
.block(1000),
)
.await;
match result {
Ok(reply) => {
for stream_key in reply.keys {
for stream_id in stream_key.ids {
// Parse message
if let Some(redis::Value::BulkString(bytes)) = stream_id.map.get("data") {
if let Ok(json_str) = std::str::from_utf8(bytes) {
if let Ok(envelope) =
serde_json::from_str::<serde_json::Value>(json_str)
{
if let Ok(payload) =
serde_json::from_value::<T>(envelope["payload"].clone())
{
let msg = Message {
id: stream_id.id.clone(),
topic: topic_clone.clone(),
publisher: envelope["publisher"]
.as_str()
.unwrap_or("")
.to_string(),
timestamp: envelope["timestamp"].as_u64().unwrap_or(0),
payload,
ack_client: Some(client.clone()),
consumer_group: Some(consumer_group_clone.clone()),
};
if tx_clone.send(msg).is_err() {
return; // Subscriber dropped
}
}
}
}
}
}
}
}
Err(_) => {
tokio::time::sleep(tokio::time::Duration::from_secs(1)).await;
}
}
}
Err(_) => {
tokio::time::sleep(tokio::time::Duration::from_secs(1)).await;
}
}
}
});
// Store task handle
let mut subs = self.subscriptions.write().await;
subs.insert(format!("pattern:{}:{}", pattern, full_topic), task);
}
Ok(Subscriber {
rx,
topic: pattern.to_string(),
})
}
/// Discover topics matching a Redis KEYS pattern
///
/// Uses Redis KEYS command to find all streams matching the given pattern.
/// This is useful for aggregated topic subscriptions.
///
/// # Arguments
///
/// * `pattern` - Redis KEYS pattern (e.g., "mecha10:topic:/sensor/camera/*")
///
/// # Returns
///
/// A vector of topic paths (without the namespace prefix)
///
/// # Example
///
/// ```rust,no_run
/// # async fn example(bus: &mut MessageBus) -> Result<(), Box<dyn std::error::Error>> {
/// // Discover all camera topics
/// let topics = bus.discover_topics("mecha10:topic:/sensor/camera/*").await?;
/// println!("Found {} camera topics", topics.len());
/// # Ok(())
/// # }
/// ```
///
/// # Note
///
/// This uses Redis KEYS command which can be slow on large datasets.
/// For production use with many topics, consider using SCAN instead.
pub async fn discover_topics(&self, pattern: &str) -> Result<Vec<String>> {
use redis::AsyncCommands;
let mut conn = self.connection.write().await;
// Use KEYS command to find matching topics
let keys: Vec<String> = conn.keys(pattern).await.map_err(MessagingError::Redis)?;
// Strip namespace prefix from each key
let prefix = format!("{}:", self.namespace);
let topics: Vec<String> = keys
.into_iter()
.filter_map(|key| key.strip_prefix(&prefix).map(|s| s.to_string()))
.collect();
Ok(topics)
}
/// Unsubscribe from all topics and close connections
pub async fn close(&mut self) -> Result<()> {
let mut subs = self.subscriptions.write().await;
for (_, task) in subs.drain() {
task.abort();
}
Ok(())
}
}