--- /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 <stdio.h>
+
+#include <glib/gprintf.h>
+
+#include "json.h"
+#include "xml.h"
+
+int
+main (int argc, char *argv[])
+{
+ GError *error;
+
+ gboolean ok;
+
+ JsonParser *parser;
+ JsonReader *reader;
+
+ xmlDoc *xdoc;
+ xmlNode *xroot;
+
+ xmlChar *buf;
+
+ guint i;
+ int c;
+ gchar *data;
+
+ parser = json_parser_new ();
+
+ ok = FALSE;
+ if (argc > 1)
+ {
+ error = NULL;
+ if (!json_parser_load_from_file (parser, argv[1], &error)
+ || error != NULL)
+ {
+ g_warning ("Unable to parse json file «%s»\n%s",
+ argv[1],
+ error != NULL && error->message != NULL ? error->message : "no details");
+ }
+ else
+ {
+ ok = TRUE;
+ }
+ }
+ else
+ {
+ /* stdin */
+ i = 0;
+ data = g_malloc (0);
+ while (EOF != (c = fgetc (stdin)))
+ {
+ i++;
+ data = g_realloc (data, i);
+ data[i - 1] = c;
+ }
+
+ error = NULL;
+ if (!json_parser_load_from_data (parser, data, i, &error)
+ || error != NULL)
+ {
+ g_warning ("Unable to parse json «%s»\n%s",
+ data,
+ error != NULL && error->message != NULL ? error->message : "no details");
+ }
+ else
+ {
+ ok = TRUE;
+ }
+ }
+
+ if (ok)
+ {
+ 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);
+ }
+
+ g_object_unref (parser);
+
+ return 0;
+}
+++ /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 <stdio.h>
-
-#include <glib/gprintf.h>
-
-#include "json.h"
-#include "xml.h"
-
-int
-main (int argc, char *argv[])
-{
- GError *error;
-
- gboolean ok;
-
- JsonParser *parser;
- JsonReader *reader;
-
- xmlDoc *xdoc;
- xmlNode *xroot;
-
- xmlChar *buf;
-
- guint i;
- int c;
- gchar *data;
-
- parser = json_parser_new ();
-
- ok = FALSE;
- if (argc > 1)
- {
- error = NULL;
- if (!json_parser_load_from_file (parser, argv[1], &error)
- || error != NULL)
- {
- g_warning ("Unable to parse json file «%s»\n%s",
- argv[1],
- error != NULL && error->message != NULL ? error->message : "no details");
- }
- else
- {
- ok = TRUE;
- }
- }
- else
- {
- /* stdin */
- i = 0;
- data = g_malloc (0);
- while (EOF != (c = fgetc (stdin)))
- {
- i++;
- data = g_realloc (data, i);
- data[i - 1] = c;
- }
-
- error = NULL;
- if (!json_parser_load_from_data (parser, data, i, &error)
- || error != NULL)
- {
- g_warning ("Unable to parse json «%s»\n%s",
- data,
- error != NULL && error->message != NULL ? error->message : "no details");
- }
- else
- {
- ok = TRUE;
- }
- }
-
- if (ok)
- {
- 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);
- }
-
- g_object_unref (parser);
-
- return 0;
-}