Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RColumn.cxx
Go to the documentation of this file.
1/// \file RColumn.cxx
2/// \ingroup NTuple ROOT7
3/// \author Jakob Blomer <jblomer@cern.ch>
4/// \date 2018-10-04
5/// \warning This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback
6/// is welcome!
7
8/*************************************************************************
9 * Copyright (C) 1995-2019, Rene Brun and Fons Rademakers. *
10 * All rights reserved. *
11 * *
12 * For the licensing terms see $ROOTSYS/LICENSE. *
13 * For the list of contributors see $ROOTSYS/README/CREDITS. *
14 *************************************************************************/
15
16#include <ROOT/RColumn.hxx>
17#include <ROOT/RColumnModel.hxx>
19#include <ROOT/RPageStorage.hxx>
20
21#include <TError.h>
22
24 : fModel(model), fIndex(index)
25{
26}
27
29{
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);
36 if (fHandleSink)
37 fPageSink->DropColumn(fHandleSink);
38 if (fHandleSource)
39 fPageSource->DropColumn(fHandleSource);
40}
41
43 NTupleSize_t firstElementIndex)
44{
45 fPageSink = &pageSink; // the page sink initializes fWritePage on AddColumn
46 fFirstElementIndex = firstElementIndex;
47 fHandleSink = fPageSink->AddColumn(fieldId, *this);
48 fApproxNElementsPerPage = fPageSink->GetWriteOptions().GetApproxUnzippedPageSize() / fElement->GetSize();
49 if (fApproxNElementsPerPage < 2)
50 throw RException(R__FAIL("page size too small for writing"));
51 // We now have 0 < fApproxNElementsPerPage / 2 < fApproxNElementsPerPage
52
54 // Allocate two pages that are larger by 50% to accomodate merging a small tail page.
55 fWritePage[0] = fPageSink->ReservePage(fHandleSink, fApproxNElementsPerPage + fApproxNElementsPerPage / 2);
56 fWritePage[1] = fPageSink->ReservePage(fHandleSink, fApproxNElementsPerPage + fApproxNElementsPerPage / 2);
57 } else {
58 // Allocate only a single page; small tail pages will not be merged.
59 fWritePage[0] = fPageSink->ReservePage(fHandleSink, fApproxNElementsPerPage);
60 }
61}
62
64{
65 fPageSource = &pageSource;
66 fHandleSource = fPageSource->AddColumn(fieldId, *this);
67 fNElements = fPageSource->GetNElements(fHandleSource);
68 fColumnIdSource = fPageSource->GetColumnId(fHandleSource);
69 {
70 auto descriptorGuard = fPageSource->GetSharedDescriptorGuard();
71 fFirstElementIndex = descriptorGuard->GetColumnDescriptor(fColumnIdSource).GetFirstElementIndex();
72 }
73}
74
76{
77 auto otherIdx = 1 - fWritePageIdx;
78 if (fWritePage[fWritePageIdx].IsEmpty() && fWritePage[otherIdx].IsEmpty())
79 return;
80
81 if ((fWritePage[fWritePageIdx].GetNElements() < fApproxNElementsPerPage / 2) && !fWritePage[otherIdx].IsEmpty()) {
82 // Small tail page: merge with previously used page
83 auto &thisPage = fWritePage[fWritePageIdx];
84 R__ASSERT(fWritePage[otherIdx].GetMaxElements() >= fWritePage[otherIdx].GetNElements() + thisPage.GetNElements());
85 void *dst = fWritePage[otherIdx].GrowUnchecked(thisPage.GetNElements());
86 memcpy(dst, thisPage.GetBuffer(), thisPage.GetNBytes());
87 thisPage.Reset(0);
88 std::swap(fWritePageIdx, otherIdx);
89 }
90
91 R__ASSERT(fWritePage[otherIdx].IsEmpty());
92 fPageSink->CommitPage(fHandleSink, fWritePage[fWritePageIdx]);
93 fWritePage[fWritePageIdx].Reset(fNElements);
94}
95
97{
98 fPageSource->ReleasePage(fReadPage);
99 // Set fReadPage to an empty page before populating it to prevent double destruction of the previously page in case
100 // the page population fails.
101 fReadPage = RPage();
102 fReadPage = fPageSource->PopulatePage(fHandleSource, index);
103 R__ASSERT(fReadPage.Contains(index));
104}
105
107{
108 fPageSource->ReleasePage(fReadPage);
109 // Set fReadPage to an empty page before populating it to prevent double destruction of the previously page in case
110 // the page population fails.
111 fReadPage = RPage();
112 fReadPage = fPageSource->PopulatePage(fHandleSource, clusterIndex);
113 R__ASSERT(fReadPage.Contains(clusterIndex));
114}
#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:290
#define R__ASSERT(e)
Checks condition e and reports a fatal error if it's false.
Definition TError.h:125
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 ConnectPageSink(DescriptorId_t fieldId, RPageSink &pageSink, NTupleSize_t firstElementIndex=0U)
Connect the column to a page sink.
Definition RColumn.cxx:42
void MapPage(const NTupleSize_t index)
Definition RColumn.cxx:96
void ConnectPageSource(DescriptorId_t fieldId, RPageSource &pageSource)
Connect the column to a page source.
Definition RColumn.cxx:63
RColumn(const RColumnModel &model, std::uint32_t index)
Definition RColumn.cxx:23
Abstract interface to write data into an ntuple.
const RNTupleWriteOptions & GetWriteOptions() const
Returns the sink's write options.
Abstract interface to read data from an ntuple.
ColumnHandle_t AddColumn(DescriptorId_t fieldId, const RColumn &column) override
Register a new column.
virtual ColumnHandle_t AddColumn(DescriptorId_t fieldId, const RColumn &column)=0
Register a new column.
A page is a slice of a column that is mapped into memory.
Definition RPage.hxx:41
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.
Definition RError.hxx:78
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.