20 #ifndef GEOS_COMMON_FORMAT_TABLE_TABLELAYOUT_HPP
21 #define GEOS_COMMON_FORMAT_TABLE_TABLELAYOUT_HPP
24 #include "TableTypes.hpp"
112 {
return m_cellWidth; }
119 { m_cellWidth = cellWidth; }
124 std::vector< string_view >
const &
getLines()
const
131 {
return m_lines.size(); }
137 {
return m_lines.empty() || m_lines[0].empty(); }
151 std::vector< string_view > m_lines;
294 { m_parent = parent; }
312 { m_next = nextCell; }
382 {
return !this->m_subColumns.empty(); }
389 {
return this->m_parent !=
nullptr; }
395 {
return this->m_next !=
nullptr; }
405 Column * m_parent =
nullptr;
407 Column * m_next =
nullptr;
426 m_currentColumn( columnPtr ), m_currentLayer( idxLayer )
436 this->m_currentColumn = columnPtr;
457 {
return *m_currentColumn; }
463 {
return m_currentColumn; }
470 {
return m_currentColumn; }
479 {
return a.m_currentColumn == b.m_currentColumn; };
487 {
return a.m_currentColumn != b.m_currentColumn; };
494 {
return m_currentLayer; }
500 size_t m_currentLayer;
519 using TableLayoutArgs = std::initializer_list< std::variant< string_view, TableLayout::Column > >;
536 std::vector< TableLayout::Column >
const & columns )
573 std::vector< string >
const & args )
677 void addColumns( std::vector< TableLayout::Column >
const & columnNames );
705 for(
auto const & arg : args )
707 std::visit( [
this](
auto const & value ) {
717 template<
typename ... Ts >
790 {
return m_columnLayersCount; }
797 {
return m_lowermostColumnCount; }
801 size_t m_columnLayersCount;
802 size_t m_lowermostColumnCount;
808 void prepareLayoutRecusive( std::vector< TableLayout::Column > & columns,
size_t level );
Variation of the TableLayout to store precomputed layout information, ready to be formatted.
PreparedTableLayout()
Construct a default Table Formatter without layout specification (to only insert data in it,...
PreparedTableLayout(PreparedTableLayout const &)=delete
As prepared CellLayout & Column types have internal pointers, we cannot copy this class.
size_t getLowermostColumnsCount() const
PreparedTableLayout(TableLayout const &other)
Precompute various information for formatting from a configurated TableLayout:
PreparedTableLayout(PreparedTableLayout &&)=delete
as prepared CellLayout & Column types have internal pointers, we cannot move this class (SSO breaks s...
size_t getColumnLayersCount() const
Represents a cell in a table with ownership of its text data.
void setText(string_view text)
Set the full cell text.
string_view getText() const
CellLayout m_layout
The view & display setting on m_text.
Cell & operator=(Cell const &other)
Copy data, or throw an error if the layout has already been prepared (which means instance will refer...
Cell()
Constructor to initialize a Cell with a default settings. Use prepareLayout() after setup.
Cell & operator=(Cell &&other)
Move data, or throw an error if the layout has already been prepared (which means instance will refer...
Cell(CellType cellType, TableLayout::Alignment alignment)
Constructor to partially initialize a cell with display settings. Use prepareLayout() after setup.
void prepareLayout(size_t maxLineWidth)
Precompute m_layout display settings and link it with m_text.
Cell(Cell const &other)
Copy data, or throw an error if the layout has already been prepared (which means instance will refer...
Cell(CellType cellType, TableLayout::Alignment alignment, string_view value)
Constructor to partially initialize a cell with all settings. Use prepareLayout() after setup.
Cell(Cell &&other)
Move data, or throw an error if the layout has already been prepared (which means instance will refer...
View on cell data with information to display it in a table (content, type, alignment,...
std::vector< string_view > const & getLines() const
CellLayout(CellType cellType, TableLayout::Alignment alignment)
Constructor to fully initialize a cell with given celltype, text and alignment. m_cellWidth will be i...
void setWidth(size_t cellWidth)
Set the width of the cell, which must be constrained by the content lines length.
CellType m_cellType
The type of the cell (Header,Value, Merge, ...).
CellLayout()
Constructor to initialize a Cell with a default settings. Use prepareLayout() when setup.
void prepareLayout(string_view value, size_t maxLineWidth)
Set the data view to the given string_view & precompute display settings.
Alignment m_alignment
The alignment of the cell (left, center, right).
CellLayout(CellType cellType)
Constructor to initialize an empty Cell of a given type.
Class representing a column in a table layout.
Column & addSubColumns(std::initializer_list< Column > subCol)
Adds multiple sub-columns to the column.
std::vector< Column > ColumnsList
Alias for the list of columns.
Column * getParent()
Get the parent column.
Column()
Construct a default column with no parameter (must be configurated).
Column & addSubColumn(string_view subColName)
Adds a single sub-column to the column.
ColumnAlignement m_alignment
struct containing m_alignment for the column (header and values)
Column & setValuesAlignment(Alignment valueAlignment)
Sets the values alignment for the column.
Cell m_header
The header cell.
ColumnsList m_subColumns
A vector containing all sub-columns in the column.
Column const * getNext() const
void setNext(Column *nextCell)
Column & setVisibility(bool visible)
Set the column and its children visibility.
Column & addSubColumns(std::initializer_list< string > subColNames)
Adds multiple sub-columns to the column.
void setParent(Column *parent)
Set the parent column.
Column & addSubColumns(std::vector< string > const &subColNames)
Adds multiple sub-columns to the column.
Column & setName(string_view name)
Sets the name of the column.
Column const * getParent() const
Get the parent column.
bool hasChild() const
Checks if the column has any child columns.
Column & addSubColumn(Column const &subCol)
Adds a single sub-column to the column.
bool hasParent() const
Checks if the column has a parent column.
Column & setHeaderAlignment(Alignment headerAlignment)
Sets the header alignment for the column.
Column(string_view name, ColumnAlignement alignment)
Construct a default column with minimal parameters.
Column(string_view name)
Construct a default column with minimal parameters.
Iterator to loop over all columns, starting by the deepest sub columns, then to their parents,...
Column const ColumnType
alias for column
DeepFirstIterator(ColumnType *columnPtr, size_t idxLayer)
Construct a new Leaf Iterator object.
friend bool operator==(DeepFirstIterator const &a, DeepFirstIterator const &b)
Equality comparison operator.
DeepFirstIterator operator++(int)
Postfix ++ overload.
friend bool operator!=(DeepFirstIterator const &a, DeepFirstIterator const &b)
Inequality comparison operator.
DeepFirstIterator & operator++()
Prefix ++ overload.
ColumnType * getPtr() const
ColumnType & operator*() const
Dereference operator.
DeepFirstIterator & operator=(ColumnType *columnPtr)
Copy assignment operator.
ColumnType * operator->() const
Arrow operator.
size_t getCurrentLayer() const
Gets the current layer (depth) of the iterator.
Class for setup the table layout.
bool isLineBreakEnabled() const
string m_tableTitleStr
Table title text.
DeepFirstIterator endDeepFirst() const
TableLayout(string_view title, std::vector< string > const &args)
Construct a new Table Layout object.
static constexpr Alignment defaultValueAlignment
default value for data cells alignement
integer m_marginValue
The number of margin spaces around contents.
void processArguments(TableLayoutArgs args)
Add a column to the table given an initializer_list of string & Column.
integer const & getMarginValue() const
TableLayout & setMaxColumnWidth(size_t width)
Set the maximal width for each column.
TableLayout(string_view title, TableLayoutArgs args)
Construct a new Table Layout object.
CellLayout const & getTitleLayout() const
bool isMaxColumnWidthSet()
check if a column max width has been set
size_t m_maxColumnWidth
Max width for each column.
integer const & getColumnMargin() const
bool m_lineBreakAtBegin
Indicate if we have a line break a the beginning of the table.
std::initializer_list< std::variant< string_view, TableLayout::Column > > TableLayoutArgs
Alias for an initializer list of variants that can contain either a string or a layout column.
TableLayout(string_view title, std::vector< TableLayout::Column > const &columns)
Construct a new Table Layout object.
void processArguments(Ts &... args)
Alignment
Type of aligment for a column.
DeepFirstIterator beginDeepFirst() const
TableLayout & setMargin(MarginValue marginValue)
Set the minimal margin width between cell content and borders.
integer const & getBorderMargin() const
static constexpr size_t noColumnMaxWidth
default value for m_maxColumnWidth when it is not set
ColumnsList & getColumns()
TableLayout(TableLayoutArgs args)
Construct a new Table Layout object.
void addColumn(string_view columnName)
Create and add a column to the columns vector given a string.
CellLayout m_tableTitleLayout
Table title cell layout settings.
TableLayout & setTitle(string_view title)
integer m_borderMargin
The number of spaces at each table sides.
size_t const & getMaxColumnWidth() const
void addColumn(TableLayout::Column const &column)
Create and add a column to the columns vector given a Column.
static constexpr Alignment defaultHeaderAlignment
default value for columns header cells alignement
Section
Enumeration for table sections.
Column::ColumnsList ColumnsList
Alias for the list of columns.
ColumnsList m_tableColumns
Columns settings hierarchy.
void addColumns(std::vector< TableLayout::Column > const &columnNames)
Create and add columns to the columns vector given a string vector.
ColumnsList const & getColumns() const
void addColumns(std::vector< string > const &columns)
Create and add columns to the columns vector given a string vector.
string_view getTitleStr() const
MarginValue
Space to apply between all data and border.
TableLayout & enableLineBreak(bool value)
Remove the return line at the end & begenning of the table.
CellLayout & getTitleLayout()
integer m_columnMargin
The number of character between two columns (spaces + the separacting character).
std::int32_t integer
Signed integer type.
CellType
The different type a cell can handle.
std::string_view string_view
String type.
Structure to set up values m_alignment for each colum.
Alignment headerAlignment
Alignment for column name. By default aligned to center.
Alignment valueAlignment
Alignment for column values. By default aligned to right side.