[PATCH 10/16] virsh: Add new command `nwfilter-metadata`

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



With the new command `nwfilter-metadata`, users will be able to view and
modify the `<metadata>` field of the Network Filter XML.

Signed-off-by: K Shiva Kiran <shiva_kr@xxxxxxxxxx>
---
 tools/virsh-nwfilter.c | 142 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 142 insertions(+)

diff --git a/tools/virsh-nwfilter.c b/tools/virsh-nwfilter.c
index 615d126def..801a52746e 100644
--- a/tools/virsh-nwfilter.c
+++ b/tools/virsh-nwfilter.c
@@ -971,6 +971,142 @@ cmdNWFilterDesc(vshControl *ctl, const vshCmd *cmd)
 }
 
 
+/*
+ * "nwfilter-metadata" command
+ */
+static const vshCmdInfo info_nwfilter_metadata[] = {
+    {.name = "help",
+     .data = N_("show or set network filter's custom XML metadata")
+    },
+    {.name = "desc",
+     .data = N_("Shows or modifies the XML metadata of a network filter.")
+    },
+    {.name = NULL}
+};
+
+static const vshCmdOptDef opts_nwfilter_metadata[] = {
+    {.name = "nwfilter",
+     .type = VSH_OT_DATA,
+     .flags = VSH_OFLAG_REQ,
+     .help = N_("network filter name or uuid"),
+     .completer = virshNWFilterNameCompleter,
+    },
+    {.name = "uri",
+     .type = VSH_OT_DATA,
+     .flags = VSH_OFLAG_REQ,
+     .help = N_("URI of the namespace")
+    },
+    {.name = "edit",
+     .type = VSH_OT_BOOL,
+     .help = N_("use an editor to change the metadata")
+    },
+    {.name = "key",
+     .type = VSH_OT_STRING,
+     .help = N_("key to be used as a namespace identifier"),
+    },
+    {.name = "set",
+     .type = VSH_OT_STRING,
+     .completer = virshCompleteEmpty,
+     .help = N_("new metadata to set"),
+    },
+    {.name = "remove",
+     .type = VSH_OT_BOOL,
+     .help = N_("remove the metadata corresponding to an uri")
+    },
+    {.name = NULL}
+};
+
+/* helper to add new metadata using the --edit option */
+static char *
+virshNWFilterGetEditMetadata(vshControl *ctl G_GNUC_UNUSED,
+                             virNWFilterPtr nwfilter,
+                             const char *uri,
+                             unsigned int flags)
+{
+    char *ret;
+
+    if (!(ret = virNWFilterGetMetadata(nwfilter, VIR_NWFILTER_METADATA_ELEMENT,
+                                       uri, flags))) {
+        vshResetLibvirtError();
+        ret = g_strdup("\n");
+    }
+
+    return ret;
+}
+
+static bool
+cmdNWFilterMetadata(vshControl *ctl, const vshCmd *cmd)
+{
+    g_autoptr(virshNWFilter) nwfilter = NULL;
+    bool edit = vshCommandOptBool(cmd, "edit");
+    bool rem = vshCommandOptBool(cmd, "remove");
+    const char *set = NULL;
+    const char *uri = NULL;
+    const char *key = NULL;
+    unsigned int flags = 0;
+    bool ret = false;
+
+    VSH_EXCLUSIVE_OPTIONS("edit", "set");
+    VSH_EXCLUSIVE_OPTIONS("remove", "set");
+    VSH_EXCLUSIVE_OPTIONS("remove", "edit");
+
+    if (!(nwfilter = virshCommandOptNWFilter(ctl, cmd, NULL)))
+        return false;
+
+    if (vshCommandOptStringReq(ctl, cmd, "uri", &uri) < 0 ||
+        vshCommandOptStringReq(ctl, cmd, "key", &key) < 0 ||
+        vshCommandOptStringReq(ctl, cmd, "set", &set) < 0)
+        return false;
+
+    if ((set || edit) && !key) {
+        vshError(ctl, "%s",
+                 _("namespace key is required when modifying metadata"));
+        return false;
+    }
+
+    if (set || rem) {
+        if (virNWFilterSetMetadata(nwfilter, VIR_NWFILTER_METADATA_ELEMENT,
+                                   set, key, uri, flags))
+            return false;
+
+        if (rem)
+            vshPrintExtra(ctl, "%s\n", _("Metadata removed"));
+        else
+            vshPrintExtra(ctl, "%s\n", _("Metadata modified"));
+    } else if (edit) {
+#define EDIT_GET_XML \
+        virshNWFilterGetEditMetadata(ctl, nwfilter, uri, flags)
+#define EDIT_NOT_CHANGED \
+        do { \
+            vshPrintExtra(ctl, "%s", _("Metadata not changed")); \
+            ret = true; \
+            goto edit_cleanup; \
+        } while (0)
+
+#define EDIT_DEFINE \
+        (virNWFilterSetMetadata(nwfilter, VIR_NWFILTER_METADATA_ELEMENT, doc_edited, \
+                                key, uri, flags) == 0)
+#include "virsh-edit.c"
+
+        vshPrintExtra(ctl, "%s\n", _("Metadata modified"));
+    } else {
+        g_autofree char *data = NULL;
+
+        /* get */
+        if (!(data = virNWFilterGetMetadata(nwfilter, VIR_NWFILTER_METADATA_ELEMENT,
+                                            uri, flags)))
+            return false;
+
+        vshPrint(ctl, "%s\n", data);
+    }
+
+    ret = true;
+
+ cleanup:
+    return ret;
+}
+
+
 const vshCmdDef nwfilterCmds[] = {
     {.name = "nwfilter-define",
      .handler = cmdNWFilterDefine,
@@ -1032,5 +1168,11 @@ const vshCmdDef nwfilterCmds[] = {
      .info = info_nwfilter_desc,
      .flags = 0
     },
+    {.name = "nwfilter-metadata",
+     .handler = cmdNWFilterMetadata,
+     .opts = opts_nwfilter_metadata,
+     .info = info_nwfilter_metadata,
+     .flags = 0
+    },
     {.name = NULL}
 };
-- 
2.42.0





[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]

  Powered by Linux