]> saetta.ns0.it Git - libgfeed/commitdiff
Replaced functions *_get_type with macro G_DEFINE_TYPE.
authorAndrea Zagli <azagli@libero.it>
Sat, 15 Dec 2012 16:03:34 +0000 (17:03 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 15 Dec 2012 16:03:34 +0000 (17:03 +0100)
12 files changed:
src/atom.c
src/atomcategory.c
src/atomcommon.c
src/atomcontent.c
src/atomdate.c
src/atomentry.c
src/atomgenerator.c
src/atomid.c
src/atomlink.c
src/atomperson.c
src/atomsource.c
src/atomtext.c

index c0085684e782e694de12e1d68fbbdbd99fef4fc2..f72aea306b38126ce32588b2b64f795069d787f5 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #ifdef HAVE_CONFIG_H
@@ -70,48 +70,22 @@ static Atom *parse_xml (xmlDoc *xdoc);
 typedef struct _AtomPrivate AtomPrivate;
 struct _AtomPrivate
        {
-               GList *author,
-                     *category,
-                     *contributor,
-                     *entry;
+               GList *author;
+               GList *category;
+               GList *contributor;
+               GList *entry;
                AtomGenerator *generator;
-               AtomID *icon,
-                      *id,
-                      *logo;
+               AtomID *icon;
+               AtomID *id;
+               AtomID *logo;
                AtomLink *link;
-               AtomText *title,
-                        *rights,
-                        *subtitle;
+               AtomText *title;
+               AtomText *rights;
+               AtomText *subtitle;
                AtomDate *updated;
        };
 
-GType
-atom_get_type (void)
-{
-       static GType atom_type = 0;
-
-       if (!atom_type)
-               {
-                       static const GTypeInfo atom_info =
-                       {
-                               sizeof (AtomClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (Atom),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_init,
-                               NULL
-                       };
-
-                       atom_type = g_type_register_static (TYPE_ATOM_COMMON, "Atom",
-                                                           &atom_info, 0);
-               }
-
-       return atom_type;
-}
+G_DEFINE_TYPE (Atom, atom, TYPE_ATOM_COMMON)
 
 static void
 atom_class_init (AtomClass *klass)
@@ -340,7 +314,7 @@ xmlDoc
                {
                        xnode = xmlNewNode (NULL, (const xmlChar *)"generator");
                        xmlAddChild (xroot, xnode);
-                       atom_generator_get_xml (priv->generator, xnode);                
+                       atom_generator_get_xml (priv->generator, xnode);
                }
 
        if (priv->icon != NULL)
@@ -448,7 +422,6 @@ atom_set_property (GObject *object, guint property_id, const GValue *value, GPar
        GObject *obj;
 
        Atom *atom = ATOM (object);
-
        AtomPrivate *priv = ATOM_GET_PRIVATE (atom);
 
        switch (property_id)
@@ -554,9 +527,8 @@ static void
 atom_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        Atom *atom = ATOM (object);
-
        AtomPrivate *priv = ATOM_GET_PRIVATE (atom);
-       
+
        switch (property_id)
                {
                        case PROP_AUTHOR:
index c986d0daae02a3cff18dfeaa353a5ada877ddd02..6d96297d66db1c77c95ded42be8596059280e8fd 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include "atomcategory.h"
@@ -46,38 +46,12 @@ static void atom_category_get_property (GObject *object,
 typedef struct _AtomCategoryPrivate AtomCategoryPrivate;
 struct _AtomCategoryPrivate
        {
-               gchar *term,
-                     *scheme,
-                     *label;
+               gchar *term;
+               gchar *scheme;
+               gchar *label;
        };
 
-GType
-atom_category_get_type (void)
-{
-       static GType atom_category_type = 0;
-
-       if (!atom_category_type)
-               {
-                       static const GTypeInfo atom_category_info =
-                       {
-                               sizeof (AtomCategoryClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_category_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomCategory),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_category_init,
-                               NULL
-                       };
-
-                       atom_category_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomCategory",
-                                                                    &atom_category_info, 0);
-               }
-
-       return atom_category_type;
-}
+G_DEFINE_TYPE (AtomCategory, atom_category, TYPE_ATOM_COMMON)
 
 static void
 atom_category_class_init (AtomCategoryClass *klass)
index 8368a88f2091c2160c34508dbf5cc976cdca1caf..d906ba9e634805d5f1ffa0321835ae8a2c8c6c63 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include "atomcommon.h"
@@ -45,37 +45,11 @@ static void atom_common_get_property (GObject *object,
 typedef struct _AtomCommonPrivate AtomCommonPrivate;
 struct _AtomCommonPrivate
        {
-               gchar *base,
-                     *lang;
+               gchar *base;
+               gchar *lang;
        };
 
-GType
-atom_common_get_type (void)
-{
-       static GType atom_common_type = 0;
-
-       if (!atom_common_type)
-               {
-                       static const GTypeInfo atom_common_info =
-                       {
-                               sizeof (AtomCommonClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_common_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomCommon),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_common_init,
-                               NULL
-                       };
-
-                       atom_common_type = g_type_register_static (G_TYPE_OBJECT, "AtomCommon",
-                                                                  &atom_common_info, 0);
-               }
-
-       return atom_common_type;
-}
+G_DEFINE_TYPE (AtomCommon, atom_common, G_TYPE_OBJECT)
 
 static void
 atom_common_class_init (AtomCommonClass *klass)
@@ -149,19 +123,20 @@ atom_common_get_xml (AtomCommon *atom_common, xmlNode *xnode)
                {
                        xmlSetProp (xnode, (const xmlChar *)"xml:base", prop);
                }
+       g_free (prop);
 
        prop = (xmlChar *)g_strstrip (priv->lang);
        if (!xmlStrEqual (prop, (const xmlChar *)""))
                {
                        xmlSetProp (xnode, (const xmlChar *)"xml:lang", prop);
                }
+       g_free (prop);
 }
 
 static void
 atom_common_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        AtomCommon *atom_common = ATOM_COMMON (object);
-
        AtomCommonPrivate *priv = ATOM_COMMON_GET_PRIVATE (atom_common);
 
        switch (property_id)
@@ -206,7 +181,6 @@ static void
 atom_common_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomCommon *atom_common = ATOM_COMMON (object);
-
        AtomCommonPrivate *priv = ATOM_COMMON_GET_PRIVATE (atom_common);
 
        switch (property_id)
index deaa20a5d951bed7bf69af7fcd9099be725efb60..cf0fa6f6408b7e5a6ab361947cd94465655405d1 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include <libxml/xpath.h>
@@ -50,38 +50,12 @@ typedef struct _AtomContentPrivate AtomContentPrivate;
 struct _AtomContentPrivate
        {
                AtomContentType type;
-               gchar *media_type,
-                     *src,
-                     *text;
+               gchar *media_type;
+               gchar *src;
+               gchar *text;
        };
 
-GType
-atom_content_get_type (void)
-{
-       static GType atom_content_type = 0;
-
-       if (!atom_content_type)
-               {
-                       static const GTypeInfo atom_content_info =
-                       {
-                               sizeof (AtomContentClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_content_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomContent),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_content_init,
-                               NULL
-                       };
-
-                       atom_content_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomContent",
-                                                                &atom_content_info, 0);
-               }
-
-       return atom_content_type;
-}
+G_DEFINE_TYPE (AtomContent, atom_content, TYPE_ATOM_COMMON)
 
 static void
 atom_content_class_init (AtomContentClass *klass)
@@ -285,7 +259,6 @@ static void
 atom_content_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        AtomContent *atom_content = ATOM_CONTENT (object);
-
        AtomContentPrivate *priv = ATOM_CONTENT_GET_PRIVATE (atom_content);
 
        switch (property_id)
@@ -316,7 +289,6 @@ static void
 atom_content_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomContent *atom_content = ATOM_CONTENT (object);
-
        AtomContentPrivate *priv = ATOM_CONTENT_GET_PRIVATE (atom_content);
 
        switch (property_id)
index ec82b1530955db0b021a718c0531d0394f9381bd..2aeeacb9c0fe0aa34ef6ed115dba165657acccaa 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include "atomdate.h"
@@ -47,33 +47,7 @@ struct _AtomDatePrivate
                struct tm *dateTime;
        };
 
-GType
-atom_date_get_type (void)
-{
-       static GType atom_date_type = 0;
-
-       if (!atom_date_type)
-               {
-                       static const GTypeInfo atom_date_info =
-                       {
-                               sizeof (AtomDateClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_date_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomDate),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_date_init,
-                               NULL
-                       };
-
-                       atom_date_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomDate",
-                                                                &atom_date_info, 0);
-               }
-
-       return atom_date_type;
-}
+G_DEFINE_TYPE (AtomDate, atom_date, TYPE_ATOM_COMMON)
 
 static void
 atom_date_class_init (AtomDateClass *klass)
@@ -179,7 +153,6 @@ static void
 atom_date_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        AtomDate *atom_date = ATOM_DATE (object);
-
        AtomDatePrivate *priv = ATOM_DATE_GET_PRIVATE (atom_date);
 
        switch (property_id)
@@ -201,7 +174,6 @@ static void
 atom_date_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomDate *atom_date = ATOM_DATE (object);
-
        AtomDatePrivate *priv = ATOM_DATE_GET_PRIVATE (atom_date);
 
        switch (property_id)
index 19d67b5151c6efe1eafb641999fb7231d1daad83..88d3c62b5b05fc1db39a85629c291141f0cda909 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include <libxml/xpath.h>
@@ -62,47 +62,21 @@ static void atom_entry_get_property (GObject *object,
 typedef struct _AtomEntryPrivate AtomEntryPrivate;
 struct _AtomEntryPrivate
        {
-               GList *author,
-                     *category,
-                     *contributor;
+               GList *author;
+               GList *category;
+               GList *contributor;
                AtomContent *content;
                AtomID *id;
                AtomLink *link;
-               AtomText *title,
-                        *rights,
-                        *summary;
-               AtomDate *published,
-                        *updated;
+               AtomText *title;
+               AtomText *rights;
+               AtomText *summary;
+               AtomDate *published;
+               AtomDate *updated;
                AtomSource *source;
        };
 
-GType
-atom_entry_get_type (void)
-{
-       static GType atom_entry_type = 0;
-
-       if (!atom_entry_type)
-               {
-                       static const GTypeInfo atom_entry_info =
-                       {
-                               sizeof (AtomEntryClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_entry_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomEntry),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_entry_init,
-                               NULL
-                       };
-
-                       atom_entry_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomEntry",
-                                                                 &atom_entry_info, 0);
-               }
-
-       return atom_entry_type;
-}
+G_DEFINE_TYPE (AtomEntry, atom_entry, TYPE_ATOM_COMMON)
 
 static void
 atom_entry_class_init (AtomEntryClass *klass)
@@ -237,7 +211,7 @@ AtomEntry
        AtomID *id = NULL;
        AtomText *title = NULL;
        AtomDate *updated = NULL;
-                                                                               
+
        xmlXPathObjectPtr xpresult;
        xmlXPathContextPtr xpcontext = xmlXPathNewContext (xnode->doc);
 
@@ -532,7 +506,6 @@ atom_entry_set_property (GObject *object, guint property_id, const GValue *value
        GObject *obj;
 
        AtomEntry *atome = ATOM_ENTRY (object);
-
        AtomEntryPrivate *priv = ATOM_ENTRY_GET_PRIVATE (atome);
 
        switch (property_id)
@@ -624,9 +597,8 @@ static void
 atom_entry_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomEntry *atome = ATOM_ENTRY (object);
-
        AtomEntryPrivate *priv = ATOM_ENTRY_GET_PRIVATE (atome);
-       
+
        switch (property_id)
                {
                        case PROP_AUTHOR:
index a8236b446fd8a157ebf0b02cf46fd8c39922c187..aa72a896f47c5b13ab838343ca50a4c704adebc3 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include "atomgenerator.h"
@@ -46,38 +46,12 @@ static void atom_generator_get_property (GObject *object,
 typedef struct _AtomGeneratorPrivate AtomGeneratorPrivate;
 struct _AtomGeneratorPrivate
        {
-               gchar *uri,
-                     *version,
-                     *text;
+               gchar *uri;
+               gchar *version;
+               gchar *text;
        };
 
-GType
-atom_generator_get_type (void)
-{
-       static GType atom_generator_type = 0;
-
-       if (!atom_generator_type)
-               {
-                       static const GTypeInfo atom_generator_info =
-                       {
-                               sizeof (AtomGeneratorClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_generator_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomGenerator),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_generator_init,
-                               NULL
-                       };
-
-                       atom_generator_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomGenerator",
-                                                                     &atom_generator_info, 0);
-               }
-
-       return atom_generator_type;
-}
+G_DEFINE_TYPE (AtomGenerator, atom_generator, TYPE_ATOM_COMMON)
 
 static void
 atom_generator_class_init (AtomGeneratorClass *klass)
@@ -210,7 +184,6 @@ static void
 atom_generator_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        AtomGenerator *atom_generator = ATOM_GENERATOR (object);
-
        AtomGeneratorPrivate *priv = ATOM_GENERATOR_GET_PRIVATE (atom_generator);
 
        switch (property_id)
@@ -247,7 +220,6 @@ static void
 atom_generator_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomGenerator *atom_generator = ATOM_GENERATOR (object);
-
        AtomGeneratorPrivate *priv = ATOM_GENERATOR_GET_PRIVATE (atom_generator);
 
        switch (property_id)
index 1dcbfff2f0b954298261b35b8debf38e31b28cae..f9e8169e72d9c247499ff77cb7b97fb0223d4976 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include "atomid.h"
@@ -47,33 +47,7 @@ struct _AtomIDPrivate
                gchar *uri;
        };
 
-GType
-atom_id_get_type (void)
-{
-       static GType atom_id_type = 0;
-
-       if (!atom_id_type)
-               {
-                       static const GTypeInfo atom_id_info =
-                       {
-                               sizeof (AtomIDClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_id_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomID),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_id_init,
-                               NULL
-                       };
-
-                       atom_id_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomID",
-                                                              &atom_id_info, 0);
-               }
-
-       return atom_id_type;
-}
+G_DEFINE_TYPE (AtomID, atom_id, TYPE_ATOM_COMMON)
 
 static void
 atom_id_class_init (AtomIDClass *klass)
@@ -165,7 +139,6 @@ static void
 atom_id_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        AtomID *atom_id = ATOM_ID (object);
-
        AtomIDPrivate *priv = ATOM_ID_GET_PRIVATE (atom_id);
 
        switch (property_id)
@@ -195,7 +168,6 @@ static void
 atom_id_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomID *atom_id = ATOM_ID (object);
-
        AtomIDPrivate *priv = ATOM_ID_GET_PRIVATE (atom_id);
 
        switch (property_id)
index 3b374827c8a0ce5f0d973212a6653d8edbf8b2bc..3789a49b332c4d1a475d0922dd40d0a8a6911ca3 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include "atomlink.h"
@@ -49,41 +49,15 @@ static void atom_link_get_property (GObject *object,
 typedef struct _AtomLinkPrivate AtomLinkPrivate;
 struct _AtomLinkPrivate
        {
-               gchar *href,
-                     *rel,
-                     *type,
-                     *hreflang,
-                     *title,
-                     *length;
+               gchar *href;
+               gchar *rel;
+               gchar *type;
+               gchar *hreflang;
+               gchar *title;
+               gchar *length;
        };
 
-GType
-atom_link_get_type (void)
-{
-       static GType atom_link_type = 0;
-
-       if (!atom_link_type)
-               {
-                       static const GTypeInfo atom_link_info =
-                       {
-                               sizeof (AtomLinkClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_link_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomLink),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_link_init,
-                               NULL
-                       };
-
-                       atom_link_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomLink",
-                                                                     &atom_link_info, 0);
-               }
-
-       return atom_link_type;
-}
+G_DEFINE_TYPE (AtomLink, atom_link, TYPE_ATOM_COMMON)
 
 static void
 atom_link_class_init (AtomLinkClass *klass)
@@ -275,7 +249,6 @@ static void
 atom_link_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        AtomLink *atom_link = ATOM_LINK (object);
-
        AtomLinkPrivate *priv = ATOM_LINK_GET_PRIVATE (atom_link);
 
        switch (property_id)
@@ -324,7 +297,6 @@ static void
 atom_link_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomLink *atom_link = ATOM_LINK (object);
-
        AtomLinkPrivate *priv = ATOM_LINK_GET_PRIVATE (atom_link);
 
        switch (property_id)
index 26529f22723e736eaed598b4e4e1663576875f3f..3e2c894683929520b79a6d16ec21ed56508bdfe0 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include <libxml/xpath.h>
@@ -48,38 +48,12 @@ static void atom_person_get_property (GObject *object,
 typedef struct _AtomPersonPrivate AtomPersonPrivate;
 struct _AtomPersonPrivate
        {
-               gchar *name,
-                     *uri,
-                     *email;
+               gchar *name;
+               gchar *uri;
+               gchar *email;
        };
 
-GType
-atom_person_get_type (void)
-{
-       static GType atom_person_type = 0;
-
-       if (!atom_person_type)
-               {
-                       static const GTypeInfo atom_person_info =
-                       {
-                               sizeof (AtomPersonClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_person_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomPerson),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_person_init,
-                               NULL
-                       };
-
-                       atom_person_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomPerson",
-                                                                  &atom_person_info, 0);
-               }
-
-       return atom_person_type;
-}
+G_DEFINE_TYPE (AtomPerson, atom_person, TYPE_ATOM_COMMON)
 
 static void
 atom_person_class_init (AtomPersonClass *klass)
@@ -235,7 +209,6 @@ static void
 atom_person_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        AtomPerson *atom_person = ATOM_PERSON (object);
-
        AtomPersonPrivate *priv = ATOM_PERSON_GET_PRIVATE (atom_person);
 
        switch (property_id)
@@ -272,7 +245,6 @@ static void
 atom_person_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomPerson *atom_person = ATOM_PERSON (object);
-
        AtomPersonPrivate *priv = ATOM_PERSON_GET_PRIVATE (atom_person);
 
        switch (property_id)
index 9cd1e452c7ff8db69f3611d52d631d499b4ce816..43da39b80572c890a2039e6cab80810521558f19 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include "atomsource.h"
@@ -59,47 +59,21 @@ static void atom_source_get_property (GObject *object,
 typedef struct _AtomSourcePrivate AtomSourcePrivate;
 struct _AtomSourcePrivate
        {
-               GList *author,
-                     *category,
-                     *contributor;
+               GList *author;
+               GList *category;
+               GList *contributor;
                AtomGenerator *generator;
-               AtomID *icon,
-                      *id,
-                      *logo;
+               AtomID *icon;
+               AtomID *id;
+               AtomID *logo;
                AtomLink *link;
-               AtomText *title,
-                        *rights,
-                        *subtitle;
+               AtomText *title;
+               AtomText *rights;
+               AtomText *subtitle;
                AtomDate *updated;
        };
 
-GType
-atom_source_get_type (void)
-{
-       static GType atom_source_type = 0;
-
-       if (!atom_source_type)
-               {
-                       static const GTypeInfo atom_source_info =
-                       {
-                               sizeof (AtomSourceClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_source_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomSource),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_source_init,
-                               NULL
-                       };
-
-                       atom_source_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomSource",
-                                                                  &atom_source_info, 0);
-               }
-
-       return atom_source_type;
-}
+G_DEFINE_TYPE (AtomSource, atom_source, TYPE_ATOM_COMMON)
 
 static void
 atom_source_class_init (AtomSourceClass *klass)
@@ -431,7 +405,6 @@ atom_source_set_property (GObject *object, guint property_id, const GValue *valu
        GObject *obj;
 
        AtomSource *atome = ATOM_SOURCE (object);
-
        AtomSourcePrivate *priv = ATOM_SOURCE_GET_PRIVATE (atome);
 
        switch (property_id)
@@ -530,7 +503,6 @@ static void
 atom_source_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomSource *atome = ATOM_SOURCE (object);
-
        AtomSourcePrivate *priv = ATOM_SOURCE_GET_PRIVATE (atome);
        
        switch (property_id)
index 79387cabb01710a9e0ad5f4d8935836487c4c2d7..dc721acff1c60ccbe09523cb9b294ce1a6af01cd 100644 (file)
@@ -1,6 +1,6 @@
 /* libgfeed
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Andrea Zagli <azagli@inwind.it>
+ * Andrea Zagli <azagli@libero.it>
  */
 
 #include <libxml/xpath.h>
@@ -51,33 +51,7 @@ struct _AtomTextPrivate
                gchar *text;
        };
 
-GType
-atom_text_get_type (void)
-{
-       static GType atom_text_type = 0;
-
-       if (!atom_text_type)
-               {
-                       static const GTypeInfo atom_text_info =
-                       {
-                               sizeof (AtomTextClass),
-                               NULL,   /* base_init */
-                               NULL,   /* base_finalize */
-                               (GClassInitFunc) atom_text_class_init,
-                               NULL,   /* class_finalize */
-                               NULL,   /* class_data */
-                               sizeof (AtomText),
-                               0,      /* n_preallocs */
-                               (GInstanceInitFunc) atom_text_init,
-                               NULL
-                       };
-
-                       atom_text_type = g_type_register_static (TYPE_ATOM_COMMON, "AtomText",
-                                                                &atom_text_info, 0);
-               }
-
-       return atom_text_type;
-}
+G_DEFINE_TYPE (AtomText, atom_text, TYPE_ATOM_COMMON)
 
 static void
 atom_text_class_init (AtomTextClass *klass)
@@ -244,7 +218,6 @@ static void
 atom_text_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
        AtomText *atom_text = ATOM_TEXT (object);
-
        AtomTextPrivate *priv = ATOM_TEXT_GET_PRIVATE (atom_text);
 
        switch (property_id)
@@ -267,7 +240,6 @@ static void
 atom_text_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
 {
        AtomText *atom_text = ATOM_TEXT (object);
-
        AtomTextPrivate *priv = ATOM_TEXT_GET_PRIVATE (atom_text);
 
        switch (property_id)