From: Zbigniew Jędrzejewski-Szmek Date: Tue, 15 Nov 2022 14:00:57 +0000 (+0100) Subject: bootctl: make --json output normal json X-Git-Tag: v253-rc1~334^2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b570204a97bccfbfce8fc4ffa65306f8a06fe16e;p=thirdparty%2Fsystemd.git bootctl: make --json output normal json We would output a sequence of concatenated JSON strings. 'jq' accepts such output without fuss, and can even automatically build an array with --slurp/-s. Nevertheless, parsing this format is more effort for the reader, since it's not "standard JSON". E.g. Python's json module cannot do this out-of-the-box, but needs some loop with json.JSONDecoder.raw_decode() and then collecting the objects into an array. Such streaming output make sense in case of logs, where we stream the output and it has no predefined length. But here we expect at most a few dozen entries, so it's nicer to write normal JSON that is trivial to parse. I'm treating this is a bugfix and not attempting to provide compatibility backwards. I don't think the previous format was seeing much use, and it's trivial to adapt to the new one. --- diff --git a/src/shared/bootspec.c b/src/shared/bootspec.c index 789b89ea930..435fa4c1bb1 100644 --- a/src/shared/bootspec.c +++ b/src/shared/bootspec.c @@ -1402,6 +1402,8 @@ int show_boot_entries(const BootConfig *config, JsonFormatFlags json_format) { assert(config); if (!FLAGS_SET(json_format, JSON_FORMAT_OFF)) { + _cleanup_(json_variant_unrefp) JsonVariant *array = NULL; + for (size_t i = 0; i < config->n_entries; i++) { _cleanup_free_ char *opts = NULL; const BootEntry *e = config->entries + i; @@ -1441,9 +1443,13 @@ int show_boot_entries(const BootConfig *config, JsonFormatFlags json_format) { if (r < 0) return log_oom(); - json_variant_dump(v, json_format, stdout, NULL); + r = json_variant_append_array(&array, v); + if (r < 0) + return log_oom(); } + json_variant_dump(array, json_format, NULL, NULL); + } else { for (size_t n = 0; n < config->n_entries; n++) { r = show_boot_entry(