A column element encapsulates the translation between basic C++ types and their column representation.
Usually the on-disk element should map bitwise to the in-memory element. Sometimes that's not the case though, for instance on big endian platforms or for bools.
There is a template specialization for every valid pair of C++ type and column representation. These specialized child classes are responsible for overriding Pack()
/ Unpack()
for packing / unpacking elements as appropriate.
Definition at line 54 of file RColumnElementBase.hxx.
Classes | |
struct | RIdentifier |
Every concrete RColumnElement type is identified by its on-disk type (column type) and the in-memory C++ type, given by a type index. More... | |
Public Member Functions | |
RColumnElementBase (const RColumnElementBase &other)=default | |
RColumnElementBase (RColumnElementBase &&other)=default | |
virtual | ~RColumnElementBase ()=default |
std::size_t | GetBitsOnStorage () const |
virtual RIdentifier | GetIdentifier () const =0 |
std::size_t | GetPackedSize (std::size_t nElements=1U) const |
std::size_t | GetSize () const |
std::optional< std::pair< double, double > > | GetValueRange () const |
virtual bool | IsMappable () const |
Derived, typed classes tell whether the on-storage layout is bitwise identical to the memory layout. | |
RColumnElementBase & | operator= (const RColumnElementBase &other)=delete |
RColumnElementBase & | operator= (RColumnElementBase &&other)=default |
virtual void | Pack (void *destination, const void *source, std::size_t count) const |
If the on-storage layout and the in-memory layout differ, packing creates an on-disk page from an in-memory page. | |
virtual void | SetBitsOnStorage (std::size_t bitsOnStorage) |
virtual void | SetValueRange (double, double) |
virtual void | Unpack (void *destination, const void *source, std::size_t count) const |
If the on-storage layout and the in-memory layout differ, unpacking creates a memory page from an on-storage page. | |
Static Public Member Functions | |
template<> | |
std::unique_ptr< RColumnElementBase > | Generate (EColumnType onDiskType) |
template<> | |
std::unique_ptr< ROOT::Experimental::Internal::RColumnElementBase > | Generate (EColumnType onDiskType) |
template<typename CppT = void> | |
static std::unique_ptr< RColumnElementBase > | Generate (EColumnType type) |
If CppT == void, use the default C++ type for the given column type. | |
static const char * | GetColumnTypeName (EColumnType type) |
static std::pair< std::uint16_t, std::uint16_t > | GetValidBitRange (EColumnType type) |
Most types have a fixed on-disk bit width. | |
Protected Member Functions | |
RColumnElementBase (std::size_t size, std::size_t bitsOnStorage=0) | |
Protected Attributes | |
std::size_t | fBitsOnStorage |
std::size_t | fSize |
Size of the C++ value that corresponds to the on-disk element. | |
std::optional< std::pair< double, double > > | fValueRange = std::nullopt |
This is only meaningful for column elements that support it (e.g. Real32Quant) | |
#include <ROOT/RColumnElementBase.hxx>
|
inlineexplicitprotected |
Definition at line 62 of file RColumnElementBase.hxx.
|
default |
|
default |
|
virtualdefault |
|
static |
|
static |
Definition at line 70 of file RColumnElement.cxx.
|
static |
If CppT == void, use the default C++ type for the given column type.
Definition at line 144 of file RColumnElementBase.hxx.
|
inline |
Definition at line 128 of file RColumnElementBase.hxx.
|
static |
Definition at line 70 of file RColumnElement.cxx.
|
pure virtual |
|
inline |
Definition at line 130 of file RColumnElementBase.hxx.
|
inline |
Definition at line 127 of file RColumnElementBase.hxx.
|
static |
Most types have a fixed on-disk bit width.
Some low-precision column types have a range of possible bit widths. Return the minimum and maximum allowed bit size per type.
Definition at line 29 of file RColumnElement.cxx.
|
inline |
Definition at line 129 of file RColumnElementBase.hxx.
|
inlinevirtual |
Derived, typed classes tell whether the on-storage layout is bitwise identical to the memory layout.
Definition at line 98 of file RColumnElementBase.hxx.
|
delete |
|
default |
|
inlinevirtual |
If the on-storage layout and the in-memory layout differ, packing creates an on-disk page from an in-memory page.
Definition at line 116 of file RColumnElementBase.hxx.
|
inlinevirtual |
Definition at line 104 of file RColumnElementBase.hxx.
|
inlinevirtual |
Definition at line 110 of file RColumnElementBase.hxx.
|
inlinevirtual |
If the on-storage layout and the in-memory layout differ, unpacking creates a memory page from an on-storage page.
Definition at line 122 of file RColumnElementBase.hxx.
|
protected |
Definition at line 58 of file RColumnElementBase.hxx.
|
protected |
Size of the C++ value that corresponds to the on-disk element.
Definition at line 57 of file RColumnElementBase.hxx.
|
protected |
This is only meaningful for column elements that support it (e.g. Real32Quant)
Definition at line 60 of file RColumnElementBase.hxx.