This class is the textual representation of the content of a columnar dataset.
This class is provided to the user, and it can be used to print on screen the entries of the dataset requested through the Display action in a compact representation or to return the full representation of the events as a string. In order to apply proper formatting the content is buffered in memory as strings.
Definition at line 64 of file RDisplay.hxx.
Public Member Functions | |
RDisplay (const VecStr_t &columnNames, const VecStr_t &types, size_t nMaxCollectionElements) | |
Creates an RDisplay to print the event values. | |
std::string | AsString () const |
Returns the representation as a string. | |
void | Print () const |
Prints the representation to the standard output. | |
Private Types | |
using | DElement_t = ROOT::Internal::RDF::RDisplayElement |
using | VecStr_t = std::vector< std::string > |
Private Member Functions | |
void | AddCollectionToRow (const VecStr_t &collection) |
Adds a collection to the table. | |
bool | AddInterpreterString (std::stringstream &, ROOT::RVec< bool > &boolArr, const int &index) |
AddInterpreterString overload for arrays of booleans. | |
bool | AddInterpreterString (std::stringstream &, ROOT::RVec< char > &charArr, const int &index) |
AddInterpreterString overload for arrays of chars. | |
template<typename T , std::enable_if_t< ROOT::Internal::RDF::IsDataContainer< T >::value, int > = 0> | |
bool | AddInterpreterString (std::stringstream &stream, T &collection, const int &index) |
Appends collection.size() cling::printValue calls to the stringstream. | |
template<typename T , std::enable_if_t<!ROOT::Internal::RDF::IsDataContainer< T >::value, int > = 0> | |
bool | AddInterpreterString (std::stringstream &stream, T &element, const int &index) |
Appends a cling::printValue call to the stringstream. | |
template<typename... Columns> | |
void | AddRow (Columns &... columns) |
Adds a row of events to the table. | |
void | AddToRow (const std::string &stringEle) |
Adds a single element to the next slot in the table. | |
std::string | DashesBetweenLines (size_t lastColToPrint, bool allColumnsFit) const |
Generate dashes between entries in Print() and AsString() Methods. | |
void | EnsureCurrentColumnWidth (size_t w) |
size_t | GetNColumnsToShorten () const |
Get the number of columns that do NOT fit in the characters limit. | |
void | MovePosition () |
Moves to the next cell. | |
Private Attributes | |
std::vector< VecStr_t > | fCollectionsRepresentations |
Used by the JITted code to store the string representation of the data in case of collection. | |
size_t | fCurrentColumn = 0 |
Column that is being filled. | |
size_t | fCurrentRow = 0 |
Row that is being filled. | |
std::vector< bool > | fIsCollection |
True if the column contains a collection. | |
size_t | fNColumns |
Number of columns to be printed. | |
size_t | fNextRow = 1 |
Next row to be filled. | |
size_t | fNMaxCollectionElements = 10 |
VecStr_t | fRepresentations |
Used by the JITted code to store the string representation of the data. | |
std::vector< std::vector< DElement_t > > | fTable |
String representation of the data to be printed. | |
VecStr_t | fTypes |
This attribute stores the type of each column. It is needed by the interpreter to print it. | |
std::vector< unsigned short > | fWidths |
Tracks the maximum width of each column, based on the largest element. | |
Static Private Attributes | |
static constexpr unsigned | fgMaxWidth = 100 |
Maximum width of the table that Print() displays. | |
static constexpr char | fgSeparator = ' ' |
Spacing used to align the table entries. | |
Friends | |
template<typename T > | |
class | ROOT::Internal::RDF::DisplayHelper |
#include <ROOT/RDF/RDisplay.hxx>
|
private |
Definition at line 69 of file RDisplay.hxx.
|
private |
Definition at line 68 of file RDisplay.hxx.
ROOT::RDF::RDisplay::RDisplay | ( | const VecStr_t & | columnNames, |
const VecStr_t & | types, | ||
size_t | nMaxCollectionElements | ||
) |
Creates an RDisplay to print the event values.
[in] | columnNames | Columns to print |
[in] | types | The type of each column |
[in] | nMaxCollectionElements | Number of maximum elements in collection. |
Definition at line 178 of file RDFDisplay.cxx.
|
private |
Adds a collection to the table.
Starting from the slot, the elements are added one under the other, each one using a single cell of an entire row
Definition at line 128 of file RDFDisplay.cxx.
|
inlineprivate |
AddInterpreterString overload for arrays of booleans.
[in] | boolArr | The bool array to convert to string representation |
[in] | index | To which column the event belongs |
This specialization for arrays of booleans skips the cling::printValue (i.e. appends nothing to the stream) and directly writes to fCollectionsRepresentations the string representation of the array of chars.
Definition at line 166 of file RDisplay.hxx.
|
inlineprivate |
AddInterpreterString overload for arrays of chars.
[in] | charArr | The character array to convert to string representation |
[in] | index | To which column the event belongs |
This specialization for arrays of characters skips the cling::printValue (i.e. appends nothing to the stream) and directly writes to fRepresentations the string representation of the array of chars.
Definition at line 147 of file RDisplay.hxx.
|
inlineprivate |
Appends collection.size() cling::printValue calls to the stringstream.
T | the type of the event to convert |
[in] | stream | Where the conversion function call will be chained. |
[in] | collection | The event to convert to its string representation |
[in] | index | To which column the event belongs to |
Definition at line 116 of file RDisplay.hxx.
|
inlineprivate |
Appends a cling::printValue call to the stringstream.
T | the type of the event to convert |
[in] | stream | Where the conversion function call will be chained. |
[in] | element | The event to convert to its string representation |
[in] | index | To which column the event belongs to |
Definition at line 100 of file RDisplay.hxx.
|
inlineprivate |
Adds a row of events to the table.
Definition at line 206 of file RDisplay.hxx.
|
private |
Adds a single element to the next slot in the table.
Definition at line 116 of file RDFDisplay.cxx.
std::string ROOT::RDF::RDisplay::AsString | ( | ) | const |
Returns the representation as a string.
Definition at line 285 of file RDFDisplay.cxx.
|
private |
Generate dashes between entries in Print() and AsString() Methods.
Definition at line 207 of file RDFDisplay.cxx.
|
private |
Definition at line 105 of file RDFDisplay.cxx.
|
private |
Get the number of columns that do NOT fit in the characters limit.
Definition at line 191 of file RDFDisplay.cxx.
|
private |
Moves to the next cell.
Moves to the next cell, and if the row is full moves to the next row.
Definition at line 166 of file RDFDisplay.cxx.
void ROOT::RDF::RDisplay::Print | ( | ) | const |
Prints the representation to the standard output.
Collections are shortened to the first and last element. The overall width is shortened to a fixed number of columns that should fit the screen width.
Definition at line 221 of file RDFDisplay.cxx.
|
friend |
Definition at line 66 of file RDisplay.hxx.
|
private |
Used by the JITted code to store the string representation of the data in case of collection.
Each row corresponds to a column, each column to a value of the collection.
Definition at line 80 of file RDisplay.hxx.
|
private |
Column that is being filled.
Definition at line 88 of file RDisplay.hxx.
|
private |
Row that is being filled.
Definition at line 86 of file RDisplay.hxx.
|
staticconstexprprivate |
Maximum width of the table that Print() displays.
Definition at line 71 of file RDisplay.hxx.
|
staticconstexprprivate |
Spacing used to align the table entries.
Definition at line 70 of file RDisplay.hxx.
|
private |
True if the column contains a collection.
Collections are treated differently during the printing.
Definition at line 74 of file RDisplay.hxx.
|
private |
Number of columns to be printed.
Definition at line 84 of file RDisplay.hxx.
|
private |
Next row to be filled.
Definition at line 87 of file RDisplay.hxx.
|
private |
Definition at line 90 of file RDisplay.hxx.
|
private |
Used by the JITted code to store the string representation of the data.
Definition at line 79 of file RDisplay.hxx.
|
private |
String representation of the data to be printed.
Definition at line 76 of file RDisplay.hxx.
|
private |
This attribute stores the type of each column. It is needed by the interpreter to print it.
Definition at line 73 of file RDisplay.hxx.
|
private |
Tracks the maximum width of each column, based on the largest element.
Definition at line 77 of file RDisplay.hxx.