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.
29 /// The time ranges to show for each timeline unless specified otherwise on a per-entity basis.
30 ///
31 /// If a timeline is specified more than once, the first entry will be used.
32 std::optional<ComponentBatch> ranges;
33
34 public:
35 static constexpr const char IndicatorComponentName[] =
36 "rerun.blueprint.components.VisibleTimeRangesIndicator";
37
38 /// Indicator component, used to identify the archetype when converting to a list of components.
40 /// The name of the archetype as used in `ComponentDescriptor`s.
41 static constexpr const char ArchetypeName[] =
42 "rerun.blueprint.archetypes.VisibleTimeRanges";
43
44 /// `ComponentDescriptor` for the `ranges` field.
45 static constexpr auto Descriptor_ranges = ComponentDescriptor(
46 ArchetypeName, "ranges",
48 );
49
50 public:
51 VisibleTimeRanges() = default;
52 VisibleTimeRanges(VisibleTimeRanges&& other) = default;
53 VisibleTimeRanges(const VisibleTimeRanges& other) = default;
54 VisibleTimeRanges& operator=(const VisibleTimeRanges& other) = default;
55 VisibleTimeRanges& operator=(VisibleTimeRanges&& other) = default;
56
57 explicit VisibleTimeRanges(
59 )
60 : ranges(ComponentBatch::from_loggable(std::move(_ranges), Descriptor_ranges)
61 .value_or_throw()) {}
62
63 /// Update only some specific fields of a `VisibleTimeRanges`.
65 return VisibleTimeRanges();
66 }
67
68 /// Clear all the fields of a `VisibleTimeRanges`.
70
71 /// The time ranges to show for each timeline unless specified otherwise on a per-entity basis.
72 ///
73 /// If a timeline is specified more than once, the first entry will be used.
76 ) && {
77 ranges = ComponentBatch::from_loggable(_ranges, Descriptor_ranges).value_or_throw();
78 return std::move(*this);
79 }
80
81 /// Partitions the component data into multiple sub-batches.
82 ///
83 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
84 /// instead, via `ComponentBatch::partitioned`.
85 ///
86 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
87 ///
88 /// The specified `lengths` must sum to the total length of the component batch.
90
91 /// Partitions the component data into unit-length sub-batches.
92 ///
93 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
94 /// where `n` is automatically guessed.
96 };
97
98} // namespace rerun::blueprint::archetypes
99
100namespace rerun {
101 /// \private
102 template <typename T>
103 struct AsComponents;
104
105 /// \private
106 template <>
107 struct AsComponents<blueprint::archetypes::VisibleTimeRanges> {
108 /// Serialize all set component batches.
109 static Result<Collection<ComponentBatch>> as_batches(
111 );
112 };
113} // 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:28
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:32
static constexpr auto Descriptor_ranges
ComponentDescriptor for the ranges field.
Definition visible_time_ranges.hpp:45
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:41
static VisibleTimeRanges update_fields()
Update only some specific fields of a VisibleTimeRanges.
Definition visible_time_ranges.hpp:64
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:74
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