]> git.proxmox.com Git - systemd.git/blame - src/basic/format-table.h
New upstream version 239
[systemd.git] / src / basic / format-table.h
CommitLineData
b012e921
MB
1/* SPDX-License-Identifier: LGPL-2.1+ */
2#pragma once
3
4#include <stdbool.h>
5#include <stdio.h>
6#include <sys/types.h>
7
8#include "macro.h"
9
10typedef enum TableDataType {
11 TABLE_EMPTY,
12 TABLE_STRING,
13 TABLE_BOOLEAN,
14 TABLE_TIMESTAMP,
15 TABLE_TIMESPAN,
16 TABLE_SIZE,
17 TABLE_UINT32,
18 _TABLE_DATA_TYPE_MAX,
19 _TABLE_DATA_TYPE_INVALID = -1,
20} TableDataType;
21
22typedef struct Table Table;
23typedef struct TableCell TableCell;
24
25Table *table_new_internal(const char *first_header, ...) _sentinel_;
26#define table_new(...) table_new_internal(__VA_ARGS__, NULL)
27Table *table_new_raw(size_t n_columns);
28Table *table_unref(Table *t);
29
30DEFINE_TRIVIAL_CLEANUP_FUNC(Table*, table_unref);
31
32int table_add_cell_full(Table *t, TableCell **ret_cell, TableDataType type, const void *data, size_t minimum_width, size_t maximum_width, unsigned weight, unsigned align_percent, unsigned ellipsize_percent);
33static inline int table_add_cell(Table *t, TableCell **ret_cell, TableDataType type, const void *data) {
34 return table_add_cell_full(t, ret_cell, type, data, (size_t) -1, (size_t) -1, (unsigned) -1, (unsigned) -1, (unsigned) -1);
35}
36
37int table_dup_cell(Table *t, TableCell *cell);
38
39int table_set_minimum_width(Table *t, TableCell *cell, size_t minimum_width);
40int table_set_maximum_width(Table *t, TableCell *cell, size_t maximum_width);
41int table_set_weight(Table *t, TableCell *cell, unsigned weight);
42int table_set_align_percent(Table *t, TableCell *cell, unsigned percent);
43int table_set_ellipsize_percent(Table *t, TableCell *cell, unsigned percent);
44int table_set_color(Table *t, TableCell *cell, const char *color);
45
46int table_add_many_internal(Table *t, TableDataType first_type, ...);
47#define table_add_many(t, ...) table_add_many_internal(t, __VA_ARGS__, _TABLE_DATA_TYPE_MAX)
48
49void table_set_header(Table *table, bool b);
50void table_set_width(Table *t, size_t width);
51int table_set_display(Table *t, size_t first_column, ...);
52int table_set_sort(Table *t, size_t first_column, ...);
53
54int table_print(Table *t, FILE *f);
55int table_format(Table *t, char **ret);
56
57static inline TableCell* TABLE_HEADER_CELL(size_t i) {
58 return SIZE_TO_PTR(i + 1);
59}
60
61size_t table_get_rows(Table *t);
62size_t table_get_columns(Table *t);