Abstract interface to read data from an ntuple.
The page source is initialized with the columns of interest. Pages from those columns can then be mapped into memory. The page source also gives access to the ntuple's meta-data.
Definition at line 193 of file RPageStorage.hxx.
Public Types | |
using | ColumnSet_t = std::unordered_set< DescriptorId_t > |
Derived from the model (fields) that are actually being requested at a given point in time. | |
Public Types inherited from ROOT::Experimental::Detail::RPageStorage | |
using | ColumnHandle_t = RColumnHandle |
The column handle identifies a column with the current open page storage. | |
Public Member Functions | |
RPageSource (const RPageSource &)=delete | |
RPageSource (RPageSource &&)=default | |
RPageSource (std::string_view ntupleName, const RNTupleReadOptions &fOptions) | |
virtual | ~RPageSource () |
ColumnHandle_t | AddColumn (DescriptorId_t fieldId, const RColumn &column) final |
Register a new column. | |
void | Attach () |
Open the physical storage container for the tree. | |
virtual std::unique_ptr< RPageSource > | Clone () const =0 |
Open the same storage multiple time, e.g. for reading in multiple threads. | |
void | DropColumn (ColumnHandle_t columnHandle) final |
Unregisters a column. | |
ColumnId_t | GetColumnId (ColumnHandle_t columnHandle) |
const RNTupleDescriptor & | GetDescriptor () const |
NTupleSize_t | GetNElements (ColumnHandle_t columnHandle) |
NTupleSize_t | GetNEntries () |
EPageStorageType | GetType () final |
Whether the concrete implementation is a sink or a source. | |
virtual std::unique_ptr< RCluster > | LoadCluster (DescriptorId_t clusterId, const ColumnSet_t &columns)=0 |
Populates all the pages of the given cluster id and columns; it is possible that some columns do not contain any pages. | |
RPageSource & | operator= (const RPageSource &)=delete |
RPageSource & | operator= (RPageSource &&)=default |
virtual RPage | PopulatePage (ColumnHandle_t columnHandle, const RClusterIndex &clusterIndex)=0 |
Another version of PopulatePage that allows to specify cluster-relative indexes. | |
virtual RPage | PopulatePage (ColumnHandle_t columnHandle, NTupleSize_t globalIndex)=0 |
Allocates and fills a page that contains the index-th element. | |
void | UnzipCluster (RCluster *cluster) |
Parallel decompression and unpacking of the pages in the given cluster. | |
Public Member Functions inherited from ROOT::Experimental::Detail::RPageStorage | |
RPageStorage (const RPageStorage &other)=delete | |
RPageStorage (RPageStorage &&other)=default | |
RPageStorage (std::string_view name) | |
virtual | ~RPageStorage () |
virtual RNTupleMetrics & | GetMetrics () |
Returns an empty metrics. Page storage implementations usually have their own metrics. | |
RPageStorage & | operator= (const RPageStorage &other)=delete |
RPageStorage & | operator= (RPageStorage &&other)=default |
virtual void | ReleasePage (RPage &page)=0 |
Every page store needs to be able to free pages it handed out. | |
void | SetTaskScheduler (RTaskScheduler *taskScheduler) |
Static Public Member Functions | |
static std::unique_ptr< RPageSource > | Create (std::string_view ntupleName, std::string_view location, const RNTupleReadOptions &options=RNTupleReadOptions()) |
Guess the concrete derived page source from the file name (location) | |
Protected Member Functions | |
virtual RNTupleDescriptor | AttachImpl ()=0 |
virtual void | UnzipClusterImpl (RCluster *) |
Protected Attributes | |
ColumnSet_t | fActiveColumns |
The active columns are implicitly defined by the model fields or views. | |
RNTupleDescriptor | fDescriptor |
RNTupleReadOptions | fOptions |
Protected Attributes inherited from ROOT::Experimental::Detail::RPageStorage | |
std::string | fNTupleName |
RTaskScheduler * | fTaskScheduler = nullptr |
#include <ROOT/RPageStorage.hxx>
using ROOT::Experimental::Detail::RPageSource::ColumnSet_t = std::unordered_set<DescriptorId_t> |
Derived from the model (fields) that are actually being requested at a given point in time.
Definition at line 196 of file RPageStorage.hxx.
ROOT::Experimental::Detail::RPageSource::RPageSource | ( | std::string_view | ntupleName, |
const RNTupleReadOptions & | fOptions | ||
) |
Definition at line 52 of file RPageStorage.cxx.
|
delete |
|
default |
|
virtual |
Definition at line 57 of file RPageStorage.cxx.
|
finalvirtual |
Register a new column.
When reading, the column must exist in the ntuple on disk corresponding to the meta-data. When writing, every column can only be attached once.
Implements ROOT::Experimental::Detail::RPageStorage.
Definition at line 68 of file RPageStorage.cxx.
|
inline |
Open the physical storage container for the tree.
Definition at line 228 of file RPageStorage.hxx.
|
protectedpure virtual |
Implemented in ROOT::Experimental::Detail::RPageSourceFile.
|
pure virtual |
Open the same storage multiple time, e.g. for reading in multiple threads.
Implemented in ROOT::Experimental::Detail::RPageSourceFile.
|
static |
Guess the concrete derived page source from the file name (location)
Definition at line 61 of file RPageStorage.cxx.
|
finalvirtual |
Unregisters a column.
A page source decreases the reference counter for the corresponding active column. For a page sink, dropping columns is currently a no-op.
Implements ROOT::Experimental::Detail::RPageStorage.
Definition at line 77 of file RPageStorage.cxx.
ROOT::Experimental::ColumnId_t ROOT::Experimental::Detail::RPageSource::GetColumnId | ( | ColumnHandle_t | columnHandle | ) |
Definition at line 92 of file RPageStorage.cxx.
|
inline |
Definition at line 223 of file RPageStorage.hxx.
ROOT::Experimental::NTupleSize_t ROOT::Experimental::Detail::RPageSource::GetNElements | ( | ColumnHandle_t | columnHandle | ) |
Definition at line 87 of file RPageStorage.cxx.
ROOT::Experimental::NTupleSize_t ROOT::Experimental::Detail::RPageSource::GetNEntries | ( | ) |
Definition at line 82 of file RPageStorage.cxx.
|
inlinefinalvirtual |
Whether the concrete implementation is a sink or a source.
Implements ROOT::Experimental::Detail::RPageStorage.
Definition at line 222 of file RPageStorage.hxx.
|
pure virtual |
Populates all the pages of the given cluster id and columns; it is possible that some columns do not contain any pages.
The pages source may load more columns than the minimal necessary set from columns
. To indicate which columns have been loaded, LoadCluster() must mark them with SetColumnAvailable(). That includes the ones from the columns
that don't have pages; otherwise subsequent requests for the cluster would assume an incomplete cluster and trigger loading again. LoadCluster() is typically called from the I/O thread of a cluster pool, i.e. the method runs concurrently to other methods of the page source.
Implemented in ROOT::Experimental::Detail::RPageSourceFile.
|
delete |
|
default |
|
pure virtual |
Another version of PopulatePage that allows to specify cluster-relative indexes.
Implemented in ROOT::Experimental::Detail::RPageSourceFile.
|
pure virtual |
Allocates and fills a page that contains the index-th element.
Implemented in ROOT::Experimental::Detail::RPageSourceFile.
Parallel decompression and unpacking of the pages in the given cluster.
The unzipped pages are supposed to be preloaded in a page pool attached to the source. The method is triggered by the cluster pool's unzip thread. It is an optional optimization, the method can safely do nothing. In particular, the actual implementation will only run if a task scheduler is set. In practice, a task scheduler is set if implicit multi-threading is turned on.
Definition at line 98 of file RPageStorage.cxx.
|
inlineprotectedvirtual |
Reimplemented in ROOT::Experimental::Detail::RPageSourceFile.
Definition at line 206 of file RPageStorage.hxx.
|
protected |
The active columns are implicitly defined by the model fields or views.
Definition at line 202 of file RPageStorage.hxx.
|
protected |
Definition at line 200 of file RPageStorage.hxx.
|
protected |
Definition at line 199 of file RPageStorage.hxx.