]> saetta.ns0.it Git - libgdaex/commitdiff
Added program gdaex2gettext.
authorAndrea Zagli <andrea.zagli@email.it>
Sun, 24 Jan 2016 10:30:05 +0000 (11:30 +0100)
committerAndrea Zagli <andrea.zagli@email.it>
Sun, 24 Jan 2016 10:30:05 +0000 (11:30 +0100)
.gitignore
Makefile.am
configure.ac
docs/gdaex2gettext/gdaex2gettext.xml [new file with mode: 0644]
gdaex2gettext/Makefile.am [new file with mode: 0644]
gdaex2gettext/gdaex2gettext.c [new file with mode: 0644]
tests/gdaex2gettext.xml [new file with mode: 0644]

index 79f01f591789c888d760e5ac56868e62354ef05b..2505b7ae2564ea3982de7f7db25a7da1c977ed7f 100644 (file)
@@ -27,9 +27,11 @@ stamp-it
 mkinstalldirs
 docs/reference/html/
 docs/reference/xml/
-src/.libs/
-src/.deps/
+.libs
+.deps
 src/*marshal.[ch]
+gdaex2gettext/gdaex2gettext
+gdaex2gettext/gdaex2gettext.exe
 tests/.libs/
 tests/.deps/
 po/POTFILES
@@ -44,6 +46,7 @@ intltool*
 libgdaex*tar*
 tests/test_prefix*
 tests/query_editor
+tests/*.gdaexxml
 tests/grid
 tests/fill_liststore
 tests/*.exe
index fa762b2a5d4bb61a80e6b839c3a60d5b350f5405..8ed654a63c70cae015d9bc72a8a9e254ea6f3134 100644 (file)
@@ -1,6 +1,6 @@
 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
 
-SUBDIRS = data po src docs tests
+SUBDIRS = data po src gdaex2gettext docs tests
 
 ACLOCAL_AMFLAGS = -I m4
 
index 921d19a72416c1d08f7ac2d6b7ecb0b4938ca41f..1fe5b29f50b79265e6444081b8a7bfe3a40ef063 100644 (file)
@@ -49,6 +49,7 @@ PKG_CHECK_MODULES(GDAEX, [gmodule-2.0 >= 2
                           libgda-5.0 >= 5
                           gio-2.0 >= 2.36
                           gtk+-3.0 >= 3
+                                                 libxml-2.0 >= 2
                                                  libzakutils])
 
 AC_SUBST(GDAEX_CFLAGS)
@@ -89,6 +90,7 @@ AC_CONFIG_FILES([
        docs/Makefile
        docs/reference/Makefile
        docs/reference/version.xml
+       gdaex2gettext/Makefile
        tests/Makefile
        po/Makefile.in
 ])
diff --git a/docs/gdaex2gettext/gdaex2gettext.xml b/docs/gdaex2gettext/gdaex2gettext.xml
new file mode 100644 (file)
index 0000000..4761d6c
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<gdaex2gettext>
+
+  <file filename="<filename>">
+       sql statement
+  </file>
+
+</gdaex2gettext>
diff --git a/gdaex2gettext/Makefile.am b/gdaex2gettext/Makefile.am
new file mode 100644 (file)
index 0000000..1d25de9
--- /dev/null
@@ -0,0 +1,11 @@
+AM_CPPFLAGS = $(WARN_CFLAGS) \
+              $(DISABLE_DEPRECATED_CFLAGS) \
+              -I$(top_srcdir)/src \
+              $(GDAEX_CFLAGS)
+
+LIBS = $(GDAEX_LIBS)
+
+LDADD = $(top_builddir)/src/libgdaex.la
+
+bin_PROGRAMS = \
+               gdaex2gettext
diff --git a/gdaex2gettext/gdaex2gettext.c b/gdaex2gettext/gdaex2gettext.c
new file mode 100644 (file)
index 0000000..8f29f15
--- /dev/null
@@ -0,0 +1,153 @@
+/*
+ * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <libgdaex.h>
+
+void
+read_xml_file (const gchar *xmlfilename, GdaEx *gdaex)
+{
+       xmlDoc *xdoc;
+       xmlNode *xnode;
+
+       gchar *filename;
+       gchar *sql;
+       GdaDataModel *dm;
+
+       GError *error;
+
+       xdoc = xmlParseFile (xmlfilename);
+       if (xdoc == NULL)
+               {
+                       g_error ("Unable to parse xml file «%s».", xmlfilename);
+               }
+       else
+               {
+                       xnode = xmlDocGetRootElement (xdoc);
+                       if (xnode != NULL)
+                               {
+                                       if (xmlStrcmp (xnode->name, "gdaex2gettext") != 0)
+                                               {
+                                                       g_error ("Xml file not valid: «%s».", xmlfilename);
+                                               }
+                                       else
+                                               {
+                                                       xnode = xnode->children;
+                                                       while (xnode)
+                                                               {
+                                                                       if (xmlStrcmp (xnode->name, "file") == 0)
+                                                                               {
+                                                                                       filename = g_strdup (xmlGetProp (xnode, "filename"));
+                                                                                       if (filename != NULL
+                                                                                               && g_strcmp0 (g_strstrip (filename), "") != 0)
+                                                                                               {
+                                                                                                       sql = g_strdup (xmlNodeGetContent (xnode));
+
+                                                                                                       dm = gdaex_query (gdaex, g_strstrip (sql));
+                                                                                                       xmlFree (sql);
+                                                                                                       if (dm != NULL)
+                                                                                                               {
+                                                                                                                       error = NULL;
+                                                                                                                       if (!gda_data_model_export_to_file (dm,
+                                                                                                                                                                                               GDA_DATA_MODEL_IO_DATA_ARRAY_XML,
+                                                                                                                                                                                               filename,
+                                                                                                                                                                                               NULL, 0,
+                                                                                                                                                                                               NULL, 0,
+                                                                                                                                                                                               NULL,
+                                                                                                                                                                                               &error)
+                                                                                                                               || error != NULL)
+                                                                                                                               {
+                                                                                                                                       g_warning ("Error on data model export: %s.",
+                                                                                                                                                          error != NULL && error->message != NULL ? error->message : "no details");
+                                                                                                                               }
+                                                                                                                       g_object_unref (dm);
+                                                                                                               }
+                                                                                               }
+                                                                                       if (filename != NULL)
+                                                                                               {
+                                                                                                       g_free (filename);
+                                                                                               }
+                                                                               }
+
+                                                                       xnode = xnode->next;
+                                                               }
+                                               }
+                               }
+                       else
+                               {
+                                       g_error ("Xml file not valid: «%s».", xmlfilename);
+                               }
+       }
+
+       return;
+}
+
+int
+main (int argc, char **argv)
+{
+       gchar *cncstring;
+       gchar *xmlfile;
+
+       GError *error;
+       GOptionContext *context;
+
+       GdaEx *gdaex;
+
+       GOptionEntry entries[] =
+               {
+                       { "cnc-string", 'c', 0, G_OPTION_ARG_STRING, &cncstring, "Connection string", NULL },
+                       { "xml-file", 'x', 0, G_OPTION_ARG_FILENAME, &xmlfile, "Xml file", NULL },
+                       { NULL }
+               };
+
+       cncstring = NULL;
+       xmlfile = NULL;
+
+       gtk_init (&argc, &argv);
+
+       error = NULL;
+       context = g_option_context_new ("gdaex2gettext");
+       g_option_context_add_main_entries (context, entries, "gdaex2gettext");
+       g_option_context_parse (context, &argc, &argv, &error);
+       if (error != NULL)
+               {
+                       g_error ("Error on command line parsing: %s", error->message);
+                       return 0;
+               }
+
+       if (cncstring == NULL)
+               {
+                       g_error ("Connection string is mandatory.");
+                       return 0;
+               }
+       if (xmlfile == NULL)
+               {
+                       g_error ("Xml file is mandatory.");
+                       return 0;
+               }
+
+       gdaex = gdaex_new_from_string (cncstring);
+       if (gdaex == NULL)
+               {
+                       g_error ("Unable to create database connection «%s».", cncstring);
+                       return 0;
+               }
+
+       read_xml_file (xmlfile, gdaex);
+
+       return 0;
+}
diff --git a/tests/gdaex2gettext.xml b/tests/gdaex2gettext.xml
new file mode 100644 (file)
index 0000000..02b7bcb
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<gdaex2gettext>
+
+  <file filename="articoli.gdaexxml">
+       SELECT * FROM articoli
+  </file>
+
+</gdaex2gettext>