20 #ifndef GEOS_COMMON_FORMAT_TABLE_TABLEDATA_HPP
21 #define GEOS_COMMON_FORMAT_TABLE_TABLEDATA_HPP
25 #include "common/format/Format.hpp"
26 #include "TableTypes.hpp"
54 template<
typename ... Args >
55 void addRow( Args
const & ... args );
61 void addRow( std::vector< CellData >
const & row );
88 std::vector< std::vector< CellData > > m_rows;
121 template<
typename T >
134 bool columnMajorValues );
149 bool columnMajorValues,
166 std::map< RowType, std::map< ColumnType, string > > m_data;
169 std::set< real64 > m_columnValues;
176 template<
typename T >
179 template<
typename ... Args >
182 std::vector< CellData > cells;
184 static_assert( has_formatter_v< decltype(args) > ||
isCellType< std::decay_t< decltype(args) > >,
"Argument passed in addRow cannot be converted to string nor a CellType" );
185 if constexpr (std::is_same_v< Args, CellType >) {
186 cells.push_back( { args,
string() } );
190 cells.push_back( {CellType::Value, GEOS_FMT(
"{}", args )} );
196 template<
typename T >
199 static_assert( has_formatter_v< decltype(value) >,
"Argument passed in addCell cannot be converted to string" );
200 m_columnValues.insert( columnValue );
201 m_data[rowValue][columnValue] = GEOS_FMT(
"{}", value );
Enumerates the Units that are in use in GEOS and regroups useful conversion and formatting functions.
Class for managing 2D table m_data.
real64 RowType
Type real64 for a row.
void addCell(RowType rowValue, ColumnType columnValue, T const &value)
Add a cell to the table. If necessary, create automatically the containing column & row.
void collectTableValues(arraySlice1d< real64 const > dim0AxisCoordinates, arraySlice1d< real64 const > dim1AxisCoordinates, arrayView1d< real64 const > values, bool columnMajorValues)
Collects all the values needed to build the table.
TableDataHolder buildTableData(string_view dataDescription, string_view rowFmt="{}", string_view columnFmt="{}") const
TableData2D::TableDataHolder convertTable2D(ArrayOfArraysView< real64 const > const coordinates, string_view rowAxisDescription, string_view columnAxisDescription, arrayView1d< real64 const > const values, bool columnMajorValues, string_view valueDescription)
real64 ColumnType
Type real64 for a column.
Class for managing table data.
void clear()
Reset data in the table.
std::vector< std::vector< CellData > > const & getTableDataRows() const
void addRow(Args const &... args)
Add a row to the table. The values passed to addRow (can be any type).
std::vector< string > const & getErrorMsgs() const
Get all error messages.
void addSeparator()
Add a line separator to the table You must have filled values in TableData before using it.
void addRow(std::vector< CellData > const &row)
Add a row to the table.
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
std::string string
String type.
LvArray::ArrayOfArraysView< T, INDEX_TYPE const, CONST_SIZES, LvArray::ChaiBuffer > ArrayOfArraysView
View of array of variable-sized arrays. See LvArray::ArrayOfArraysView for details.
double real64
64-bit floating point type.
constexpr bool isCellType
Trait to check is the args is a special type of cell.
ArraySlice< T, 1, USD > arraySlice1d
Alias for 1D array slice.
CellType
The different type a cell can handle.
std::string_view string_view
String type.
Struct containing conversion informations.
TableData tableData
TableData to be built.
std::vector< string > headerNames
Representing a data in TableData.
string value
The cell value.
CellType type
The cell type.