hiroz 0.1.0

Native Rust ROS 2 implementation using Zenoh
Documentation
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
//! Timestamp-indexed, capacity-bounded message cache.
//!
//! [`ZCache`](crate::cache::ZCache) provides the core functionality of ROS 2's
//! `message_filters::Cache<T>`: retain a sliding window of received messages
//! and query them by time.
//!
//! # Stamp strategies
//!
//! Two indexing strategies are available, selected at build time:
//!
//! - **[`ZenohStamp`](crate::cache::ZenohStamp)** (default) — indexes by the
//!   Zenoh transport timestamp (`uhlc::Timestamp` → `SystemTime`). Zero-config;
//!   works for any message type as long as timestamping is enabled in the Zenoh
//!   config (already enabled in the hiroz default config).
//! - **[`ExtractorStamp`](crate::cache::ExtractorStamp)** — indexes by a
//!   user-supplied closure that extracts a `SystemTime` from each deserialized
//!   message. Required for `header.stamp` / sensor capture time alignment.
//!
//! # Example
//!
//! ```rust,ignore
//! use hiroz::prelude::*;
//! use hiroz_msgs::sensor_msgs::Imu;
//! use std::time::{Duration, SystemTime};
//!
//! let ctx = ZContextBuilder::default().build()?;
//! let node = ctx.create_node("cache_demo").build()?;
//!
//! // Zero-config: indexed by Zenoh transport timestamp
//! let cache = node.create_cache::<Imu>("/imu/data", 200).build()?;
//!
//! let now = SystemTime::now();
//! let window = cache.get_interval(now - Duration::from_millis(100), now);
//!
//! // Application timestamp: indexed by header.stamp
//! let cache = node
//!     .create_cache::<Imu>("/imu/data", 200)
//!     .with_stamp(|msg: &Imu| {
//!         let sec = msg.header.stamp.sec as u64;
//!         let nsec = msg.header.stamp.nanosec;
//!         SystemTime::UNIX_EPOCH + Duration::new(sec, nsec)
//!     })
//!     .build()?;
//! ```

use std::collections::BTreeMap;
use std::marker::PhantomData;
use std::sync::Arc;
use std::time::SystemTime;

use parking_lot::RwLock;
use tracing::{debug, warn};
use zenoh::Result;
use zenoh::liveliness::LivelinessToken;

use crate::Builder;
use crate::msg::{SerdeCdrSerdes, ZDeserializer, ZMessage};
use crate::pubsub::ZSubBuilder;

// ---------------------------------------------------------------------------
// Stamp strategy markers
// ---------------------------------------------------------------------------

/// Index by the Zenoh transport timestamp (`uhlc::Timestamp` → `SystemTime`).
///
/// This is the default stamp strategy. It works for any message type without
/// any configuration. If the incoming [`zenoh::sample::Sample`] carries no
/// timestamp (timestamping disabled on the peer), the cache falls back to
/// `SystemTime::now()` at receive time and logs a one-time warning.
pub struct ZenohStamp;

/// Index by an application-supplied extractor closure.
///
/// The closure receives a reference to the deserialized message and returns a
/// `SystemTime` representing its logical timestamp (e.g. `header.stamp`).
pub struct ExtractorStamp<T, F: Fn(&T) -> SystemTime>(pub(crate) F, pub(crate) PhantomData<T>);

// ---------------------------------------------------------------------------
// CacheInner — shared mutable state
// ---------------------------------------------------------------------------

/// Internal cache storage — public for benchmarks only.
#[doc(hidden)]
pub struct CacheInner<T> {
    pub entries: BTreeMap<SystemTime, Arc<T>>,
    capacity: usize,
    /// Guards against logging the missing-timestamp warning more than once.
    warned_no_ts: bool,
}

impl<T> CacheInner<T> {
    pub fn new(capacity: usize) -> Self {
        Self {
            entries: BTreeMap::new(),
            capacity,
            warned_no_ts: false,
        }
    }

    pub fn insert(&mut self, stamp: SystemTime, msg: T) {
        self.entries.insert(stamp, Arc::new(msg));
        // Evict the oldest entry when over capacity.
        while self.entries.len() > self.capacity {
            self.entries.pop_first();
        }
    }
}

// ---------------------------------------------------------------------------
// ZCache
// ---------------------------------------------------------------------------

/// A timestamp-indexed, capacity-bounded sliding-window cache of received
/// messages.
///
/// Built via [`ZCacheBuilder`], created through
/// [`ZNode::create_cache`](crate::node::ZNode::create_cache).
///
/// Messages are stored as [`Arc<T>`] so query methods return shared references
/// without deep-copying the message payload.
///
/// Dropping `ZCache` automatically deregisters the underlying Zenoh subscriber.
pub struct ZCache<T: ZMessage> {
    inner: Arc<RwLock<CacheInner<T>>>,
    _sub: zenoh::pubsub::Subscriber<()>,
    _lv_token: LivelinessToken,
}

impl<T: ZMessage> ZCache<T> {
    /// All messages with timestamp in `[t_start, t_end]`, inclusive, ordered
    /// by timestamp ascending.
    ///
    /// Returns `Arc<T>` handles — no deep copy of message payload. If
    /// `t_start > t_end` the result is always empty (no panic).
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// let window = cache.get_interval(
    ///     SystemTime::now() - Duration::from_millis(100),
    ///     SystemTime::now(),
    /// );
    /// ```
    pub fn get_interval(&self, t_start: SystemTime, t_end: SystemTime) -> Vec<Arc<T>> {
        if t_start > t_end {
            return Vec::new();
        }
        let inner = self.inner.read();
        inner
            .entries
            .range(t_start..=t_end)
            .map(|(_, v)| Arc::clone(v))
            .collect()
    }

    /// The most recent message with timestamp ≤ `t`, or `None` if the cache is
    /// empty or all messages are strictly after `t`.
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// let latest = cache.get_before(SystemTime::now());
    /// ```
    pub fn get_before(&self, t: SystemTime) -> Option<Arc<T>> {
        let inner = self.inner.read();
        inner
            .entries
            .range(..=t)
            .next_back()
            .map(|(_, v)| Arc::clone(v))
    }

    /// The earliest message with timestamp ≥ `t`, or `None` if the cache is
    /// empty or all messages are strictly before `t`.
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// let next = cache.get_after(camera_timestamp);
    /// ```
    pub fn get_after(&self, t: SystemTime) -> Option<Arc<T>> {
        let inner = self.inner.read();
        inner.entries.range(t..).next().map(|(_, v)| Arc::clone(v))
    }

    /// The message whose timestamp is nearest to `t` (either side).
    ///
    /// When two messages are equidistant, the one with the earlier (before)
    /// timestamp is returned.
    ///
    /// Returns `None` if the cache is empty.
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// let nearest_imu = cache.get_nearest(camera_stamp);
    /// ```
    pub fn get_nearest(&self, t: SystemTime) -> Option<Arc<T>> {
        let inner = self.inner.read();
        if inner.entries.is_empty() {
            return None;
        }

        let before = inner
            .entries
            .range(..=t)
            .next_back()
            .map(|(k, v)| (*k, Arc::clone(v)));
        let after = inner
            .entries
            .range(t..)
            .next()
            .map(|(k, v)| (*k, Arc::clone(v)));

        match (before, after) {
            (None, Some((_, v))) => Some(v),
            (Some((_, v)), None) => Some(v),
            (Some((kb, vb)), Some((ka, va))) => {
                let dist_before = t.duration_since(kb).unwrap_or_default();
                let dist_after = ka.duration_since(t).unwrap_or_default();
                // On a tie prefer earlier (before) timestamp.
                if dist_after < dist_before {
                    Some(va)
                } else {
                    Some(vb)
                }
            }
            (None, None) => None,
        }
    }

    /// Timestamp of the oldest cached message, or `None` if empty.
    pub fn oldest_stamp(&self) -> Option<SystemTime> {
        self.inner.read().entries.keys().next().copied()
    }

    /// Timestamp of the newest cached message, or `None` if empty.
    pub fn newest_stamp(&self) -> Option<SystemTime> {
        self.inner.read().entries.keys().next_back().copied()
    }

    /// Number of messages currently in the cache.
    pub fn len(&self) -> usize {
        self.inner.read().entries.len()
    }

    /// `true` if the cache holds no messages.
    pub fn is_empty(&self) -> bool {
        self.inner.read().entries.is_empty()
    }

    /// Remove all messages from the cache.
    pub fn clear(&self) {
        self.inner.write().entries.clear();
    }
}

// ---------------------------------------------------------------------------
// ZCacheBuilder
// ---------------------------------------------------------------------------

/// Builder for [`ZCache<T>`].
///
/// Created by [`ZNode::create_cache`](crate::node::ZNode::create_cache).
/// Use [`with_stamp`](ZCacheBuilder::with_stamp) to switch from the default
/// Zenoh transport timestamp to an application-level extractor.
pub struct ZCacheBuilder<T, S = SerdeCdrSerdes<T>, Stamp = ZenohStamp> {
    pub(crate) sub_builder: ZSubBuilder<T, S>,
    capacity: usize,
    stamp: Stamp,
}

impl<T: ZMessage, S> ZCacheBuilder<T, S, ZenohStamp> {
    pub(crate) fn new(sub_builder: ZSubBuilder<T, S>, capacity: usize) -> Self {
        Self {
            sub_builder,
            capacity,
            stamp: ZenohStamp,
        }
    }

    /// Switch to application-level timestamp extraction.
    ///
    /// The extractor receives a reference to the deserialized message and
    /// returns a `SystemTime` representing its logical timestamp (e.g.
    /// `header.stamp`).
    pub fn with_stamp<F>(self, extractor: F) -> ZCacheBuilder<T, S, ExtractorStamp<T, F>>
    where
        F: Fn(&T) -> SystemTime + Send + Sync + 'static,
    {
        ZCacheBuilder {
            sub_builder: self.sub_builder,
            capacity: self.capacity,
            stamp: ExtractorStamp(extractor, PhantomData),
        }
    }

    /// Maximum number of messages to retain. Oldest are evicted when full.
    pub fn with_capacity(mut self, capacity: usize) -> Self {
        self.capacity = capacity;
        self
    }

    /// Apply a QoS profile to the underlying subscriber.
    pub fn with_qos(mut self, qos: crate::qos::QosProfile) -> Self {
        self.sub_builder = self.sub_builder.with_qos(qos);
        self
    }
}

impl<T: ZMessage, S, F> ZCacheBuilder<T, S, ExtractorStamp<T, F>>
where
    F: Fn(&T) -> SystemTime + Send + Sync + 'static,
{
    /// Maximum number of messages to retain. Oldest are evicted when full.
    pub fn with_capacity(mut self, capacity: usize) -> Self {
        self.capacity = capacity;
        self
    }

    /// Apply a QoS profile to the underlying subscriber.
    pub fn with_qos(mut self, qos: crate::qos::QosProfile) -> Self {
        self.sub_builder = self.sub_builder.with_qos(qos);
        self
    }
}

// ---------------------------------------------------------------------------
// Builder impl — ZenohStamp variant
// ---------------------------------------------------------------------------

impl<T, S> Builder for ZCacheBuilder<T, S, ZenohStamp>
where
    T: ZMessage + Send + Sync + 'static,
    S: for<'a> ZDeserializer<Input<'a> = &'a [u8], Output = T> + 'static,
{
    type Output = ZCache<T>;

    fn build(self) -> Result<ZCache<T>> {
        let ZCacheBuilder {
            sub_builder,
            capacity,
            ..
        } = self;
        let inner = Arc::new(RwLock::new(CacheInner::<T>::new(capacity)));
        let inner_cb = inner.clone();

        let (sub, lv_token) =
            sub_builder.build_raw_subscriber(move |sample: zenoh::sample::Sample| {
                let payload = sample.payload().to_bytes();
                match S::deserialize(&payload) {
                    Ok(msg) => {
                        let stamp = match sample.timestamp() {
                            Some(ts) => ts.get_time().to_system_time(),
                            None => {
                                let mut guard = inner_cb.write();
                                if !guard.warned_no_ts {
                                    warn!(
                                        "[CACHE] Incoming sample has no Zenoh timestamp; \
                                         falling back to SystemTime::now(). \
                                         Enable timestamping in the Zenoh config to avoid this."
                                    );
                                    guard.warned_no_ts = true;
                                }
                                drop(guard);
                                SystemTime::now()
                            }
                        };
                        inner_cb.write().insert(stamp, msg);
                    }
                    Err(e) => tracing::error!("[CACHE] Failed to deserialize message: {}", e),
                }
            })?;

        debug!("[CACHE] ZenohStamp cache ready");
        Ok(ZCache {
            inner,
            _sub: sub,
            _lv_token: lv_token,
        })
    }
}

// ---------------------------------------------------------------------------
// Builder impl — ExtractorStamp variant
// ---------------------------------------------------------------------------

impl<T, S, F> Builder for ZCacheBuilder<T, S, ExtractorStamp<T, F>>
where
    T: ZMessage + Send + Sync + 'static,
    S: for<'a> ZDeserializer<Input<'a> = &'a [u8], Output = T> + 'static,
    F: Fn(&T) -> SystemTime + Send + Sync + 'static,
{
    type Output = ZCache<T>;

    fn build(self) -> Result<ZCache<T>> {
        let ZCacheBuilder {
            sub_builder,
            capacity,
            stamp: ExtractorStamp(extractor, _),
        } = self;
        let inner = Arc::new(RwLock::new(CacheInner::<T>::new(capacity)));
        let inner_cb = inner.clone();

        let (sub, lv_token) =
            sub_builder.build_raw_subscriber(move |sample: zenoh::sample::Sample| {
                let payload = sample.payload().to_bytes();
                match S::deserialize(&payload) {
                    Ok(msg) => {
                        let stamp = extractor(&msg);
                        inner_cb.write().insert(stamp, msg);
                    }
                    Err(e) => tracing::error!("[CACHE] Failed to deserialize message: {}", e),
                }
            })?;

        debug!("[CACHE] ExtractorStamp cache ready");
        Ok(ZCache {
            inner,
            _sub: sub,
            _lv_token: lv_token,
        })
    }
}