--- /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[])
+{
+ xmlDoc *xdoc;
+
+ gchar *filter;
+
+ gboolean ok;
+
+ guint i;
+ int c;
+ gchar *data;
+
+ xmlNodeSet *xset;
+ xmlChar *keyword;
+
+ ok = FALSE;
+ if (argc == 3)
+ {
+ xdoc = xmlParseFile (argv[1]);
+ if (xdoc == NULL)
+ {
+ g_warning ("Unable to parse xml file «%s»",
+ argv[1]);
+ }
+ else
+ {
+ ok = TRUE;
+ }
+
+ filter = argv[2];
+ }
+ else if (argc == 2)
+ {
+ /* stdin */
+ i = 0;
+ data = g_malloc (0);
+ while (EOF != (c = fgetc (stdin)))
+ {
+ i++;
+ data = g_realloc (data, i);
+ data[i - 1] = c;
+ }
+
+ xdoc = xmlParseMemory (data, i);
+ if (xdoc == NULL)
+ {
+ g_warning ("Unable to parse xml «%s»",
+ data);
+ }
+ else
+ {
+ ok = TRUE;
+ }
+
+ filter = argv[1];
+ }
+
+ if (ok)
+ {
+ xset = zak_utils_xml_filter (xdoc, NULL, filter);
+
+ if (xset != NULL)
+ {
+ for (i = 0; i < xset->nodeNr; i++)
+ {
+ keyword = xmlNodeListGetString (xdoc, xset->nodeTab[i]->xmlChildrenNode, 1);
+ g_printf ("keyword: %s\n", keyword);
+ xmlFree (keyword);
+ }
+ }
+
+ xmlFreeDoc (xdoc);
+ }
+
+ return 0;
+}