GEOS
TableLayout.hpp
Go to the documentation of this file.
1 /*
2  * ------------------------------------------------------------------------------------------------------------
3  * SPDX-License-Identifier: LGPL-2.1-only
4  *
5  * Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
6  * Copyright (c) 2018-2024 TotalEnergies
7  * Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
8  * Copyright (c) 2023-2024 Chevron
9  * Copyright (c) 2019- GEOS/GEOSX Contributors
10  * All rights reserved
11  *
12  * See top level LICENSE, COPYRIGHT, CONTRIBUTORS, NOTICE, and ACKNOWLEDGEMENTS files for details.
13  * ------------------------------------------------------------------------------------------------------------
14  */
15 
20 #ifndef GEOS_COMMON_FORMAT_TABLE_TABLELAYOUT_HPP
21 #define GEOS_COMMON_FORMAT_TABLE_TABLELAYOUT_HPP
22 
23 #include "common/DataTypes.hpp"
24 #include "TableTypes.hpp"
25 #include <variant>
26 #include "common/logger/Logger.hpp"
27 
28 
29 namespace geos
30 {
31 
36 {
37 
38 public:
39 
41  static constexpr size_t noColumnMaxWidth = std::numeric_limits< size_t >::max();
42 
44  enum Alignment { right, left, center };
45 
47  static constexpr Alignment defaultHeaderAlignment = Alignment::center;
48 
50  static constexpr Alignment defaultValueAlignment = Alignment::right;
51 
54  {
55  tiny = 0,
56  small = 1,
57  medium = 2,
58  large = 3
59  };
60 
64  enum Section { header, values };
65 
70  {
75  };
76 
81  class CellLayout
82  {
83 public:
88 
93 
98  CellLayout( CellType cellType );
99 
107 
111  size_t getWidth() const
112  { return m_cellWidth; }
113 
118  void setWidth( size_t cellWidth )
119  { m_cellWidth = cellWidth; }
120 
124  std::vector< string_view > const & getLines() const
125  { return m_lines; }
126 
130  size_t getHeight() const
131  { return m_lines.size(); }
132 
136  size_t isEmpty() const
137  { return m_lines.empty() || m_lines[0].empty(); }
138 
145  void prepareLayout( string_view value, size_t maxLineWidth );
146 
147 private:
149  size_t m_cellWidth;
151  std::vector< string_view > m_lines;
152  };
153 
159  class Cell
160  {
161 public:
164 
168  Cell();
169 
175  Cell( CellType cellType, TableLayout::Alignment alignment );
176 
183  Cell( CellType cellType, TableLayout::Alignment alignment, string_view value );
184 
190  Cell( Cell const & other );
191 
197  Cell( Cell && other );
198 
205  Cell & operator=( Cell const & other );
206 
213  Cell & operator=( Cell && other );
214 
219  { return m_text; }
220 
225  void setText( string_view text );
226 
231  void prepareLayout( size_t maxLineWidth );
232 
233 private:
235  string m_text;
236  };
237 
242  class Column
243  {
244 public:
246  using ColumnsList = std::vector< Column >;
247 
254 
259 
264  explicit Column( string_view name ):
265  Column( name, ColumnAlignement() )
266  {}
267 
273  Column( string_view name, ColumnAlignement alignment );
274 
280  { return m_parent; }
281 
286  Column const * getParent() const
287  { return m_parent; }
288 
293  void setParent( Column * parent )
294  { m_parent = parent; }
295 
300  { return m_next; }
301 
305  Column const * getNext() const
306  { return m_next; }
307 
311  void setNext( Column * nextCell )
312  { m_next = nextCell; }
313 
320 
326  Column & setVisibility( bool visible );
327 
333  Column & addSubColumns( std::initializer_list< Column > subCol );
334 
340  Column & addSubColumns( std::initializer_list< string > subColNames );
341 
347  Column & addSubColumns( std::vector< string > const & subColNames );
348 
354  Column & addSubColumn( string_view subColName );
355 
361  Column & addSubColumn( Column const & subCol );
362 
368  Column & setHeaderAlignment( Alignment headerAlignment );
369 
375  Column & setValuesAlignment( Alignment valueAlignment );
376 
381  bool hasChild() const
382  { return !this->m_subColumns.empty(); }
383 
388  bool hasParent() const
389  { return this->m_parent != nullptr; }
390 
394  bool hasNext() const
395  { return this->m_next != nullptr; }
396 
400  bool isVisible() const
401  { return m_header.m_layout.m_cellType!=CellType::Hidden; }
402 
403 private:
405  Column * m_parent = nullptr;
407  Column * m_next = nullptr;
408  };
409 
415  {
416 public:
418  using ColumnType = Column const;
419 
425  DeepFirstIterator( ColumnType * columnPtr, size_t idxLayer ):
426  m_currentColumn( columnPtr ), m_currentLayer( idxLayer )
427  {}
428 
435  {
436  this->m_currentColumn = columnPtr;
437  return *this;
438  }
439 
445 
451 
457  { return *m_currentColumn; }
458 
462  ColumnType * getPtr() const
463  { return m_currentColumn; }
464 
470  { return m_currentColumn; }
471 
478  friend bool operator== ( DeepFirstIterator const & a, DeepFirstIterator const & b )
479  { return a.m_currentColumn == b.m_currentColumn; };
486  friend bool operator!= ( DeepFirstIterator const & a, DeepFirstIterator const & b )
487  { return a.m_currentColumn != b.m_currentColumn; };
488 
493  size_t getCurrentLayer() const
494  { return m_currentLayer; }
495 
496 private:
498  ColumnType * m_currentColumn;
500  size_t m_currentLayer;
501  };
502 
509 
516  { return DeepFirstIterator( nullptr, 0 ); }
517 
519  using TableLayoutArgs = std::initializer_list< std::variant< string_view, TableLayout::Column > >;
520 
523 
524 
525  TableLayout()
526  {
527  setMargin( MarginValue::medium );
528  }
529 
536  std::vector< TableLayout::Column > const & columns )
537  {
538  setMargin( MarginValue::medium );
539  setTitle( title );
540  addColumns( columns );
541  }
542 
549  TableLayoutArgs args )
550  {
551  setMargin( MarginValue::medium );
552  setTitle( title );
553  processArguments( args );
554  }
555 
562  {
563  setMargin( MarginValue::medium );
564  processArguments( args );
565  }
566 
573  std::vector< string > const & args )
574  {
575  setMargin( MarginValue::medium );
576  setTitle( title );
577  addColumns( args );
578  }
579 
583  ColumnsList const & getColumns() const
584  { return m_tableColumns; }
585 
590  { return m_tableColumns; }
591 
595  CellLayout const & getTitleLayout() const
596  { return m_tableTitleLayout; }
597 
602  { return m_tableTitleLayout; }
603 
608  { return m_tableTitleStr; }
609 
615 
621  TableLayout & enableLineBreak( bool value );
622 
629 
635  TableLayout & setMaxColumnWidth( size_t width );
636 
642  { return m_maxColumnWidth != noColumnMaxWidth; }
643 
647  bool isLineBreakEnabled() const;
648 
652  integer const & getBorderMargin() const
653  { return m_borderMargin; }
654 
658  integer const & getColumnMargin() const
659  { return m_columnMargin; }
660 
664  integer const & getMarginValue() const
665  { return m_marginValue; }
666 
670  size_t const & getMaxColumnWidth() const
671  { return m_maxColumnWidth; }
672 
677  void addColumns( std::vector< TableLayout::Column > const & columnNames );
678 
683  void addColumns( std::vector< string > const & columns );
684 
689  void addColumn( string_view columnName );
690 
695  void addColumn( TableLayout::Column const & column );
696 
697 protected:
698 
704  {
705  for( auto const & arg : args )
706  {
707  std::visit( [this]( auto const & value ) {
708  addColumn( value );
709  }, arg );
710  }
711  }
712 
717  template< typename ... Ts >
718  void processArguments( Ts &... args )
719  {
720  addColumns( args ... );
721  }
722 
725 
727  bool m_lineBreakAtBegin = true;
728 
731 
733  CellLayout m_tableTitleLayout = CellLayout( CellType::Header, Alignment::center );
734 
737 
738 
741 
744 
747 
748 };
749 
754 {
755 public:
756 
762 
774 
779 
785 
789  size_t getColumnLayersCount() const
790  { return m_columnLayersCount; }
791 
797  { return m_lowermostColumnCount; }
798 
799 private:
800 
801  size_t m_columnLayersCount;
802  size_t m_lowermostColumnCount;
803 
808  void prepareLayoutRecusive( std::vector< TableLayout::Column > & columns, size_t level );
809 
810 };
811 
812 }
813 
814 #endif /* GEOS_COMMON_FORMAT_TABLE_TABLELAYOUT_HPP */
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,...
Definition: TableLayout.hpp:82
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, ...).
Definition: TableLayout.hpp:85
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).
Definition: TableLayout.hpp:87
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 & 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.
Definition: TableLayout.hpp:36
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
Definition: TableLayout.hpp:50
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.
Definition: TableLayout.hpp:44
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
Definition: TableLayout.hpp:41
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
Definition: TableLayout.hpp:47
Section
Enumeration for table sections.
Definition: TableLayout.hpp:64
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.
Definition: TableLayout.hpp:54
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.
Definition: DataTypes.hpp:82
CellType
The different type a cell can handle.
Definition: TableTypes.hpp:33
std::string_view string_view
String type.
Definition: DataTypes.hpp:94
Structure to set up values m_alignment for each colum.
Definition: TableLayout.hpp:70
Alignment headerAlignment
Alignment for column name. By default aligned to center.
Definition: TableLayout.hpp:72
Alignment valueAlignment
Alignment for column values. By default aligned to right side.
Definition: TableLayout.hpp:74