summaryrefslogtreecommitdiffstats
path: root/src/shared/format-table.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-11-07 15:25:51 +0100
committerLennart Poettering <lennart@poettering.net>2018-11-30 16:46:10 +0100
commita4661181fa702a8bff4644210ba7ea14bea51a4a (patch)
treeb0734c51155cd06b59f7fb9dc20152fcdefb6526 /src/shared/format-table.c
parentformat-table: before outputting a color, check if colors are available (diff)
downloadsystemd-a4661181fa702a8bff4644210ba7ea14bea51a4a.tar.xz
systemd-a4661181fa702a8bff4644210ba7ea14bea51a4a.zip
format-table: add option to store/format percent and uint64_t values in cells
Diffstat (limited to 'src/shared/format-table.c')
-rw-r--r--src/shared/format-table.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/shared/format-table.c b/src/shared/format-table.c
index 959bfc53c4..ce79d19a57 100644
--- a/src/shared/format-table.c
+++ b/src/shared/format-table.c
@@ -70,6 +70,8 @@ typedef struct TableData {
uint64_t size;
char string[0];
uint32_t uint32;
+ uint64_t uint64;
+ int percent; /* we use 'int' as datatype for percent values in order to match the result of parse_percent() */
/* … add more here as we start supporting more cell data types … */
};
} TableData;
@@ -219,11 +221,15 @@ static size_t table_data_size(TableDataType type, const void *data) {
return sizeof(usec_t);
case TABLE_SIZE:
+ case TABLE_UINT64:
return sizeof(uint64_t);
case TABLE_UINT32:
return sizeof(uint32_t);
+ case TABLE_PERCENT:
+ return sizeof(int);
+
default:
assert_not_reached("Uh? Unexpected cell type");
}
@@ -583,6 +589,8 @@ int table_add_many_internal(Table *t, TableDataType first_type, ...) {
uint64_t size;
usec_t usec;
uint32_t uint32;
+ uint64_t uint64;
+ int percent;
bool b;
} buffer;
@@ -617,6 +625,16 @@ int table_add_many_internal(Table *t, TableDataType first_type, ...) {
data = &buffer.uint32;
break;
+ case TABLE_UINT64:
+ buffer.uint64 = va_arg(ap, uint64_t);
+ data = &buffer.uint64;
+ break;
+
+ case TABLE_PERCENT:
+ buffer.percent = va_arg(ap, int);
+ data = &buffer.percent;
+ break;
+
case _TABLE_DATA_TYPE_MAX:
/* Used as end marker */
va_end(ap);
@@ -740,6 +758,12 @@ static int cell_data_compare(TableData *a, size_t index_a, TableData *b, size_t
case TABLE_UINT32:
return CMP(a->uint32, b->uint32);
+ case TABLE_UINT64:
+ return CMP(a->uint64, b->uint64);
+
+ case TABLE_PERCENT:
+ return CMP(a->percent, b->percent);
+
default:
;
}
@@ -850,6 +874,30 @@ static const char *table_data_format(TableData *d) {
break;
}
+ case TABLE_UINT64: {
+ _cleanup_free_ char *p;
+
+ p = new(char, DECIMAL_STR_WIDTH(d->uint64) + 1);
+ if (!p)
+ return NULL;
+
+ sprintf(p, "%" PRIu64, d->uint64);
+ d->formatted = TAKE_PTR(p);
+ break;
+ }
+
+ case TABLE_PERCENT: {
+ _cleanup_free_ char *p;
+
+ p = new(char, DECIMAL_STR_WIDTH(d->percent) + 2);
+ if (!p)
+ return NULL;
+
+ sprintf(p, "%i%%" , d->percent);
+ d->formatted = TAKE_PTR(p);
+ break;
+ }
+
default:
assert_not_reached("Unexpected type?");
}