re_sdk 0.31.1

Rerun logging SDK
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
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
//! View types for blueprint configuration.

use std::collections::HashMap;
use uuid::Uuid;

use re_log_types::EntityPath;
use re_sdk_types::blueprint::archetypes::{
    ActiveVisualizers, MapBackground, ViewBlueprint, ViewContents, VisualizerInstruction,
};
use re_sdk_types::blueprint::components::{QueryExpression, ViewClass};
use re_sdk_types::components::{Name, Visible};
use re_sdk_types::datatypes::Bool;
use re_sdk_types::{AsComponents, SerializedComponentBatch, Visualizer};

/// A view in the blueprint.
#[derive(Debug)]
pub struct View {
    pub(crate) id: Uuid,
    pub(crate) class_identifier: String,
    pub(crate) name: Option<String>,
    pub(crate) origin: EntityPath,
    pub(crate) contents: Vec<String>,
    pub(crate) visible: Option<bool>,
    pub(crate) properties: HashMap<String, Vec<SerializedComponentBatch>>,
    pub(crate) defaults: Vec<Vec<SerializedComponentBatch>>,
    pub(crate) overrides: HashMap<EntityPath, Vec<Visualizer>>,
}

impl Default for View {
    fn default() -> Self {
        Self {
            id: Uuid::new_v4(),
            class_identifier: String::new(),
            name: None,
            origin: "/".into(),
            contents: vec!["$origin/**".into()],
            visible: None,
            properties: HashMap::new(),
            defaults: Vec::new(),
            overrides: HashMap::new(),
        }
    }
}

impl View {
    /// Get the blueprint path for this view.
    pub fn blueprint_path(&self) -> EntityPath {
        format!("view/{}", self.id).into()
    }

    /// Add a property archetype that applies to the view itself.
    pub(crate) fn add_property(&mut self, name: &str, archetype: &dyn AsComponents) {
        self.properties
            .insert(name.to_owned(), archetype.as_serialized_batches());
    }

    /// Add a default archetype that applies to all entities in the view.
    pub(crate) fn add_defaults(&mut self, archetype: &dyn AsComponents) {
        self.defaults.push(archetype.as_serialized_batches());
    }

    /// Add visualizer overrides for a specific entity.
    pub(crate) fn add_overrides(
        &mut self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl IntoIterator<Item = impl Into<Visualizer>>,
    ) {
        self.overrides
            .entry(entity_path.into())
            .or_default()
            .extend(visualizers.into_iter().map(Into::into));
    }

    /// Log this view to the blueprint stream.
    pub(crate) fn log_to_stream(
        &self,
        stream: &crate::RecordingStream,
    ) -> crate::RecordingStreamResult<()> {
        let view_contents = ViewContents::new(
            self.contents
                .iter()
                .map(|q| QueryExpression(q.clone().into())),
        );

        stream.log(
            format!("{}/ViewContents", self.blueprint_path()),
            &view_contents,
        )?;

        let mut arch = ViewBlueprint::new(ViewClass(self.class_identifier.clone().into()));

        if let Some(ref name) = self.name {
            arch = arch.with_display_name(Name(name.clone().into()));
        }

        arch = arch.with_space_origin(self.origin.to_string());

        if let Some(visible) = self.visible {
            arch = arch.with_visible(Visible(Bool(visible)));
        }

        stream.log(self.blueprint_path(), &arch)?;

        // Log view-specific properties/settings
        for (prop_name, prop_batches) in &self.properties {
            stream.log_serialized_batches(
                format!("{}/{}", self.blueprint_path(), prop_name),
                false,
                prop_batches.iter().cloned(),
            )?;
        }

        // Log defaults
        for default_batches in &self.defaults {
            stream.log_serialized_batches(
                format!("{}/defaults", self.blueprint_path()),
                false,
                default_batches.iter().cloned(),
            )?;
        }

        // Log overrides
        for (entity_path, visualizers) in &self.overrides {
            let base_visualizer_path =
                ViewContents::blueprint_base_visualizer_path_for_entity(self.id, entity_path);

            let mut visualizer_ids = Vec::new();

            for visualizer in visualizers {
                // Log the visualizer instruction (which contains the visualizer type)
                let visualizer_path = base_visualizer_path
                    .join(&EntityPath::from_single_string(visualizer.id.0.to_string()));

                let mut instruction =
                    VisualizerInstruction::new(visualizer.visualizer_type.clone());
                if !visualizer.mappings.is_empty() {
                    instruction = instruction.with_component_map(visualizer.mappings.clone());
                }
                stream.log(visualizer_path.clone(), &instruction)?;

                // Log the overrides if any
                if !visualizer.overrides.is_empty() {
                    stream.log_serialized_batches(
                        visualizer_path,
                        false,
                        visualizer.overrides.iter().cloned(),
                    )?;
                }

                visualizer_ids.push(visualizer.id);
            }

            // Log the active visualizers list
            if !visualizer_ids.is_empty() {
                stream.log(
                    base_visualizer_path,
                    &ActiveVisualizers::new(visualizer_ids),
                )?;
            }
        }

        Ok(())
    }
}

/// Time series view for scalars over time.
pub struct TimeSeriesView(pub(crate) View);

impl TimeSeriesView {
    /// Create a new time series view.
    pub fn new(name: impl Into<String>) -> Self {
        Self(View {
            class_identifier: "TimeSeries".into(),
            name: Some(name.into()),
            ..Default::default()
        })
    }

    /// Set the origin entity path.
    pub fn with_origin(mut self, origin: impl Into<EntityPath>) -> Self {
        self.0.origin = origin.into();
        self
    }

    /// Set the contents query expressions.
    pub fn with_contents(mut self, queries: impl IntoIterator<Item = impl Into<String>>) -> Self {
        self.0.contents = queries.into_iter().map(Into::into).collect();
        self
    }

    /// Set visibility.
    pub fn with_visible(mut self, visible: bool) -> Self {
        self.0.visible = Some(visible);
        self
    }

    /// Add a default archetype that applies to all entities in the view.
    pub fn with_defaults(mut self, archetype: &dyn AsComponents) -> Self {
        self.0.add_defaults(archetype);
        self
    }

    /// Add a visualizer override for a specific entity.
    pub fn with_override(
        self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl Into<Visualizer>,
    ) -> Self {
        self.with_overrides(entity_path, [visualizers])
    }

    /// Add visualizer overrides for a specific entity.
    pub fn with_overrides(
        mut self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl IntoIterator<Item = impl Into<Visualizer>>,
    ) -> Self {
        self.0.add_overrides(entity_path, visualizers);
        self
    }
}

/// Spatial 2D view.
pub struct Spatial2DView(pub(crate) View);

impl Spatial2DView {
    /// Create a new spatial 2D view.
    pub fn new(name: impl Into<String>) -> Self {
        Self(View {
            class_identifier: "2D".into(),
            name: Some(name.into()),
            ..Default::default()
        })
    }

    /// Set the origin entity path.
    pub fn with_origin(mut self, origin: impl Into<EntityPath>) -> Self {
        self.0.origin = origin.into();
        self
    }

    /// Set the contents query expressions.
    pub fn with_contents(mut self, queries: impl IntoIterator<Item = impl Into<String>>) -> Self {
        self.0.contents = queries.into_iter().map(Into::into).collect();
        self
    }

    /// Set visibility.
    pub fn with_visible(mut self, visible: bool) -> Self {
        self.0.visible = Some(visible);
        self
    }

    /// Add a default archetype that applies to all entities in the view.
    pub fn with_defaults(mut self, archetype: &dyn AsComponents) -> Self {
        self.0.add_defaults(archetype);
        self
    }

    /// Add a visualizer override for a specific entity.
    pub fn with_override(
        self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl Into<Visualizer>,
    ) -> Self {
        self.with_overrides(entity_path, [visualizers])
    }

    /// Add visualizer overrides for a specific entity.
    pub fn with_overrides(
        mut self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl IntoIterator<Item = impl Into<Visualizer>>,
    ) -> Self {
        self.0.add_overrides(entity_path, visualizers);
        self
    }
}

/// Spatial 3D view.
pub struct Spatial3DView(pub(crate) View);

impl Spatial3DView {
    /// Create a new spatial 3D view.
    pub fn new(name: impl Into<String>) -> Self {
        Self(View {
            class_identifier: "3D".into(),
            name: Some(name.into()),
            ..Default::default()
        })
    }

    /// Set the origin entity path.
    pub fn with_origin(mut self, origin: impl Into<EntityPath>) -> Self {
        self.0.origin = origin.into();
        self
    }

    /// Set the contents query expressions.
    pub fn with_contents(mut self, queries: impl IntoIterator<Item = impl Into<String>>) -> Self {
        self.0.contents = queries.into_iter().map(Into::into).collect();
        self
    }

    /// Set visibility.
    pub fn with_visible(mut self, visible: bool) -> Self {
        self.0.visible = Some(visible);
        self
    }

    /// Add a default archetype that applies to all entities in the view.
    pub fn with_defaults(mut self, archetype: &dyn AsComponents) -> Self {
        self.0.add_defaults(archetype);
        self
    }

    /// Add a visualizer override for a specific entity.
    pub fn with_override(
        self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl Into<Visualizer>,
    ) -> Self {
        self.with_overrides(entity_path, [visualizers])
    }

    /// Add visualizer overrides for a specific entity.
    pub fn with_overrides(
        mut self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl IntoIterator<Item = impl Into<Visualizer>>,
    ) -> Self {
        self.0.add_overrides(entity_path, visualizers);
        self
    }
}

/// Map view for geospatial data.
pub struct MapView(pub(crate) View);

impl MapView {
    /// Create a new map view.
    pub fn new(name: impl Into<String>) -> Self {
        Self(View {
            class_identifier: "Map".into(),
            name: Some(name.into()),
            ..Default::default()
        })
    }

    /// Set the origin entity path.
    pub fn with_origin(mut self, origin: impl Into<EntityPath>) -> Self {
        self.0.origin = origin.into();
        self
    }

    /// Set the contents query expressions.
    pub fn with_contents(mut self, queries: impl IntoIterator<Item = impl Into<String>>) -> Self {
        self.0.contents = queries.into_iter().map(Into::into).collect();
        self
    }

    /// Set visibility.
    pub fn with_visible(mut self, visible: bool) -> Self {
        self.0.visible = Some(visible);
        self
    }

    /// Add a default archetype that applies to all entities in the view.
    pub fn with_defaults(mut self, archetype: &dyn AsComponents) -> Self {
        self.0.add_defaults(archetype);
        self
    }

    /// Add a visualizer override for a specific entity.
    pub fn with_override(
        self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl Into<Visualizer>,
    ) -> Self {
        self.with_overrides(entity_path, [visualizers])
    }

    /// Add visualizer overrides for a specific entity.
    pub fn with_overrides(
        mut self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl IntoIterator<Item = impl Into<Visualizer>>,
    ) -> Self {
        self.0.add_overrides(entity_path, visualizers);
        self
    }

    /// Set the map provider (background tiles).
    pub fn with_map_provider(
        mut self,
        provider: re_sdk_types::blueprint::components::MapProvider,
    ) -> Self {
        self.0
            .add_property("MapBackground", &MapBackground::new(provider));
        self
    }
}

/// Text document view for markdown rendering.
pub struct TextDocumentView(pub(crate) View);

impl TextDocumentView {
    /// Create a new text document view.
    pub fn new(name: impl Into<String>) -> Self {
        Self(View {
            class_identifier: "TextDocument".into(),
            name: Some(name.into()),
            ..Default::default()
        })
    }

    /// Set the origin entity path.
    pub fn with_origin(mut self, origin: impl Into<EntityPath>) -> Self {
        self.0.origin = origin.into();
        self
    }

    /// Set the contents query expressions.
    pub fn with_contents(mut self, queries: impl IntoIterator<Item = impl Into<String>>) -> Self {
        self.0.contents = queries.into_iter().map(Into::into).collect();
        self
    }

    /// Set visibility.
    pub fn with_visible(mut self, visible: bool) -> Self {
        self.0.visible = Some(visible);
        self
    }

    /// Add a default archetype that applies to all entities in the view.
    pub fn with_defaults(mut self, archetype: &dyn AsComponents) -> Self {
        self.0.add_defaults(archetype);
        self
    }

    /// Add a visualizer override for a specific entity.
    pub fn with_override(
        self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl Into<Visualizer>,
    ) -> Self {
        self.with_overrides(entity_path, [visualizers])
    }

    /// Add visualizer overrides for a specific entity.
    pub fn with_overrides(
        mut self,
        entity_path: impl Into<EntityPath>,
        visualizers: impl IntoIterator<Item = impl Into<Visualizer>>,
    ) -> Self {
        self.0.add_overrides(entity_path, visualizers);
        self
    }
}