Rerun C++ SDK
Loading...
Searching...
No Matches
blob.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/blob.fbs".
3
4#pragma once
5
6#include "../collection.hpp"
7#include "../component_descriptor.hpp"
8#include "../datatypes/blob.hpp"
9#include "../result.hpp"
10
11#include <cstdint>
12#include <memory>
13#include <utility>
14
15namespace rerun::components {
16 /// **Component**: A binary blob of data.
17 struct Blob {
19
20 public:
21 Blob() = default;
22
23 Blob(rerun::datatypes::Blob data_) : data(std::move(data_)) {}
24
25 Blob& operator=(rerun::datatypes::Blob data_) {
26 data = std::move(data_);
27 return *this;
28 }
29
30 Blob(rerun::Collection<uint8_t> data_) : data(std::move(data_)) {}
31
32 Blob& operator=(rerun::Collection<uint8_t> data_) {
33 data = std::move(data_);
34 return *this;
35 }
36
37 /// Cast to the underlying Blob datatype
38 operator rerun::datatypes::Blob() const {
39 return data;
40 }
41 };
42} // namespace rerun::components
43
44namespace rerun {
45 static_assert(sizeof(rerun::datatypes::Blob) == sizeof(components::Blob));
46
47 /// \private
48 template <>
49 struct Loggable<components::Blob> {
50 static constexpr ComponentDescriptor Descriptor = "rerun.components.Blob";
51
52 /// Returns the arrow data type this type corresponds to.
53 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
54 return Loggable<rerun::datatypes::Blob>::arrow_datatype();
55 }
56
57 /// Serializes an array of `rerun::components::Blob` into an arrow array.
58 static Result<std::shared_ptr<arrow::Array>> to_arrow(
59 const components::Blob* instances, size_t num_instances
60 ) {
61 if (num_instances == 0) {
62 return Loggable<rerun::datatypes::Blob>::to_arrow(nullptr, 0);
63 } else if (instances == nullptr) {
64 return rerun::Error(
65 ErrorCode::UnexpectedNullArgument,
66 "Passed array instances is null when num_elements> 0."
67 );
68 } else {
69 return Loggable<rerun::datatypes::Blob>::to_arrow(&instances->data, num_instances);
70 }
71 }
72 };
73} // namespace rerun
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:96
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 binary blob of data.
Definition blob.hpp:17
Datatype: A binary blob of data.
Definition blob.hpp:22