Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RNTupleImporter.hxx
Go to the documentation of this file.
1/// \file ROOT/RNTuplerImporter.hxx
2/// \ingroup NTuple ROOT7
3/// \author Jakob Blomer <jblomer@cern.ch>
4/// \date 2022-11-22
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-2022, 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#ifndef ROOT7_RNTuplerImporter
17#define ROOT7_RNTuplerImporter
18
19#include <ROOT/REntry.hxx>
20#include <ROOT/RError.hxx>
21#include <ROOT/RField.hxx>
22#include <ROOT/RNTuple.hxx>
23#include <ROOT/RNTupleModel.hxx>
25#include <ROOT/RStringView.hxx>
26
27#include <TFile.h>
28#include <TTree.h>
29
30#include <cstdlib>
31#include <map>
32#include <memory>
33#include <vector>
34
35class TLeaf;
36
37namespace ROOT {
38namespace Experimental {
39
40// clang-format off
41/**
42\class ROOT::Experimental::RNTupleImporter
43\ingroup NTuple
44\brief Converts a TTree into an RNTuple
45
46Example usage:
47
48~~~ {.cpp}
49#include <ROOT/RNTupleImporter.hxx>
50using ROOT::Experimental::RNTupleImporter;
51
52auto importer = RNTupleImporter::Create("data.root", "TreeName", "output.root").Unwrap();
53// As required: importer->SetNTupleName(), importer->SetWriteOptions(), ...
54importer->Import().ThrowOnError();
55~~~
56
57The output file is created if it does not exist, otherwise the ntuple is added to the existing file.
58Note that input file and output file can be identical if the ntuple is stored under a different name than the tree
59(use `SetNTupleName()`).
60
61By default, the RNTuple is compressed with zstd, independent of the input compression. The compression settings
62(and other output parameters) can be changed by `SetWriteOptions()`. For example, to compress the imported RNTuple
63using lz4 (with compression level 4) instead:
64
65~~~ {.cpp}
66auto writeOptions = importer->GetWriteOptions();
67writeOptions.SetCompression(404);
68importer->SetWriteOptions(writeOptions);
69~~~
70
71Most RNTuple fields have a type identical to the corresponding TTree input branch. Exceptions are
72 - C string branches are translated to std::string fields
73 - C style arrays are translated to std::array<...> fields
74 - Leaf lists are translated to untyped records
75 - Leaf count arrays are translated to anonymous collections with generic names (_collection0, collection1, etc.).
76 In order to keep field names and branch names aligned, RNTuple projects the members of these collections and
77 its collection counter to the input branch names. For instance, the input leafs
78 Int_t njets;
79 float jet_pt[njets]
80 float jet_eta[njets]
81 will be converted to the following RNTuple schema:
82 _collection0 (untyped collection)
83 |- float jet_pt
84 |- float jet_eta
85 std::size_t (RNTupleCardinality) njets (projected from _collection0 without subfields)
86 ROOT::RVec<float> jet_pt (projected from _collection0.jet_pt)
87 ROOT::RVec<float> jet_eta (projected from _collection0.jet_eta)
88 These projections are meta-data only operations and don't involve duplicating the data.
89
90Current limitations of the importer:
91 - No support for trees containing TObject (or derived classes) or TClonesArray collections
92 - Due to RNTuple currently storing data fully split, "don't split" markers are ignored
93 - Some types are not (yet) available in RNTuple, such as pointers, Double32_t or std::map
94*/
95// clang-format on
97public:
98 /// Used to report every ~50MB (compressed), and at the end about the status of the import.
100 public:
101 virtual ~RProgressCallback() = default;
102 void operator()(std::uint64_t nbytesWritten, std::uint64_t neventsWritten)
103 {
104 Call(nbytesWritten, neventsWritten);
105 }
106 virtual void Call(std::uint64_t nbytesWritten, std::uint64_t neventsWritten) = 0;
107 virtual void Finish(std::uint64_t nbytesWritten, std::uint64_t neventsWritten) = 0;
108 };
109
110private:
111 /// By default, compress RNTuple with zstd, level 5
112 static constexpr int kDefaultCompressionSettings = 505;
113
115 RImportBranch() = default;
116 RImportBranch(const RImportBranch &other) = delete;
117 RImportBranch(RImportBranch &&other) = default;
118 RImportBranch &operator=(const RImportBranch &other) = delete;
120 std::string fBranchName; ///< Top-level branch name from the input TTree
121 std::unique_ptr<unsigned char[]> fBranchBuffer; ///< The destination of SetBranchAddress() for `fBranchName`
122 };
123
125 RImportField() = default;
126 ~RImportField() = default;
127 RImportField(const RImportField &other) = delete;
128 RImportField(RImportField &&other) = default;
129 RImportField &operator=(const RImportField &other) = delete;
131
132 /// The field is kept during schema preparation and transferred to the fModel before the writing starts
134 std::unique_ptr<Detail::RFieldBase::RValue> fValue; ///< set if a value is generated, only for transformed fields
135 void *fFieldBuffer = nullptr; ///< Usually points to the corresponding RImportBranch::fBranchBuffer but not always
136 bool fIsInUntypedCollection = false; ///< Sub-fields of untyped collections (leaf count arrays in the input)
137 bool fIsClass = false; ///< Field imported from a branch with stramer info (e.g., STL, user-defined class)
138 };
139
140 /// Base class to perform data transformations from TTree branches to RNTuple fields if necessary
142 std::size_t fImportBranchIdx = 0;
143 std::size_t fImportFieldIdx = 0;
144
145 RImportTransformation(std::size_t branchIdx, std::size_t fieldIdx)
146 : fImportBranchIdx(branchIdx), fImportFieldIdx(fieldIdx)
147 {
148 }
149 virtual ~RImportTransformation() = default;
150 virtual RResult<void> Transform(const RImportBranch &branch, RImportField &field) = 0;
151 virtual void ResetEntry() = 0; // called at the end of an entry
152 };
153
154 /// When the schema is set up and the import started, it needs to be reset before the next Import() call
155 /// can start. This RAII guard ensures that ResetSchema is called.
158
159 explicit RImportGuard(RNTupleImporter &importer) : fImporter(importer) {}
160 RImportGuard(const RImportGuard &) = delete;
165 };
166
167 /// Leaf count arrays require special treatment. They are translated into RNTuple untyped collections.
168 /// This class does the bookkeeping of the sub-schema for these collections.
175 std::unique_ptr<RNTupleModel> fCollectionModel; ///< The model for the collection itself
176 std::shared_ptr<RCollectionNTupleWriter> fCollectionWriter; ///< Used to fill the collection elements per event
177 std::unique_ptr<REntry> fCollectionEntry; ///< Keeps the memory location of the collection members
178 /// The number of elements for the collection for a particular event. Used as a destination for SetBranchAddress()
179 /// of the count leaf
180 std::unique_ptr<Int_t> fCountVal;
181 std::vector<size_t> fImportFieldIndexes; ///< Points to the correspondings fields in fImportFields
182 /// One transformation for every field, to copy the content of the array one by one
183 std::vector<std::unique_ptr<RImportTransformation>> fTransformations;
184 Int_t fMaxLength = 0; ///< Stores count leaf GetMaximum() to create large enough buffers for the array leafs
185 std::string fFieldName; ///< name of the untyped collection, e.g. _collection0, _collection1, etc.
186 };
187
188 /// Transform a NULL terminated C string branch into an std::string field
190 RCStringTransformation(std::size_t b, std::size_t f) : RImportTransformation(b, f) {}
191 virtual ~RCStringTransformation() = default;
192 RResult<void> Transform(const RImportBranch &branch, RImportField &field) final;
193 void ResetEntry() final {}
194 };
195
196 /// When writing the elements of a leaf count array, moves the data from the input array one-by-one
197 /// to the memory locations of the fields of the corresponding untyped collection.
198 /// TODO(jblomer): write arrays as a whole to RNTuple
200 std::int64_t fNum = 0;
201 RLeafArrayTransformation(std::size_t b, std::size_t f) : RImportTransformation(b, f) {}
202 virtual ~RLeafArrayTransformation() = default;
203 RResult<void> Transform(const RImportBranch &branch, RImportField &field) final;
204 void ResetEntry() final { fNum = 0; }
205 };
206
207 RNTupleImporter() = default;
208
209 std::unique_ptr<TFile> fSourceFile;
211
212 std::string fDestFileName;
213 std::string fNTupleName;
214 std::unique_ptr<TFile> fDestFile;
216
217 /// Whether or not dot characters in branch names should be converted to underscores. If this option is not set and a
218 /// branch with a '.' is encountered, the importer will throw an exception.
220
221 /// The maximum number of entries to import. When this value is -1 (default), import all entries.
222 std::int64_t fMaxEntries = -1;
223
224 /// No standard output, conversely if set to false, schema information and progress is printed.
225 bool fIsQuiet = false;
226 std::unique_ptr<RProgressCallback> fProgressCallback;
227
228 std::unique_ptr<RNTupleModel> fModel;
229 std::unique_ptr<REntry> fEntry;
230 std::vector<RImportBranch> fImportBranches;
231 std::vector<RImportField> fImportFields;
232 /// Maps the count leaf to the information about the corresponding untyped collection
233 std::map<std::string, RImportLeafCountCollection> fLeafCountCollections;
234 /// The list of transformations to be performed for every entry
235 std::vector<std::unique_ptr<RImportTransformation>> fImportTransformations;
236
237 ROOT::Experimental::RResult<void> InitDestination(std::string_view destFileName);
238
239 void ResetSchema();
240 /// Sets up the connection from TTree branches to RNTuple fields, including initialization of the memory
241 /// buffers used for reading and writing.
243 void ReportSchema();
244
245public:
246 RNTupleImporter(const RNTupleImporter &other) = delete;
250 ~RNTupleImporter() = default;
251
252 /// Opens the input file for reading and the output file for writing (update).
253 static std::unique_ptr<RNTupleImporter>
254 Create(std::string_view sourceFileName, std::string_view treeName, std::string_view destFileName);
255
256 /// Directly uses the provided tree and opens the output file for writing (update).
257 static std::unique_ptr<RNTupleImporter> Create(TTree *sourceTree, std::string_view destFileName);
258
261 void SetNTupleName(const std::string &name) { fNTupleName = name; }
262 void SetMaxEntries(std::uint64_t maxEntries) { fMaxEntries = maxEntries; };
263
264 /// Whereas branch names may contain dots, RNTuple field names may not. By setting this option, dot characters are
265 /// automatically converted into underscores to prevent the importer from throwing an exception.
267
268 /// Whether or not information and progress is printed to stdout.
269 void SetIsQuiet(bool value) { fIsQuiet = value; }
270
271 /// Import works in two steps:
272 /// 1. PrepareSchema() calls SetBranchAddress() on all the TTree branches and creates the corresponding RNTuple
273 /// fields and the model
274 /// 2. An event loop reads every entry from the TTree, applies transformations where necessary, and writes the
275 /// output entry to the RNTuple.
276 void Import();
277}; // class RNTupleImporter
278
279} // namespace Experimental
280} // namespace ROOT
281
282#endif
#define b(i)
Definition RSha256.hxx:100
#define f(i)
Definition RSha256.hxx:104
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
char name[80]
Definition TGX11.cxx:110
A field translates read and write calls from/to underlying columns to/from tree values.
Definition RField.hxx:83
Used to report every ~50MB (compressed), and at the end about the status of the import.
virtual void Finish(std::uint64_t nbytesWritten, std::uint64_t neventsWritten)=0
void operator()(std::uint64_t nbytesWritten, std::uint64_t neventsWritten)
virtual void Call(std::uint64_t nbytesWritten, std::uint64_t neventsWritten)=0
Converts a TTree into an RNTuple.
void SetWriteOptions(RNTupleWriteOptions options)
bool fConvertDotsInBranchNames
Whether or not dot characters in branch names should be converted to underscores.
std::int64_t fMaxEntries
The maximum number of entries to import. When this value is -1 (default), import all entries.
std::map< std::string, RImportLeafCountCollection > fLeafCountCollections
Maps the count leaf to the information about the corresponding untyped collection.
RNTupleImporter & operator=(const RNTupleImporter &other)=delete
std::vector< RImportBranch > fImportBranches
void SetNTupleName(const std::string &name)
static constexpr int kDefaultCompressionSettings
By default, compress RNTuple with zstd, level 5.
RNTupleImporter(const RNTupleImporter &other)=delete
void SetConvertDotsInBranchNames(bool value)
Whereas branch names may contain dots, RNTuple field names may not.
RNTupleImporter & operator=(RNTupleImporter &&other)=delete
static std::unique_ptr< RNTupleImporter > Create(std::string_view sourceFileName, std::string_view treeName, std::string_view destFileName)
Opens the input file for reading and the output file for writing (update).
std::unique_ptr< RProgressCallback > fProgressCallback
RNTupleImporter(RNTupleImporter &&other)=delete
RResult< void > PrepareSchema()
Sets up the connection from TTree branches to RNTuple fields, including initialization of the memory ...
ROOT::Experimental::RResult< void > InitDestination(std::string_view destFileName)
void Import()
Import works in two steps:
RNTupleWriteOptions GetWriteOptions() const
bool fIsQuiet
No standard output, conversely if set to false, schema information and progress is printed.
std::vector< RImportField > fImportFields
void SetIsQuiet(bool value)
Whether or not information and progress is printed to stdout.
void SetMaxEntries(std::uint64_t maxEntries)
std::unique_ptr< RNTupleModel > fModel
std::vector< std::unique_ptr< RImportTransformation > > fImportTransformations
The list of transformations to be performed for every entry.
Common user-tunable settings for storing ntuples.
The class is used as a return type for operations that can fail; wraps a value of type T or an RError...
Definition RError.hxx:207
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition TLeaf.h:57
A TTree represents a columnar dataset.
Definition TTree.h:79
This file contains a specialised ROOT message handler to test for diagnostic in unit tests.
Transform a NULL terminated C string branch into an std::string field.
RResult< void > Transform(const RImportBranch &branch, RImportField &field) final
std::string fBranchName
Top-level branch name from the input TTree.
RImportBranch(const RImportBranch &other)=delete
RImportBranch & operator=(RImportBranch &&other)=default
RImportBranch & operator=(const RImportBranch &other)=delete
std::unique_ptr< unsigned char[]> fBranchBuffer
The destination of SetBranchAddress() for fBranchName
RImportBranch(RImportBranch &&other)=default
void * fFieldBuffer
Usually points to the corresponding RImportBranch::fBranchBuffer but not always.
bool fIsClass
Field imported from a branch with stramer info (e.g., STL, user-defined class)
std::unique_ptr< Detail::RFieldBase::RValue > fValue
set if a value is generated, only for transformed fields
RImportField(RImportField &&other)=default
bool fIsInUntypedCollection
Sub-fields of untyped collections (leaf count arrays in the input)
RImportField & operator=(const RImportField &other)=delete
RImportField & operator=(RImportField &&other)=default
Detail::RFieldBase * fField
The field is kept during schema preparation and transferred to the fModel before the writing starts.
RImportField(const RImportField &other)=delete
When the schema is set up and the import started, it needs to be reset before the next Import() call ...
RImportGuard & operator=(const RImportGuard &)=delete
RImportGuard & operator=(RImportGuard &&)=delete
std::string fFieldName
name of the untyped collection, e.g. _collection0, _collection1, etc.
Int_t fMaxLength
Stores count leaf GetMaximum() to create large enough buffers for the array leafs.
std::vector< size_t > fImportFieldIndexes
Points to the correspondings fields in fImportFields.
std::unique_ptr< RNTupleModel > fCollectionModel
The model for the collection itself.
RImportLeafCountCollection & operator=(const RImportLeafCountCollection &other)=delete
RImportLeafCountCollection(RImportLeafCountCollection &&other)=default
std::shared_ptr< RCollectionNTupleWriter > fCollectionWriter
Used to fill the collection elements per event.
std::vector< std::unique_ptr< RImportTransformation > > fTransformations
One transformation for every field, to copy the content of the array one by one.
RImportLeafCountCollection(const RImportLeafCountCollection &other)=delete
RImportLeafCountCollection & operator=(RImportLeafCountCollection &&other)=default
std::unique_ptr< Int_t > fCountVal
The number of elements for the collection for a particular event.
std::unique_ptr< REntry > fCollectionEntry
Keeps the memory location of the collection members.
Base class to perform data transformations from TTree branches to RNTuple fields if necessary.
virtual RResult< void > Transform(const RImportBranch &branch, RImportField &field)=0
RImportTransformation(std::size_t branchIdx, std::size_t fieldIdx)
When writing the elements of a leaf count array, moves the data from the input array one-by-one to th...
RResult< void > Transform(const RImportBranch &branch, RImportField &field) final