Rerun C++ SDK
Loading...
Searching...
No Matches
count.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/components/count.fbs".
3
4#pragma once
5
6#include "../datatypes/uint64.hpp"
7#include "../result.hpp"
8
9#include <cstdint>
10#include <memory>
11
12namespace rerun::components {
13 /// **Component**: A generic count value.
14 ///
15 /// Used for counting various entities like messages, schemas, channels, etc.
16 ///
17 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
18 ///
19 struct Count {
21
22 public:
23 Count() = default;
24
25 Count(rerun::datatypes::UInt64 value_) : value(value_) {}
26
27 Count& operator=(rerun::datatypes::UInt64 value_) {
28 value = value_;
29 return *this;
30 }
31
32 Count(uint64_t value_) : value(value_) {}
33
34 Count& operator=(uint64_t value_) {
35 value = value_;
36 return *this;
37 }
38
39 /// Cast to the underlying UInt64 datatype
40 operator rerun::datatypes::UInt64() const {
41 return value;
42 }
43 };
44} // namespace rerun::components
45
46namespace rerun {
47 static_assert(sizeof(rerun::datatypes::UInt64) == sizeof(components::Count));
48
49 /// \private
50 template <>
51 struct Loggable<components::Count> {
52 static constexpr std::string_view ComponentType = "rerun.components.Count";
53
54 /// Returns the arrow data type this type corresponds to.
55 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
56 return Loggable<rerun::datatypes::UInt64>::arrow_datatype();
57 }
58
59 /// Serializes an array of `rerun::components::Count` into an arrow array.
60 static Result<std::shared_ptr<arrow::Array>> to_arrow(
61 const components::Count* instances, size_t num_instances
62 ) {
63 if (num_instances == 0) {
64 return Loggable<rerun::datatypes::UInt64>::to_arrow(nullptr, 0);
65 } else if (instances == nullptr) {
66 return rerun::Error(
67 ErrorCode::UnexpectedNullArgument,
68 "Passed array instances is null when num_elements> 0."
69 );
70 } else {
71 return Loggable<rerun::datatypes::UInt64>::to_arrow(
72 &instances->value,
73 num_instances
74 );
75 }
76 }
77 };
78} // namespace rerun
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:103
All built-in components. See Types in the Rerun manual.
Definition rerun.hpp:79
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Component: A generic count value.
Definition count.hpp:19
Datatype: A 64bit unsigned integer.
Definition uint64.hpp:24