Rerun C++ SDK
Loading...
Searching...
No Matches
previews_config.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/build/re_type_definitions/rerun/blueprint/archetypes/previews_config.def.rs".
3
4#pragma once
5
6#include "../../blueprint/components/timeline_name.hpp"
7#include "../../collection.hpp"
8#include "../../component_batch.hpp"
9#include "../../component_column.hpp"
10#include "../../result.hpp"
11
12#include <cstdint>
13#include <optional>
14#include <utility>
15#include <vector>
16
17namespace rerun::blueprint::archetypes {
18 /// **Archetype**: Shared configuration for every preview cell in a table blueprint.
19 ///
20 /// This archetype is stored at the entity `/table` alongside `archetypes::TableBlueprint`.
21 ///
22 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
23 ///
25 /// The timeline used by every preview cell.
26 ///
27 /// If left empty a timeline is automatically picked, preferring custom over built-in.
28 std::optional<ComponentBatch> timeline;
29
30 public:
31 /// The name of the archetype as used in `ComponentDescriptor`s.
32 static constexpr const char ArchetypeName[] = "rerun.blueprint.archetypes.PreviewsConfig";
33
34 /// `ComponentDescriptor` for the `timeline` field.
36 ArchetypeName, "PreviewsConfig:timeline",
38 );
39
40 public:
41 PreviewsConfig() = default;
42 PreviewsConfig(PreviewsConfig&& other) = default;
43 PreviewsConfig(const PreviewsConfig& other) = default;
44 PreviewsConfig& operator=(const PreviewsConfig& other) = default;
45 PreviewsConfig& operator=(PreviewsConfig&& other) = default;
46
47 /// Update only some specific fields of a `PreviewsConfig`.
49 return PreviewsConfig();
50 }
51
52 /// Clear all the fields of a `PreviewsConfig`.
54
55 /// The timeline used by every preview cell.
56 ///
57 /// If left empty a timeline is automatically picked, preferring custom over built-in.
59 ) && {
60 timeline =
61 ComponentBatch::from_loggable(_timeline, Descriptor_timeline).value_or_throw();
62 return std::move(*this);
63 }
64
65 /// Partitions the component data into multiple sub-batches.
66 ///
67 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
68 /// instead, via `ComponentBatch::partitioned`.
69 ///
70 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
71 ///
72 /// The specified `lengths` must sum to the total length of the component batch.
74
75 /// Partitions the component data into unit-length sub-batches.
76 ///
77 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
78 /// where `n` is automatically guessed.
80 };
81
82} // namespace rerun::blueprint::archetypes
83
84namespace rerun {
85 /// \private
86 template <typename T>
87 struct AsComponents;
88
89 /// \private
90 template <>
91 struct AsComponents<blueprint::archetypes::PreviewsConfig> {
92 /// Serialize all set component batches.
93 static Result<Collection<ComponentBatch>> as_batches(
95 );
96 };
97} // 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:26
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &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:16
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: Shared configuration for every preview cell in a table blueprint.
Definition previews_config.hpp:24
static PreviewsConfig update_fields()
Update only some specific fields of a PreviewsConfig.
Definition previews_config.hpp:48
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
static constexpr auto Descriptor_timeline
ComponentDescriptor for the timeline field.
Definition previews_config.hpp:35
static PreviewsConfig clear_fields()
Clear all the fields of a PreviewsConfig.
std::optional< ComponentBatch > timeline
The timeline used by every preview cell.
Definition previews_config.hpp:28
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition previews_config.hpp:32
PreviewsConfig with_timeline(const rerun::blueprint::components::TimelineName &_timeline) &&
The timeline used by every preview cell.
Definition previews_config.hpp:58
Component: A timeline identified by its name.
Definition timeline_name.hpp:22