68 std::unique_ptr<ROOT::Internal::RColumnElementBase>
fElement;
107 template <
typename CppT>
108 static std::unique_ptr<RColumn>
112 column->fElement = ROOT::Internal::RColumnElementBase::Generate<CppT>(
type);
140 void AppendV(
const void *from, std::size_t count)
142 auto src =
reinterpret_cast<const unsigned char *
>(from);
168 void *from =
static_cast<unsigned char *
>(
fReadPageRef.
Get().GetBuffer()) +
179 void *from =
static_cast<unsigned char *
>(
fReadPageRef.
Get().GetBuffer()) +
187 auto tail =
static_cast<unsigned char *
>(to);
209 auto tail =
static_cast<unsigned char *
>(to);
228 template <
typename CppT>
235 template <
typename CppT>
242 template <
typename CppT>
250 return reinterpret_cast<CppT *
>(
static_cast<unsigned char *
>(
fReadPageRef.
Get().GetBuffer()) +
254 template <
typename CppT>
262 return reinterpret_cast<CppT *
>(
static_cast<unsigned char *
>(
fReadPageRef.
Get().GetBuffer()) +
346 return static_cast<std::uint16_t
>(
fElement->GetBitsOnStorage());
#define R__unlikely(expr)
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 index
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t src
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 Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
The available trivial, native content types of a column.
Abstract interface to write data into an ntuple.
const ROOT::RNTupleWriteOptions & GetWriteOptions() const
Returns the sink's write options.
virtual ROOT::Internal::RPage ReservePage(ColumnHandle_t columnHandle, std::size_t nElements)
Get a new, empty page for the given column that can be filled with up to nElements; nElements must be...
Abstract interface to read data from an ntuple.
A column element encapsulates the translation between basic C++ types and their column representation...
A column is a storage-backed array of a simple, fixed-size type, from which pages can be mapped into ...
void GetSwitchInfo(ROOT::NTupleSize_t globalIndex, RNTupleLocalIndex *varIndex, std::uint32_t *tag)
Get the currently active cluster id.
void GetCollectionInfo(RNTupleLocalIndex localIndex, RNTupleLocalIndex *collectionStart, ROOT::NTupleSize_t *collectionSize)
void Read(RNTupleLocalIndex localIndex, void *to)
static std::unique_ptr< RColumn > Create(ROOT::ENTupleColumnType type, std::uint32_t columnIdx, std::uint16_t representationIdx)
ROOT::Experimental::Internal::RPageSink * GetPageSink() const
RColumn(ROOT::ENTupleColumnType type, std::uint32_t columnIndex, std::uint16_t representationIndex)
ROOT::NTupleSize_t GetGlobalIndex(RNTupleLocalIndex clusterIndex)
void HandleWritePageIfFull()
Used when trying to append to a full write page.
std::optional< std::pair< double, double > > GetValueRange() const
void MergeTeams(RColumn &other)
RColumn & operator=(const RColumn &)=delete
void ReadV(RNTupleLocalIndex localIndex, ROOT::NTupleSize_t count, void *to)
std::vector< RColumn * > fTeam
The column team is a set of columns that serve the same column index for different representation IDs...
std::uint16_t GetRepresentationIndex() const
bool ReadPageContains(ROOT::NTupleSize_t globalIndex) const
std::size_t fLastGoodTeamIdx
Points into fTeam to the column that successfully returned the last page.
CppT * Map(const ROOT::NTupleSize_t globalIndex)
CppT * MapV(RNTupleLocalIndex localIndex, ROOT::NTupleSize_t &nItems)
ROOT::Experimental::Internal::RPageStorage::ColumnHandle_t fHandleSink
void ConnectPageSource(ROOT::DescriptorId_t fieldId, ROOT::Experimental::Internal::RPageSource &pageSource)
Connect the column to a page source.
RNTupleLocalIndex GetClusterIndex(ROOT::NTupleSize_t globalIndex)
RColumn(const RColumn &)=delete
std::uint16_t fRepresentationIndex
Fields can have multiple column representations, distinguished by representation index.
ROOT::Internal::RColumnElementBase * GetElement() const
ROOT::Experimental::Internal::RPageSink * fPageSink
void SetBitsOnStorage(std::size_t bits)
void Read(const ROOT::NTupleSize_t globalIndex, void *to)
CppT * Map(RNTupleLocalIndex localIndex)
ROOT::ENTupleColumnType GetType() const
ROOT::Experimental::Internal::RPageStorage::ColumnHandle_t fHandleSource
ROOT::NTupleSize_t GetFirstElementIndex() const
bool ReadPageContains(RNTupleLocalIndex localIndex) const
void GetCollectionInfo(const ROOT::NTupleSize_t globalIndex, RNTupleLocalIndex *collectionStart, ROOT::NTupleSize_t *collectionSize)
For offset columns only, look at the two adjacent values that define a collection's coordinates.
void AppendV(const void *from, std::size_t count)
void ReadV(ROOT::NTupleSize_t globalIndex, ROOT::NTupleSize_t count, void *to)
std::size_t GetWritePageCapacity() const
ROOT::NTupleSize_t GetNElements() const
void SetValueRange(double min, double max)
ROOT::DescriptorId_t GetOnDiskId() const
ROOT::Internal::RPageRef fReadPageRef
The currently mapped page for reading.
ROOT::Internal::RPage fWritePage
The page into which new elements are being written.
ROOT::Experimental::Internal::RPageSource * fPageSource
ROOT::Experimental::Internal::RPageSource * GetPageSource() const
CppT * MapV(const ROOT::NTupleSize_t globalIndex, ROOT::NTupleSize_t &nItems)
ROOT::Experimental::Internal::RPageStorage::ColumnHandle_t GetHandleSource() const
ROOT::DescriptorId_t fOnDiskId
The column id in the column descriptor, once connected to a sink or source.
std::uint32_t fIndex
Columns belonging to the same field are distinguished by their order.
bool TryMapPage(ROOT::NTupleSize_t globalIndex)
ROOT::Experimental::Internal::RPageStorage::ColumnHandle_t GetHandleSink() const
ROOT::NTupleSize_t fFirstElementIndex
Global index of the first element in this column; usually == 0, unless it is a deferred column.
ROOT::NTupleSize_t fNElements
The number of elements written resp. available in the column.
void MapPage(ROOT::NTupleSize_t globalIndex)
std::uint16_t GetBitsOnStorage() const
std::uint32_t GetIndex() const
void Append(const void *from)
std::unique_ptr< ROOT::Internal::RColumnElementBase > fElement
Used to pack and unpack pages on writing/reading.
void ConnectPageSink(ROOT::DescriptorId_t fieldId, ROOT::Experimental::Internal::RPageSink &pageSink, ROOT::NTupleSize_t firstElementIndex=0U)
Connect the column to a page sink.
void MapPage(RNTupleLocalIndex localIndex)
ROOT::ENTupleColumnType fType
ROOT::NTupleSize_t fInitialNElements
The initial number of elements in a page.
A page is a slice of a column that is mapped into memory.
std::uint32_t GetNElements() const
std::size_t GetNBytes() const
The space taken by column elements in the buffer.
void * GrowUnchecked(std::uint32_t nElements)
Increases the number elements in the page.
std::uint32_t GetMaxElements() const
std::size_t GetCapacity() const
Addresses a column element or field item relative to a particular cluster, instead of a global NTuple...
std::uint64_t DescriptorId_t
Distriniguishes elements of the same type within a descriptor, e.g. different fields.
std::uint64_t NTupleSize_t
Integer type long enough to hold the maximum number of entries in a column.
constexpr DescriptorId_t kInvalidDescriptorId