GEOS
TableFormatter.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_TABLEFORMATTER_HPP
21 #define GEOS_COMMON_FORMAT_TABLE_TABLEFORMATTER_HPP
22 
23 #include "TableData.hpp"
24 #include "TableLayout.hpp"
25 #include "TableTypes.hpp"
26 
27 namespace geos
28 {
29 
34 {
35 
36 public:
38  using RowsCellInput = std::vector< std::vector< TableData::CellData > >;
39 
42  {
44  std::vector< TableLayout::CellLayout > cells;
45 
47  size_t sublinesCount;
48  };
49 
51  using CellLayoutRows = std::vector< CellLayoutRow >;
52 
53 
54 protected:
55 
58 
64 
69  TableFormatter( TableLayout const & tableLayout );
70 };
71 
76 {
77 public:
78 
85  {}
86 
91  TableCSVFormatter( TableLayout const & tableLayout );
92 
96  string headerToString() const;
97 
103  string dataToString( TableData const & tableData ) const;
104 
111  template< typename DATASOURCE >
112  string toString( DATASOURCE const & tableData ) const;
113 
114 };
115 
121 template<>
122 string TableCSVFormatter::toString< TableData >( TableData const & tableData ) const;
123 
124 
129 {
130 public:
131 
138  {}
139 
144  TableTextFormatter( TableLayout const & tableLayout );
145 
150  string toString() const;
151 
157  template< typename DATASOURCE >
158  string toString( DATASOURCE const & tableData ) const;
159 
160 private:
161 
163  static constexpr char m_verticalLine = '|';
165  static constexpr char m_horizontalLine = '-';
166 
167 
176  void initalizeTableGrids( PreparedTableLayout const & tableLayout,
177  TableData const & tableData,
178  CellLayoutRows & dataCellsLayout,
179  CellLayoutRows & headerCellsLayout,
180  size_t & tableTotalWidth ) const;
181 
190  void outputTable( PreparedTableLayout const & tableLayout,
191  std::ostringstream & tableOutput,
192  CellLayoutRows const & headerCellsLayout,
193  CellLayoutRows const & dataCellsLayout,
194  size_t tableTotalWidth ) const;
195 
202  void populateTitleCellsLayout( PreparedTableLayout const & tableLayout,
203  CellLayoutRows & headerCellsLayout ) const;
204 
216  void populateHeaderCellsLayout( PreparedTableLayout const & tableLayout,
217  CellLayoutRows & headerCellsLayout,
218  size_t inputDataColumnsCount ) const;
225  void populateDataCellsLayout( PreparedTableLayout const & tableLayout,
226  CellLayoutRows & dataCellsLayout,
227  RowsCellInput const & inputDataValues ) const;
228 
236  void populateDataCellsLayout( PreparedTableLayout const & tableLayout,
237  CellLayoutRows & dataCellsLayout,
238  RowsCellInput const & inputDataValues,
239  size_t nbVisibleColumn ) const;
240 
246  void stretchColumnsByCellsWidth( std::vector< size_t > & columnsWidth,
247  TableFormatter::CellLayoutRows const & tableGrid ) const;
248 
258  void stretchColumnsByMergedCellsWidth( std::vector< size_t > & columnsWidth,
259  TableFormatter::CellLayoutRows & tableGrid,
260  PreparedTableLayout const & tableLayout,
261  bool const compress ) const;
262 
269  void applyColumnsWidth( std::vector< size_t > const & columnsWidth,
270  TableFormatter::CellLayoutRows & tableGrid,
271  PreparedTableLayout const & tableLayout ) const;
272 
273 
281  void formatCell( std::ostringstream & tableOutput,
282  TableLayout::CellLayout const & cell,
283  size_t idxLine ) const;
284 
294  void outputLines( PreparedTableLayout const & tableLayout,
295  CellLayoutRows const & cellsLayout,
296  std::ostringstream & tableOutput ) const;
297 };
298 
304 template<>
305 string TableTextFormatter::toString< TableData >( TableData const & tableData ) const;
306 }
307 
308 #endif /* GEOS_COMMON_FORMAT_TABLE_TABLEFORMATTER_HPP */
Variation of the TableLayout to store precomputed layout information, ready to be formatted.
class for CSV formatting
string toString(DATASOURCE const &tableData) const
Convert a data source to a CSV string.
TableCSVFormatter()
Construct a default Table Formatter without layout specification (to only insert data in it,...
string headerToString() const
string dataToString(TableData const &tableData) const
Convert the table data to a CSV string..
TableCSVFormatter(TableLayout const &tableLayout)
Construct a new Table Formatter from a tableLayout.
Class for managing table data.
Definition: TableData.hpp:35
abstract class for formatting table data
PreparedTableLayout const m_tableLayout
Layout for a table.
TableFormatter()
Construct a default Table Formatter without layout specification (to only insert data in it,...
TableFormatter(TableLayout const &tableLayout)
Construct a new Table Formatter from a tableLayout.
std::vector< std::vector< TableData::CellData > > RowsCellInput
Represent the TableData values.
std::vector< CellLayoutRow > CellLayoutRows
Represent a table section (title + header or values) layout: view on the data and its layout settings...
View on cell data with information to display it in a table (content, type, alignment,...
Definition: TableLayout.hpp:82
Class for setup the table layout.
Definition: TableLayout.hpp:36
class for log formatting
TableTextFormatter()
Construct a default Table Formatter without layout specification (to only insert data in it,...
TableTextFormatter(TableLayout const &tableLayout)
Construct a new TableFormatter from a tableLayout.
string toString(DATASOURCE const &tableData) const
Convert a data source to a table string.
string toString() const
Represent a row of the Table (header or values) when structured for formatting.
std::vector< TableLayout::CellLayout > cells
The cell list of the row instance.
size_t sublinesCount
The maximum number of lines in the cells texts (no text is considered as one line).