[libvirt] [libvirt-glib 07/20] gconfig: Introduce GVirConfigDomainGraphicsListenNone

Christophe Fergeau cfergeau at redhat.com
Tue Oct 4 15:23:45 UTC 2016


---
 libvirt-gconfig/Makefile.am                        |  2 +
 .../libvirt-gconfig-domain-graphics-listen-none.c  | 78 ++++++++++++++++++++++
 .../libvirt-gconfig-domain-graphics-listen-none.h  | 70 +++++++++++++++++++
 libvirt-gconfig/libvirt-gconfig.h                  |  1 +
 libvirt-gconfig/libvirt-gconfig.sym                |  3 +
 5 files changed, 154 insertions(+)
 create mode 100644 libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-none.c
 create mode 100644 libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-none.h

diff --git a/libvirt-gconfig/Makefile.am b/libvirt-gconfig/Makefile.am
index 045f570..bdeac32 100644
--- a/libvirt-gconfig/Makefile.am
+++ b/libvirt-gconfig/Makefile.am
@@ -48,6 +48,7 @@ GCONFIG_HEADER_FILES = \
 			libvirt-gconfig-domain-graphics-desktop.h \
 			libvirt-gconfig-domain-graphics-listen.h \
 			libvirt-gconfig-domain-graphics-listen-address.h \
+			libvirt-gconfig-domain-graphics-listen-none.h \
 			libvirt-gconfig-domain-graphics-rdp.h \
 			libvirt-gconfig-domain-graphics-sdl.h \
 			libvirt-gconfig-domain-graphics-spice.h \
@@ -143,6 +144,7 @@ GCONFIG_SOURCE_FILES = \
 			libvirt-gconfig-domain-graphics-desktop.c \
 			libvirt-gconfig-domain-graphics-listen.c \
 			libvirt-gconfig-domain-graphics-listen-address.c \
+			libvirt-gconfig-domain-graphics-listen-none.c \
 			libvirt-gconfig-domain-graphics-rdp.c \
 			libvirt-gconfig-domain-graphics-sdl.c \
 			libvirt-gconfig-domain-graphics-spice.c \
diff --git a/libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-none.c b/libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-none.c
new file mode 100644
index 0000000..a9d8a7a
--- /dev/null
+++ b/libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-none.c
@@ -0,0 +1,78 @@
+/*
+ * libvirt-gconfig-domain-graphics-listen-none.c: libvirt domain graphics listen none configuration
+ *
+ * Copyright (C) 2016 Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ * Author: Christophe Fergeau <cfergeau at redhat.com>
+ */
+
+#include <config.h>
+
+#include <gio/gio.h>
+
+#include "libvirt-gconfig/libvirt-gconfig.h"
+#include "libvirt-gconfig/libvirt-gconfig-private.h"
+
+#define GVIR_CONFIG_DOMAIN_GRAPHICS_LISTEN_NONE_GET_PRIVATE(obj)                         \
+        (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN_NONE, GVirConfigDomainGraphicsListenNonePrivate))
+
+struct _GVirConfigDomainGraphicsListenNonePrivate
+{
+    gboolean unused;
+};
+
+G_DEFINE_TYPE(GVirConfigDomainGraphicsListenNone, gvir_config_domain_graphics_listen_none, GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN);
+
+
+static void gvir_config_domain_graphics_listen_none_class_init(GVirConfigDomainGraphicsListenNoneClass *klass)
+{
+    g_type_class_add_private(klass, sizeof(GVirConfigDomainGraphicsListenNonePrivate));
+}
+
+
+static void gvir_config_domain_graphics_listen_none_init(GVirConfigDomainGraphicsListenNone *listen)
+{
+    listen->priv = GVIR_CONFIG_DOMAIN_GRAPHICS_LISTEN_NONE_GET_PRIVATE(listen);
+}
+
+
+GVirConfigDomainGraphicsListenNone *gvir_config_domain_graphics_listen_none_new(void)
+{
+    GVirConfigObject *object;
+
+    object = gvir_config_object_new(GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN_NONE, "listen", NULL);
+    gvir_config_object_set_attribute(object,
+                                     "type", "none",
+                                     NULL);
+
+    return GVIR_CONFIG_DOMAIN_GRAPHICS_LISTEN_NONE(object);
+}
+
+
+GVirConfigDomainGraphicsListenNone *gvir_config_domain_graphics_listen_none_new_from_xml(const gchar *xml,
+                                                                                         GError **error)
+{
+    GVirConfigObject *object;
+
+    object = gvir_config_object_new_from_xml(GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN_NONE,
+                                             "listen", NULL, xml, error);
+    if (g_strcmp0(gvir_config_object_get_attribute(object, NULL, "type"), "none") != 0) {
+        g_object_unref(G_OBJECT(object));
+        g_return_val_if_reached(NULL);
+    }
+    return GVIR_CONFIG_DOMAIN_GRAPHICS_LISTEN_NONE(object);
+}
diff --git a/libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-none.h b/libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-none.h
new file mode 100644
index 0000000..d912c1e
--- /dev/null
+++ b/libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-none.h
@@ -0,0 +1,70 @@
+/*
+ * libvirt-gconfig-domain-graphics-listen-none.h: libvirt domain graphics listen none configuration
+ *
+ * Copyright (C) 2016 Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ * Author: Christophe Fergeau <cfergeau at redhat.com>
+ */
+
+#if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
+#error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
+#endif
+
+#ifndef __LIBVIRT_GCONFIG_DOMAIN_GRAPHICS_LISTEN_NONE_H__
+#define __LIBVIRT_GCONFIG_DOMAIN_GRAPHICS_LISTEN_NONE_H__
+
+#include <gio/gio.h>
+
+G_BEGIN_DECLS
+
+#define GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN_NONE            (gvir_config_domain_graphics_listen_none_get_type ())
+#define GVIR_CONFIG_DOMAIN_GRAPHICS_LISTEN_NONE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN_NONE, GVirConfigDomainGraphicsListenNone))
+#define GVIR_CONFIG_DOMAIN_GRAPHICS_LISTEN_NONE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN_NONE, GVirConfigDomainGraphicsListenNoneClass))
+#define GVIR_CONFIG_IS_DOMAIN_GRAPHICS_LISTEN_NONE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN_NONE))
+#define GVIR_CONFIG_IS_DOMAIN_GRAPHICS_LISTEN_NONE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN_NONE))
+#define GVIR_CONFIG_DOMAIN_GRAPHICS_LISTEN_NONE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_LISTEN_NONE, GVirConfigDomainGraphicsListenNoneClass))
+
+typedef struct _GVirConfigDomainGraphicsListenNone GVirConfigDomainGraphicsListenNone;
+typedef struct _GVirConfigDomainGraphicsListenNonePrivate GVirConfigDomainGraphicsListenNonePrivate;
+typedef struct _GVirConfigDomainGraphicsListenNoneClass GVirConfigDomainGraphicsListenNoneClass;
+
+struct _GVirConfigDomainGraphicsListenNone
+{
+    GVirConfigDomainGraphicsListen parent;
+
+    GVirConfigDomainGraphicsListenNonePrivate *priv;
+
+    /* Do not add fields to this struct */
+};
+
+struct _GVirConfigDomainGraphicsListenNoneClass
+{
+    GVirConfigDomainGraphicsListenClass parent_class;
+
+    gpointer padding[20];
+};
+
+
+GType gvir_config_domain_graphics_listen_none_get_type(void);
+
+GVirConfigDomainGraphicsListenNone *gvir_config_domain_graphics_listen_none_new(void);
+GVirConfigDomainGraphicsListenNone *gvir_config_domain_graphics_listen_none_new_from_xml(const gchar *xml,
+                                                                                         GError **error);
+
+G_END_DECLS
+
+#endif /* __LIBVIRT_GCONFIG_DOMAIN_GRAPHICS_LISTEN_NONE_H__ */
diff --git a/libvirt-gconfig/libvirt-gconfig.h b/libvirt-gconfig/libvirt-gconfig.h
index 6132bc1..cd9d54e 100644
--- a/libvirt-gconfig/libvirt-gconfig.h
+++ b/libvirt-gconfig/libvirt-gconfig.h
@@ -65,6 +65,7 @@
 #include <libvirt-gconfig/libvirt-gconfig-domain-graphics-desktop.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain-graphics-listen.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-address.h>
+#include <libvirt-gconfig/libvirt-gconfig-domain-graphics-listen-none.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain-graphics-rdp.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain-graphics-sdl.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain-graphics-spice.h>
diff --git a/libvirt-gconfig/libvirt-gconfig.sym b/libvirt-gconfig/libvirt-gconfig.sym
index 6d8be60..a20c209 100644
--- a/libvirt-gconfig/libvirt-gconfig.sym
+++ b/libvirt-gconfig/libvirt-gconfig.sym
@@ -749,6 +749,9 @@ global:
 	gvir_config_domain_graphics_listen_address_set_address;
 	gvir_config_domain_graphics_listen_address_set_inet_address;
 	gvir_config_domain_graphics_listen_get_type;
+	gvir_config_domain_graphics_listen_none_get_type;
+	gvir_config_domain_graphics_listen_none_new;
+	gvir_config_domain_graphics_listen_none_new_from_xml;
 	gvir_config_domain_graphics_spice_get_listen;
 	gvir_config_domain_graphics_spice_set_gl;
 	gvir_config_domain_graphics_spice_set_listen;
-- 
2.7.4




More information about the libvir-list mailing list