Merge branch 'tag-formatters'

This commit is contained in:
Daniel Eklöf 2021-09-01 19:12:42 +02:00
commit 7a5ce73c94
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 152 additions and 8 deletions

View file

@ -33,6 +33,9 @@
* network: `ssid`, `signal`, `rx-bitrate` and `rx-bitrate` tags. * network: `ssid`, `signal`, `rx-bitrate` and `rx-bitrate` tags.
* network: `poll-interval` option (for the new `signal` and * network: `poll-interval` option (for the new `signal` and
`*-bitrate` tags). `*-bitrate` tags).
* tags: percentage formatter, for range tags: `{tag_name:%}`.
* tags: percentage tag formatter, for range tags: `{tag_name:%}`.
* tags: kb/mb/gb, and kib/mib/gib tag formatters.
### Changed ### Changed

View file

@ -38,9 +38,59 @@ The available tag *types* are:
# FORMATTING # FORMATTING
As mentioned above, each tag type has a default representation that is A tag may be followed by one or more formatters that alter the tags
used when the tag is rendered by a string particle. rendition.
Formatters are added by appending a ':' separated list of formatter
names:
"{tag_name:max:hex}"
In the table below, "kind" describes the type of action performed by
the formatter:
- *format*: changes the representation of the tag's value
- *selector*: changes what to render
In general, formatters of the same kind cannot be combined; if
multiple formatters of the same kind are specified, the last one will
be used.
[[ *Formatter*
:[ *Kind*
:[ *Description*
:[ *Applies to*]
| hex
: format
: Renders a tag's value in hex
: All tag types
| oct
: format
: Renders a tag's value in octal
: All tag types
| %
: format
: Renders a range tag's value as a percentage value
: Range tags
| kb, mb, gb
: format
: Renders a tag's value (in decimal) divided by 1024, 1024^2 or
1024^3. Note: no unit suffix is appended)
: All tag types
| kib, mib, gib
: format
: Same as *kb*, *mb* and *gb*, but divide by 1000^n instead of 1024^n.
: All tag types
| min
: selector
: Renders a range tag's minimum value
: Range tags
| max
: selector
: Renders a range tag's maximum value
: Range tags
| unit
: selector
: Renders a realtime tag's unit (e.g. "s", or "ms")
: Realtime tags
All integer, floating point and boolean tag types can be modified to
instead be rendered in hexadecimal or octal form, by appending either
the *:hex* or *:oct* suffixes. For example, _\"{tag_name:hex}\"_.

97
tag.c
View file

@ -459,8 +459,25 @@ tags_expand_template(const char *template, const struct tag_set *tags)
sbuf_append_at_most(&formatted, template, begin - template); sbuf_append_at_most(&formatted, template, begin - template);
/* Parse arguments */ /* Parse arguments */
enum { FMT_DEFAULT, FMT_HEX, FMT_OCT } format = FMT_DEFAULT; enum {
enum { VALUE_VALUE, VALUE_MIN, VALUE_MAX, VALUE_UNIT } kind = VALUE_VALUE; FMT_DEFAULT,
FMT_HEX,
FMT_OCT,
FMT_PERCENT,
FMT_KBYTE,
FMT_MBYTE,
FMT_GBYTE,
FMT_KIBYTE,
FMT_MIBYTE,
FMT_GIBYTE,
} format = FMT_DEFAULT;
enum {
VALUE_VALUE,
VALUE_MIN,
VALUE_MAX,
VALUE_UNIT,
} kind = VALUE_VALUE;
for (size_t i = 0; i < MAX_TAG_ARGS; i++) { for (size_t i = 0; i < MAX_TAG_ARGS; i++) {
if (tag_args[i] == NULL) if (tag_args[i] == NULL)
@ -469,12 +486,28 @@ tags_expand_template(const char *template, const struct tag_set *tags)
format = FMT_HEX; format = FMT_HEX;
else if (strcmp(tag_args[i], "oct") == 0) else if (strcmp(tag_args[i], "oct") == 0)
format = FMT_OCT; format = FMT_OCT;
else if (strcmp(tag_args[i], "%") == 0)
format = FMT_PERCENT;
else if (strcmp(tag_args[i], "kb") == 0)
format = FMT_KBYTE;
else if (strcmp(tag_args[i], "mb") == 0)
format = FMT_MBYTE;
else if (strcmp(tag_args[i], "gb") == 0)
format = FMT_GBYTE;
else if (strcmp(tag_args[i], "kib") == 0)
format = FMT_KIBYTE;
else if (strcmp(tag_args[i], "mib") == 0)
format = FMT_MIBYTE;
else if (strcmp(tag_args[i], "gib") == 0)
format = FMT_GIBYTE;
else if (strcmp(tag_args[i], "min") == 0) else if (strcmp(tag_args[i], "min") == 0)
kind = VALUE_MIN; kind = VALUE_MIN;
else if (strcmp(tag_args[i], "max") == 0) else if (strcmp(tag_args[i], "max") == 0)
kind = VALUE_MAX; kind = VALUE_MAX;
else if (strcmp(tag_args[i], "unit") == 0) else if (strcmp(tag_args[i], "unit") == 0)
kind = VALUE_UNIT; kind = VALUE_UNIT;
else
LOG_WARN("invalid tag formatter: %s", tag_args[i]);
} }
/* Copy tag value */ /* Copy tag value */
@ -493,18 +526,76 @@ tags_expand_template(const char *template, const struct tag_set *tags)
sbuf_append(&formatted, str); sbuf_append(&formatted, str);
break; break;
} }
case FMT_PERCENT: {
const long min = tag->min(tag);
const long max = tag->max(tag);
const long cur = tag->as_int(tag);
char str[4];
snprintf(str, sizeof(str), "%lu", (cur - min) * 100 / (max - min));
sbuf_append(&formatted, str);
break;
}
case FMT_KBYTE:
case FMT_MBYTE:
case FMT_GBYTE:
case FMT_KIBYTE:
case FMT_MIBYTE:
case FMT_GIBYTE: {
const long divider =
format == FMT_KBYTE ? 1024 :
format == FMT_MBYTE ? 1024 * 1024 :
format == FMT_GBYTE ? 1024 * 1024 * 1024 :
format == FMT_KIBYTE ? 1000 :
format == FMT_MIBYTE ? 1000 * 1000 :
format == FMT_GIBYTE ? 1000 * 1000 * 1000 :
1;
char str[24];
snprintf(str, sizeof(str), "%lu", tag->as_int(tag) / divider);
sbuf_append(&formatted, str);
break;
}
} }
break; break;
case VALUE_MIN: case VALUE_MIN:
case VALUE_MAX: { case VALUE_MAX: {
const long value = kind == VALUE_MIN ? tag->min(tag) : tag->max(tag); const long min = tag->min(tag);
const long max = tag->max(tag);
long value = kind == VALUE_MIN ? min : max;
const char *fmt; const char *fmt;
switch (format) { switch (format) {
case FMT_DEFAULT: fmt = "%ld"; break; case FMT_DEFAULT: fmt = "%ld"; break;
case FMT_HEX: fmt = "%lx"; break; case FMT_HEX: fmt = "%lx"; break;
case FMT_OCT: fmt = "%lo"; break; case FMT_OCT: fmt = "%lo"; break;
case FMT_PERCENT:
value = (value - min) * 100 / (max - min);
fmt = "%lu";
break;
case FMT_KBYTE:
case FMT_MBYTE:
case FMT_GBYTE:
case FMT_KIBYTE:
case FMT_MIBYTE:
case FMT_GIBYTE: {
const long divider =
format == FMT_KBYTE ? 1024 :
format == FMT_MBYTE ? 1024 * 1024 :
format == FMT_GBYTE ? 1024 * 1024 * 1024 :
format == FMT_KIBYTE ? 1000 :
format == FMT_MIBYTE ? 1000 * 1000 :
format == FMT_GIBYTE ? 1000 * 1000 * 1000 :
1;
value /= divider;
fmt = "%lu";
break;
}
} }
char str[24]; char str[24];