#![allow(trivial_numeric_casts)]
#![allow(unused_imports)]
#![allow(unused_parens)]
#![allow(clippy::clone_on_copy)]
#![allow(clippy::cloned_instead_of_copied)]
#![allow(clippy::iter_on_single_items)]
#![allow(clippy::map_flatten)]
#![allow(clippy::match_wildcard_for_single_variants)]
#![allow(clippy::needless_question_mark)]
#![allow(clippy::new_without_default)]
#![allow(clippy::redundant_closure)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::too_many_lines)]
#![allow(clippy::unnecessary_cast)]
use ::re_types_core::external::arrow2;
use ::re_types_core::ComponentName;
use ::re_types_core::SerializationResult;
use ::re_types_core::{ComponentBatch, MaybeOwnedComponentBatch};
use ::re_types_core::{DeserializationError, DeserializationResult};
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct TextLog {
pub text: crate::components::Text,
pub level: Option<crate::components::TextLogLevel>,
pub color: Option<crate::components::Color>,
}
impl ::re_types_core::SizeBytes for TextLog {
#[inline]
fn heap_size_bytes(&self) -> u64 {
self.text.heap_size_bytes() + self.level.heap_size_bytes() + self.color.heap_size_bytes()
}
#[inline]
fn is_pod() -> bool {
<crate::components::Text>::is_pod()
&& <Option<crate::components::TextLogLevel>>::is_pod()
&& <Option<crate::components::Color>>::is_pod()
}
}
static REQUIRED_COMPONENTS: once_cell::sync::Lazy<[ComponentName; 1usize]> =
once_cell::sync::Lazy::new(|| ["rerun.components.Text".into()]);
static RECOMMENDED_COMPONENTS: once_cell::sync::Lazy<[ComponentName; 2usize]> =
once_cell::sync::Lazy::new(|| {
[
"rerun.components.TextLogIndicator".into(),
"rerun.components.TextLogLevel".into(),
]
});
static OPTIONAL_COMPONENTS: once_cell::sync::Lazy<[ComponentName; 1usize]> =
once_cell::sync::Lazy::new(|| ["rerun.components.Color".into()]);
static ALL_COMPONENTS: once_cell::sync::Lazy<[ComponentName; 4usize]> =
once_cell::sync::Lazy::new(|| {
[
"rerun.components.Text".into(),
"rerun.components.TextLogIndicator".into(),
"rerun.components.TextLogLevel".into(),
"rerun.components.Color".into(),
]
});
impl TextLog {
pub const NUM_COMPONENTS: usize = 4usize;
}
pub type TextLogIndicator = ::re_types_core::GenericIndicatorComponent<TextLog>;
impl ::re_types_core::Archetype for TextLog {
type Indicator = TextLogIndicator;
#[inline]
fn name() -> ::re_types_core::ArchetypeName {
"rerun.archetypes.TextLog".into()
}
#[inline]
fn indicator() -> MaybeOwnedComponentBatch<'static> {
static INDICATOR: TextLogIndicator = TextLogIndicator::DEFAULT;
MaybeOwnedComponentBatch::Ref(&INDICATOR)
}
#[inline]
fn required_components() -> ::std::borrow::Cow<'static, [ComponentName]> {
REQUIRED_COMPONENTS.as_slice().into()
}
#[inline]
fn recommended_components() -> ::std::borrow::Cow<'static, [ComponentName]> {
RECOMMENDED_COMPONENTS.as_slice().into()
}
#[inline]
fn optional_components() -> ::std::borrow::Cow<'static, [ComponentName]> {
OPTIONAL_COMPONENTS.as_slice().into()
}
#[inline]
fn all_components() -> ::std::borrow::Cow<'static, [ComponentName]> {
ALL_COMPONENTS.as_slice().into()
}
#[inline]
fn from_arrow_components(
arrow_data: impl IntoIterator<Item = (ComponentName, Box<dyn arrow2::array::Array>)>,
) -> DeserializationResult<Self> {
re_tracing::profile_function!();
use ::re_types_core::{Loggable as _, ResultExt as _};
let arrays_by_name: ::std::collections::HashMap<_, _> = arrow_data
.into_iter()
.map(|(name, array)| (name.full_name(), array))
.collect();
let text = {
let array = arrays_by_name
.get("rerun.components.Text")
.ok_or_else(DeserializationError::missing_data)
.with_context("rerun.archetypes.TextLog#text")?;
<crate::components::Text>::from_arrow_opt(&**array)
.with_context("rerun.archetypes.TextLog#text")?
.into_iter()
.next()
.flatten()
.ok_or_else(DeserializationError::missing_data)
.with_context("rerun.archetypes.TextLog#text")?
};
let level = if let Some(array) = arrays_by_name.get("rerun.components.TextLogLevel") {
<crate::components::TextLogLevel>::from_arrow_opt(&**array)
.with_context("rerun.archetypes.TextLog#level")?
.into_iter()
.next()
.flatten()
} else {
None
};
let color = if let Some(array) = arrays_by_name.get("rerun.components.Color") {
<crate::components::Color>::from_arrow_opt(&**array)
.with_context("rerun.archetypes.TextLog#color")?
.into_iter()
.next()
.flatten()
} else {
None
};
Ok(Self { text, level, color })
}
}
impl ::re_types_core::AsComponents for TextLog {
fn as_component_batches(&self) -> Vec<MaybeOwnedComponentBatch<'_>> {
re_tracing::profile_function!();
use ::re_types_core::Archetype as _;
[
Some(Self::indicator()),
Some((&self.text as &dyn ComponentBatch).into()),
self.level
.as_ref()
.map(|comp| (comp as &dyn ComponentBatch).into()),
self.color
.as_ref()
.map(|comp| (comp as &dyn ComponentBatch).into()),
]
.into_iter()
.flatten()
.collect()
}
}
impl TextLog {
#[inline]
pub fn new(text: impl Into<crate::components::Text>) -> Self {
Self {
text: text.into(),
level: None,
color: None,
}
}
#[inline]
pub fn with_level(mut self, level: impl Into<crate::components::TextLogLevel>) -> Self {
self.level = Some(level.into());
self
}
#[inline]
pub fn with_color(mut self, color: impl Into<crate::components::Color>) -> Self {
self.color = Some(color.into());
self
}
}