Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RPageSourceFriends.cxx
Go to the documentation of this file.
1/// \file RPageSourceFriends.cxx
2/// \ingroup NTuple ROOT7
3/// \author Jakob Blomer <jblomer@cern.ch>
4/// \date 2019-08-10
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-2020, 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/RCluster.hxx>
17#include <ROOT/RError.hxx>
18#include <ROOT/RLogger.hxx>
21
22#include <utility>
23
25 std::span<std::unique_ptr<RPageSource>> sources)
26 : RPageSource(ntupleName, RNTupleReadOptions()), fMetrics(std::string(ntupleName))
27{
28 for (auto &s : sources) {
29 fSources.emplace_back(std::move(s));
30 fMetrics.ObserveMetrics(fSources.back()->GetMetrics());
31 }
32}
33
35
37 std::size_t originIdx,
38 const RFieldDescriptor &originField,
39 DescriptorId_t virtualParent,
40 const std::string &virtualName)
41{
42 auto virtualFieldId = fNextId++;
43 auto virtualField =
44 RFieldDescriptorBuilder(originField).FieldId(virtualFieldId).FieldName(virtualName).MakeDescriptor().Unwrap();
45 fBuilder.AddField(virtualField);
46 fBuilder.AddFieldLink(virtualParent, virtualFieldId);
47 fIdBiMap.Insert({originIdx, originField.GetId()}, virtualFieldId);
48
49 for (const auto &f : originDesc.GetFieldIterable(originField))
50 AddVirtualField(originDesc, originIdx, f, virtualFieldId, f.GetFieldName());
51
52 for (const auto &c: originDesc.GetColumnIterable(originField)) {
53 auto physicalId = c.IsAliasColumn() ? fIdBiMap.GetVirtualId({originIdx, c.GetPhysicalId()}) : fNextId;
54 fBuilder.AddColumn(fNextId, physicalId, virtualFieldId, c.GetModel(), c.GetIndex());
55 fIdBiMap.Insert({originIdx, c.GetLogicalId()}, fNextId);
56 fNextId++;
57 }
58}
59
61{
62 fBuilder.SetNTuple(fNTupleName, "");
63 fBuilder.AddField(
64 RFieldDescriptorBuilder().FieldId(0).Structure(ENTupleStructure::kRecord).MakeDescriptor().Unwrap());
65
66 for (std::size_t i = 0; i < fSources.size(); ++i) {
67 fSources[i]->Attach();
68
69 if (fSources[i]->GetNEntries() != fSources[0]->GetNEntries()) {
70 fNextId = 1;
71 fIdBiMap.Clear();
72 fBuilder.Reset();
73 throw RException(R__FAIL("mismatch in the number of entries of friend RNTuples"));
74 }
75
76 auto descriptorGuard = fSources[i]->GetSharedDescriptorGuard();
77 for (unsigned j = 0; j < i; ++j) {
78 if (fSources[j]->GetSharedDescriptorGuard()->GetName() == descriptorGuard->GetName()) {
79 fNextId = 1;
80 fIdBiMap.Clear();
81 fBuilder.Reset();
82 throw RException(R__FAIL("duplicate names of friend RNTuples"));
83 }
84 }
85 AddVirtualField(descriptorGuard.GetRef(), i, descriptorGuard->GetFieldZero(), 0, descriptorGuard->GetName());
86
87 for (const auto &cg : descriptorGuard->GetClusterGroupIterable()) {
88 auto clusterGroupBuilder = Internal::RClusterGroupDescriptorBuilder::FromSummary(cg);
89 clusterGroupBuilder.ClusterGroupId(fNextId);
90 fBuilder.AddClusterGroup(clusterGroupBuilder.MoveDescriptor().Unwrap());
91 fIdBiMap.Insert({i, cg.GetId()}, fNextId);
92 fNextId++;
93 }
94
95 for (const auto &c : descriptorGuard->GetClusterIterable()) {
96 RClusterDescriptorBuilder clusterBuilder;
97 clusterBuilder.ClusterId(fNextId).FirstEntryIndex(c.GetFirstEntryIndex()).NEntries(c.GetNEntries());
98 for (auto originColumnId : c.GetColumnIds()) {
99 DescriptorId_t virtualColumnId = fIdBiMap.GetVirtualId({i, originColumnId});
100
101 auto pageRange = c.GetPageRange(originColumnId).Clone();
102 pageRange.fPhysicalColumnId = virtualColumnId;
103
104 auto firstElementIndex = c.GetColumnRange(originColumnId).fFirstElementIndex;
105 auto compressionSettings = c.GetColumnRange(originColumnId).fCompressionSettings;
106
107 clusterBuilder.CommitColumnRange(virtualColumnId, firstElementIndex, compressionSettings, pageRange);
108 }
109 fBuilder.AddCluster(clusterBuilder.MoveDescriptor().Unwrap());
110 fIdBiMap.Insert({i, c.GetId()}, fNextId);
111 fNextId++;
112 }
113 }
114
115 fBuilder.EnsureValidDescriptor();
116 return fBuilder.MoveDescriptor();
117}
118
119std::unique_ptr<ROOT::Experimental::Internal::RPageSource>
121{
122 std::vector<std::unique_ptr<RPageSource>> cloneSources;
123 cloneSources.reserve(fSources.size());
124 for (const auto &f : fSources)
125 cloneSources.emplace_back(f->Clone());
126 return std::make_unique<RPageSourceFriends>(fNTupleName, cloneSources);
127}
128
131{
132 auto originFieldId = fIdBiMap.GetOriginId(fieldId);
133 fSources[originFieldId.fSourceIdx]->AddColumn(originFieldId.fId, column);
134 return RPageSource::AddColumn(fieldId, column);
135}
136
138{
139 RPageSource::DropColumn(columnHandle);
140 auto originColumnId = fIdBiMap.GetOriginId(columnHandle.fPhysicalId);
141 columnHandle.fPhysicalId = originColumnId.fId;
142 fSources[originColumnId.fSourceIdx]->DropColumn(columnHandle);
143}
144
147{
148 auto virtualColumnId = columnHandle.fPhysicalId;
149 auto originColumnId = fIdBiMap.GetOriginId(virtualColumnId);
150 columnHandle.fPhysicalId = originColumnId.fId;
151
152 auto page = fSources[originColumnId.fSourceIdx]->PopulatePage(columnHandle, globalIndex);
153
154 auto virtualClusterId = fIdBiMap.GetVirtualId({originColumnId.fSourceIdx, page.GetClusterInfo().GetId()});
155 page.ChangeIds(virtualColumnId, virtualClusterId);
156
157 return page;
158}
159
162{
163 auto virtualColumnId = columnHandle.fPhysicalId;
164 auto originColumnId = fIdBiMap.GetOriginId(virtualColumnId);
165 RClusterIndex originClusterIndex(
166 fIdBiMap.GetOriginId(clusterIndex.GetClusterId()).fId,
167 clusterIndex.GetIndex());
168 columnHandle.fPhysicalId = originColumnId.fId;
169
170 auto page = fSources[originColumnId.fSourceIdx]->PopulatePage(columnHandle, originClusterIndex);
171
172 page.ChangeIds(virtualColumnId, clusterIndex.GetClusterId());
173 return page;
174}
175
177 RClusterIndex clusterIndex,
178 RSealedPage &sealedPage)
179{
180 auto originColumnId = fIdBiMap.GetOriginId(physicalColumnId);
181 RClusterIndex originClusterIndex(
182 fIdBiMap.GetOriginId(clusterIndex.GetClusterId()).fId,
183 clusterIndex.GetIndex());
184
185 fSources[originColumnId.fSourceIdx]->LoadSealedPage(physicalColumnId, originClusterIndex, sealedPage);
186}
187
189{
190 if (page.IsNull())
191 return;
192 auto sourceIdx = fIdBiMap.GetOriginId(page.GetClusterInfo().GetId()).fSourceIdx;
193 fSources[sourceIdx]->ReleasePage(page);
194}
195
196std::vector<std::unique_ptr<ROOT::Experimental::Internal::RCluster>>
198{
199 // The virtual friends page source does not pre-load any clusters itself. However, the underlying page sources
200 // that are combined may well do it.
201 return std::vector<std::unique_ptr<ROOT::Experimental::Internal::RCluster>>(clusterKeys.size());
202}
#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 f(i)
Definition RSha256.hxx:104
#define c(i)
Definition RSha256.hxx:101
void ObserveMetrics(RNTupleMetrics &observee)
A helper class for piece-wise construction of an RClusterDescriptor.
RResult< RClusterDescriptor > MoveDescriptor()
Move out the full cluster descriptor including page locations.
RClusterDescriptorBuilder & ClusterId(DescriptorId_t clusterId)
RClusterDescriptorBuilder & FirstEntryIndex(std::uint64_t firstEntryIndex)
RResult< void > CommitColumnRange(DescriptorId_t physicalId, std::uint64_t firstElementIndex, std::uint32_t compressionSettings, const RClusterDescriptor::RPageRange &pageRange)
static RClusterGroupDescriptorBuilder FromSummary(const RClusterGroupDescriptor &clusterGroupDesc)
A helper class for piece-wise construction of an RFieldDescriptor.
RResult< RFieldDescriptor > MakeDescriptor() const
Attempt to make a field descriptor.
RFieldDescriptorBuilder & FieldName(const std::string &fieldName)
RFieldDescriptorBuilder & FieldId(DescriptorId_t fieldId)
std::vector< std::unique_ptr< RCluster > > LoadClusters(std::span< RCluster::RKey > clusterKeys) final
Populates all the pages of the given cluster ids and columns; it is possible that some columns do not...
RPageSourceFriends(std::string_view ntupleName, std::span< std::unique_ptr< RPageSource > > sources)
void LoadSealedPage(DescriptorId_t physicalColumnId, RClusterIndex clusterIndex, RSealedPage &sealedPage) final
Read the packed and compressed bytes of a page into the memory buffer provided by selaedPage.
ColumnHandle_t AddColumn(DescriptorId_t fieldId, const RColumn &column) final
Register a new column.
std::vector< std::unique_ptr< RPageSource > > fSources
RPage PopulatePage(ColumnHandle_t columnHandle, NTupleSize_t globalIndex) final
Allocates and fills a page that contains the index-th element.
void ReleasePage(RPage &page) final
Every page store needs to be able to free pages it handed out.
std::unique_ptr< RPageSource > Clone() const final
Open the same storage multiple time, e.g. for reading in multiple threads.
void DropColumn(ColumnHandle_t columnHandle) final
Unregisters a column.
void AddVirtualField(const RNTupleDescriptor &originDesc, std::size_t originIdx, const RFieldDescriptor &originField, DescriptorId_t virtualParent, const std::string &virtualName)
Abstract interface to read data from an ntuple.
void DropColumn(ColumnHandle_t columnHandle) override
Unregisters a column.
ColumnHandle_t AddColumn(DescriptorId_t fieldId, const RColumn &column) override
Register a new column.
A page is a slice of a column that is mapped into memory.
Definition RPage.hxx:41
const RClusterInfo & GetClusterInfo() const
Definition RPage.hxx:92
Addresses a column element or field item relative to a particular cluster, instead of a global NTuple...
DescriptorId_t GetClusterId() const
ClusterSize_t::ValueType GetIndex() const
Base class for all ROOT issued exceptions.
Definition RError.hxx:78
Meta-data stored for every field of an ntuple.
The on-storage meta-data of an ntuple.
RFieldDescriptorIterable GetFieldIterable(const RFieldDescriptor &fieldDesc) const
RColumnDescriptorIterable GetColumnIterable() const
Common user-tunable settings for reading ntuples.
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.
A sealed page contains the bytes of a page as written to storage (packed & compressed).