summaryrefslogtreecommitdiff
path: root/src/ostree/ot-builtin-summary.c
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2017-06-22 15:16:53 +0100
committerAtomic Bot <atomic-devel@projectatomic.io>2017-06-27 19:19:32 +0000
commite0ad9b226604c08ec0fd25db68b7747e06e470d2 (patch)
treec1049ea34cc6cc216b6c1063f8d9b54c36aaf2f9 /src/ostree/ot-builtin-summary.c
parenta432a2b42029b7bc014b61375579994d13f22413 (diff)
downloadostree-e0ad9b226604c08ec0fd25db68b7747e06e470d2.tar.gz
ostree/summary: Add support for adding additional metadata
When updating a summary file, parse additional arguments to the `ostree summary` command as additional metadata to be put into the summary. Add some tests for this. Signed-off-by: Philip Withnall <withnall@endlessm.com> Closes: #961 Approved by: cgwalters
Diffstat (limited to 'src/ostree/ot-builtin-summary.c')
-rw-r--r--src/ostree/ot-builtin-summary.c47
1 files changed, 46 insertions, 1 deletions
diff --git a/src/ostree/ot-builtin-summary.c b/src/ostree/ot-builtin-summary.c
index 9055d972..f2e687ec 100644
--- a/src/ostree/ot-builtin-summary.c
+++ b/src/ostree/ot-builtin-summary.c
@@ -30,6 +30,7 @@
static gboolean opt_update, opt_view, opt_raw;
static char **opt_key_ids;
static char *opt_gpg_homedir;
+static char **opt_metadata;
static GOptionEntry options[] = {
{ "update", 'u', 0, G_OPTION_ARG_NONE, &opt_update, "Update the summary", NULL },
@@ -37,9 +38,44 @@ static GOptionEntry options[] = {
{ "raw", 0, 0, G_OPTION_ARG_NONE, &opt_raw, "View the raw bytes of the summary file", NULL },
{ "gpg-sign", 0, 0, G_OPTION_ARG_STRING_ARRAY, &opt_key_ids, "GPG Key ID to sign the summary with", "KEY-ID"},
{ "gpg-homedir", 0, 0, G_OPTION_ARG_FILENAME, &opt_gpg_homedir, "GPG Homedir to use when looking for keyrings", "HOMEDIR"},
+ { "add-metadata", 'm', 0, G_OPTION_ARG_STRING_ARRAY, &opt_metadata, "Additional metadata field to add to the summary", "KEY=VALUE" },
{ NULL }
};
+/* Take arguments of the form KEY=VALUE and put them into an a{sv} variant. The
+ * value arguments must be parsable using g_variant_parse(). */
+static GVariant *
+build_additional_metadata (const char * const *args,
+ GError **error)
+{
+ g_autoptr(GVariantBuilder) builder = NULL;
+
+ builder = g_variant_builder_new (G_VARIANT_TYPE_VARDICT);
+
+ for (gsize i = 0; args[i] != NULL; i++)
+ {
+ const gchar *equals = strchr (args[i], '=');
+ g_autofree gchar *key = NULL;
+ const gchar *value_str;
+ g_autoptr(GVariant) value = NULL;
+
+ if (equals == NULL)
+ return glnx_null_throw (error,
+ "Missing '=' in KEY=VALUE metadata '%s'", args[i]);
+
+ key = g_strndup (args[i], equals - args[i]);
+ value_str = equals + 1;
+
+ value = g_variant_parse (NULL, value_str, NULL, NULL, error);
+ if (value == NULL)
+ return glnx_prefix_error_null (error, "Error parsing variant ā€˜%sā€™: ", value_str);
+
+ g_variant_builder_add (builder, "{sv}", key, value);
+ }
+
+ return g_variant_ref_sink (g_variant_builder_end (builder));
+}
+
gboolean
ostree_builtin_summary (int argc, char **argv, GCancellable *cancellable, GError **error)
{
@@ -55,10 +91,19 @@ ostree_builtin_summary (int argc, char **argv, GCancellable *cancellable, GError
if (opt_update)
{
+ g_autoptr(GVariant) additional_metadata = NULL;
+
if (!ostree_ensure_repo_writable (repo, error))
goto out;
- if (!ostree_repo_regenerate_summary (repo, NULL, cancellable, error))
+ if (opt_metadata != NULL)
+ {
+ additional_metadata = build_additional_metadata ((const char * const *) opt_metadata, error);
+ if (additional_metadata == NULL)
+ goto out;
+ }
+
+ if (!ostree_repo_regenerate_summary (repo, additional_metadata, cancellable, error))
goto out;
if (opt_key_ids)