Rerun C++ SDK
Loading...
Searching...
No Matches
dataframe_query.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/dataframe_query.fbs".
3
4#pragma once
5
6#include "../../blueprint/components/apply_latest_at.hpp"
7#include "../../blueprint/components/filter_by_range.hpp"
8#include "../../blueprint/components/filter_is_not_null.hpp"
9#include "../../blueprint/components/selected_columns.hpp"
10#include "../../blueprint/components/timeline_name.hpp"
11#include "../../collection.hpp"
12#include "../../component_batch.hpp"
13#include "../../component_column.hpp"
14#include "../../indicator_component.hpp"
15#include "../../result.hpp"
16
17#include <cstdint>
18#include <optional>
19#include <utility>
20#include <vector>
21
22namespace rerun::blueprint::archetypes {
23 /// **Archetype**: The query for the dataframe view.
24 ///
25 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
26 ///
28 /// The timeline for this query.
29 ///
30 /// If unset, the timeline currently active on the time panel is used.
31 std::optional<ComponentBatch> timeline;
32
33 /// If provided, only rows whose timestamp is within this range will be shown.
34 ///
35 /// Note: will be unset as soon as `timeline` is changed.
36 std::optional<ComponentBatch> filter_by_range;
37
38 /// If provided, only show rows which contains a logged event for the specified component.
39 std::optional<ComponentBatch> filter_is_not_null;
40
41 /// Should empty cells be filled with latest-at queries?
42 std::optional<ComponentBatch> apply_latest_at;
43
44 /// Selected columns. If unset, all columns are selected.
45 std::optional<ComponentBatch> select;
46
47 public:
48 static constexpr const char IndicatorComponentName[] =
49 "rerun.blueprint.components.DataframeQueryIndicator";
50
51 /// Indicator component, used to identify the archetype when converting to a list of components.
53 /// The name of the archetype as used in `ComponentDescriptor`s.
54 static constexpr const char ArchetypeName[] = "rerun.blueprint.archetypes.DataframeQuery";
55
56 /// `ComponentDescriptor` for the `timeline` field.
58 ArchetypeName, "timeline",
60 );
61 /// `ComponentDescriptor` for the `filter_by_range` field.
63 ArchetypeName, "filter_by_range",
65 );
66 /// `ComponentDescriptor` for the `filter_is_not_null` field.
68 ArchetypeName, "filter_is_not_null",
70 );
71 /// `ComponentDescriptor` for the `apply_latest_at` field.
73 ArchetypeName, "apply_latest_at",
75 );
76 /// `ComponentDescriptor` for the `select` field.
77 static constexpr auto Descriptor_select = ComponentDescriptor(
78 ArchetypeName, "select",
80 );
81
82 public:
83 DataframeQuery() = default;
84 DataframeQuery(DataframeQuery&& other) = default;
85 DataframeQuery(const DataframeQuery& other) = default;
86 DataframeQuery& operator=(const DataframeQuery& other) = default;
87 DataframeQuery& operator=(DataframeQuery&& other) = default;
88
89 /// Update only some specific fields of a `DataframeQuery`.
91 return DataframeQuery();
92 }
93
94 /// Clear all the fields of a `DataframeQuery`.
96
97 /// The timeline for this query.
98 ///
99 /// If unset, the timeline currently active on the time panel is used.
101 ) && {
102 timeline =
103 ComponentBatch::from_loggable(_timeline, Descriptor_timeline).value_or_throw();
104 return std::move(*this);
105 }
106
107 /// If provided, only rows whose timestamp is within this range will be shown.
108 ///
109 /// Note: will be unset as soon as `timeline` is changed.
111 const rerun::blueprint::components::FilterByRange& _filter_by_range
112 ) && {
115 .value_or_throw();
116 return std::move(*this);
117 }
118
119 /// If provided, only show rows which contains a logged event for the specified component.
121 const rerun::blueprint::components::FilterIsNotNull& _filter_is_not_null
122 ) && {
125 .value_or_throw();
126 return std::move(*this);
127 }
128
129 /// Should empty cells be filled with latest-at queries?
131 const rerun::blueprint::components::ApplyLatestAt& _apply_latest_at
132 ) && {
135 .value_or_throw();
136 return std::move(*this);
137 }
138
139 /// Selected columns. If unset, all columns are selected.
141 ) && {
142 select = ComponentBatch::from_loggable(_select, Descriptor_select).value_or_throw();
143 return std::move(*this);
144 }
145
146 /// Partitions the component data into multiple sub-batches.
147 ///
148 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
149 /// instead, via `ComponentBatch::partitioned`.
150 ///
151 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
152 ///
153 /// The specified `lengths` must sum to the total length of the component batch.
155
156 /// Partitions the component data into unit-length sub-batches.
157 ///
158 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
159 /// where `n` is automatically guessed.
161 };
162
163} // namespace rerun::blueprint::archetypes
164
165namespace rerun {
166 /// \private
167 template <typename T>
168 struct AsComponents;
169
170 /// \private
171 template <>
172 struct AsComponents<blueprint::archetypes::DataframeQuery> {
173 /// Serialize all set component batches.
174 static Result<Collection<ComponentBatch>> as_batches(
176 );
177 };
178} // 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
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: The query for the dataframe view.
Definition dataframe_query.hpp:27
std::optional< ComponentBatch > timeline
The timeline for this query.
Definition dataframe_query.hpp:31
std::optional< ComponentBatch > select
Selected columns. If unset, all columns are selected.
Definition dataframe_query.hpp:45
static DataframeQuery clear_fields()
Clear all the fields of a DataframeQuery.
DataframeQuery with_timeline(const rerun::blueprint::components::TimelineName &_timeline) &&
The timeline for this query.
Definition dataframe_query.hpp:100
static constexpr auto Descriptor_timeline
ComponentDescriptor for the timeline field.
Definition dataframe_query.hpp:57
DataframeQuery with_select(const rerun::blueprint::components::SelectedColumns &_select) &&
Selected columns. If unset, all columns are selected.
Definition dataframe_query.hpp:140
static constexpr auto Descriptor_filter_is_not_null
ComponentDescriptor for the filter_is_not_null field.
Definition dataframe_query.hpp:67
std::optional< ComponentBatch > filter_by_range
If provided, only rows whose timestamp is within this range will be shown.
Definition dataframe_query.hpp:36
DataframeQuery with_filter_by_range(const rerun::blueprint::components::FilterByRange &_filter_by_range) &&
If provided, only rows whose timestamp is within this range will be shown.
Definition dataframe_query.hpp:110
static constexpr auto Descriptor_select
ComponentDescriptor for the select field.
Definition dataframe_query.hpp:77
DataframeQuery with_apply_latest_at(const rerun::blueprint::components::ApplyLatestAt &_apply_latest_at) &&
Should empty cells be filled with latest-at queries?
Definition dataframe_query.hpp:130
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
std::optional< ComponentBatch > apply_latest_at
Should empty cells be filled with latest-at queries?
Definition dataframe_query.hpp:42
static constexpr auto Descriptor_filter_by_range
ComponentDescriptor for the filter_by_range field.
Definition dataframe_query.hpp:62
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
static constexpr auto Descriptor_apply_latest_at
ComponentDescriptor for the apply_latest_at field.
Definition dataframe_query.hpp:72
std::optional< ComponentBatch > filter_is_not_null
If provided, only show rows which contains a logged event for the specified component.
Definition dataframe_query.hpp:39
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition dataframe_query.hpp:54
static DataframeQuery update_fields()
Update only some specific fields of a DataframeQuery.
Definition dataframe_query.hpp:90
DataframeQuery with_filter_is_not_null(const rerun::blueprint::components::FilterIsNotNull &_filter_is_not_null) &&
If provided, only show rows which contains a logged event for the specified component.
Definition dataframe_query.hpp:120
Component: Whether empty cells in a dataframe should be filled with a latest-at query.
Definition apply_latest_at.hpp:18
Component: Configuration for a filter-by-range feature of the dataframe view.
Definition filter_by_range.hpp:18
Component: Configuration for the filter is not null feature of the dataframe view.
Definition filter_is_not_null.hpp:19
Component: Describe a component column to be selected in the dataframe view.
Definition selected_columns.hpp:19
Component: A timeline identified by its name.
Definition timeline_name.hpp:20
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:32