24 : fModel(model), fIndex(
index)
30 if (!fWritePage[0].IsNull())
31 fPageSink->ReleasePage(fWritePage[0]);
32 if (!fWritePage[1].IsNull())
33 fPageSink->ReleasePage(fWritePage[1]);
34 if (!fReadPage.IsNull())
35 fPageSource->ReleasePage(fReadPage);
37 fPageSink->DropColumn(fHandleSink);
39 fPageSource->DropColumn(fHandleSource);
45 switch (pageStorage->
GetType()) {
47 fFirstElementIndex = firstElementIndex;
48 fPageSink =
static_cast<RPageSink*
>(pageStorage);
49 fHandleSink = fPageSink->
AddColumn(fieldId, *
this);
50 fApproxNElementsPerPage = fPageSink->GetWriteOptions().GetApproxUnzippedPageSize() / fElement->GetSize();
51 if (fApproxNElementsPerPage < 2)
54 fWritePage[0] = fPageSink->ReservePage(fHandleSink, fApproxNElementsPerPage + fApproxNElementsPerPage / 2);
55 fWritePage[1] = fPageSink->ReservePage(fHandleSink, fApproxNElementsPerPage + fApproxNElementsPerPage / 2);
58 fPageSource =
static_cast<RPageSource*
>(pageStorage);
59 fHandleSource = fPageSource->
AddColumn(fieldId, *
this);
60 fNElements = fPageSource->GetNElements(fHandleSource);
61 fColumnIdSource = fPageSource->GetColumnId(fHandleSource);
63 auto descriptorGuard = fPageSource->GetSharedDescriptorGuard();
64 fFirstElementIndex = descriptorGuard->GetColumnDescriptor(fColumnIdSource).GetFirstElementIndex();
74 auto otherIdx = 1 - fWritePageIdx;
75 if (fWritePage[fWritePageIdx].IsEmpty() && fWritePage[otherIdx].IsEmpty())
78 if ((fWritePage[fWritePageIdx].GetNElements() < fApproxNElementsPerPage / 2) && !fWritePage[otherIdx].IsEmpty()) {
80 auto &thisPage = fWritePage[fWritePageIdx];
81 void *dst = fWritePage[otherIdx].GrowUnchecked(thisPage.GetNElements());
82 memcpy(dst, thisPage.GetBuffer(), thisPage.GetElementSize() * thisPage.GetNElements());
84 std::swap(fWritePageIdx, otherIdx);
87 R__ASSERT(fWritePage[otherIdx].IsEmpty());
88 fPageSink->CommitPage(fHandleSink, fWritePage[fWritePageIdx]);
89 fWritePage[fWritePageIdx].Reset(fNElements);
94 fPageSource->ReleasePage(fReadPage);
95 fReadPage = fPageSource->PopulatePage(fHandleSource,
index);
101 fPageSource->ReleasePage(fReadPage);
102 fReadPage = fPageSource->PopulatePage(fHandleSource, clusterIndex);
103 R__ASSERT(fReadPage.Contains(clusterIndex));
#define R__FAIL(msg)
Short-hand to return an RResult<T> in an error state; the RError is implicitly converted into RResult...
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
void Connect(DescriptorId_t fieldId, RPageStorage *pageStorage, NTupleSize_t firstElementIndex=0U)
Connect the column to a page storage.
void MapPage(const NTupleSize_t index)
RColumn(const RColumnModel &model, std::uint32_t index)
Abstract interface to write data into an ntuple.
ColumnHandle_t AddColumn(DescriptorId_t fieldId, const RColumn &column) final
Register a new column.
Abstract interface to read data from an ntuple.
ColumnHandle_t AddColumn(DescriptorId_t fieldId, const RColumn &column) override
Register a new column.
Common functionality of an ntuple storage for both reading and writing.
virtual EPageStorageType GetType()=0
Whether the concrete implementation is a sink or a source.
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.
Base class for all ROOT issued exceptions.
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.