Logo ROOT  
Reference Guide
ROOT::Experimental::Detail::RFieldBase Class Referenceabstract

Definition at line 74 of file RField.hxx.

Classes

class  RSchemaIterator
 Iterates over the sub tree of fields in depth-first search order. More...
 

Public Member Functions

 RFieldBase (const RFieldBase &)=delete
 
 RFieldBase (RFieldBase &&)=default
 
 RFieldBase (std::string_view name, std::string_view type, ENTupleStructure structure, bool isSimple, std::size_t nRepetitions=0)
 The constructor creates the underlying column objects and connects them to either a sink or a source. More...
 
virtual ~RFieldBase ()
 
virtual void AcceptVisitor (RFieldVisitor &visitor) const
 
void Append (const RFieldValue &value)
 Write the given value into columns. The value object has to be of the same type as the field. More...
 
void Attach (std::unique_ptr< Detail::RFieldBase > child)
 Add a new subfield to the list of nested fields. More...
 
RSchemaIterator begin ()
 
virtual RFieldValue CaptureValue (void *where)=0
 Creates a value from a memory location with an already constructed object. More...
 
virtual RFieldBaseClone (std::string_view newName)=0
 
virtual void CommitCluster ()
 Perform housekeeping tasks for global to cluster-local index translation. More...
 
virtual void DestroyValue (const RFieldValue &value, bool dtorOnly=false)
 Releases the resources acquired during GenerateValue (memory and constructor) This implementation works for simple types but needs to be overwritten for complex ones. More...
 
RSchemaIterator end ()
 
void Flush () const
 Ensure that all received items are written from page buffers to the storage. More...
 
RFieldValue GenerateValue ()
 Generates an object of the field type and allocates new initialized memory according to the type. More...
 
virtual RFieldValue GenerateValue (void *where)=0
 Generates a tree value in a given location of size at least GetValueSize(). More...
 
virtual size_t GetAlignment () const
 For many types, the alignment requirement is equal to the size; otherwise override. More...
 
virtual RNTupleVersion GetFieldVersion () const
 Indicates an evolution of the mapping scheme from C++ type to columns. More...
 
std::string GetName () const
 
NTupleSize_t GetNElements () const
 
std::size_t GetNRepetitions () const
 
const RFieldBaseGetParent () const
 
ENTupleStructure GetStructure () const
 
std::vector< const RFieldBase * > GetSubFields () const
 
std::string GetType () const
 
virtual RNTupleVersion GetTypeVersion () const
 Indicates an evolution of the C++ type itself. More...
 
virtual size_t GetValueSize () const =0
 The number of bytes taken by a value of the appropriate type. More...
 
bool IsSimple () const
 
RFieldBaseoperator= (const RFieldBase &)=delete
 
RFieldBaseoperator= (RFieldBase &&)=default
 
void Read (const RClusterIndex &clusterIndex, RFieldValue *value)
 
void Read (NTupleSize_t globalIndex, RFieldValue *value)
 Populate a single value with data from the tree, which needs to be of the fitting type. More...
 
virtual std::vector< RFieldValueSplitValue (const RFieldValue &value) const
 Creates the list of direct child values given a value for this field. More...
 

Static Public Member Functions

static RFieldBaseCreate (const std::string &fieldName, const std::string &typeName)
 Factory method to resurrect a field from the stored on-disk type information. More...
 

Protected Member Functions

virtual void AppendImpl (const RFieldValue &value)
 Operations on values of complex types, e.g. More...
 
virtual void GenerateColumnsImpl ()=0
 Creates the backing columns corresponsing to the field type and name. More...
 
virtual void ReadGlobalImpl (NTupleSize_t globalIndex, RFieldValue *value)
 
virtual void ReadInClusterImpl (const RClusterIndex &clusterIndex, RFieldValue *value)
 

Protected Attributes

std::vector< std::unique_ptr< RColumn > > fColumns
 The columns are connected either to a sink or to a source (not to both); they are owned by the field. More...
 
RFieldBasefParent
 Sub fields point to their mother field. More...
 
RColumnfPrincipalColumn
 Points into fColumns. More...
 
std::vector< std::unique_ptr< RFieldBase > > fSubFields
 Collections and classes own sub fields. More...
 

Private Attributes

bool fIsSimple
 A field on a trivial type that maps as-is to a single column. More...
 
std::string fName
 The field name relative to its parent field. More...
 
std::size_t fNRepetitions
 For fixed sized arrays, the array length. More...
 
ENTupleStructure fStructure
 The role of this field in the data model structure. More...
 
std::string fType
 The C++ type captured by this field. More...
 

Friends

class ROOT::Experimental::Detail::RFieldFuse
 
class ROOT::Experimental::RFieldCollection
 

#include <ROOT/RField.hxx>

Inheritance diagram for ROOT::Experimental::Detail::RFieldBase:
[legend]

Constructor & Destructor Documentation

◆ RFieldBase() [1/3]

ROOT::Experimental::Detail::RFieldBase::RFieldBase ( std::string_view  name,
std::string_view  type,
ENTupleStructure  structure,
bool  isSimple,
std::size_t  nRepetitions = 0 
)

The constructor creates the underlying column objects and connects them to either a sink or a source.

Definition at line 127 of file RField.cxx.

◆ RFieldBase() [2/3]

ROOT::Experimental::Detail::RFieldBase::RFieldBase ( const RFieldBase )
delete

◆ RFieldBase() [3/3]

ROOT::Experimental::Detail::RFieldBase::RFieldBase ( RFieldBase &&  )
default

◆ ~RFieldBase()

ROOT::Experimental::Detail::RFieldBase::~RFieldBase ( )
virtual

Definition at line 134 of file RField.cxx.

Member Function Documentation

◆ AcceptVisitor()

◆ Append()

void ROOT::Experimental::Detail::RFieldBase::Append ( const RFieldValue value)
inline

Write the given value into columns. The value object has to be of the same type as the field.

Definition at line 177 of file RField.hxx.

◆ AppendImpl()

void ROOT::Experimental::Detail::RFieldBase::AppendImpl ( const RFieldValue value)
protectedvirtual

Operations on values of complex types, e.g.

ones that involve multiple columns or for which no direct column type exists.

Reimplemented in ROOT::Experimental::RFieldClass, ROOT::Experimental::RFieldVector, ROOT::Experimental::RFieldArray, ROOT::Experimental::RField< ROOT::VecOps::RVec< ItemT > >, and ROOT::Experimental::RField< ROOT::VecOps::RVec< bool > >.

Definition at line 193 of file RField.cxx.

◆ Attach()

void ROOT::Experimental::Detail::RFieldBase::Attach ( std::unique_ptr< Detail::RFieldBase child)

Add a new subfield to the list of nested fields.

Definition at line 223 of file RField.cxx.

◆ begin()

ROOT::Experimental::Detail::RFieldBase::RSchemaIterator ROOT::Experimental::Detail::RFieldBase::begin ( )

Definition at line 256 of file RField.cxx.

◆ CaptureValue()

◆ Clone()

◆ CommitCluster()

virtual void ROOT::Experimental::Detail::RFieldBase::CommitCluster ( )
inlinevirtual

Perform housekeeping tasks for global to cluster-local index translation.

Reimplemented in ROOT::Experimental::RFieldVector, ROOT::Experimental::RFieldCollection, ROOT::Experimental::RField< ROOT::VecOps::RVec< ItemT > >, and ROOT::Experimental::RField< ROOT::VecOps::RVec< bool > >.

Definition at line 206 of file RField.hxx.

◆ Create()

ROOT::Experimental::Detail::RFieldBase * ROOT::Experimental::Detail::RFieldBase::Create ( const std::string &  fieldName,
const std::string &  typeName 
)
static

Factory method to resurrect a field from the stored on-disk type information.

Definition at line 139 of file RField.cxx.

◆ DestroyValue()

void ROOT::Experimental::Detail::RFieldBase::DestroyValue ( const RFieldValue value,
bool  dtorOnly = false 
)
virtual

Releases the resources acquired during GenerateValue (memory and constructor) This implementation works for simple types but needs to be overwritten for complex ones.

Reimplemented in ROOT::Experimental::RFieldClass, ROOT::Experimental::RFieldVector, ROOT::Experimental::RFieldArray, ROOT::Experimental::RField< ROOT::VecOps::RVec< ItemT > >, and ROOT::Experimental::RField< ROOT::VecOps::RVec< bool > >.

Definition at line 211 of file RField.cxx.

◆ end()

ROOT::Experimental::Detail::RFieldBase::RSchemaIterator ROOT::Experimental::Detail::RFieldBase::end ( )

Definition at line 263 of file RField.cxx.

◆ Flush()

void ROOT::Experimental::Detail::RFieldBase::Flush ( ) const

Ensure that all received items are written from page buffers to the storage.

Definition at line 242 of file RField.cxx.

◆ GenerateColumnsImpl()

◆ GenerateValue() [1/2]

ROOT::Experimental::Detail::RFieldValue ROOT::Experimental::Detail::RFieldBase::GenerateValue ( )

Generates an object of the field type and allocates new initialized memory according to the type.

Definition at line 204 of file RField.cxx.

◆ GenerateValue() [2/2]

◆ GetAlignment()

virtual size_t ROOT::Experimental::Detail::RFieldBase::GetAlignment ( ) const
inlinevirtual

◆ GetFieldVersion()

virtual RNTupleVersion ROOT::Experimental::Detail::RFieldBase::GetFieldVersion ( ) const
inlinevirtual

Indicates an evolution of the mapping scheme from C++ type to columns.

Definition at line 221 of file RField.hxx.

◆ GetName()

std::string ROOT::Experimental::Detail::RFieldBase::GetName ( ) const
inline

Definition at line 211 of file RField.hxx.

◆ GetNElements()

NTupleSize_t ROOT::Experimental::Detail::RFieldBase::GetNElements ( ) const
inline

Definition at line 215 of file RField.hxx.

◆ GetNRepetitions()

std::size_t ROOT::Experimental::Detail::RFieldBase::GetNRepetitions ( ) const
inline

Definition at line 214 of file RField.hxx.

◆ GetParent()

const RFieldBase * ROOT::Experimental::Detail::RFieldBase::GetParent ( ) const
inline

Definition at line 216 of file RField.hxx.

◆ GetStructure()

ENTupleStructure ROOT::Experimental::Detail::RFieldBase::GetStructure ( ) const
inline

Definition at line 213 of file RField.hxx.

◆ GetSubFields()

std::vector< const ROOT::Experimental::Detail::RFieldBase * > ROOT::Experimental::Detail::RFieldBase::GetSubFields ( ) const

Definition at line 232 of file RField.cxx.

◆ GetType()

std::string ROOT::Experimental::Detail::RFieldBase::GetType ( ) const
inline

Definition at line 212 of file RField.hxx.

◆ GetTypeVersion()

virtual RNTupleVersion ROOT::Experimental::Detail::RFieldBase::GetTypeVersion ( ) const
inlinevirtual

Indicates an evolution of the C++ type itself.

Definition at line 223 of file RField.hxx.

◆ GetValueSize()

◆ IsSimple()

bool ROOT::Experimental::Detail::RFieldBase::IsSimple ( ) const
inline

Definition at line 218 of file RField.hxx.

◆ operator=() [1/2]

RFieldBase & ROOT::Experimental::Detail::RFieldBase::operator= ( const RFieldBase )
delete

◆ operator=() [2/2]

RFieldBase & ROOT::Experimental::Detail::RFieldBase::operator= ( RFieldBase &&  )
default

◆ Read() [1/2]

void ROOT::Experimental::Detail::RFieldBase::Read ( const RClusterIndex clusterIndex,
RFieldValue value 
)
inline

Definition at line 195 of file RField.hxx.

◆ Read() [2/2]

void ROOT::Experimental::Detail::RFieldBase::Read ( NTupleSize_t  globalIndex,
RFieldValue value 
)
inline

Populate a single value with data from the tree, which needs to be of the fitting type.

Reading copies data into the memory wrapped by the ntuple value.

Definition at line 187 of file RField.hxx.

◆ ReadGlobalImpl()

void ROOT::Experimental::Detail::RFieldBase::ReadGlobalImpl ( NTupleSize_t  globalIndex,
RFieldValue value 
)
protectedvirtual

◆ ReadInClusterImpl()

virtual void ROOT::Experimental::Detail::RFieldBase::ReadInClusterImpl ( const RClusterIndex clusterIndex,
RFieldValue value 
)
inlineprotectedvirtual

Reimplemented in ROOT::Experimental::RFieldClass, and ROOT::Experimental::RFieldArray.

Definition at line 109 of file RField.hxx.

◆ SplitValue()

std::vector< ROOT::Experimental::Detail::RFieldValue > ROOT::Experimental::Detail::RFieldBase::SplitValue ( const RFieldValue value) const
virtual

Creates the list of direct child values given a value for this field.

E.g. a single value for the correct variant or all the elements of a collection. The default implementation assumes no sub values and returns an empty vector.

Reimplemented in ROOT::Experimental::RFieldClass, ROOT::Experimental::RFieldVector, and ROOT::Experimental::RFieldArray.

Definition at line 218 of file RField.cxx.

Friends And Related Function Documentation

◆ ROOT::Experimental::Detail::RFieldFuse

Definition at line 75 of file RField.hxx.

◆ ROOT::Experimental::RFieldCollection

Definition at line 76 of file RField.hxx.

Member Data Documentation

◆ fColumns

std::vector<std::unique_ptr<RColumn> > ROOT::Experimental::Detail::RFieldBase::fColumns
protected

The columns are connected either to a sink or to a source (not to both); they are owned by the field.

Definition at line 100 of file RField.hxx.

◆ fIsSimple

bool ROOT::Experimental::Detail::RFieldBase::fIsSimple
private

A field on a trivial type that maps as-is to a single column.

Definition at line 88 of file RField.hxx.

◆ fName

std::string ROOT::Experimental::Detail::RFieldBase::fName
private

The field name relative to its parent field.

Definition at line 80 of file RField.hxx.

◆ fNRepetitions

std::size_t ROOT::Experimental::Detail::RFieldBase::fNRepetitions
private

For fixed sized arrays, the array length.

Definition at line 86 of file RField.hxx.

◆ fParent

RFieldBase* ROOT::Experimental::Detail::RFieldBase::fParent
protected

Sub fields point to their mother field.

Definition at line 94 of file RField.hxx.

◆ fPrincipalColumn

RColumn* ROOT::Experimental::Detail::RFieldBase::fPrincipalColumn
protected

Points into fColumns.

All fields that have columns have a distinct main column. For simple fields (float, int, ...), the principal column corresponds to the field type. For collection fields expect std::array, the main column is the offset field. Class fields have no column of their own.

Definition at line 98 of file RField.hxx.

◆ fStructure

ENTupleStructure ROOT::Experimental::Detail::RFieldBase::fStructure
private

The role of this field in the data model structure.

Definition at line 84 of file RField.hxx.

◆ fSubFields

std::vector<std::unique_ptr<RFieldBase> > ROOT::Experimental::Detail::RFieldBase::fSubFields
protected

Collections and classes own sub fields.

Definition at line 92 of file RField.hxx.

◆ fType

std::string ROOT::Experimental::Detail::RFieldBase::fType
private

The C++ type captured by this field.

Definition at line 82 of file RField.hxx.

Libraries for ROOT::Experimental::Detail::RFieldBase:
[legend]

The documentation for this class was generated from the following files: