6#include "../collection.hpp"
7#include "../component_batch.hpp"
8#include "../component_column.hpp"
9#include "../components/color.hpp"
10#include "../components/text.hpp"
11#include "../components/text_log_level.hpp"
12#include "../indicator_component.hpp"
13#include "../result.hpp"
83 std::optional<ComponentBatch>
text;
88 std::optional<ComponentBatch>
level;
91 std::optional<ComponentBatch>
color;
94 static constexpr const char IndicatorComponentName[] =
"rerun.components.TextLogIndicator";
99 static constexpr const char ArchetypeName[] =
"rerun.archetypes.TextLog";
137 return std::move(*
this);
146 return std::move(*
this);
154 return std::move(*
this);
163 return std::move(*
this);
169 return std::move(*
this);
178 return std::move(*
this);
202 template <
typename T>
207 struct AsComponents<archetypes::
TextLog> {
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 built-in archetypes. See Types in the Rerun manual.
Definition rerun.hpp:76
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: A log entry in a text log, comprised of a text body and its log level.
Definition text_log.hpp:81
std::optional< ComponentBatch > color
Optional color to use for the log line in the Rerun Viewer.
Definition text_log.hpp:91
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition text_log.hpp:99
static constexpr auto Descriptor_text
ComponentDescriptor for the text field.
Definition text_log.hpp:102
TextLog with_many_level(const Collection< rerun::components::TextLogLevel > &_level) &&
This method makes it possible to pack multiple level in a single component batch.
Definition text_log.hpp:161
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
TextLog with_color(const rerun::components::Color &_color) &&
Optional color to use for the log line in the Rerun Viewer.
Definition text_log.hpp:167
static constexpr auto Descriptor_color
ComponentDescriptor for the color field.
Definition text_log.hpp:111
static TextLog update_fields()
Update only some specific fields of a TextLog.
Definition text_log.hpp:127
TextLog with_text(const rerun::components::Text &_text) &&
The body of the message.
Definition text_log.hpp:135
static TextLog clear_fields()
Clear all the fields of a TextLog.
TextLog with_level(const rerun::components::TextLogLevel &_level) &&
The verbosity level of the message.
Definition text_log.hpp:152
std::optional< ComponentBatch > level
The verbosity level of the message.
Definition text_log.hpp:88
static constexpr auto Descriptor_level
ComponentDescriptor for the level field.
Definition text_log.hpp:106
std::optional< ComponentBatch > text
The body of the message.
Definition text_log.hpp:83
TextLog with_many_color(const Collection< rerun::components::Color > &_color) &&
This method makes it possible to pack multiple color in a single component batch.
Definition text_log.hpp:176
TextLog with_many_text(const Collection< rerun::components::Text > &_text) &&
This method makes it possible to pack multiple text in a single component batch.
Definition text_log.hpp:144
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
Component: An RGBA color with unmultiplied/separate alpha, in sRGB gamma space with linear alpha.
Definition color.hpp:18
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:32
Component: The severity level of a text log message.
Definition text_log_level.hpp:26
Component: A string of text, e.g. for labels and text documents.
Definition text.hpp:17