]> saetta.ns0.it Git - libzakgorg/commitdiff
First build; boilerplate code.
authorAndrea Zagli <azagli@libero.it>
Sun, 7 Jul 2019 16:31:56 +0000 (18:31 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 7 Jul 2019 16:31:56 +0000 (18:31 +0200)
src/Makefile.am
src/parser.c [new file with mode: 0644]
src/parser.h [new file with mode: 0644]

index 4054274d46cab86aa9cff09a8484f95892faf927..49b946fa2509c5b2f0d592c763f0e3816b238ac2 100644 (file)
@@ -12,7 +12,7 @@ libzakgorg_la_SOURCES = \
 libzakgorg_la_LDFLAGS = -no-undefined
 
 gir_include = \
-              gorg.h
+              parser.h
 
 libzakgorg_include_HEADERS = \
                              libzakgorg.h \
@@ -31,7 +31,7 @@ if HAVE_INTROSPECTION
 introspection_sources = $(libzakgorg_la_SOURCES) $(gir_include)
 
 ZakGorg-1.0.gir: libzakgorg.la
-ZakGorg_1_0_gir_INCLUDES = GLib-2.0 GObject-2.0
+ZakGorg_1_0_gir_INCLUDES = GLib-2.0 GObject-2.0 Gio-2.0
 ZakGorg_1_0_gir_CFLAGS = $(AM_CPPFLAGS)
 ZakGorg_1_0_gir_LIBS = libzakgorg.la
 ZakGorg_1_0_gir_FILES = $(introspection_sources)
diff --git a/src/parser.c b/src/parser.c
new file mode 100644 (file)
index 0000000..ce65493
--- /dev/null
@@ -0,0 +1,160 @@
+/*
+ * Copyright (C) 2019 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
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include <glib/gi18n-lib.h>
+
+#include "parser.h"
+
+static void zak_gorg_parser_class_init (ZakGorgParserClass *class);
+static void zak_gorg_parser_init (ZakGorgParser *zak_gorg_parser);
+
+static void zak_gorg_parser_set_property (GObject *object,
+                                          guint property_id,
+                                          const GValue *value,
+                                          GParamSpec *pspec);
+static void zak_gorg_parser_get_property (GObject *object,
+                                          guint property_id,
+                                          GValue *value,
+                                          GParamSpec *pspec);
+
+static void zak_gorg_parser_dispose (GObject *gobject);
+static void zak_gorg_parser_finalize (GObject *gobject);
+
+#define ZAK_GORG_PARSER_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ZAK_GORG_TYPE_PARSER, ZakGorgParserPrivate))
+
+struct _ZakGorgParser
+{
+       GObject parent_instance;
+};
+
+typedef struct _ZakGorgParserPrivate ZakGorgParserPrivate;
+struct _ZakGorgParserPrivate
+       {
+               GNode *nodes;
+       };
+
+G_DEFINE_TYPE_WITH_PRIVATE (ZakGorgParser, zak_gorg_parser, ZAK_GORG_TYPE_PARSER)
+
+static void
+zak_gorg_parser_class_init (ZakGorgParserClass *klass)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+       object_class->set_property = zak_gorg_parser_set_property;
+       object_class->get_property = zak_gorg_parser_get_property;
+       object_class->dispose = zak_gorg_parser_dispose;
+       object_class->finalize = zak_gorg_parser_finalize;
+}
+
+static void
+zak_gorg_parser_init (ZakGorgParser *zak_gorg_parser)
+{
+       ZakGorgParserPrivate *priv = ZAK_GORG_PARSER_GET_PRIVATE (zak_gorg_parser);
+
+       priv->nodes = NULL;
+}
+
+/**
+ * zak_gorg_parser_new_gfile:
+ * @gfile:
+ *
+ * Returns: the newly created #ZakGorgParser object.
+ */
+ZakGorgParser
+*zak_gorg_parser_new_gfile (GFile *gfile)
+{
+       ZakGorgParser *zak_gorg_parser;
+
+       zak_gorg_parser = ZAK_GORG_PARSER (g_object_new (zak_gorg_parser_get_type (), NULL));
+
+       return ZAK_GORG_PARSER (zak_gorg_parser);
+}
+
+/**
+ * zak_gorg_parser_new:
+ * @filename:
+ *
+ * Returns: the newly created #ZakGorgParser object.
+ */
+ZakGorgParser
+*zak_gorg_parser_new (const gchar *filename)
+{
+}
+
+/* PRIVATE */
+static void
+zak_gorg_parser_set_property (GObject *object,
+                              guint property_id,
+                              const GValue *value,
+                              GParamSpec *pspec)
+{
+       ZakGorgParser *zak_gorg_parser = (ZakGorgParser *)object;
+       ZakGorgParserPrivate *priv = zak_gorg_parser_get_instance_private (zak_gorg_parser);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+static void
+zak_gorg_parser_get_property (GObject *object,
+                              guint property_id,
+                              GValue *value,
+                              GParamSpec *pspec)
+{
+       ZakGorgParser *zak_gorg_parser = (ZakGorgParser *)object;
+       ZakGorgParserPrivate *priv = zak_gorg_parser_get_instance_private (zak_gorg_parser);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+static void
+zak_gorg_parser_dispose (GObject *gobject)
+{
+       ZakGorgParser *zak_gorg_parser = (ZakGorgParser *)gobject;
+       ZakGorgParserPrivate *priv = zak_gorg_parser_get_instance_private (zak_gorg_parser);
+
+
+
+       GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
+       parent_class->dispose (gobject);
+}
+
+static void
+zak_gorg_parser_finalize (GObject *gobject)
+{
+       ZakGorgParser *zak_gorg_parser = (ZakGorgParser *)gobject;
+       ZakGorgParserPrivate *priv = zak_gorg_parser_get_instance_private (zak_gorg_parser);
+
+
+
+       GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
+       parent_class->finalize (gobject);
+}
diff --git a/src/parser.h b/src/parser.h
new file mode 100644 (file)
index 0000000..8f82438
--- /dev/null
@@ -0,0 +1,40 @@
+/*
+ * Copyright (C) 2019 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
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifndef __ZAK_GORG_PARSER_H__
+#define __ZAK_GORG_PARSER_H__
+
+
+#include <glib-object.h>
+#include <gio/gio.h>
+
+
+G_BEGIN_DECLS
+
+
+#define ZAK_GORG_TYPE_PARSER zak_gorg_parser_get_type ()
+G_DECLARE_FINAL_TYPE (ZakGorgParser, zak_gorg_parser, ZAK_GORG, PARSER, GObject)
+
+ZakGorgParser *zak_gorg_parser_new (const gchar *filename);
+ZakGorgParser *zak_gorg_parser_new_from_gfile (GFile *gfile);
+
+
+G_END_DECLS
+
+
+#endif /* __ZAK_GORG_PARSER_H__ */