]> saetta.ns0.it Git - libzakutilsjsonxml/commitdiff
Started function Json::to_xml.
authorAndrea Zagli <azagli@libero.it>
Thu, 23 Jul 2020 07:13:13 +0000 (09:13 +0200)
committerAndrea Zagli <azagli@libero.it>
Thu, 23 Jul 2020 07:13:13 +0000 (09:13 +0200)
.gitignore
examples/Makefile.am
examples/sample.json [new file with mode: 0644]
examples/to_xml.c [new file with mode: 0644]
libzakutilsjsonxml.pc.in
src/Makefile.am
src/json.c
src/json.h
src/libzakutilsjsonxml.h
src/xml.c [new file with mode: 0644]
src/xml.h [new file with mode: 0644]

index 8ac6233687f0817b97de6d270f87b2fed011b66b..2a8ef0596dce6b9f3d10afe18659f348fa1ab5fd 100644 (file)
@@ -50,7 +50,7 @@ intltool-*
 Rules-quot
 *.exe
 *.csv
-examples/format_money
+examples/to_xml
 build/
 test-driver
 tests/generic
index 5dcf5a0cca4d12913cb1efcbff0a325effae3593..e61703964c7eba92751162b2d6abcd139bbb2018 100644 (file)
@@ -1,6 +1,6 @@
 AM_CPPFLAGS = $(WARN_CFLAGS) \
               $(DISABLE_DEPRECATED_CFLAGS) \
-              $(ZAKUTILS_CFLAGS) \
+              $(ZAKUTILSJX_CFLAGS) \
               -I$(top_srcdir)/src
 
 LIBS = $(ZAKUTILSJX_LIBS) \
@@ -8,4 +8,5 @@ LIBS = $(ZAKUTILSJX_LIBS) \
 
 LDADD = $(top_builddir)/src/libzakutilsjsonxml.la
 
-noinst_PROGRAMS =
+noinst_PROGRAMS = \
+                  to_xml
diff --git a/examples/sample.json b/examples/sample.json
new file mode 100644 (file)
index 0000000..fd4348f
--- /dev/null
@@ -0,0 +1,5 @@
+{
+       "obj1": "value1",
+       "obj2": "value2",
+       "obj3": "value3"
+}
diff --git a/examples/to_xml.c b/examples/to_xml.c
new file mode 100644 (file)
index 0000000..aba1c85
--- /dev/null
@@ -0,0 +1,75 @@
+/*
+ * 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;
+}
index 3ad8863a2fa0796c0c9197a2cf3c777e78bf0b07..cc67e85f89de492066ee57993b5ec619895e0189 100644 (file)
@@ -2,11 +2,10 @@ prefix=@prefix@
 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}
index d0fc6b88a040679dfb0d1e0efa33d71c207e3c82..6c09a3eb5dbd8007c049befad9963060db3c46b4 100644 (file)
@@ -7,12 +7,14 @@ AM_CPPFLAGS = $(ZAKUTILSJX_CFLAGS) \
 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
index 3c0e38099fd807efb3d02f7400f272419a11238a..8d0b4fd4e8fcc342bfb188086760a0b7bc6f1417 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * 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
@@ -97,3 +97,22 @@ zak_utils_json_set_boolean (JsonBuilder *builder, const gchar *name, gboolean va
        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);
+               }
+}
index 4aa1a1bb408039d1278ad8958d30c6fe729e47b4..bb33f3be3cb867d850728d969e37e52f2dfbd1c2 100644 (file)
@@ -25,6 +25,8 @@
 #include <gio/gio.h>
 #include <json-glib/json-glib.h>
 
+#include "xml.h"
+
 
 G_BEGIN_DECLS
 
@@ -39,6 +41,8 @@ void zak_utils_json_set_double (JsonBuilder *builder, const gchar *name, gdouble
 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
 
index 83094b17ee47c476b1865d99fe7b94ca9004147c..503c02bd2d0a3bc5f6820e6fb541c2f08620cb40 100644 (file)
@@ -21,6 +21,7 @@
 
 
 #include <libzakutilsjsonxml/json.h>
+#include <libzakutilsjsonxml/xml.h>
 
 
 #endif /* __LIBZAKUTILSJSONXML_H__ */
diff --git a/src/xml.c b/src/xml.c
new file mode 100644 (file)
index 0000000..9af3cc7
--- /dev/null
+++ b/src/xml.c
@@ -0,0 +1,23 @@
+/*
+ * 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"
diff --git a/src/xml.h b/src/xml.h
new file mode 100644 (file)
index 0000000..2b51e07
--- /dev/null
+++ b/src/xml.h
@@ -0,0 +1,37 @@
+/*
+ * 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__ */