33namespace Experimental {
103 template <
typename CppT>
106 auto column = std::unique_ptr<RColumn>(
new RColumn(model,
index));
107 column->fElement = RColumnElementBase::Generate<CppT>(model.
GetType());
141 for (
unsigned i = 0; i < count; ++i) {
227 template <
typename CppT>
233 template <
typename CppT>
240 template <
typename CppT>
247 return reinterpret_cast<CppT*
>(
252 template <
typename CppT>
260 return reinterpret_cast<CppT*
>(
#define R__unlikely(expr)
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t index
A column element encapsulates the translation between basic C++ types and their column representation...
RColumn(const RColumn &)=delete
RPageStorage::ColumnHandle_t GetHandleSink() const
void Read(RClusterIndex clusterIndex, void *to)
void ConnectPageSink(DescriptorId_t fieldId, RPageSink &pageSink, NTupleSize_t firstElementIndex=0U)
Connect the column to a page sink.
std::unique_ptr< RColumnElementBase > fElement
Used to pack and unpack pages on writing/reading.
NTupleSize_t GetGlobalIndex(RClusterIndex clusterIndex)
RColumnElementBase * GetElement() const
void GetCollectionInfo(RClusterIndex clusterIndex, RClusterIndex *collectionStart, ClusterSize_t *collectionSize)
ColumnId_t fColumnIdSource
The column id is used to find matching pages with content when reading.
void ReadV(RClusterIndex clusterIndex, const ClusterSize_t::ValueType count, void *to)
int fWritePageIdx
Index of the current write page.
CppT * Map(const NTupleSize_t globalIndex)
RPageSource * GetPageSource() const
RPageSource * fPageSource
void AppendV(const void *from, std::size_t count)
void Append(const void *from)
CppT * Map(RClusterIndex clusterIndex)
CppT * MapV(RClusterIndex clusterIndex, NTupleSize_t &nItems)
RColumn & operator=(const RColumn &)=delete
RPageStorage::ColumnHandle_t fHandleSource
void SwapWritePagesIfFull()
Used in Append() and AppendV() to switch pages when the main page reached the target size The other p...
NTupleSize_t fNElements
The number of elements written resp. available in the column.
void ReadV(const NTupleSize_t globalIndex, const ClusterSize_t::ValueType count, void *to)
void Read(const NTupleSize_t globalIndex, void *to)
void MapPage(const NTupleSize_t index)
std::uint32_t fIndex
Columns belonging to the same field are distinguished by their order.
std::uint32_t GetIndex() const
ColumnId_t GetColumnIdSource() const
void ConnectPageSource(DescriptorId_t fieldId, RPageSource &pageSource)
Connect the column to a page source.
std::uint32_t fApproxNElementsPerPage
For writing, the targeted number of elements, given by fApproxNElementsPerPage (in the write options)...
RPageSink * GetPageSink() const
void GetCollectionInfo(const NTupleSize_t globalIndex, RClusterIndex *collectionStart, ClusterSize_t *collectionSize)
For offset columns only, look at the two adjacent values that define a collection's coordinates.
CppT * MapV(const NTupleSize_t globalIndex, NTupleSize_t &nItems)
RColumn(const RColumnModel &model, std::uint32_t index)
static std::unique_ptr< RColumn > Create(const RColumnModel &model, std::uint32_t index)
const RColumnModel & GetModel() const
void GetSwitchInfo(NTupleSize_t globalIndex, RClusterIndex *varIndex, std::uint32_t *tag)
Get the currently active cluster id.
RPageStorage::ColumnHandle_t fHandleSink
void FlushShadowWritePage()
When the main write page surpasses the 50% fill level, the (full) shadow write page gets flushed.
RPage fWritePage[2]
A set of open pages into which new elements are being written.
NTupleSize_t GetNElements() const
NTupleSize_t GetFirstElementIndex() const
RPageStorage::ColumnHandle_t GetHandleSource() const
RClusterIndex GetClusterIndex(NTupleSize_t globalIndex)
RPage fReadPage
The currently mapped page for reading.
NTupleSize_t fFirstElementIndex
Global index of the first element in this column; usually == 0, unless it is a deferred column.
Abstract interface to write data into an ntuple.
virtual void CommitPage(ColumnHandle_t columnHandle, const RPage &page)=0
Write a page to the storage. The column must have been added before.
Abstract interface to read data from an ntuple.
A page is a slice of a column that is mapped into memory.
void Reset(NTupleSize_t rangeFirst)
Forget all currently stored elements (size == 0) and set a new starting index.
void * GrowUnchecked(ClusterSize_t::ValueType nElements)
Called during writing: returns a pointer after the last element and increases the element counter in ...
ClusterSize_t::ValueType GetClusterRangeFirst() const
NTupleSize_t GetGlobalRangeFirst() const
const RClusterInfo & GetClusterInfo() const
std::uint32_t GetNElements() const
bool Contains(NTupleSize_t globalIndex) const
ClusterSize_t::ValueType GetClusterRangeLast() const
NTupleSize_t GetGlobalRangeLast() const
Addresses a column element or field item relative to a particular cluster, instead of a global NTuple...
Holds the static meta-data of an RNTuple column.
EColumnType GetType() const
constexpr ColumnId_t kInvalidColumnId
std::uint64_t NTupleSize_t
Integer type long enough to hold the maximum number of entries in a column.
std::uint64_t DescriptorId_t
Distriniguishes elements of the same type within a descriptor, e.g. different fields.
std::int64_t ColumnId_t
Uniquely identifies a physical column within the scope of the current process, used to tag pages.
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Wrap the integer in a struct in order to avoid template specialization clash with std::uint64_t.