Rerun C++ SDK
Loading...
Searching...
No Matches
visible_time_ranges.hpp
1// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/cpp/mod.rs
2// Based on "crates/store/re_types/definitions/rerun/blueprint/archetypes/visible_time_ranges.fbs".
3
4#pragma once
5
6#include "../../blueprint/components/visible_time_range.hpp"
7#include "../../collection.hpp"
8#include "../../component_batch.hpp"
9#include "../../component_column.hpp"
10#include "../../indicator_component.hpp"
11#include "../../result.hpp"
12
13#include <cstdint>
14#include <optional>
15#include <utility>
16#include <vector>
17
18namespace rerun::blueprint::archetypes {
19 /// **Archetype**: Configures what range of each timeline is shown on a view.
20 ///
21 /// Whenever no visual time range applies, queries are done with "latest-at" semantics.
22 /// This means that the view will, starting from the time cursor position,
23 /// query the latest data available for each component type.
24 ///
25 /// The default visual time range depends on the type of view this property applies to:
26 /// - For time series views, the default is to show the entire timeline.
27 /// - For any other view, the default is to apply latest-at semantics.
28 ///
29 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
30 ///
32 /// The time ranges to show for each timeline unless specified otherwise on a per-entity basis.
33 ///
34 /// If a timeline is specified more than once, the first entry will be used.
35 std::optional<ComponentBatch> ranges;
36
37 public:
38 static constexpr const char IndicatorComponentName[] =
39 "rerun.blueprint.components.VisibleTimeRangesIndicator";
40
41 /// Indicator component, used to identify the archetype when converting to a list of components.
43 /// The name of the archetype as used in `ComponentDescriptor`s.
44 static constexpr const char ArchetypeName[] =
45 "rerun.blueprint.archetypes.VisibleTimeRanges";
46
47 /// `ComponentDescriptor` for the `ranges` field.
48 static constexpr auto Descriptor_ranges = ComponentDescriptor(
49 ArchetypeName, "ranges",
51 );
52
53 public:
54 VisibleTimeRanges() = default;
55 VisibleTimeRanges(VisibleTimeRanges&& other) = default;
56 VisibleTimeRanges(const VisibleTimeRanges& other) = default;
57 VisibleTimeRanges& operator=(const VisibleTimeRanges& other) = default;
58 VisibleTimeRanges& operator=(VisibleTimeRanges&& other) = default;
59
60 explicit VisibleTimeRanges(
62 )
63 : ranges(ComponentBatch::from_loggable(std::move(_ranges), Descriptor_ranges)
64 .value_or_throw()) {}
65
66 /// Update only some specific fields of a `VisibleTimeRanges`.
68 return VisibleTimeRanges();
69 }
70
71 /// Clear all the fields of a `VisibleTimeRanges`.
73
74 /// The time ranges to show for each timeline unless specified otherwise on a per-entity basis.
75 ///
76 /// If a timeline is specified more than once, the first entry will be used.
79 ) && {
80 ranges = ComponentBatch::from_loggable(_ranges, Descriptor_ranges).value_or_throw();
81 return std::move(*this);
82 }
83
84 /// Partitions the component data into multiple sub-batches.
85 ///
86 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
87 /// instead, via `ComponentBatch::partitioned`.
88 ///
89 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
90 ///
91 /// The specified `lengths` must sum to the total length of the component batch.
93
94 /// Partitions the component data into unit-length sub-batches.
95 ///
96 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
97 /// where `n` is automatically guessed.
99 };
100
101} // namespace rerun::blueprint::archetypes
102
103namespace rerun {
104 /// \private
105 template <typename T>
106 struct AsComponents;
107
108 /// \private
109 template <>
110 struct AsComponents<blueprint::archetypes::VisibleTimeRanges> {
111 /// Serialize all set component batches.
112 static Result<Collection<ComponentBatch>> as_batches(
114 );
115 };
116} // namespace rerun
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
A class for representing either a usable value, or an error.
Definition result.hpp:14
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Arrow-encoded data of a single batch of components together with a component descriptor.
Definition component_batch.hpp:28
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &descriptor=rerun::Loggable< T >::Descriptor)
Creates a new component batch from a collection of component instances.
Definition component_batch.hpp:46
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:14
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: Configures what range of each timeline is shown on a view.
Definition visible_time_ranges.hpp:31
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
std::optional< ComponentBatch > ranges
The time ranges to show for each timeline unless specified otherwise on a per-entity basis.
Definition visible_time_ranges.hpp:35
static constexpr auto Descriptor_ranges
ComponentDescriptor for the ranges field.
Definition visible_time_ranges.hpp:48
static VisibleTimeRanges clear_fields()
Clear all the fields of a VisibleTimeRanges.
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition visible_time_ranges.hpp:44
static VisibleTimeRanges update_fields()
Update only some specific fields of a VisibleTimeRanges.
Definition visible_time_ranges.hpp:67
VisibleTimeRanges with_ranges(const Collection< rerun::blueprint::components::VisibleTimeRange > &_ranges) &&
The time ranges to show for each timeline unless specified otherwise on a per-entity basis.
Definition visible_time_ranges.hpp:77
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:32