Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RFieldBase.hxx
Go to the documentation of this file.
1/// \file ROOT/RFieldBase.hxx
2/// \author Jakob Blomer <jblomer@cern.ch>
3/// \date 2018-10-09
4
5/*************************************************************************
6 * Copyright (C) 1995-2019, Rene Brun and Fons Rademakers. *
7 * All rights reserved. *
8 * *
9 * For the licensing terms see $ROOTSYS/LICENSE. *
10 * For the list of contributors see $ROOTSYS/README/CREDITS. *
11 *************************************************************************/
12
13#ifndef ROOT_RFieldBase
14#define ROOT_RFieldBase
15
16#include <ROOT/BitUtils.hxx>
17#include <ROOT/RColumn.hxx>
19#include <ROOT/RError.hxx>
20#include <ROOT/RFieldUtils.hxx>
21#include <ROOT/RNTupleRange.hxx>
22#include <ROOT/RNTupleTypes.hxx>
23
24#include <atomic>
25#include <cassert>
26#include <cstddef>
27#include <functional>
28#include <iterator>
29#include <memory>
30#include <new>
31#include <string>
32#include <string_view>
33#include <typeinfo>
34#include <type_traits>
35#include <vector>
36
37namespace ROOT {
38
39class REntry;
40class RFieldBase;
41class RClassField;
42
43namespace Detail {
44class RFieldVisitor;
45class RRawPtrWriteEntry;
46} // namespace Detail
47
48namespace Experimental {
49class RNTupleAttrSetReader;
50}
51
52namespace Internal {
53
54class RPageSink;
55class RPageSource;
56struct RFieldCallbackInjector;
57struct RFieldRepresentationModifier;
58
59// TODO(jblomer): find a better way to not have these methods in the RFieldBase public API
60void CallFlushColumnsOnField(RFieldBase &);
61void CallCommitClusterOnField(RFieldBase &);
65CallFieldBaseCreate(const std::string &fieldName, const std::string &typeName, const ROOT::RCreateFieldOptions &options,
67
68} // namespace Internal
69
70namespace Experimental::Internal {
71struct RNTupleAttrEntry;
72}
73
74// clang-format off
75/**
76\class ROOT::RFieldBase
77\ingroup NTuple
78\brief A field translates read and write calls from/to underlying columns to/from tree values
79
80A field is a serializable C++ type or a container for a collection of subfields. The RFieldBase and its
81type-safe descendants provide the object to column mapper. They map C++ objects to primitive columns. The
82mapping is trivial for simple types such as 'double'. Complex types resolve to multiple primitive columns.
83The field knows based on its type and the field name the type(s) and name(s) of the columns.
84
85Note: the class hierarchy starting at RFieldBase is not meant to be extended by user-provided child classes.
86This is and can only be partially enforced through C++.
87*/
88// clang-format on
90 friend class RFieldZero; // to reset fParent pointer in ReleaseSubfields()
91 friend class ROOT::Detail::RRawPtrWriteEntry; // to call Append()
92 friend class ROOT::Experimental::RNTupleAttrSetReader; // for field->Read() in LoadEntry()
93 friend struct ROOT::Internal::RFieldCallbackInjector; // used for unit tests
94 friend struct ROOT::Internal::RFieldRepresentationModifier; // used for unit tests
100 Internal::CallFieldBaseCreate(const std::string &fieldName, const std::string &typeName,
101 const ROOT::RCreateFieldOptions &options, const ROOT::RNTupleDescriptor *desc,
103
104 using ReadCallback_t = std::function<void(void *)>;
105
106protected:
107 /// A functor to release the memory acquired by CreateValue() (memory and constructor).
108 /// This implementation works for types with a trivial destructor. More complex fields implement a derived deleter.
109 /// The deleter is operational without the field object and thus can be used to destruct/release a value after
110 /// the field has been destructed.
111 class RDeleter {
112 std::size_t fAlignment;
113 void DeleteAligned(void *objPtr) const; // outlined to make Windows happy
114
115 public:
116 explicit RDeleter(std::size_t align) : fAlignment(align) { assert(Internal::IsValidAlignment(align)); }
117 virtual ~RDeleter() = default;
118 virtual void operator()(void *objPtr, bool dtorOnly)
119 {
120 if (dtorOnly)
121 return;
122
123 // Match operator new in RFieldBase::CreateObjectRawPtr()
124 if (fAlignment <= sizeof(std::max_align_t)) {
125 operator delete(objPtr);
126 } else {
128 }
129 }
130 };
131
132 /// A deleter for templated RFieldBase descendents where the value type is known.
133 template <typename T>
134 class RTypedDeleter : public RDeleter {
135 public:
137 void operator()(void *objPtr, bool dtorOnly) final
138 {
139 std::destroy_at(static_cast<T *>(objPtr));
141 }
142 };
143
144 // We cannot directly use RFieldBase::RDeleter as a shared pointer deleter due to splicing. We use this
145 // wrapper class to store a polymorphic pointer to the actual deleter.
147 std::unique_ptr<RFieldBase::RDeleter> fDeleter;
148 void operator()(void *objPtr) { fDeleter->operator()(objPtr, false /* dtorOnly*/); }
149 explicit RSharedPtrDeleter(std::unique_ptr<RFieldBase::RDeleter> deleter) : fDeleter(std::move(deleter)) {}
150 };
151
152public:
153 static constexpr std::uint32_t kInvalidTypeVersion = -1U;
154 enum {
155 /// No constructor needs to be called, i.e. any bit pattern in the allocated memory represents a valid type
156 /// A trivially constructible field has a no-op ConstructValue() implementation
158 /// The type is cleaned up just by freeing its memory. I.e. the destructor performs a no-op.
160 /// A field of a fundamental type that can be directly mapped via RField<T>::Map(), i.e. maps as-is to a single
161 /// column
163 /// The TClass checksum is set and valid
165 /// This field is an instance of RInvalidField and can be safely `static_cast` to it
167 /// This field is a user defined type that was missing dictionaries and was reconstructed from the on-disk
168 /// information
170 /// Can attach new item fields even when already connected
172 /// The field represents a collection in SoA layout
174
175 /// Shorthand for types that are both trivially constructible and destructible
177 };
178
179 using ColumnRepresentation_t = std::vector<ROOT::ENTupleColumnType>;
180
181 /// During its lifetime, a field undergoes the following possible state transitions:
182 ///
183 /// [*] --> Unconnected --> ConnectedToSink ----
184 /// | | |
185 /// | --> ConnectedToSource ---> [*]
186 /// | |
187 /// -------------------------------
188 enum class EState {
192 };
193
194 // clang-format off
195 /**
196 \class ROOT::RFieldBase::RColumnRepresentations
197 \ingroup NTuple
198 \brief The list of column representations a field can have.
199
200 Some fields have multiple possible column representations, e.g. with or without split encoding.
201 All column representations supported for writing also need to be supported for reading. In addition,
202 fields can support extra column representations for reading only, e.g. a 64bit integer reading from a
203 32bit column.
204 The defined column representations must be supported by corresponding column packing/unpacking implementations,
205 i.e. for the example above, the unpacking of 32bit ints to 64bit pages must be implemented in RColumnElement.hxx
206 */
207 // clang-format on
209 public:
210 /// A list of column representations
211 using Selection_t = std::vector<ColumnRepresentation_t>;
212
215
216 /// The first column list from `fSerializationTypes` is the default for writing.
220
221 private:
223 /// The union of the serialization types and the deserialization extra types passed during construction.
224 /// Duplicates the serialization types list but the benefit is that GetDeserializationTypes() does not need to
225 /// compile the list.
227 }; // class RColumnRepresentations
228
229 class RValue;
230 class RBulkValues;
231
232private:
233 /// The field name relative to its parent field
234 std::string fName;
235 /// The C++ type captured by this field
236 std::string fType;
237 /// The role of this field in the data model structure
239 /// For fixed sized arrays, the array length
240 std::size_t fNRepetitions;
241 /// A field qualifies as simple if it is mappable (which implies it has a single principal column),
242 /// and it is not an artificial field and has no post-read callback
244 /// A field that is not backed on disk but computed, e.g. a default-constructed missing field or
245 /// a field whose data is created by I/O customization rules. Subfields of artificial fields are
246 /// artificial, too.
247 bool fIsArtificial = false;
248 /// When the columns are connected to a page source or page sink, the field represents a field id in the
249 /// corresponding RNTuple descriptor. This on-disk ID is set in RPageSink::Create() for writing and by
250 /// RFieldDescriptor::CreateField() when recreating a field / model from the stored descriptor.
252 /// Free text set by the user
253 std::string fDescription;
254 /// Changed by ConnectTo[Sink,Source], reset by Clone()
256
258 {
259 for (const auto &func : fReadCallbacks)
260 func(target);
261 }
262
263 /// Translate an entry index to a column element index of the principal column. This function
264 /// takes into account the role and number of repetitions on each level of the field hierarchy as follows:
265 /// - Top level fields: element index == entry index
266 /// - Record fields propagate their principal column index to the principal columns of direct descendant fields
267 /// - Collection and variant fields set the principal column index of their children to 0
268 ///
269 /// The column element index also depends on the number of repetitions of each field in the hierarchy, e.g., given a
270 /// field with type `std::array<std::array<float, 4>, 2>`, this function called with `globalIndex == 1`
271 /// returns 8 for the innermost field.
273
274 /// Flushes data from active columns
275 void FlushColumns();
276 /// Flushes data from active columns to disk and calls CommitClusterImpl()
277 void CommitCluster();
278 /// Fields and their columns live in the void until connected to a physical page storage. Only once connected, data
279 /// can be read or written. In order to find the field in the page storage, the field's on-disk ID has to be set.
280 /// \param firstEntry The global index of the first entry with on-disk data for the connected field
282 /// Connects the field and its subfield tree to the given page source. Once connected, data can be read.
283 /// Only unconnected fields may be connected, i.e. the method is not idempotent. The field ID has to be set prior to
284 /// calling this function. For subfields, a field ID may or may not be set. If the field ID is unset, it will be
285 /// determined using the page source descriptor, based on the parent field ID and the subfield name.
287
289 {
290 fIsSimple = false;
291 fIsArtificial = true;
292 for (auto &field : fSubfields) {
293 field->SetArtificial();
294 }
295 }
296
297protected:
298 struct RBulkSpec;
299
300 /// Bits used in CompareOnDisk()
301 enum {
302 /// The in-memory field and the on-disk field differ in the field version
304 /// The in-memory field and the on-disk field differ in the type version
306 /// The in-memory field and the on-disk field differ in their structural roles
308 /// The in-memory field and the on-disk field have different type names
310 /// The in-memory field and the on-disk field have different repetition counts
311 kDiffNRepetitions = 0x10
312 };
313
314 /// Collections and classes own subfields
315 std::vector<std::unique_ptr<RFieldBase>> fSubfields;
316 /// Subfields point to their mother field
318 /// All fields that have columns have a distinct main column. E.g., for simple fields (`float`, `int`, ...), the
319 /// principal column corresponds to the field type. For collection fields except fixed-sized arrays,
320 /// the main column is the offset field. Class fields have no column of their own.
321 /// When reading, points to any column of the column team of the active representation. Usually, this is just
322 /// the first column.
323 /// When writing, points to the first column index of the currently active (not suppressed) column representation.
325 /// Some fields have a second column in its column representation. In this case, `fAuxiliaryColumn` points into
326 /// `fAvailableColumns` to the column that immediately follows the column `fPrincipalColumn` points to.
328 /// The columns are connected either to a sink or to a source (not to both); they are owned by the field.
329 /// Contains all columns of all representations in order of representation and column index.
330 std::vector<std::unique_ptr<ROOT::Internal::RColumn>> fAvailableColumns;
331 /// Properties of the type that allow for optimizations of collections of that type
332 std::uint32_t fTraits = 0;
333 /// A typedef or using name that was used when creating the field
334 std::string fTypeAlias;
335 /// List of functions to be called after reading a value
336 std::vector<ReadCallback_t> fReadCallbacks;
337 /// C++ type version cached from the descriptor after a call to ConnectPageSource()
339 /// TClass checksum cached from the descriptor after a call to ConnectPageSource(). Only set
340 /// for classes with dictionaries.
341 std::uint32_t fOnDiskTypeChecksum = 0;
342 /// Pointers into the static vector returned by RColumnRepresentations::GetSerializationTypes() when
343 /// SetColumnRepresentatives() is called. Otherwise (if empty) GetColumnRepresentatives() returns a vector
344 /// with a single element, the default representation. Always empty for artificial fields.
345 std::vector<std::reference_wrapper<const ColumnRepresentation_t>> fColumnRepresentatives;
346
347 /// Factory method for the field's type. The caller owns the returned pointer
348 void *CreateObjectRawPtr() const;
349
350 /// Helpers for generating columns. We use the fact that most fields have the same C++/memory types
351 /// for all their column representations.
352 /// Where possible, we call the helpers not from the header to reduce compilation time.
353 template <std::uint32_t ColumnIndexT, typename HeadT, typename... TailTs>
355 {
357 auto &column = fAvailableColumns.emplace_back(
358 ROOT::Internal::RColumn::Create<HeadT>(representation[ColumnIndexT], ColumnIndexT, representationIndex));
359
360 // Initially, the first two columns become the active column representation
362 fPrincipalColumn = column.get();
363 } else if (representationIndex == 0 && !fAuxiliaryColumn) {
364 fAuxiliaryColumn = column.get();
365 } else {
366 // We currently have no fields with more than 2 columns in its column representation
368 }
369
370 if constexpr (sizeof...(TailTs))
372 }
373
374 /// For writing, use the currently set column representative
375 template <typename... ColumnCppTs>
377 {
378 if (fColumnRepresentatives.empty()) {
379 fAvailableColumns.reserve(sizeof...(ColumnCppTs));
380 GenerateColumnsImpl<0, ColumnCppTs...>(GetColumnRepresentations().GetSerializationDefault(), 0);
381 } else {
382 const auto N = fColumnRepresentatives.size();
383 fAvailableColumns.reserve(N * sizeof...(ColumnCppTs));
384 for (unsigned i = 0; i < N; ++i) {
386 }
387 }
388 }
389
390 /// For reading, use the on-disk column list
391 template <typename... ColumnCppTs>
393 {
394 std::uint16_t representationIndex = 0;
395 do {
397 if (onDiskTypes.empty())
398 break;
401 if (representationIndex > 0) {
402 for (std::size_t i = 0; i < sizeof...(ColumnCppTs); ++i) {
403 fAvailableColumns[i]->MergeTeams(
404 *fAvailableColumns[representationIndex * sizeof...(ColumnCppTs) + i].get());
405 }
406 }
408 } while (true);
409 }
410
411 /// Implementations in derived classes should return a static RColumnRepresentations object. The default
412 /// implementation does not attach any columns to the field.
413 virtual const RColumnRepresentations &GetColumnRepresentations() const;
414 /// Implementations in derived classes should create the backing columns corresponding to the field type for
415 /// writing. The default implementation does not attach any columns to the field.
416 virtual void GenerateColumns() {}
417 /// Implementations in derived classes should create the backing columns corresponding to the field type for reading.
418 /// The default implementation does not attach any columns to the field. The method should check, using the page
419 /// source and `fOnDiskId`, if the column types match and throw if they don't.
420 virtual void GenerateColumns(const ROOT::RNTupleDescriptor & /*desc*/) {}
421 /// Returns the on-disk column types found in the provided descriptor for `fOnDiskId` and the given
422 /// representation index. If there are no columns for the given representation index, return an empty
423 /// ColumnRepresentation_t list. Otherwise, the returned reference points into the static array returned by
424 /// GetColumnRepresentations().
425 /// Throws an exception if the types on disk don't match any of the deserialization types from
426 /// GetColumnRepresentations().
429 /// When connecting a field to a page sink, the field's default column representation is subject
430 /// to adjustment according to the write options. E.g., if compression is turned off, encoded columns
431 /// are changed to their unencoded counterparts.
433
434 /// Called by Clone(), which additionally copies the on-disk ID
435 virtual std::unique_ptr<RFieldBase> CloneImpl(std::string_view newName) const = 0;
436
437 /// Constructs value in a given location of size at least GetValueSize(). Called by the base class' CreateValue().
438 virtual void ConstructValue(void *where) const = 0;
439 virtual std::unique_ptr<RDeleter> GetDeleter() const { return std::make_unique<RDeleter>(GetAlignment()); }
440 /// Allow derived classes to call ConstructValue(void *) and GetDeleter() on other (sub)fields.
441 static void CallConstructValueOn(const RFieldBase &other, void *where) { other.ConstructValue(where); }
442 static std::unique_ptr<RDeleter> GetDeleterOf(const RFieldBase &other) { return other.GetDeleter(); }
443
444 /// Allow parents to mark their childs as artificial fields (used in class and record fields)
445 static void CallSetArtificialOn(RFieldBase &other) { other.SetArtificial(); }
446
447 /// Operations on values of complex types, e.g. ones that involve multiple columns or for which no direct
448 /// column type exists.
449 virtual std::size_t AppendImpl(const void *from);
450 virtual void ReadGlobalImpl(ROOT::NTupleSize_t globalIndex, void *to);
451 virtual void ReadInClusterImpl(RNTupleLocalIndex localIndex, void *to);
452
453 /// Write the given value into columns. The value object has to be of the same type as the field.
454 /// Returns the number of uncompressed bytes written.
455 std::size_t Append(const void *from);
456
457 /// Populate a single value with data from the field. The memory location pointed to by to needs to be of the
458 /// fitting type. The fast path is conditioned by the field qualifying as simple, i.e. maps as-is
459 /// to a single column and has no read callback.
461 {
462 if (fIsSimple)
463 return (void)fPrincipalColumn->Read(globalIndex, to);
464
465 if (!fIsArtificial) {
468 else
470 }
471 if (R__unlikely(!fReadCallbacks.empty()))
473 }
474
475 /// Populate a single value with data from the field. The memory location pointed to by to needs to be of the
476 /// fitting type. The fast path is conditioned by the field qualifying as simple, i.e. maps as-is
477 /// to a single column and has no read callback.
479 {
480 if (fIsSimple)
481 return (void)fPrincipalColumn->Read(localIndex, to);
482
483 if (!fIsArtificial) {
486 else
488 }
489 if (R__unlikely(!fReadCallbacks.empty()))
491 }
492
493 /// General implementation of bulk read. Loop over the required range and read values that are required
494 /// and not already present. Derived classes may implement more optimized versions of this method.
495 /// See ReadBulk() for the return value.
496 virtual std::size_t ReadBulkImpl(const RBulkSpec &bulkSpec);
497
498 /// Returns the number of newly available values, that is the number of bools in `bulkSpec.fMaskAvail` that
499 /// flipped from false to true. As a special return value, `kAllSet` can be used if all values are read
500 /// independent from the masks.
501 std::size_t ReadBulk(const RBulkSpec &bulkSpec);
502
503 /// Allow derived classes to call Append() and Read() on other (sub)fields.
504 static std::size_t CallAppendOn(RFieldBase &other, const void *from) { return other.Append(from); }
507 static void *CallCreateObjectRawPtrOn(RFieldBase &other) { return other.CreateObjectRawPtr(); }
508
509 /// Fields may need direct access to the principal column of their subfields, e.g. in RRVecField::ReadBulk()
510 static ROOT::Internal::RColumn *GetPrincipalColumnOf(const RFieldBase &other) { return other.fPrincipalColumn; }
511
512 /// Set a user-defined function to be called after reading a value, giving a chance to inspect and/or modify the
513 /// value object.
514 /// Returns an index that can be used to remove the callback.
515 size_t AddReadCallback(ReadCallback_t func);
516 void RemoveReadCallback(size_t idx);
517
518 // Perform housekeeping tasks for global to cluster-local index translation
519 virtual void CommitClusterImpl() {}
520 // The field can indicate that it needs to register extra type information in the on-disk schema.
521 // In this case, a callback from the page sink to the field will be registered on connect, so that the
522 // extra type information can be collected when the dataset gets committed.
523 virtual bool HasExtraTypeInfo() const { return false; }
524 // The page sink's callback when the data set gets committed will call this method to get the field's extra
525 // type information. This has to happen at the end of writing because the type information may change depending
526 // on the data that's written, e.g. for polymorphic types in the streamer field.
528
529 /// Add a new subfield to the list of nested fields. Throws an exception if childName is non-empty and the passed
530 /// field has a different name.
531 void Attach(std::unique_ptr<RFieldBase> child, std::string_view expectedChildName = "");
532
533 /// Called by ConnectPageSource() before connecting; derived classes may override this as appropriate, e.g.
534 /// for the application of I/O rules. In the process, the field at hand or its subfields may be marked as
535 /// "artifical", i.e. introduced by schema evolution and not backed by on-disk information.
536 /// May return a field substitute that fits the on-disk schema as a replacement for the field at hand.
537 /// A field substitute must read into the same in-memory layout than the original field and field substitutions
538 /// must not be cyclic.
539 virtual std::unique_ptr<RFieldBase> BeforeConnectPageSource(ROOT::Internal::RPageSource & /* source */)
540 {
541 return nullptr;
542 }
543
544 /// For non-artificial fields, check compatibility of the in-memory field and the on-disk field. In the process,
545 /// the field at hand may change its on-disk ID or perform other tasks related to automatic schema evolution.
546 /// If the on-disk field is incompatible with the in-memory field at hand, an exception is thrown.
547 virtual void ReconcileOnDiskField(const RNTupleDescriptor &desc);
548
549 /// Returns a combination of kDiff... flags, indicating peroperties that are different between the field at hand
550 /// and the given on-disk field
551 std::uint32_t CompareOnDiskField(const RFieldDescriptor &fieldDesc, std::uint32_t ignoreBits) const;
552 /// Compares the field to the corresponding on-disk field information in the provided descriptor.
553 /// Throws an exception if the fields don't match.
554 /// Optionally, a set of bits can be provided that should be ignored in the comparison.
555 RResult<void> EnsureMatchingOnDiskField(const RNTupleDescriptor &desc, std::uint32_t ignoreBits = 0) const;
556 /// Convenience wrapper for the common case of calling EnsureMatchinOnDiskField() for collections. Collections
557 /// may differ in type name (most collections schema evolve into each other). An on-disk SoA collection may also
558 /// have any type version whereas all other collections need to have type version 0.
560 /// Many fields accept a range of type prefixes for schema evolution,
561 /// e.g. std::unique_ptr< and std::optional< for nullable fields
563 EnsureMatchingTypePrefix(const RNTupleDescriptor &desc, const std::vector<std::string> &prefixes) const;
564
565 /// Factory method to resurrect a field from the stored on-disk type information. This overload takes an already
566 /// normalized type name and type alias.
567 /// `desc` and `fieldId` must be passed if `options.fEmulateUnknownTypes` is true, otherwise they can be left blank.
569 Create(const std::string &fieldName, const std::string &typeName, const ROOT::RCreateFieldOptions &options,
571
572public:
573 template <bool IsConstT>
574 class RSchemaIteratorTemplate;
577
578 // This is used in CreateObject() and is specialized for void
579 template <typename T>
581 using deleter = std::default_delete<T>;
582 };
583
584 /// Used in the return value of the Check() method
586 std::string fFieldName; ///< Qualified field name causing the error
587 std::string fTypeName; ///< Type name corresponding to the (sub)field
588 std::string fErrMsg; ///< Cause of the failure, e.g. unsupported type
589 };
590
591 /// The constructor creates the underlying column objects and connects them to either a sink or a source.
592 /// If `isSimple` is `true`, the trait `kTraitMappable` is automatically set on construction. However, the
593 /// field might be demoted to non-simple if a post-read callback is set.
594 RFieldBase(std::string_view name, std::string_view type, ROOT::ENTupleStructure structure, bool isSimple,
595 std::size_t nRepetitions = 0);
596 RFieldBase(const RFieldBase &) = delete;
597 RFieldBase(RFieldBase &&) = default;
598 RFieldBase &operator=(const RFieldBase &) = delete;
600 virtual ~RFieldBase() = default;
601
602 /// Copies the field and its subfields using a possibly new name and a new, unconnected set of columns
603 std::unique_ptr<RFieldBase> Clone(std::string_view newName) const;
604
605 /// Factory method to create a field from a certain type given as string.
606 /// Note that the provided type name must be a valid C++ type name. Template arguments of templated types
607 /// must be type names or integers (e.g., no expressions).
609 Create(const std::string &fieldName, const std::string &typeName);
610
611 /// Checks if the given type is supported by RNTuple. In case of success, the result vector is empty.
612 /// Otherwise there is an error record for each failing subfield (subtype).
613 static std::vector<RCheckResult> Check(const std::string &fieldName, const std::string &typeName);
614
615 /// Generates an object of the field type and allocates new initialized memory according to the type.
616 /// Implemented at the end of this header because the implementation is using RField<T>::TypeName()
617 /// The returned object can be released with `delete`, i.e. it is valid to call:
618 /// ~~~{.cpp}
619 /// auto ptr = field->CreateObject();
620 /// delete ptr.release();
621 /// ~~~
622 /// Over-aligned types need to delete the returned pointer using the delete operator overload that specifies the
623 /// type's alignment.
624 ///
625 /// Note that CreateObject<void>() is supported. The returned `unique_ptr` has a custom deleter that reports an error
626 /// if it is called. The intended use of the returned `unique_ptr<void>` is to call `release()`. In this way, the
627 /// transfer of pointer ownership is explicit.
628 template <typename T>
629 std::unique_ptr<T, typename RCreateObjectDeleter<T>::deleter> CreateObject() const;
630 /// Generates an object of the field's type, wraps it in a shared pointer and returns it as an RValue connected to
631 /// the field.
633 /// Creates a new, initially empty bulk.
634 /// RBulkValues::ReadBulk() will construct the array of values. The memory of the value array is managed by the
635 /// RBulkValues class.
637 /// Creates a value from a memory location with an already constructed object
638 RValue BindValue(std::shared_ptr<void> objPtr);
639 /// Creates the list of direct child values given an existing value for this field. E.g. a single value for the
640 /// correct `std::variant` or all the elements of a collection. The default implementation assumes no subvalues
641 /// and returns an empty vector.
642 virtual std::vector<RValue> SplitValue(const RValue &value) const;
643 /// What sizeof(T) for this type returns
644 virtual size_t GetValueSize() const = 0;
645 /// What alignof(T) for this type returns
646 virtual size_t GetAlignment() const = 0;
647 std::uint32_t GetTraits() const { return fTraits; }
648 bool HasReadCallbacks() const { return !fReadCallbacks.empty(); }
649
650 const std::string &GetFieldName() const { return fName; }
651 /// Returns the field name and parent field names separated by dots (`grandparent.parent.child`)
652 std::string GetQualifiedFieldName() const;
653 const std::string &GetTypeName() const { return fType; }
654 const std::string &GetTypeAlias() const { return fTypeAlias; }
656 std::size_t GetNRepetitions() const { return fNRepetitions; }
657 const RFieldBase *GetParent() const { return fParent; }
658 std::vector<RFieldBase *> GetMutableSubfields();
659 std::vector<const RFieldBase *> GetConstSubfields() const;
660 bool IsSimple() const { return fIsSimple; }
661 bool IsArtificial() const { return fIsArtificial; }
662 /// Get the field's description
663 const std::string &GetDescription() const { return fDescription; }
664 void SetDescription(std::string_view description);
665 EState GetState() const { return fState; }
666
669
670 /// Returns the `fColumnRepresentative` pointee or, if unset (always the case for artificial fields), the field's
671 /// default representative
673 /// Fixes a column representative. This can only be done _before_ connecting the field to a page sink.
674 /// Otherwise, or if the provided representation is not in the list of GetColumnRepresentations(),
675 /// an exception is thrown
677 /// Whether or not an explicit column representative was set
679
680 /// Indicates an evolution of the mapping scheme from C++ type to columns
681 virtual std::uint32_t GetFieldVersion() const { return 0; }
682 /// Indicates an evolution of the C++ type itself
683 virtual std::uint32_t GetTypeVersion() const { return 0; }
684 /// Return the current TClass reported checksum of this class. Only valid if `kTraitTypeChecksum` is set.
685 virtual std::uint32_t GetTypeChecksum() const { return 0; }
686 /// Return the C++ type version stored in the field descriptor; only valid after a call to ConnectPageSource()
687 std::uint32_t GetOnDiskTypeVersion() const { return fOnDiskTypeVersion; }
688 /// Return checksum stored in the field descriptor; only valid after a call to ConnectPageSource(),
689 /// if the field stored a type checksum
690 std::uint32_t GetOnDiskTypeChecksum() const { return fOnDiskTypeChecksum; }
691
698
700}; // class RFieldBase
701
702/// Iterates over the subtree of fields in depth-first search order
703template <bool IsConstT>
705private:
706 struct Position {
707 using FieldPtr_t = std::conditional_t<IsConstT, const RFieldBase *, RFieldBase *>;
708 Position() : fFieldPtr(nullptr), fIdxInParent(-1) {}
712 };
713 /// The stack of nodes visited when walking down the tree of fields
714 std::vector<Position> fStack;
715
716public:
718 using iterator_category = std::forward_iterator_tag;
719 using difference_type = std::ptrdiff_t;
720 using value_type = std::conditional_t<IsConstT, const RFieldBase, RFieldBase>;
721 using pointer = std::conditional_t<IsConstT, const RFieldBase *, RFieldBase *>;
722 using reference = std::conditional_t<IsConstT, const RFieldBase &, RFieldBase &>;
723
727 /// Given that the iterator points to a valid field which is not the end iterator, go to the next field
728 /// in depth-first search order
729 void Advance()
730 {
731 auto itr = fStack.rbegin();
732 if (!itr->fFieldPtr->fSubfields.empty()) {
733 fStack.emplace_back(Position(itr->fFieldPtr->fSubfields[0].get(), 0));
734 return;
735 }
736
737 unsigned int nextIdxInParent = ++(itr->fIdxInParent);
738 while (nextIdxInParent >= itr->fFieldPtr->fParent->fSubfields.size()) {
739 if (fStack.size() == 1) {
740 itr->fFieldPtr = itr->fFieldPtr->fParent;
741 itr->fIdxInParent = -1;
742 return;
743 }
744 fStack.pop_back();
745 itr = fStack.rbegin();
746 nextIdxInParent = ++(itr->fIdxInParent);
747 }
748 itr->fFieldPtr = itr->fFieldPtr->fParent->fSubfields[nextIdxInParent].get();
749 }
750
751 iterator operator++(int) /* postfix */
752 {
753 auto r = *this;
754 Advance();
755 return r;
756 }
757 iterator &operator++() /* prefix */
758 {
759 Advance();
760 return *this;
761 }
762 reference operator*() const { return *fStack.back().fFieldPtr; }
763 pointer operator->() const { return fStack.back().fFieldPtr; }
764 bool operator==(const iterator &rh) const { return fStack.back().fFieldPtr == rh.fStack.back().fFieldPtr; }
765 bool operator!=(const iterator &rh) const { return fStack.back().fFieldPtr != rh.fStack.back().fFieldPtr; }
766};
767
768/// Points to an object with RNTuple I/O support and keeps a pointer to the corresponding field.
769/// Fields can create RValue objects through RFieldBase::CreateValue(), RFieldBase::BindValue()) or
770/// RFieldBase::SplitValue().
772 friend class RFieldBase;
773 friend class ROOT::REntry;
775
776private:
777 RFieldBase *fField = nullptr; ///< The field that created the RValue
778 /// Set by Bind() or by RFieldBase::CreateValue(), RFieldBase::SplitValue() or RFieldBase::BindValue()
779 std::shared_ptr<void> fObjPtr;
780 mutable std::atomic<const std::type_info *> fTypeInfo = nullptr;
781
782 RValue(RFieldBase *field, std::shared_ptr<void> objPtr) : fField(field), fObjPtr(objPtr) {}
783
784public:
787 {
788 fField = other.fField;
789 fObjPtr = other.fObjPtr;
790 // We could copy over the cached type info, or just start with a fresh state...
791 fTypeInfo = nullptr;
792 return *this;
793 }
796 {
797 fField = other.fField;
798 fObjPtr = other.fObjPtr;
799 // We could copy over the cached type info, or just start with a fresh state...
800 fTypeInfo = nullptr;
801 return *this;
802 }
803 ~RValue() = default;
804
805private:
806 template <typename T>
808 {
809 if constexpr (!std::is_void_v<T>) {
810 const std::type_info &ti = typeid(T);
811 // Fast path: if we had a matching type before, try comparing the type_info's. This may still fail in case the
812 // type has a suppressed template argument that may change the typeid.
813 auto *cachedTypeInfo = fTypeInfo.load();
814 if (cachedTypeInfo != nullptr && *cachedTypeInfo == ti) {
815 return;
816 }
819 fTypeInfo.store(&ti);
820 return;
821 }
822 throw RException(R__FAIL("type mismatch for field \"" + fField->GetFieldName() + "\": expected " +
823 fField->GetTypeName() + ", got " + renormalizedTypeName));
824 }
825 }
826
827 std::size_t Append() { return fField->Append(fObjPtr.get()); }
828
829public:
832
833 void Bind(std::shared_ptr<void> objPtr) { fObjPtr = objPtr; }
834 void BindRawPtr(void *rawPtr);
835 /// Replace the current object pointer by a pointer to a new object constructed by the field
836 void EmplaceNew() { fObjPtr = fField->CreateValue().GetPtr<void>(); }
837
838 template <typename T>
839 std::shared_ptr<T> GetPtr() const
840 {
842 return std::static_pointer_cast<T>(fObjPtr);
843 }
844
845 template <typename T>
846 const T &GetRef() const
847 {
849 return *static_cast<T *>(fObjPtr.get());
850 }
851
852 const RFieldBase &GetField() const { return *fField; }
853};
854
855/// Input parameter to RFieldBase::ReadBulk() and RFieldBase::ReadBulkImpl().
856// See the RBulkValues class documentation for more information.
858 /// Possible return value of ReadBulk() and ReadBulkImpl(), which indicates that the full bulk range was read
859 /// independently of the provided masks.
860 static const std::size_t kAllSet = std::size_t(-1);
861
862 RNTupleLocalIndex fFirstIndex; ///< Start of the bulk range
863 std::size_t fCount = 0; ///< Size of the bulk range
864 /// A bool array of size fCount, indicating the required values in the requested range
865 const bool *fMaskReq = nullptr;
866 bool *fMaskAvail = nullptr; ///< A bool array of size `fCount`, indicating the valid values in fValues
867 /// The destination area, which has to be an array of valid objects of the correct type large enough to hold the bulk
868 /// range.
869 void *fValues = nullptr;
870 /// Reference to memory owned by the RBulkValues class. The field implementing BulkReadImpl() may use `fAuxData` as
871 /// memory that stays persistent between calls.
872 std::vector<unsigned char> *fAuxData = nullptr;
873};
874
875// clang-format off
876/**
877\class ROOT::RFieldBase::RBulkValues
878\ingroup NTuple
879\brief Points to an array of objects with RNTuple I/O support, used for bulk reading.
880
881Similar to RValue, but manages an array of consecutive values. Bulks have to come from the same cluster.
882Bulk I/O works with two bit masks: the mask of all the available entries in the current bulk and the mask
883of the required entries in a bulk read. The idea is that a single bulk may serve multiple read operations
884on the same range, where in each read operation a different subset of values is required.
885The memory of the value array is managed by the RBulkValues class.
886*/
887// clang-format on
889private:
890 friend class RFieldBase;
891
892 RFieldBase *fField = nullptr; ///< The field that created the array of values
893 std::unique_ptr<RFieldBase::RDeleter> fDeleter; /// Cached deleter of fField
894 void *fValues = nullptr; ///< Pointer to the start of the array
895 std::size_t fValueSize = 0; ///< Cached copy of RFieldBase::GetValueSize()
896 std::size_t fCapacity = 0; ///< The size of the array memory block in number of values
897 std::size_t fSize = 0; ///< The number of available values in the array (provided their mask is set)
898 bool fIsAdopted = false; ///< True if the user provides the memory buffer for fValues
899 std::unique_ptr<bool[]> fMaskAvail; ///< Masks invalid values in the array
900 std::size_t fNValidValues = 0; ///< The sum of non-zero elements in the fMask
901 RNTupleLocalIndex fFirstIndex; ///< Index of the first value of the array
902 /// Reading arrays of complex values may require additional memory, for instance for the elements of
903 /// arrays of vectors. A pointer to the `fAuxData` array is passed to the field's BulkRead method.
904 /// The RBulkValues class does not modify the array in-between calls to the field's BulkRead method.
905 std::vector<unsigned char> fAuxData;
906
907 void ReleaseValues();
908 /// Sets a new range for the bulk. If there is enough capacity, the `fValues` array will be reused.
909 /// Otherwise a new array is allocated. After reset, fMaskAvail is false for all values.
910 void Reset(RNTupleLocalIndex firstIndex, std::size_t size);
911
913 {
914 if (firstIndex.GetClusterId() != fFirstIndex.GetClusterId())
915 return false;
916 return (firstIndex.GetIndexInCluster() >= fFirstIndex.GetIndexInCluster()) &&
917 ((firstIndex.GetIndexInCluster() + size) <= (fFirstIndex.GetIndexInCluster() + fSize));
918 }
919
920 void *GetValuePtrAt(std::size_t idx) const { return reinterpret_cast<unsigned char *>(fValues) + idx * fValueSize; }
921
926
927public:
928 ~RBulkValues();
929 RBulkValues(const RBulkValues &) = delete;
933
934 // Sets `fValues` and `fSize`/`fCapacity` to the given values. The capacity is specified in number of values.
935 // Once a buffer is adopted, an attempt to read more values then available throws an exception.
936 void AdoptBuffer(void *buf, std::size_t capacity);
937
938 /// Reads `size` values from the associated field, starting from `firstIndex`. Note that the index is given
939 /// relative to a certain cluster. The return value points to the array of read objects.
940 /// The `maskReq` parameter is a bool array of at least `size` elements. Only objects for which the mask is
941 /// true are guaranteed to be read in the returned value array. A `nullptr` means to read all elements.
942 void *ReadBulk(RNTupleLocalIndex firstIndex, const bool *maskReq, std::size_t size)
943 {
946
947 // We may read a subrange of the currently available range
948 auto offset = firstIndex.GetIndexInCluster() - fFirstIndex.GetIndexInCluster();
949
950 if (fNValidValues == fSize)
951 return GetValuePtrAt(offset);
952
954 bulkSpec.fFirstIndex = firstIndex;
955 bulkSpec.fCount = size;
956 bulkSpec.fMaskReq = maskReq;
957 bulkSpec.fMaskAvail = &fMaskAvail[offset];
958 bulkSpec.fValues = GetValuePtrAt(offset);
959 bulkSpec.fAuxData = &fAuxData;
960 auto nRead = fField->ReadBulk(bulkSpec);
961 if (nRead == RBulkSpec::kAllSet) {
962 // We expect that field implementations consistently return kAllSet either in all cases or never. This avoids
963 // the following case where we would have to manually count how many valid values we actually have:
964 // 1. A partial ReadBulk, according to maskReq, with values potentially missing in the middle.
965 // 2. A second ReadBulk that reads a complete subrange. If this returned kAllSet, we don't know how to update
966 // fNValidValues, other than counting. The field should return a concrete number of how many new values it read
967 // in addition to those already present.
968 R__ASSERT((offset == 0) && (size == fSize));
970 } else {
972 }
973 return GetValuePtrAt(offset);
974 }
975
976 /// Overload to read all elements in the given cluster range.
977 void *ReadBulk(ROOT::RNTupleLocalRange range) { return ReadBulk(*range.begin(), nullptr, range.size()); }
978};
979
980namespace Internal {
981// At some point, RFieldBase::OnClusterCommit() may allow for a user-defined callback to change the
982// column representation. For now, we inject this for testing and internal use only.
985 {
986 R__ASSERT(newRepresentationIdx < field.fColumnRepresentatives.size());
987 const auto N = field.fColumnRepresentatives[0].get().size();
988 R__ASSERT(N >= 1 && N <= 2);
989 R__ASSERT(field.fPrincipalColumn);
990 field.fPrincipalColumn = field.fAvailableColumns[newRepresentationIdx * N].get();
991 if (field.fAuxiliaryColumn) {
992 R__ASSERT(N == 2);
993 field.fAuxiliaryColumn = field.fAvailableColumns[newRepresentationIdx * N + 1].get();
994 }
995 }
996};
997} // namespace Internal
998} // namespace ROOT
999
1000#endif
#define R__unlikely(expr)
Definition RConfig.hxx:586
#define R__FAIL(msg)
Short-hand to return an RResult<T> in an error state; the RError is implicitly converted into RResult...
Definition RError.hxx:299
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
#define R__ASSERT(e)
Checks condition e and reports a fatal error if it's false.
Definition TError.h:125
#define N
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h offset
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t target
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t child
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
char name[80]
Definition TGX11.cxx:148
Abstract base class for classes implementing the visitor design pattern.
A container of const raw pointers, corresponding to a row in the data set.
Class used to read a RNTupleAttrSet in the context of a RNTupleReader.
A column is a storage-backed array of a simple, fixed-size type, from which pages can be mapped into ...
Definition RColumn.hxx:37
void Read(const ROOT::NTupleSize_t globalIndex, void *to)
Definition RColumn.hxx:159
Abstract interface to write data into an ntuple.
Abstract interface to read data from an ntuple.
The REntry is a collection of values in an RNTuple corresponding to a complete row in the data set.
Definition REntry.hxx:54
Base class for all ROOT issued exceptions.
Definition RError.hxx:78
Field specific extra type information from the header / extenstion header.
Points to an array of objects with RNTuple I/O support, used for bulk reading.
std::unique_ptr< bool[]> fMaskAvail
Masks invalid values in the array.
std::unique_ptr< RFieldBase::RDeleter > fDeleter
void * ReadBulk(RNTupleLocalIndex firstIndex, const bool *maskReq, std::size_t size)
Reads size values from the associated field, starting from firstIndex.
void * GetValuePtrAt(std::size_t idx) const
bool ContainsRange(RNTupleLocalIndex firstIndex, std::size_t size) const
std::size_t fNValidValues
The sum of non-zero elements in the fMask.
bool fIsAdopted
True if the user provides the memory buffer for fValues.
void Reset(RNTupleLocalIndex firstIndex, std::size_t size)
Sets a new range for the bulk.
void * fValues
Cached deleter of fField.
std::size_t fCapacity
The size of the array memory block in number of values.
void * ReadBulk(ROOT::RNTupleLocalRange range)
Overload to read all elements in the given cluster range.
std::size_t fValueSize
Cached copy of RFieldBase::GetValueSize()
RFieldBase * fField
The field that created the array of values.
RBulkValues & operator=(const RBulkValues &)=delete
RBulkValues(RFieldBase *field)
std::size_t fSize
The number of available values in the array (provided their mask is set)
void AdoptBuffer(void *buf, std::size_t capacity)
std::vector< unsigned char > fAuxData
Reading arrays of complex values may require additional memory, for instance for the elements of arra...
RNTupleLocalIndex fFirstIndex
Index of the first value of the array.
RBulkValues(const RBulkValues &)=delete
The list of column representations a field can have.
const Selection_t & GetSerializationTypes() const
const Selection_t & GetDeserializationTypes() const
const ColumnRepresentation_t & GetSerializationDefault() const
The first column list from fSerializationTypes is the default for writing.
std::vector< ColumnRepresentation_t > Selection_t
A list of column representations.
Selection_t fDeserializationTypes
The union of the serialization types and the deserialization extra types passed during construction.
A functor to release the memory acquired by CreateValue() (memory and constructor).
RDeleter(std::size_t align)
virtual void operator()(void *objPtr, bool dtorOnly)
virtual ~RDeleter()=default
void DeleteAligned(void *objPtr) const
Iterates over the subtree of fields in depth-first search order.
std::vector< Position > fStack
The stack of nodes visited when walking down the tree of fields.
bool operator==(const iterator &rh) const
std::conditional_t< IsConstT, const RFieldBase &, RFieldBase & > reference
std::conditional_t< IsConstT, const RFieldBase *, RFieldBase * > pointer
std::conditional_t< IsConstT, const RFieldBase, RFieldBase > value_type
std::forward_iterator_tag iterator_category
void Advance()
Given that the iterator points to a valid field which is not the end iterator, go to the next field i...
bool operator!=(const iterator &rh) const
RSchemaIteratorTemplate(pointer val, int idxInParent)
A deleter for templated RFieldBase descendents where the value type is known.
void operator()(void *objPtr, bool dtorOnly) final
Points to an object with RNTuple I/O support and keeps a pointer to the corresponding field.
std::shared_ptr< void > fObjPtr
Set by Bind() or by RFieldBase::CreateValue(), RFieldBase::SplitValue() or RFieldBase::BindValue()
RValue & operator=(const RValue &other)
void Read(ROOT::NTupleSize_t globalIndex)
void EmplaceNew()
Replace the current object pointer by a pointer to a new object constructed by the field.
void EnsureMatchingType() const
void Bind(std::shared_ptr< void > objPtr)
void Read(RNTupleLocalIndex localIndex)
RValue(const RValue &other)
RValue & operator=(RValue &&other)
const RFieldBase & GetField() const
std::atomic< const std::type_info * > fTypeInfo
std::shared_ptr< T > GetPtr() const
RFieldBase * fField
The field that created the RValue.
RValue(RFieldBase *field, std::shared_ptr< void > objPtr)
void BindRawPtr(void *rawPtr)
const T & GetRef() const
A field translates read and write calls from/to underlying columns to/from tree values.
ROOT::DescriptorId_t fOnDiskId
When the columns are connected to a page source or page sink, the field represents a field id in the ...
ROOT::ENTupleStructure GetStructure() const
virtual size_t GetValueSize() const =0
What sizeof(T) for this type returns.
static constexpr std::uint32_t kInvalidTypeVersion
RSchemaIterator end()
void Attach(std::unique_ptr< RFieldBase > child, std::string_view expectedChildName="")
Add a new subfield to the list of nested fields.
void SetColumnRepresentatives(const RColumnRepresentations::Selection_t &representatives)
Fixes a column representative.
void InvokeReadCallbacks(void *target)
ROOT::Internal::RColumn * fPrincipalColumn
All fields that have columns have a distinct main column.
virtual size_t GetAlignment() const =0
What alignof(T) for this type returns.
virtual std::unique_ptr< RDeleter > GetDeleter() const
virtual void ReconcileOnDiskField(const RNTupleDescriptor &desc)
For non-artificial fields, check compatibility of the in-memory field and the on-disk field.
ROOT::NTupleSize_t EntryToColumnElementIndex(ROOT::NTupleSize_t globalIndex) const
Translate an entry index to a column element index of the principal column.
@ kDiffStructure
The in-memory field and the on-disk field differ in their structural roles.
@ kDiffTypeName
The in-memory field and the on-disk field have different type names.
@ kDiffTypeVersion
The in-memory field and the on-disk field differ in the type version.
@ kDiffFieldVersion
The in-memory field and the on-disk field differ in the field version.
@ kDiffNRepetitions
The in-memory field and the on-disk field have different repetition counts.
virtual void AcceptVisitor(ROOT::Detail::RFieldVisitor &visitor) const
void FlushColumns()
Flushes data from active columns.
virtual void ReadGlobalImpl(ROOT::NTupleSize_t globalIndex, void *to)
std::vector< std::unique_ptr< RFieldBase > > fSubfields
Collections and classes own subfields.
std::uint32_t GetOnDiskTypeVersion() const
Return the C++ type version stored in the field descriptor; only valid after a call to ConnectPageSou...
virtual const RColumnRepresentations & GetColumnRepresentations() const
Implementations in derived classes should return a static RColumnRepresentations object.
EState
During its lifetime, a field undergoes the following possible state transitions:
bool fIsSimple
A field qualifies as simple if it is mappable (which implies it has a single principal column),...
RConstSchemaIterator cbegin() const
std::unique_ptr< T, typename RCreateObjectDeleter< T >::deleter > CreateObject() const
Generates an object of the field type and allocates new initialized memory according to the type.
Definition RField.hxx:566
RFieldBase & operator=(const RFieldBase &)=delete
virtual void GenerateColumns(const ROOT::RNTupleDescriptor &)
Implementations in derived classes should create the backing columns corresponding to the field type ...
void AutoAdjustColumnTypes(const ROOT::RNTupleWriteOptions &options)
When connecting a field to a page sink, the field's default column representation is subject to adjus...
virtual void ConstructValue(void *where) const =0
Constructs value in a given location of size at least GetValueSize(). Called by the base class' Creat...
std::vector< const RFieldBase * > GetConstSubfields() const
void SetOnDiskId(ROOT::DescriptorId_t id)
void RemoveReadCallback(size_t idx)
void GenerateColumnsImpl(const ROOT::RNTupleDescriptor &desc)
For reading, use the on-disk column list.
virtual void GenerateColumns()
Implementations in derived classes should create the backing columns corresponding to the field type ...
void Read(RNTupleLocalIndex localIndex, void *to)
Populate a single value with data from the field.
const RFieldBase * GetParent() const
std::vector< RFieldBase * > GetMutableSubfields()
std::string fDescription
Free text set by the user.
static std::unique_ptr< RDeleter > GetDeleterOf(const RFieldBase &other)
static ROOT::Internal::RColumn * GetPrincipalColumnOf(const RFieldBase &other)
Fields may need direct access to the principal column of their subfields, e.g. in RRVecField::ReadBul...
static std::vector< RCheckResult > Check(const std::string &fieldName, const std::string &typeName)
Checks if the given type is supported by RNTuple.
RSchemaIterator begin()
ROOT::Internal::RColumn * fAuxiliaryColumn
Some fields have a second column in its column representation.
size_t AddReadCallback(ReadCallback_t func)
Set a user-defined function to be called after reading a value, giving a chance to inspect and/or mod...
RResult< void > EnsureMatchingOnDiskCollection(const RNTupleDescriptor &desc) const
Convenience wrapper for the common case of calling EnsureMatchinOnDiskField() for collections.
RConstSchemaIterator cend() const
std::size_t fNRepetitions
For fixed sized arrays, the array length.
std::function< void(void *)> ReadCallback_t
std::size_t Append(const void *from)
Write the given value into columns.
RValue CreateValue()
Generates an object of the field's type, wraps it in a shared pointer and returns it as an RValue con...
RSchemaIteratorTemplate< false > RSchemaIterator
const ColumnRepresentation_t & EnsureCompatibleColumnTypes(const ROOT::RNTupleDescriptor &desc, std::uint16_t representationIndex) const
Returns the on-disk column types found in the provided descriptor for fOnDiskId and the given represe...
RFieldBase(RFieldBase &&)=default
virtual std::vector< RValue > SplitValue(const RValue &value) const
Creates the list of direct child values given an existing value for this field.
virtual std::unique_ptr< RFieldBase > CloneImpl(std::string_view newName) const =0
Called by Clone(), which additionally copies the on-disk ID.
static void CallSetArtificialOn(RFieldBase &other)
Allow parents to mark their childs as artificial fields (used in class and record fields)
std::string GetQualifiedFieldName() const
Returns the field name and parent field names separated by dots (grandparent.parent....
RBulkValues CreateBulk()
Creates a new, initially empty bulk.
const std::string & GetFieldName() const
void ConnectPageSink(ROOT::Internal::RPageSink &pageSink, ROOT::NTupleSize_t firstEntry=0)
Fields and their columns live in the void until connected to a physical page storage.
std::size_t ReadBulk(const RBulkSpec &bulkSpec)
Returns the number of newly available values, that is the number of bools in bulkSpec....
std::vector< ROOT::ENTupleColumnType > ColumnRepresentation_t
std::vector< ReadCallback_t > fReadCallbacks
List of functions to be called after reading a value.
RFieldBase & operator=(RFieldBase &&)=default
RResult< void > EnsureMatchingOnDiskField(const RNTupleDescriptor &desc, std::uint32_t ignoreBits=0) const
Compares the field to the corresponding on-disk field information in the provided descriptor.
const std::string & GetTypeAlias() const
static void CallReadOn(RFieldBase &other, ROOT::NTupleSize_t globalIndex, void *to)
virtual ~RFieldBase()=default
static std::size_t CallAppendOn(RFieldBase &other, const void *from)
Allow derived classes to call Append() and Read() on other (sub)fields.
virtual void ReadInClusterImpl(RNTupleLocalIndex localIndex, void *to)
virtual void CommitClusterImpl()
std::vector< std::reference_wrapper< const ColumnRepresentation_t > > fColumnRepresentatives
Pointers into the static vector returned by RColumnRepresentations::GetSerializationTypes() when SetC...
std::uint32_t fTraits
Properties of the type that allow for optimizations of collections of that type.
friend struct ROOT::Internal::RFieldCallbackInjector
virtual std::size_t AppendImpl(const void *from)
Operations on values of complex types, e.g.
RFieldBase * fParent
Subfields point to their mother field.
std::vector< std::unique_ptr< ROOT::Internal::RColumn > > fAvailableColumns
The columns are connected either to a sink or to a source (not to both); they are owned by the field.
@ kTraitEmulatedField
This field is a user defined type that was missing dictionaries and was reconstructed from the on-dis...
@ kTraitTrivialType
Shorthand for types that are both trivially constructible and destructible.
@ kTraitTriviallyDestructible
The type is cleaned up just by freeing its memory. I.e. the destructor performs a no-op.
@ kTraitExtensible
Can attach new item fields even when already connected.
@ kTraitTriviallyConstructible
No constructor needs to be called, i.e.
@ kTraitSoACollection
The field represents a collection in SoA layout.
@ kTraitMappable
A field of a fundamental type that can be directly mapped via RField<T>::Map(), i....
@ kTraitInvalidField
This field is an instance of RInvalidField and can be safely static_cast to it.
@ kTraitTypeChecksum
The TClass checksum is set and valid.
RFieldBase(std::string_view name, std::string_view type, ROOT::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.
EState fState
Changed by ConnectTo[Sink,Source], reset by Clone()
static void * CallCreateObjectRawPtrOn(RFieldBase &other)
bool IsArtificial() const
static RResult< std::unique_ptr< RFieldBase > > Create(const std::string &fieldName, const std::string &typeName, const ROOT::RCreateFieldOptions &options, const ROOT::RNTupleDescriptor *desc, ROOT::DescriptorId_t fieldId)
Factory method to resurrect a field from the stored on-disk type information.
const std::string & GetDescription() const
Get the field's description.
bool HasReadCallbacks() const
std::string fTypeAlias
A typedef or using name that was used when creating the field.
virtual std::uint32_t GetFieldVersion() const
Indicates an evolution of the mapping scheme from C++ type to columns.
virtual std::unique_ptr< RFieldBase > BeforeConnectPageSource(ROOT::Internal::RPageSource &)
Called by ConnectPageSource() before connecting; derived classes may override this as appropriate,...
std::uint32_t CompareOnDiskField(const RFieldDescriptor &fieldDesc, std::uint32_t ignoreBits) const
Returns a combination of kDiff... flags, indicating peroperties that are different between the field ...
std::string fType
The C++ type captured by this field.
RColumnRepresentations::Selection_t GetColumnRepresentatives() const
Returns the fColumnRepresentative pointee or, if unset (always the case for artificial fields),...
RSchemaIteratorTemplate< true > RConstSchemaIterator
virtual std::uint32_t GetTypeChecksum() const
Return the current TClass reported checksum of this class. Only valid if kTraitTypeChecksum is set.
bool IsSimple() const
std::uint32_t GetTraits() const
std::size_t GetNRepetitions() const
std::uint32_t fOnDiskTypeChecksum
TClass checksum cached from the descriptor after a call to ConnectPageSource().
const std::string & GetTypeName() const
ROOT::ENTupleStructure fStructure
The role of this field in the data model structure.
void GenerateColumnsImpl(const ColumnRepresentation_t &representation, std::uint16_t representationIndex)
Helpers for generating columns.
RValue BindValue(std::shared_ptr< void > objPtr)
Creates a value from a memory location with an already constructed object.
void SetDescription(std::string_view description)
static void CallReadOn(RFieldBase &other, RNTupleLocalIndex localIndex, void *to)
ROOT::DescriptorId_t GetOnDiskId() const
std::uint32_t fOnDiskTypeVersion
C++ type version cached from the descriptor after a call to ConnectPageSource()
std::unique_ptr< RFieldBase > Clone(std::string_view newName) const
Copies the field and its subfields using a possibly new name and a new, unconnected set of columns.
std::string fName
The field name relative to its parent field.
void CommitCluster()
Flushes data from active columns to disk and calls CommitClusterImpl()
void ConnectPageSource(ROOT::Internal::RPageSource &pageSource)
Connects the field and its subfield tree to the given page source.
static void CallConstructValueOn(const RFieldBase &other, void *where)
Allow derived classes to call ConstructValue(void *) and GetDeleter() on other (sub)fields.
EState GetState() const
void GenerateColumnsImpl()
For writing, use the currently set column representative.
RResult< void > EnsureMatchingTypePrefix(const RNTupleDescriptor &desc, const std::vector< std::string > &prefixes) const
Many fields accept a range of type prefixes for schema evolution, e.g.
virtual ROOT::RExtraTypeInfoDescriptor GetExtraTypeInfo() const
virtual std::uint32_t GetTypeVersion() const
Indicates an evolution of the C++ type itself.
void * CreateObjectRawPtr() const
Factory method for the field's type. The caller owns the returned pointer.
void Read(ROOT::NTupleSize_t globalIndex, void *to)
Populate a single value with data from the field.
std::uint32_t GetOnDiskTypeChecksum() const
Return checksum stored in the field descriptor; only valid after a call to ConnectPageSource(),...
RFieldBase(const RFieldBase &)=delete
virtual bool HasExtraTypeInfo() const
bool fIsArtificial
A field that is not backed on disk but computed, e.g.
virtual std::size_t ReadBulkImpl(const RBulkSpec &bulkSpec)
General implementation of bulk read.
bool HasDefaultColumnRepresentative() const
Whether or not an explicit column representative was set.
Metadata stored for every field of an RNTuple.
The container field for an ntuple model, which itself has no physical representation.
Definition RField.hxx:58
The on-storage metadata of an RNTuple.
Addresses a column element or field item relative to a particular cluster, instead of a global NTuple...
ROOT::NTupleSize_t GetIndexInCluster() const
ROOT::DescriptorId_t GetClusterId() const
Used to loop over entries of collections in a single cluster.
Common user-tunable settings for storing RNTuples.
const_iterator begin() const
The class is used as a return type for operations that can fail; wraps a value of type T or an RError...
Definition RError.hxx:197
void CallCommitClusterOnField(RFieldBase &)
void CallConnectPageSourceOnField(RFieldBase &, ROOT::Internal::RPageSource &)
ROOT::RResult< std::unique_ptr< ROOT::RFieldBase > > CallFieldBaseCreate(const std::string &fieldName, const std::string &typeName, const ROOT::RCreateFieldOptions &options, const ROOT::RNTupleDescriptor *desc, ROOT::DescriptorId_t fieldId)
void CallFlushColumnsOnField(RFieldBase &)
bool IsMatchingFieldType(const std::string &actualTypeName)
Helper to check if a given type name is the one expected of Field<T>.
Definition RField.hxx:558
std::string GetRenormalizedTypeName(const std::string &metaNormalizedName)
Given a type name normalized by ROOT meta, renormalize it for RNTuple. E.g., insert std::prefix.
constexpr bool IsValidAlignment(std::size_t align) noexcept
Return true if align is a valid C++ alignment value: strictly positive and a power of two.
Definition BitUtils.hxx:36
void CallConnectPageSinkOnField(RFieldBase &, ROOT::Internal::RPageSink &, ROOT::NTupleSize_t firstEntry=0)
std::uint64_t DescriptorId_t
Distriniguishes elements of the same type within a descriptor, e.g. different fields.
std::uint64_t NTupleSize_t
Integer type long enough to hold the maximum number of entries in a column.
constexpr DescriptorId_t kInvalidDescriptorId
ENTupleStructure
The fields in the RNTuple data model tree can carry different structural information about the type s...
A pair of scoped + meta entry used by the RNTupleAttrSetWriter.
static void SetPrimaryColumnRepresentation(RFieldBase &field, std::uint16_t newRepresentationIdx)
Input parameter to RFieldBase::ReadBulk() and RFieldBase::ReadBulkImpl().
static const std::size_t kAllSet
Possible return value of ReadBulk() and ReadBulkImpl(), which indicates that the full bulk range was ...
RNTupleLocalIndex fFirstIndex
Start of the bulk range.
void * fValues
The destination area, which has to be an array of valid objects of the correct type large enough to h...
std::size_t fCount
Size of the bulk range.
bool * fMaskAvail
A bool array of size fCount, indicating the valid values in fValues.
const bool * fMaskReq
A bool array of size fCount, indicating the required values in the requested range.
std::vector< unsigned char > * fAuxData
Reference to memory owned by the RBulkValues class.
Used in the return value of the Check() method.
std::string fFieldName
Qualified field name causing the error.
std::string fTypeName
Type name corresponding to the (sub)field.
std::string fErrMsg
Cause of the failure, e.g. unsupported type.
Position(FieldPtr_t fieldPtr, int idxInParent)
std::conditional_t< IsConstT, const RFieldBase *, RFieldBase * > FieldPtr_t
RSharedPtrDeleter(std::unique_ptr< RFieldBase::RDeleter > deleter)
std::unique_ptr< RFieldBase::RDeleter > fDeleter