[libvirt] [libvirt-glib PATCHv2 2/5] Introduce GVirConfigDomainChardevSource

Christophe Fergeau cfergeau at redhat.com
Tue Dec 6 10:18:04 UTC 2011


---
 libvirt-gconfig/Makefile.am                        |    2 +
 .../libvirt-gconfig-domain-chardev-source.c        |   49 +++++++++++++++
 .../libvirt-gconfig-domain-chardev-source.h        |   64 ++++++++++++++++++++
 libvirt-gconfig/libvirt-gconfig.h                  |    1 +
 libvirt-gconfig/libvirt-gconfig.sym                |    2 +
 5 files changed, 118 insertions(+), 0 deletions(-)
 create mode 100644 libvirt-gconfig/libvirt-gconfig-domain-chardev-source.c
 create mode 100644 libvirt-gconfig/libvirt-gconfig-domain-chardev-source.h

diff --git a/libvirt-gconfig/Makefile.am b/libvirt-gconfig/Makefile.am
index 88fb556..f017848 100644
--- a/libvirt-gconfig/Makefile.am
+++ b/libvirt-gconfig/Makefile.am
@@ -14,6 +14,7 @@ GCONFIG_HEADER_FILES = \
 			libvirt-gconfig-capabilities.h \
 			libvirt-gconfig-domain.h \
 			libvirt-gconfig-domain-chardev.h \
+			libvirt-gconfig-domain-chardev-source.h \
 			libvirt-gconfig-domain-clock.h \
 			libvirt-gconfig-domain-console.h \
 			libvirt-gconfig-domain-device.h \
@@ -50,6 +51,7 @@ GCONFIG_SOURCE_FILES = \
 			libvirt-gconfig-capabilities.c \
 			libvirt-gconfig-domain.c \
 			libvirt-gconfig-domain-chardev.c \
+			libvirt-gconfig-domain-chardev-source.c \
 			libvirt-gconfig-domain-clock.c \
 			libvirt-gconfig-domain-console.c \
 			libvirt-gconfig-domain-device.c \
diff --git a/libvirt-gconfig/libvirt-gconfig-domain-chardev-source.c b/libvirt-gconfig/libvirt-gconfig-domain-chardev-source.c
new file mode 100644
index 0000000..0ec3d05
--- /dev/null
+++ b/libvirt-gconfig/libvirt-gconfig-domain-chardev-source.c
@@ -0,0 +1,49 @@
+/*
+ * libvirt-gconfig-domain-chardev-source.c: libvirt domain chardev source base class
+ *
+ * Copyright (C) 2011 Red Hat
+ *
+ * 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, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
+ *
+ * Author: Christophe Fergeau <cfergeau at redhat.com>
+ */
+
+#include <config.h>
+
+#include "libvirt-gconfig/libvirt-gconfig.h"
+
+#define GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_GET_PRIVATE(obj)                         \
+        (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_TYPE_CONFIG_DOMAIN_CHARDEV_SOURCE, GVirConfigDomainChardevSourcePrivate))
+
+struct _GVirConfigDomainChardevSourcePrivate
+{
+    gboolean unused;
+};
+
+G_DEFINE_ABSTRACT_TYPE(GVirConfigDomainChardevSource, gvir_config_domain_chardev_source, GVIR_TYPE_CONFIG_OBJECT);
+
+
+static void gvir_config_domain_chardev_source_class_init(GVirConfigDomainChardevSourceClass *klass)
+{
+    g_type_class_add_private(klass, sizeof(GVirConfigDomainChardevSourcePrivate));
+}
+
+
+static void gvir_config_domain_chardev_source_init(GVirConfigDomainChardevSource *source)
+{
+    g_debug("Init GVirConfigDomainChardevSource=%p", source);
+
+    source->priv = GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_GET_PRIVATE(source);
+}
diff --git a/libvirt-gconfig/libvirt-gconfig-domain-chardev-source.h b/libvirt-gconfig/libvirt-gconfig-domain-chardev-source.h
new file mode 100644
index 0000000..dcaa665
--- /dev/null
+++ b/libvirt-gconfig/libvirt-gconfig-domain-chardev-source.h
@@ -0,0 +1,64 @@
+/*
+ * libvirt-gconfig-domain-chardev-source.h: libvirt domain chardev source base class
+ *
+ * Copyright (C) 2011 Red Hat
+ *
+ * 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, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
+ *
+ * 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_CHARDEV_SOURCE_H__
+#define __LIBVIRT_GCONFIG_DOMAIN_CHARDEV_SOURCE_H__
+
+G_BEGIN_DECLS
+
+#define GVIR_TYPE_CONFIG_DOMAIN_CHARDEV_SOURCE            (gvir_config_domain_chardev_source_get_type ())
+#define GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_TYPE_CONFIG_DOMAIN_CHARDEV_SOURCE, GVirConfigDomainChardevSource))
+#define GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_TYPE_CONFIG_DOMAIN_CHARDEV_SOURCE, GVirConfigDomainChardevSourceClass))
+#define GVIR_IS_CONFIG_DOMAIN_CHARDEV_SOURCE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_TYPE_CONFIG_DOMAIN_CHARDEV_SOURCE))
+#define GVIR_IS_CONFIG_DOMAIN_CHARDEV_SOURCE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_TYPE_CONFIG_DOMAIN_CHARDEV_SOURCE))
+#define GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_TYPE_CONFIG_DOMAIN_CHARDEV_SOURCE, GVirConfigDomainChardevSourceClass))
+
+typedef struct _GVirConfigDomainChardevSource GVirConfigDomainChardevSource;
+typedef struct _GVirConfigDomainChardevSourcePrivate GVirConfigDomainChardevSourcePrivate;
+typedef struct _GVirConfigDomainChardevSourceClass GVirConfigDomainChardevSourceClass;
+
+struct _GVirConfigDomainChardevSource
+{
+    GVirConfigObject parent;
+
+    GVirConfigDomainChardevSourcePrivate *priv;
+
+    /* Do not add fields to this struct */
+};
+
+struct _GVirConfigDomainChardevSourceClass
+{
+    GVirConfigObjectClass parent_class;
+
+    gpointer padding[20];
+};
+
+
+GType gvir_config_domain_chardev_source_get_type(void);
+
+G_END_DECLS
+
+#endif /* __LIBVIRT_GCONFIG_DOMAIN_CHARDEV_SOURCE_H__ */
diff --git a/libvirt-gconfig/libvirt-gconfig.h b/libvirt-gconfig/libvirt-gconfig.h
index ca7d2dc..549f00a 100644
--- a/libvirt-gconfig/libvirt-gconfig.h
+++ b/libvirt-gconfig/libvirt-gconfig.h
@@ -31,6 +31,7 @@
 #include <libvirt-gconfig/libvirt-gconfig-capabilities.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain-chardev.h>
+#include <libvirt-gconfig/libvirt-gconfig-domain-chardev-source.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain-clock.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain-console.h>
 #include <libvirt-gconfig/libvirt-gconfig-domain-device.h>
diff --git a/libvirt-gconfig/libvirt-gconfig.sym b/libvirt-gconfig/libvirt-gconfig.sym
index 345dd42..c337b58 100644
--- a/libvirt-gconfig/libvirt-gconfig.sym
+++ b/libvirt-gconfig/libvirt-gconfig.sym
@@ -31,6 +31,8 @@ LIBVIRT_GCONFIG_0.0.1 {
 
 	gvir_config_domain_chardev_get_type;
 
+	gvir_config_domain_chardev_source_get_type;
+
 	gvir_config_domain_clock_get_type;
 	gvir_config_domain_clock_offset_get_type;
 	gvir_config_domain_clock_new;
-- 
1.7.7.3




More information about the libvir-list mailing list