Rules-quot
*.exe
*.csv
-examples/format_money
+examples/to_xml
build/
test-driver
tests/generic
AM_CPPFLAGS = $(WARN_CFLAGS) \
$(DISABLE_DEPRECATED_CFLAGS) \
- $(ZAKUTILS_CFLAGS) \
+ $(ZAKUTILSJX_CFLAGS) \
-I$(top_srcdir)/src
LIBS = $(ZAKUTILSJX_LIBS) \
LDADD = $(top_builddir)/src/libzakutilsjsonxml.la
-noinst_PROGRAMS =
+noinst_PROGRAMS = \
+ to_xml
--- /dev/null
+{
+ "obj1": "value1",
+ "obj2": "value2",
+ "obj3": "value3"
+}
--- /dev/null
+/*
+ * Copyright (C) 2020 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
+ */
+
+#include <glib/gprintf.h>
+
+#include "json.h"
+#include "xml.h"
+
+int
+main (int argc, char *argv[])
+{
+ GError *error;
+ JsonParser *parser;
+ JsonReader *reader;
+
+ xmlDoc *xdoc;
+ xmlNode *xroot;
+
+ xmlChar *buf;
+
+ if (argc > 1)
+ {
+ parser = json_parser_new ();
+
+ error = NULL;
+ if (!json_parser_load_from_file (parser, argv[1], &error)
+ || error != NULL)
+ {
+ g_warning ("Unable to parse json file «%s»: %s",
+ error != NULL && error->message != NULL ? error->message : "no details");
+ }
+ else
+ {
+ reader = json_reader_new (json_parser_get_root (parser));
+ g_warning ("is array %d is object %d",
+ json_reader_is_array (reader),
+ json_reader_is_object (reader));
+ g_warning ("elements %d members %d",
+ json_reader_count_elements (reader),
+ json_reader_count_members (reader));
+ g_object_unref (reader);
+
+ reader = json_reader_new (json_parser_get_root (parser));
+
+ xdoc = xmlNewDoc ("1.0");
+ xroot = xmlNewNode (NULL, "objects");
+ xmlDocSetRootElement (xdoc, xroot);
+
+ zak_utils_json_to_xml (reader, xroot);
+
+ xmlDocDumpMemory (xdoc, &buf, NULL);
+
+ g_printf ("%s", buf);
+
+ xmlFreeDoc (xdoc);
+ }
+ }
+
+ return 0;
+}
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
-modulesdir=@libdir@/@PACKAGE@/modules
Name: @PACKAGE_NAME@
Description: Utility functions for json and xml.
Version: @PACKAGE_VERSION@
Requires: glib-2.0 >= 2.36 gobject-2.0 >= 2.36 gio-2.0 >= 2.36 json-glib-2.0 libxml-2.0
-Libs: -L${libdir} -lm -lzakutilsjsonxml
+Libs: -L${libdir} -lzakutilsjsonxml
Cflags: -I${includedir}
lib_LTLIBRARIES = libzakutilsjsonxml.la
libzakutilsjsonxml_la_SOURCES = \
- json.c
+ json.c \
+ xml.c
libzakutilsjsonxml_la_LDFLAGS = -no-undefined
libzakutilsjsonxml_include_HEADERS = \
libzakutilsjsonxml.h \
- json.h
+ json.h \
+ xml.h
libzakutilsjsonxml_includedir = $(includedir)/libzakutilsjsonxml
/*
- * Copyright (C) 2020 Zagli <azagli@libero.it>
+ * Copyright (C) 2020 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
json_builder_set_member_name (builder, name);
json_builder_add_boolean_value (builder, value);
}
+
+void
+zak_utils_json_to_xml (JsonReader *reader, xmlNode *xnode)
+{
+ guint l;
+ guint i;
+ gchar **members;
+
+ if (json_reader_is_object (reader))
+ {
+ l = json_reader_count_members (reader);
+ members = json_reader_list_members (reader);
+ for (i = 0; i < l; i++)
+ {
+ xmlNewTextChild (xnode, NULL, (const xmlChar *)members[i], (const xmlChar *)zak_utils_json_get_string (reader, members[i]));
+ }
+ g_strfreev (members);
+ }
+}
#include <gio/gio.h>
#include <json-glib/json-glib.h>
+#include "xml.h"
+
G_BEGIN_DECLS
void zak_utils_json_set_string (JsonBuilder *builder, const gchar *name, const gchar *value);
void zak_utils_json_set_boolean (JsonBuilder *builder, const gchar *name, gboolean value);
+void zak_utils_json_to_xml (JsonReader *reader, xmlNode *xnode);
+
G_END_DECLS
#include <libzakutilsjsonxml/json.h>
+#include <libzakutilsjsonxml/xml.h>
#endif /* __LIBZAKUTILSJSONXML_H__ */
--- /dev/null
+/*
+ * Copyright (C) 2020 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 "xml.h"
--- /dev/null
+/*
+ * Copyright (C) 2020 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_UTILS_XML_H__
+#define __ZAK_UTILS_XML_H__
+
+
+#include <glib.h>
+#include <glib-object.h>
+#include <gio/gio.h>
+#include <libxml/tree.h>
+
+
+G_BEGIN_DECLS
+
+
+
+
+G_END_DECLS
+
+
+#endif /* __ZAK_UTILS_XML_H__ */