Rerun C++ SDK
Loading...
Searching...
No Matches
map_background.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/map_background.fbs".
3
4#pragma once
5
6#include "../../blueprint/components/map_provider.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**: Configuration for the background map of the map view.
21 /// Map provider and style to use.
22 ///
23 /// **Note**: Requires a Mapbox API key in the `RERUN_MAPBOX_ACCESS_TOKEN` environment variable.
24 std::optional<ComponentBatch> provider;
25
26 public:
27 static constexpr const char IndicatorComponentName[] =
28 "rerun.blueprint.components.MapBackgroundIndicator";
29
30 /// Indicator component, used to identify the archetype when converting to a list of components.
32 /// The name of the archetype as used in `ComponentDescriptor`s.
33 static constexpr const char ArchetypeName[] = "rerun.blueprint.archetypes.MapBackground";
34
35 /// `ComponentDescriptor` for the `provider` field.
37 ArchetypeName, "provider",
39 );
40
41 public:
42 MapBackground() = default;
43 MapBackground(MapBackground&& other) = default;
44 MapBackground(const MapBackground& other) = default;
45 MapBackground& operator=(const MapBackground& other) = default;
46 MapBackground& operator=(MapBackground&& other) = default;
47
48 explicit MapBackground(rerun::blueprint::components::MapProvider _provider)
49 : provider(ComponentBatch::from_loggable(std::move(_provider), Descriptor_provider)
50 .value_or_throw()) {}
51
52 /// Update only some specific fields of a `MapBackground`.
54 return MapBackground();
55 }
56
57 /// Clear all the fields of a `MapBackground`.
59
60 /// Map provider and style to use.
61 ///
62 /// **Note**: Requires a Mapbox API key in the `RERUN_MAPBOX_ACCESS_TOKEN` environment variable.
63 MapBackground with_provider(const rerun::blueprint::components::MapProvider& _provider) && {
64 provider =
65 ComponentBatch::from_loggable(_provider, Descriptor_provider).value_or_throw();
66 return std::move(*this);
67 }
68
69 /// Partitions the component data into multiple sub-batches.
70 ///
71 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
72 /// instead, via `ComponentBatch::partitioned`.
73 ///
74 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
75 ///
76 /// The specified `lengths` must sum to the total length of the component batch.
78
79 /// Partitions the component data into unit-length sub-batches.
80 ///
81 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
82 /// where `n` is automatically guessed.
84 };
85
86} // namespace rerun::blueprint::archetypes
87
88namespace rerun {
89 /// \private
90 template <typename T>
91 struct AsComponents;
92
93 /// \private
94 template <>
95 struct AsComponents<blueprint::archetypes::MapBackground> {
96 /// Serialize all set component batches.
97 static Result<Collection<ComponentBatch>> as_batches(
99 );
100 };
101} // 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: Configuration for the background map of the map view.
Definition map_background.hpp:20
std::optional< ComponentBatch > provider
Map provider and style to use.
Definition map_background.hpp:24
static MapBackground clear_fields()
Clear all the fields of a MapBackground.
static constexpr auto Descriptor_provider
ComponentDescriptor for the provider field.
Definition map_background.hpp:36
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition map_background.hpp:33
MapBackground with_provider(const rerun::blueprint::components::MapProvider &_provider) &&
Map provider and style to use.
Definition map_background.hpp:63
static MapBackground update_fields()
Update only some specific fields of a MapBackground.
Definition map_background.hpp:53
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