From 9edeb16153bd1dd04e294ae2afdc1c18bf42226d Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 7 Jul 2019 18:31:56 +0200 Subject: [PATCH] First build; boilerplate code. --- src/Makefile.am | 4 +- src/parser.c | 160 ++++++++++++++++++++++++++++++++++++++++++++++++ src/parser.h | 40 ++++++++++++ 3 files changed, 202 insertions(+), 2 deletions(-) create mode 100644 src/parser.c create mode 100644 src/parser.h diff --git a/src/Makefile.am b/src/Makefile.am index 4054274..49b946f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 index 0000000..ce65493 --- /dev/null +++ b/src/parser.c @@ -0,0 +1,160 @@ +/* + * Copyright (C) 2019 Andrea Zagli + * + * 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 +#endif + +#include + +#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 index 0000000..8f82438 --- /dev/null +++ b/src/parser.h @@ -0,0 +1,40 @@ +/* + * Copyright (C) 2019 Andrea Zagli + * + * 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 +#include + + +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__ */ -- 2.49.0