246 lines
7.6 KiB
C
246 lines
7.6 KiB
C
#include "table.h"
|
|
#include "string_buffer.h"
|
|
#include "cell.h"
|
|
#include "vector.h"
|
|
#include "row.h"
|
|
fort_status_t get_table_sizes(const FTABLE *table, size_t *rows, size_t *cols);
|
|
|
|
|
|
|
|
fort_row_t *get_row_implementation(fort_table_t *table, size_t row, enum PolicyOnNull policy)
|
|
{
|
|
if (table == NULL || table->rows == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
switch (policy) {
|
|
case DoNotCreate:
|
|
if (row < vector_size(table->rows)) {
|
|
return *(fort_row_t **)vector_at(table->rows, row);
|
|
}
|
|
return NULL;
|
|
break;
|
|
case Create:
|
|
while (row >= vector_size(table->rows)) {
|
|
fort_row_t *new_row = create_row();
|
|
if (new_row == NULL)
|
|
return NULL;
|
|
if (FT_IS_ERROR(vector_push(table->rows, &new_row))) {
|
|
destroy_row(new_row);
|
|
return NULL;
|
|
}
|
|
}
|
|
return *(fort_row_t **)vector_at(table->rows, row);
|
|
break;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
fort_row_t *get_row(fort_table_t *table, size_t row)
|
|
{
|
|
return get_row_implementation(table, row, DoNotCreate);
|
|
}
|
|
|
|
const fort_row_t *get_row_c(const fort_table_t *table, size_t row)
|
|
{
|
|
return get_row((fort_table_t *)table, row);
|
|
}
|
|
|
|
fort_row_t *get_row_and_create_if_not_exists(fort_table_t *table, size_t row)
|
|
{
|
|
return get_row_implementation(table, row, Create);
|
|
}
|
|
|
|
|
|
|
|
|
|
string_buffer_t *get_cur_str_buffer_and_create_if_not_exists(FTABLE *table)
|
|
{
|
|
assert(table);
|
|
|
|
fort_row_t *row = get_row_and_create_if_not_exists(table, table->cur_row);
|
|
if (row == NULL)
|
|
return NULL;
|
|
fort_cell_t *cell = get_cell_and_create_if_not_exists(row, table->cur_col);
|
|
if (cell == NULL)
|
|
return NULL;
|
|
|
|
return cell_get_string_buffer(cell);
|
|
}
|
|
|
|
|
|
/*
|
|
* Returns number of cells (rows * cols)
|
|
*/
|
|
fort_status_t get_table_sizes(const FTABLE *table, size_t *rows, size_t *cols)
|
|
{
|
|
*rows = 0;
|
|
*cols = 0;
|
|
if (table && table->rows) {
|
|
*rows = vector_size(table->rows);
|
|
fort_row_t *row = NULL;
|
|
FOR_EACH(fort_row_t *, row, table->rows) {
|
|
size_t cols_in_row = columns_in_row(row);
|
|
if (cols_in_row > *cols)
|
|
*cols = cols_in_row;
|
|
}
|
|
}
|
|
return FT_SUCCESS;
|
|
}
|
|
|
|
fort_status_t table_rows_and_cols_geometry(const FTABLE *table,
|
|
size_t **col_width_arr_p, size_t *col_width_arr_sz,
|
|
size_t **row_height_arr_p, size_t *row_height_arr_sz)
|
|
{
|
|
if (table == NULL) {
|
|
return FT_ERROR;
|
|
}
|
|
|
|
|
|
|
|
size_t cols = 0;
|
|
size_t rows = 0;
|
|
int status = get_table_sizes(table, &rows, &cols);
|
|
if (FT_IS_ERROR(status))
|
|
return status;
|
|
|
|
size_t *col_width_arr = (size_t *)F_CALLOC(sizeof(size_t), cols);
|
|
size_t *row_height_arr = (size_t *)F_CALLOC(sizeof(size_t), rows);
|
|
if (col_width_arr == NULL || row_height_arr == NULL) {
|
|
F_FREE(col_width_arr);
|
|
F_FREE(row_height_arr);
|
|
return FT_ERROR;
|
|
}
|
|
|
|
int combined_cells_found = 0;
|
|
context_t context;
|
|
context.table_options = (table->options ? table->options : &g_table_options);
|
|
size_t col = 0;
|
|
for (col = 0; col < cols; ++col) {
|
|
col_width_arr[col] = 0;
|
|
size_t row = 0;
|
|
for (row = 0; row < rows; ++row) {
|
|
const fort_row_t *row_p = get_row_c(table, row);
|
|
const fort_cell_t *cell = get_cell_c(row_p, col);
|
|
context.column = col;
|
|
context.row = row;
|
|
if (cell) {
|
|
switch (get_cell_type(cell)) {
|
|
case CommonCell:
|
|
col_width_arr[col] = MAX(col_width_arr[col], hint_width_cell(cell, &context));
|
|
break;
|
|
case GroupMasterCell:
|
|
combined_cells_found = 1;
|
|
break;
|
|
case GroupSlaveCell:
|
|
; /* Do nothing */
|
|
break;
|
|
}
|
|
row_height_arr[row] = MAX(row_height_arr[row], hint_height_cell(cell, &context));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (combined_cells_found) {
|
|
col = 0;
|
|
for (col = 0; col < cols; ++col) {
|
|
size_t row = 0;
|
|
for (row = 0; row < rows; ++row) {
|
|
const fort_row_t *row_p = get_row_c(table, row);
|
|
const fort_cell_t *cell = get_cell_c(row_p, col);
|
|
context.column = col;
|
|
context.row = row;
|
|
if (cell) {
|
|
if (get_cell_type(cell) == GroupMasterCell) {
|
|
size_t hint_width = hint_width_cell(cell, &context);
|
|
size_t slave_col = col + group_cell_number(row_p, col);
|
|
size_t cur_adj_col = col;
|
|
size_t group_width = col_width_arr[col];
|
|
size_t i;
|
|
for (i = col + 1; i < slave_col; ++i)
|
|
group_width += col_width_arr[i] + FORT_COL_SEPARATOR_LENGTH;
|
|
/* adjust col. widths */
|
|
while (1) {
|
|
if (group_width >= hint_width)
|
|
break;
|
|
col_width_arr[cur_adj_col] += 1;
|
|
group_width++;
|
|
cur_adj_col++;
|
|
if (cur_adj_col == slave_col)
|
|
cur_adj_col = col;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* todo: Maybe it is better to move min width checking to a particular cell width checking.
|
|
* At the moment min width includes paddings. Maybe it is better that min width weren't include
|
|
* paddings but be min width of the cell content without padding
|
|
*/
|
|
/*
|
|
if (table->options) {
|
|
for (size_t i = 0; i < cols; ++i) {
|
|
col_width_arr[i] = MAX((int)col_width_arr[i], fort_options_column_width(table->options, i));
|
|
}
|
|
}
|
|
*/
|
|
|
|
*col_width_arr_p = col_width_arr;
|
|
*col_width_arr_sz = cols;
|
|
*row_height_arr_p = row_height_arr;
|
|
*row_height_arr_sz = rows;
|
|
return FT_SUCCESS;
|
|
}
|
|
|
|
/*
|
|
* Returns geometry in characters
|
|
*/
|
|
fort_status_t table_geometry(const FTABLE *table, size_t *height, size_t *width)
|
|
{
|
|
if (table == NULL)
|
|
return FT_ERROR;
|
|
|
|
*height = 0;
|
|
*width = 0;
|
|
size_t cols = 0;
|
|
size_t rows = 0;
|
|
size_t *col_width_arr = NULL;
|
|
size_t *row_height_arr = NULL;
|
|
|
|
int status = table_rows_and_cols_geometry(table, &col_width_arr, &cols, &row_height_arr, &rows);
|
|
if (FT_IS_ERROR(status))
|
|
return status;
|
|
|
|
*width = 1 + (cols == 0 ? 1 : cols) + 1; /* for boundaries (that take 1 symbol) + newline */
|
|
size_t i = 0;
|
|
for (i = 0; i < cols; ++i) {
|
|
*width += col_width_arr[i];
|
|
}
|
|
|
|
/* todo: add check for non printable horizontal row separators */
|
|
*height = 1 + (rows == 0 ? 1 : rows); /* for boundaries (that take 1 symbol) */
|
|
for (i = 0; i < rows; ++i) {
|
|
*height += row_height_arr[i];
|
|
}
|
|
F_FREE(col_width_arr);
|
|
F_FREE(row_height_arr);
|
|
|
|
if (table->options) {
|
|
*height += table->options->entire_table_options.top_margin;
|
|
*height += table->options->entire_table_options.bottom_margin;
|
|
*width += table->options->entire_table_options.left_margin;
|
|
*width += table->options->entire_table_options.right_margin;
|
|
}
|
|
|
|
/* Take into account that border elements can be more than one byte long */
|
|
fort_table_options_t *table_options = table->options ? table->options : &g_table_options;
|
|
size_t max_border_elem_len = max_border_elem_strlen(table_options);
|
|
*width *= max_border_elem_len;
|
|
|
|
return FT_SUCCESS;
|
|
|
|
}
|
|
|