68std::unique_ptr<ROOT::RFieldBase>
72 auto streamerField = std::make_unique<ROOT::RStreamerField>(GetFieldName(), GetTypeName());
81 auto invalidField = std::make_unique<ROOT::RInvalidField>(GetFieldName(), GetTypeName(),
"",
86 throw RException(
R__FAIL(
"unexpected on-disk field structure value for field \"" + GetFieldName() +
"\""));
91 if (GetTypeName().empty()) {
92 switch (GetStructure()) {
94 std::vector<std::unique_ptr<ROOT::RFieldBase>>
memberFields;
96 for (
auto id : fLinkIds) {
108 if (fLinkIds.size() != 1) {
109 throw RException(
R__FAIL(
"unsupported untyped collection for field \"" + GetFieldName() +
"\""));
118 default:
throw RException(
R__FAIL(
"unsupported untyped field structure for field \"" + GetFieldName() +
"\""));
124 const auto &typeName = GetTypeAlias().empty() ? GetTypeName() : GetTypeAlias();
129 field->SetOnDiskId(fFieldId);
144 return std::make_unique<ROOT::RInvalidField>(GetFieldName(), GetTypeName(),
ex.what(),
155 return fLogicalColumnId ==
other.fLogicalColumnId && fPhysicalColumnId ==
other.fPhysicalColumnId &&
156 fBitsOnStorage ==
other.fBitsOnStorage && fType ==
other.fType && fFieldId ==
other.fFieldId &&
157 fIndex ==
other.fIndex && fRepresentationIndex ==
other.fRepresentationIndex &&
158 fValueRange ==
other.fValueRange;
181 if (!fCumulativeNElements) {
185 for (
const auto &pi : fPageInfos) {
195 const auto N = fCumulativeNElements->size();
199 std::size_t left = 0;
200 std::size_t right =
N - 1;
202 while (left <= right) {
232 std::accumulate(fPageInfos.begin(), fPageInfos.end(), 0U,
233 [](std::size_t
n,
const auto &
pageInfo) { return n + pageInfo.GetNElements(); });
256 std::make_move_iterator(fPageInfos.end()));
263 return fClusterId ==
other.fClusterId && fFirstEntryIndex ==
other.fFirstEntryIndex &&
264 fNEntries ==
other.fNEntries && fColumnRanges ==
other.fColumnRanges && fPageRanges ==
other.fPageRanges;
270 for (
const auto &
pr : fPageRanges) {
271 for (
const auto &pi :
pr.second.GetPageInfos()) {
272 nbytes += pi.GetLocator().GetNBytesOnStorage();
285 for (
const auto &
d : fPageRanges)
294 return fContentId ==
other.fContentId && fTypeName ==
other.fTypeName && fTypeVersion ==
other.fTypeVersion;
317 return fName ==
other.fName &&
318 fDescription ==
other.fDescription &&
319 fNEntries ==
other.fNEntries &&
320 fGeneration ==
other.fGeneration &&
321 fFieldZeroId ==
other.fFieldZeroId &&
322 fFieldDescriptors ==
other.fFieldDescriptors &&
323 fColumnDescriptors ==
other.fColumnDescriptors &&
324 fClusterGroupDescriptors ==
other.fClusterGroupDescriptors &&
325 fClusterDescriptors ==
other.fClusterDescriptors;
332 for (
const auto &cd : fClusterDescriptors) {
343std::vector<ROOT::Internal::RNTupleClusterBoundaries>
346 std::vector<Internal::RNTupleClusterBoundaries> boundaries;
347 boundaries.reserve(
desc.GetNClusters());
364 if (
posDot != std::string::npos) {
394 return fVersionMajor == 0 && fVersionMinor == 0 && fVersionPatch < 1;
399 std::string typeName =
fieldDesc.GetTypeName();
401 if (FieldTypeNamesMayNeedFixup()) {
410 return FindFieldId(
fieldName, GetFieldZeroId());
418 if (
itr == fFieldDescriptors.cend())
423 if (
itr->second.GetLogicalColumnIds().size() <= idx)
425 return itr->second.GetLogicalColumnIds()[idx];
435 return GetColumnDescriptor(
logicalId).GetPhysicalId();
441 if (GetNClusterGroups() == 0)
447 std::size_t
cgRight = GetNClusterGroups() - 1;
450 const auto &
clusterIds = GetClusterGroupDescriptor(fSortedClusterGroupIds[
cgMidpoint]).GetClusterIds();
503 if (GetNClusterGroups() == 0)
509 std::size_t
cgRight = GetNClusterGroups() - 1;
512 const auto &
cgDesc = GetClusterGroupDescriptor(fSortedClusterGroupIds[
cgMidpoint]);
573 return FindClusterId(
clusterDesc.GetFirstEntryIndex() - 1);
576std::vector<ROOT::DescriptorId_t>
579 std::vector<ROOT::DescriptorId_t>
fields;
580 for (
const auto fieldId : fFieldIdsOrder) {
581 if (fFieldIdsLookup.count(
desc.GetFieldDescriptor(
fieldId).GetParentId()) == 0)
589 : fNTuple(
ntuple), fColumns(
field.GetLogicalColumnIds())
614 std::vector<std::uint64_t>
result;
615 unsigned int base = 0;
616 std::uint64_t flags = 0;
618 if ((
f > 0) && ((
f % 64) == 0))
620 while (
f > base + 64) {
621 result.emplace_back(flags);
629 flags |= std::uint64_t(1) <<
f;
631 result.emplace_back(flags);
640 return R__FAIL(
"invalid attempt to add details of unknown cluster group");
641 if (iter->second.HasClusterDetails())
642 return R__FAIL(
"invalid attempt to re-populate cluster group details");
644 return R__FAIL(
"mismatch of number of clusters");
651 return R__FAIL(
"invalid attempt to re-populate existing cluster");
655 return fClusterDescriptors[a].GetFirstEntryIndex() < fClusterDescriptors[b].GetFirstEntryIndex();
659 iter->second =
cgBuilder.MoveDescriptor().Unwrap();
667 return R__FAIL(
"invalid attempt to drop cluster details of unknown cluster group");
668 if (!iter->second.HasClusterDetails())
669 return R__FAIL(
"invalid attempt to drop details of cluster group summary");
671 for (
auto clusterId : iter->second.GetClusterIds())
673 iter->second = iter->second.CloneSummary();
701 "cannot create Model: descriptor contains unknown column types. Use 'SetForwardCompatible(true)' on the "
702 "RCreateModelOptions to create a partial model containing only the fields made up by known columns."));
704 auto fieldZero = std::make_unique<ROOT::RFieldZero>();
725 const auto cat =
invalid.GetCategory();
735 model->AddProjectedField(std::move(
field), [
this](
const std::string &
targetName) -> std::string {
739 model->AddField(std::move(
field));
771 std::vector<ROOT::DescriptorId_t>
toVisit;
815 return fClusterGroupId ==
other.fClusterGroupId && fClusterIds ==
other.fClusterIds &&
847 return R__FAIL(
"column ID mismatch");
848 if (fCluster.fColumnRanges.count(
physicalId) > 0)
849 return R__FAIL(
"column ID conflict");
851 for (
const auto &pi :
pageRange.fPageInfos) {
862 if (fCluster.fColumnRanges.count(
physicalId) > 0)
863 return R__FAIL(
"column ID conflict");
901 return R__FAIL(std::string(
"cannot find non-suppressed column for column ID ") +
902 std::to_string(
columnRange.GetPhysicalColumnId()) +
903 ", cluster ID: " + std::to_string(fCluster.GetId()));
925 if (!
desc.GetHeaderExtension())
934 for (const auto &c : desc.GetColumnIterable(fieldId)) {
935 const ROOT::DescriptorId_t physicalId = c.GetPhysicalId();
936 auto &columnRange = fCluster.fColumnRanges[physicalId];
941 if (columnRange.GetPhysicalColumnId() == ROOT::kInvalidDescriptorId) {
942 columnRange.SetPhysicalColumnId(physicalId);
943 columnRange.SetFirstElementIndex(0);
944 columnRange.SetNElements(0);
945 columnRange.SetIsSuppressed(c.IsSuppressedDeferredColumn());
950 if (c.IsDeferredColumn()) {
951 if (c.GetRepresentationIndex() == 0) {
956 columnRange.SetFirstElementIndex(fCluster.GetFirstEntryIndex() * nRepetitions);
957 columnRange.SetNElements(fCluster.GetNEntries() * nRepetitions);
964 const auto &field = desc.GetFieldDescriptor(fieldId);
965 const auto firstReprColumnId = field.GetLogicalColumnIds()[c.GetIndex()];
966 const auto &firstReprColumnRange = fCluster.fColumnRanges[firstReprColumnId];
967 columnRange.SetFirstElementIndex(firstReprColumnRange.GetFirstElementIndex());
968 columnRange.SetNElements(firstReprColumnRange.GetNElements());
970 if (!columnRange.IsSuppressed()) {
971 auto &pageRange = fCluster.fPageRanges[physicalId];
972 pageRange.fPhysicalColumnId = physicalId;
973 const auto element = ROOT::Internal::RColumnElementBase::Generate<void>(c.GetType());
974 pageRange.ExtendToFitColumnRange(columnRange, *element, ROOT::Internal::RPage::kPageZeroSize);
976 } else if (!columnRange.IsSuppressed()) {
977 fCluster.fPageRanges[physicalId].fPhysicalColumnId = physicalId;
989 return R__FAIL(
"unset cluster ID");
990 if (fCluster.fNEntries == 0)
991 return R__FAIL(
"empty cluster");
992 for (
auto &
pr : fCluster.fPageRanges) {
993 if (fCluster.fColumnRanges.count(
pr.first) == 0) {
994 return R__FAIL(
"missing column range");
996 pr.second.fCumulativeNElements.reset();
997 const auto nPages =
pr.second.fPageInfos.size();
999 pr.second.fCumulativeNElements = std::make_unique<std::vector<NTupleSize_t>>();
1000 pr.second.fCumulativeNElements->reserve(
nPages);
1002 for (
const auto &pi :
pr.second.fPageInfos) {
1003 sum += pi.GetNElements();
1004 pr.second.fCumulativeNElements->emplace_back(
sum);
1009 std::swap(
result, fCluster);
1031 return R__FAIL(
"unset cluster group ID");
1033 std::swap(
result, fClusterGroup);
1044 std::swap(
result, fExtraTypeInfo);
1052 if (fDescriptor.fFieldDescriptors.count(
fieldId) == 0)
1053 return R__FAIL(
"field with id '" + std::to_string(
fieldId) +
"' doesn't exist");
1060 return R__FAIL(
"unset or unsupported RNTuple epoch version");
1072 return R__FAIL(
"field with id '" + std::to_string(
fieldId) +
"' has an invalid parent id");
1090 return R__FAIL(
"field with id '" + std::to_string(
fieldId) +
"' has incomplete column representations");
1098 EnsureValidDescriptor().ThrowOnError();
1100 for (
const auto &[
id,
_] : fDescriptor.fClusterGroupDescriptors)
1101 fDescriptor.fSortedClusterGroupIds.emplace_back(
id);
1102 std::sort(fDescriptor.fSortedClusterGroupIds.begin(), fDescriptor.fSortedClusterGroupIds.end(),
1104 return fDescriptor.fClusterGroupDescriptors[a].GetMinEntry() <
1105 fDescriptor.fClusterGroupDescriptors[b].GetMinEntry();
1108 std::swap(
result, fDescriptor);
1134 fDescriptor.fName = std::string(
name);
1135 fDescriptor.fDescription = std::string(
description);
1142 fDescriptor.fFeatureFlags.insert(
flag);
1148 if (fDesc.fName.empty())
1149 return R__FAIL(
"attribute set name cannot be empty");
1150 if (fDesc.fAnchorLength == 0)
1151 return R__FAIL(
"invalid anchor length");
1153 return R__FAIL(
"invalid locator type");
1155 return std::move(fDesc);
1161 return R__FAIL(
"invalid logical column id");
1163 return R__FAIL(
"invalid physical column id");
1165 return R__FAIL(
"invalid field id, dangling column");
1174 if (fColumn.GetBitsOnStorage() <
minBits || fColumn.GetBitsOnStorage() >
maxBits)
1175 return R__FAIL(
"invalid column bit width");
1178 return fColumn.Clone();
1186 .TypeVersion(
field.GetTypeVersion())
1187 .FieldName(
field.GetFieldName())
1188 .FieldDescription(
field.GetDescription())
1189 .TypeName(
field.GetTypeName())
1190 .TypeAlias(
field.GetTypeAlias())
1191 .Structure(
field.GetStructure())
1192 .NRepetitions(
field.GetNRepetitions());
1205 return R__FAIL(
"invalid field id");
1208 return R__FAIL(
"invalid field structure");
1211 return R__FAIL(
"invalid SoA flag on non-collection field");
1219 if (fField.GetFieldName().empty()) {
1220 return R__FAIL(
"name cannot be empty string \"\"");
1223 return fField.Clone();
1229 if (fDescriptor.fHeaderExtension)
1230 fDescriptor.fHeaderExtension->MarkExtendedField(
fieldDesc);
1232 fDescriptor.fFieldZeroId =
fieldDesc.GetId();
1243 return R__FAIL(
"child field with id '" + std::to_string(
linkId) +
"' doesn't exist in NTuple");
1245 if (
linkId == fDescriptor.GetFieldZeroId()) {
1246 return R__FAIL(
"cannot make FieldZero a child field");
1249 auto parentId = fDescriptor.fFieldDescriptors.at(
linkId).GetParentId();
1251 return R__FAIL(
"field '" + std::to_string(
linkId) +
"' already has a parent ('" + std::to_string(
parentId) +
")");
1254 return R__FAIL(
"cannot make field '" + std::to_string(
fieldId) +
"' a child of itself");
1256 fDescriptor.fFieldDescriptors.at(
linkId).fParentId =
fieldId;
1257 fDescriptor.fFieldDescriptors.at(
fieldId).fLinkIds.push_back(
linkId);
1268 return R__FAIL(
"projected field with id '" + std::to_string(
targetId) +
"' doesn't exist in NTuple");
1270 if (
targetId == fDescriptor.GetFieldZeroId()) {
1271 return R__FAIL(
"cannot make FieldZero a projected field");
1274 return R__FAIL(
"cannot make field '" + std::to_string(
targetId) +
"' a projection of itself");
1276 if (fDescriptor.fFieldDescriptors.at(
sourceId).IsProjectedField()) {
1277 return R__FAIL(
"cannot make field '" + std::to_string(
targetId) +
"' a projection of an already projected field");
1282 return R__FAIL(
"field '" + std::to_string(
targetId) +
"' has already a projection source ('" +
1283 std::to_string(
targetDesc.GetProjectionSourceId()) +
")");
1302 if (
columnDesc.GetType() != fDescriptor.GetColumnDescriptor(
columnDesc.GetPhysicalId()).GetType())
1303 return R__FAIL(
"alias column type mismatch");
1306 return R__FAIL(
"column index clash");
1310 return R__FAIL(
"out of bounds column index");
1314 return R__FAIL(
"out of bounds representation index");
1320 return R__FAIL(
"incomplete column representations");
1324 return R__FAIL(
"irregular column representations");
1335 fDescriptor.fNPhysicalColumns++;
1336 if (fDescriptor.fHeaderExtension)
1337 fDescriptor.fHeaderExtension->MarkExtendedColumn(
columnDesc);
1346 if (fDescriptor.fClusterGroupDescriptors.count(
id) > 0)
1347 return R__FAIL(
"cluster group id clash");
1350 fDescriptor.fClusterGroupDescriptors.emplace(
id, std::move(
clusterGroup));
1361 if (!fDescriptor.fHeaderExtension)
1362 fDescriptor.fHeaderExtension = std::make_unique<RNTupleDescriptor::RHeaderExtension>();
1367 if (fDescriptor.GetNLogicalColumns() == 0)
1369 R__ASSERT(fDescriptor.GetNPhysicalColumns() > 0);
1371 for (
ROOT::DescriptorId_t id = fDescriptor.GetNLogicalColumns() - 1;
id >= fDescriptor.GetNPhysicalColumns(); --
id) {
1372 auto c = fDescriptor.fColumnDescriptors[
id].Clone();
1375 fDescriptor.fColumnDescriptors.erase(
id);
1376 for (
auto &
link : fDescriptor.fFieldDescriptors[
c.fFieldId].fLogicalColumnIds) {
1377 if (
link ==
c.fLogicalColumnId) {
1383 R__ASSERT(fDescriptor.fColumnDescriptors.count(
c.fLogicalColumnId) == 0);
1384 fDescriptor.fColumnDescriptors.emplace(
c.fLogicalColumnId, std::move(
c));
1388 if (
auto &
xHeader = fDescriptor.fHeaderExtension) {
1390 if (
columnId >= fDescriptor.GetNPhysicalColumns())
1399 if (fDescriptor.fClusterDescriptors.count(
clusterId) > 0)
1400 return R__FAIL(
"cluster id clash");
1409 if (std::find(fDescriptor.fExtraTypeInfoDescriptors.begin(), fDescriptor.fExtraTypeInfoDescriptors.end(),
1411 return R__FAIL(
"extra type info duplicates");
1413 fDescriptor.fExtraTypeInfoDescriptors.emplace_back(std::move(
extraTypeInfoDesc));
1419 auto it = std::find(fDescriptor.fExtraTypeInfoDescriptors.begin(), fDescriptor.fExtraTypeInfoDescriptors.end(),
1421 if (it != fDescriptor.fExtraTypeInfoDescriptors.end())
1424 fDescriptor.fExtraTypeInfoDescriptors.emplace_back(std::move(
extraTypeInfoDesc));
1430 auto &
attrSets = fDescriptor.fAttributeSets;
1432 return desc.GetName() == name;
1434 return R__FAIL(
"attribute sets with duplicate names");
1521 return fAnchorLength ==
other.fAnchorLength && fSchemaVersionMajor ==
other.fSchemaVersionMajor &&
1522 fSchemaVersionMinor ==
other.fSchemaVersionMinor && fAnchorLocator ==
other.fAnchorLocator &&
1529 desc.fAnchorLength = fAnchorLength;
1530 desc.fSchemaVersionMajor = fSchemaVersionMajor;
1531 desc.fSchemaVersionMinor = fSchemaVersionMinor;
1532 desc.fAnchorLocator = fAnchorLocator;
1541 if (
fieldDesc.GetTypeName().rfind(
"std::", 0) == 0)
1548 static const std::string
gIntTypeNames[] = {
"bool",
"char",
"std::int8_t",
"std::uint8_t",
1549 "std::int16_t",
"std::uint16_t",
"std::int32_t",
"std::uint32_t",
1550 "std::int64_t",
"std::uint64_t"};
1559 return (
fieldDesc.GetTypeName().rfind(
"std::atomic<", 0) == 0);
#define R__FORWARD_ERROR(res)
Short-hand to return an RResult<T> in an error state (i.e. after checking)
#define R__FAIL(msg)
Short-hand to return an RResult<T> in an error state; the RError is implicitly converted into RResult...
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.
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 result
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
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize id
RResult< ROOT::Experimental::RNTupleAttrSetDescriptor > MoveDescriptor()
Attempt to make an AttributeSet descriptor.
Used to loop over all the Attribute Sets linked to an RNTuple.
Metadata stored for every Attribute Set linked to an RNTuple.
bool operator==(const RNTupleAttrSetDescriptor &other) const
RNTupleAttrSetDescriptor Clone() const
A helper class for piece-wise construction of an RClusterDescriptor.
RResult< void > MarkSuppressedColumnRange(ROOT::DescriptorId_t physicalId)
Books the given column ID as being suppressed in this cluster.
RResult< void > CommitColumnRange(ROOT::DescriptorId_t physicalId, std::uint64_t firstElementIndex, std::uint32_t compressionSettings, const RClusterDescriptor::RPageRange &pageRange)
RClusterDescriptorBuilder & AddExtendedColumnRanges(const RNTupleDescriptor &desc)
Add column and page ranges for columns created during late model extension missing in this cluster.
RResult< void > CommitSuppressedColumnRanges(const RNTupleDescriptor &desc)
Sets the first element index and number of elements for all the suppressed column ranges.
RResult< RClusterDescriptor > MoveDescriptor()
Move out the full cluster descriptor including page locations.
A helper class for piece-wise construction of an RClusterGroupDescriptor.
RClusterGroupDescriptorBuilder & EntrySpan(std::uint64_t entrySpan)
RClusterGroupDescriptorBuilder & PageListLocator(const RNTupleLocator &pageListLocator)
static RClusterGroupDescriptorBuilder FromSummary(const RClusterGroupDescriptor &clusterGroupDesc)
RClusterGroupDescriptorBuilder & PageListLength(std::uint64_t pageListLength)
RClusterGroupDescriptorBuilder & MinEntry(std::uint64_t minEntry)
RResult< RClusterGroupDescriptor > MoveDescriptor()
RClusterGroupDescriptorBuilder & ClusterGroupId(ROOT::DescriptorId_t clusterGroupId)
RClusterGroupDescriptorBuilder & NClusters(std::uint32_t nClusters)
RResult< RColumnDescriptor > MakeDescriptor() const
Attempt to make a column descriptor.
A column element encapsulates the translation between basic C++ types and their column representation...
static std::pair< std::uint16_t, std::uint16_t > GetValidBitRange(ROOT::ENTupleColumnType type)
Most types have a fixed on-disk bit width.
A helper class for piece-wise construction of an RFieldDescriptor.
RResult< RFieldDescriptor > MakeDescriptor() const
Attempt to make a field descriptor.
static RFieldDescriptorBuilder FromField(const ROOT::RFieldBase &field)
Make a new RFieldDescriptorBuilder based off a live RNTuple field.
void SetNTuple(std::string_view name, std::string_view description)
void SetSchemaFromExisting(const RNTupleDescriptor &descriptor)
Copies the "schema" part of descriptor into the builder's descriptor.
void SetVersionForWriting()
RResult< void > AddColumn(RColumnDescriptor &&columnDesc)
RResult< void > AddAttributeSet(Experimental::RNTupleAttrSetDescriptor &&attrSetDesc)
RResult< void > AddFieldProjection(ROOT::DescriptorId_t sourceId, ROOT::DescriptorId_t targetId)
void ReplaceExtraTypeInfo(RExtraTypeInfoDescriptor &&extraTypeInfoDesc)
RResult< void > AddExtraTypeInfo(RExtraTypeInfoDescriptor &&extraTypeInfoDesc)
void ShiftAliasColumns(std::uint32_t offset)
Shift column IDs of alias columns by offset
void SetVersion(std::uint16_t versionEpoch, std::uint16_t versionMajor, std::uint16_t versionMinor, std::uint16_t versionPatch)
RNTupleDescriptor MoveDescriptor()
void BeginHeaderExtension()
Mark the beginning of the header extension; any fields and columns added after a call to this functio...
RResult< void > AddCluster(RClusterDescriptor &&clusterDesc)
RResult< void > EnsureValidDescriptor() const
Checks whether invariants hold:
RResult< void > AddFieldLink(ROOT::DescriptorId_t fieldId, ROOT::DescriptorId_t linkId)
void AddField(const RFieldDescriptor &fieldDesc)
RResult< void > AddClusterGroup(RClusterGroupDescriptor &&clusterGroup)
RResult< void > EnsureFieldExists(ROOT::DescriptorId_t fieldId) const
void SetFeature(unsigned int flag)
Sets the flag-th bit of the feature flag to 1.
The window of element indexes of a particular column in a particular cluster.
Metadata for RNTuple clusters.
ROOT::NTupleSize_t fFirstEntryIndex
Clusters can be swapped by adjusting the entry offsets of the cluster and all ranges.
std::unordered_map< ROOT::DescriptorId_t, RColumnRange > fColumnRanges
ROOT::NTupleSize_t fNEntries
ROOT::DescriptorId_t fClusterId
RClusterDescriptor Clone() const
bool operator==(const RClusterDescriptor &other) const
RColumnRangeIterable GetColumnRangeIterable() const
Returns an iterator over pairs { columnId, columnRange }. The iteration order is unspecified.
std::unordered_map< ROOT::DescriptorId_t, RPageRange > fPageRanges
std::uint64_t GetNBytesOnStorage() const
Clusters are bundled in cluster groups.
RNTupleLocator fPageListLocator
The page list that corresponds to the cluster group.
RClusterGroupDescriptor Clone() const
std::vector< ROOT::DescriptorId_t > fClusterIds
The cluster IDs can be empty if the corresponding page list is not loaded.
std::uint64_t fMinEntry
The minimum first entry number of the clusters in the cluster group.
std::uint32_t fNClusters
Number of clusters is always known even if the cluster IDs are not (yet) populated.
std::uint64_t fPageListLength
Uncompressed size of the page list.
ROOT::DescriptorId_t fClusterGroupId
std::uint64_t fEntrySpan
Number of entries that are (partially for sharded clusters) covered by this cluster group.
bool operator==(const RClusterGroupDescriptor &other) const
RClusterGroupDescriptor CloneSummary() const
Creates a clone without the cluster IDs.
Metadata stored for every column of an RNTuple.
ROOT::DescriptorId_t fPhysicalColumnId
Usually identical to the logical column ID, except for alias columns where it references the shadowed...
bool operator==(const RColumnDescriptor &other) const
ROOT::DescriptorId_t fLogicalColumnId
The actual column identifier, which is the link to the corresponding field.
ROOT::DescriptorId_t fFieldId
Every column belongs to one and only one field.
std::int64_t fFirstElementIndex
The absolute value specifies the index for the first stored element for this column.
std::uint32_t fIndex
A field can be serialized into several columns, which are numbered from zero to $n$.
std::uint16_t fBitsOnStorage
The size in bits of elements of this column.
std::uint16_t fRepresentationIndex
A field may use multiple column representations, which are numbered from zero to $m$.
ROOT::ENTupleColumnType fType
The on-disk column type.
std::optional< RValueRange > fValueRange
Optional value range (used e.g. by quantized real fields)
RColumnDescriptor Clone() const
Get a copy of the descriptor.
Base class for all ROOT issued exceptions.
A field translates read and write calls from/to underlying columns to/from tree values.
@ kTraitSoACollection
The field represents a collection in SoA layout.
@ kTraitInvalidField
This field is an instance of RInvalidField and can be safely static_cast to it.
@ kTraitTypeChecksum
The TClass checksum is set and valid.
Metadata stored for every field of an RNTuple.
std::unique_ptr< ROOT::RFieldBase > CreateField(const RNTupleDescriptor &ntplDesc, const ROOT::RCreateFieldOptions &options={}) const
In general, we create a field simply from the C++ type name.
std::uint32_t fFieldVersion
The version of the C++-type-to-column translation mechanics.
ROOT::DescriptorId_t fFieldId
RFieldDescriptor Clone() const
Get a copy of the descriptor.
std::uint64_t fNRepetitions
The number of elements per entry for fixed-size arrays.
std::uint32_t fColumnCardinality
The number of columns in the column representations of the field.
ROOT::DescriptorId_t fProjectionSourceId
For projected fields, the source field ID.
bool operator==(const RFieldDescriptor &other) const
std::string fFieldDescription
Free text set by the user.
ROOT::DescriptorId_t fParentId
Establishes sub field relationships, such as classes and collections.
std::string fTypeAlias
A typedef or using directive that resolved to the type name during field creation.
ROOT::ENTupleStructure fStructure
The structural information carried by this field in the data model tree.
std::vector< ROOT::DescriptorId_t > fLinkIds
The pointers in the other direction from parent to children.
std::string fFieldName
The leaf name, not including parent fields.
bool fIsSoACollection
Indicates if this is a collection that should be represented in memory by a SoA layout.
std::uint32_t fTypeVersion
The version of the C++ type itself.
std::string fTypeName
The C++ type that was used when writing the field.
std::vector< ROOT::DescriptorId_t > fLogicalColumnIds
The ordered list of columns attached to this field: first by representation index then by column inde...
std::optional< std::uint32_t > fTypeChecksum
For custom classes, we store the ROOT TClass reported checksum to facilitate the use of I/O rules tha...
Used in RFieldBase::Check() to record field creation failures.
@ kGeneric
Generic unrecoverable error.
@ kUnknownStructure
The field could not be created because its descriptor had an unknown structural role.
Used to loop over all the clusters of an RNTuple (in unspecified order)
Used to loop over all the cluster groups of an RNTuple (in unspecified order)
Used to loop over a field's associated columns.
std::vector< ROOT::DescriptorId_t > fColumns
The descriptor ids of the columns ordered by field, representation, and column index.
RColumnDescriptorIterable(const RNTupleDescriptor &ntuple, const RFieldDescriptor &fieldDesc)
Used to loop over a field's child fields.
The on-storage metadata of an RNTuple.
ROOT::DescriptorId_t FindNextClusterId(ROOT::DescriptorId_t clusterId) const
RFieldDescriptorIterable GetFieldIterable(const RFieldDescriptor &fieldDesc) const
std::set< unsigned int > fFeatureFlags
std::unordered_map< ROOT::DescriptorId_t, RClusterGroupDescriptor > fClusterGroupDescriptors
const RFieldDescriptor & GetFieldDescriptor(ROOT::DescriptorId_t fieldId) const
std::uint64_t fNPhysicalColumns
Updated by the descriptor builder when columns are added.
std::vector< Experimental::RNTupleAttrSetDescriptor > fAttributeSets
List of AttributeSets linked to this RNTuple.
ROOT::DescriptorId_t fFieldZeroId
Set by the descriptor builder.
std::uint64_t fNEntries
Updated by the descriptor builder when the cluster groups are added.
RClusterGroupDescriptorIterable GetClusterGroupIterable() const
RColumnDescriptorIterable GetColumnIterable() const
bool operator==(const RNTupleDescriptor &other) const
std::uint64_t fOnDiskFooterSize
Like fOnDiskHeaderSize, contains both cluster summaries and page locations.
std::uint16_t fVersionMinor
Set by the descriptor builder when deserialized.
ROOT::DescriptorId_t FindClusterId(ROOT::NTupleSize_t entryIdx) const
std::vector< std::uint64_t > GetFeatureFlags() const
ROOT::DescriptorId_t GetFieldZeroId() const
Returns the logical parent of all top-level RNTuple data fields.
std::unique_ptr< ROOT::RNTupleModel > CreateModel(const RCreateModelOptions &options=RCreateModelOptions()) const
Re-create the C++ model from the stored metadata.
std::string GetTypeNameForComparison(const RFieldDescriptor &fieldDesc) const
Adjust the type name of the passed RFieldDescriptor for comparison with another renormalized type nam...
std::unordered_map< ROOT::DescriptorId_t, RClusterDescriptor > fClusterDescriptors
Potentially a subset of all the available clusters.
ROOT::DescriptorId_t FindPhysicalColumnId(ROOT::DescriptorId_t fieldId, std::uint32_t columnIndex, std::uint16_t representationIndex) const
RExtraTypeInfoDescriptorIterable GetExtraTypeInfoIterable() const
std::uint64_t fNClusters
Updated by the descriptor builder when the cluster groups are added.
std::uint64_t fOnDiskHeaderXxHash3
Set by the descriptor builder when deserialized.
ROOT::DescriptorId_t FindFieldId(std::string_view fieldName, ROOT::DescriptorId_t parentId) const
std::string fName
The RNTuple name needs to be unique in a given storage location (file)
std::uint64_t fOnDiskHeaderSize
Set by the descriptor builder when deserialized.
RResult< void > DropClusterGroupDetails(ROOT::DescriptorId_t clusterGroupId)
std::uint16_t fVersionMajor
Set by the descriptor builder when deserialized.
std::vector< ROOT::DescriptorId_t > fSortedClusterGroupIds
References cluster groups sorted by entry range and thus allows for binary search.
std::unordered_map< ROOT::DescriptorId_t, RColumnDescriptor > fColumnDescriptors
ROOT::DescriptorId_t FindLogicalColumnId(ROOT::DescriptorId_t fieldId, std::uint32_t columnIndex, std::uint16_t representationIndex) const
std::unordered_map< ROOT::DescriptorId_t, RFieldDescriptor > fFieldDescriptors
ROOT::NTupleSize_t GetNElements(ROOT::DescriptorId_t physicalColumnId) const
RResult< void > AddClusterGroupDetails(ROOT::DescriptorId_t clusterGroupId, std::vector< RClusterDescriptor > &clusterDescs)
Methods to load and drop cluster group details (cluster IDs and page locations)
std::uint16_t fVersionPatch
Set by the descriptor builder when deserialized.
std::string fDescription
Free text from the user.
ROOT::Experimental::RNTupleAttrSetDescriptorIterable GetAttrSetIterable() const
RFieldDescriptorIterable GetTopLevelFields() const
std::uint16_t fVersionEpoch
Set by the descriptor builder when deserialized.
std::vector< RExtraTypeInfoDescriptor > fExtraTypeInfoDescriptors
RNTupleDescriptor Clone() const
std::string GetQualifiedFieldName(ROOT::DescriptorId_t fieldId) const
Walks up the parents of the field ID and returns a field name of the form a.b.c.d In case of invalid ...
bool FieldTypeNamesMayNeedFixup() const
ROOT v6.34, with spec versions before 1.0.0.1, did not properly renormalize the type name.
RClusterDescriptorIterable GetClusterIterable() const
RNTupleDescriptor CloneSchema() const
Creates a descriptor containing only the schema information about this RNTuple, i....
std::uint64_t fGeneration
The generation of the descriptor.
ROOT::DescriptorId_t FindPrevClusterId(ROOT::DescriptorId_t clusterId) const
std::unique_ptr< RHeaderExtension > fHeaderExtension
Generic information about the physical location of data.
static std::unique_ptr< RNTupleModel > Create()
static std::unique_ptr< RNTupleModel > CreateBare()
Creates a "bare model", i.e. an RNTupleModel with no default entry.
static constexpr std::uint16_t kVersionPatch
static constexpr std::uint16_t kVersionMajor
static constexpr std::uint16_t kVersionEpoch
static constexpr std::uint16_t kVersionMinor
const_iterator begin() const
const_iterator end() const
The class is used as a return type for operations that can fail; wraps a value of type T or an RError...
static std::unique_ptr< RVectorField > CreateUntyped(std::string_view fieldName, std::unique_ptr< RFieldBase > itemField)
ROOT::DescriptorId_t CallFindClusterIdOn(const ROOT::RNTupleDescriptor &desc, ROOT::NTupleSize_t entryIdx)
RResult< void > EnsureValidNameForRNTuple(std::string_view name, std::string_view where)
Check whether a given string is a valid name according to the RNTuple specification.
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 FixupFieldTypeName(ROOT::RFieldDescriptor &fieldDesc)
bool IsCustomEnumFieldDesc(const RNTupleDescriptor &desc, const RFieldDescriptor &fieldDesc)
Tells if the field describes a user-defined enum type.
std::vector< ROOT::Internal::RNTupleClusterBoundaries > GetClusterBoundaries(const RNTupleDescriptor &desc)
Return the cluster boundaries for each cluster in this RNTuple.
std::string GetRenormalizedTypeName(const std::string &metaNormalizedName)
Given a type name normalized by ROOT meta, renormalize it for RNTuple. E.g., insert std::prefix.
bool IsStdAtomicFieldDesc(const RFieldDescriptor &fieldDesc)
Tells if the field describes a std::atomic<T> type.
std::uint64_t DescriptorId_t
Distriniguishes elements of the same type within a descriptor, e.g. different fields.
constexpr NTupleSize_t kInvalidNTupleIndex
std::uint64_t NTupleSize_t
Integer type long enough to hold the maximum number of entries in a column.
constexpr DescriptorId_t kInvalidDescriptorId
Additional information about a page in an in-memory RPageRange.
Information about a single page in the context of a cluster's page range.
bool GetReturnInvalidOnError() const
Modifiers passed to CreateModel()
bool GetCreateBare() const
bool GetEmulateUnknownTypes() const
bool GetReconstructProjections() const
bool GetForwardCompatible() const
static uint64_t sum(uint64_t i)