From: Andrea Zagli Date: Sun, 24 Jan 2016 10:30:05 +0000 (+0100) Subject: Added program gdaex2gettext. X-Git-Tag: v0.6.0~1^2~1 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=b26fa296e93e704dca879fa149cda4f89a72a68a;p=libgdaex Added program gdaex2gettext. --- diff --git a/.gitignore b/.gitignore index 79f01f5..2505b7a 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/Makefile.am b/Makefile.am index fa762b2..8ed654a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 diff --git a/configure.ac b/configure.ac index 921d19a..1fe5b29 100644 --- a/configure.ac +++ b/configure.ac @@ -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 index 0000000..4761d6c --- /dev/null +++ b/docs/gdaex2gettext/gdaex2gettext.xml @@ -0,0 +1,8 @@ + + + + + sql statement + + + diff --git a/gdaex2gettext/Makefile.am b/gdaex2gettext/Makefile.am new file mode 100644 index 0000000..1d25de9 --- /dev/null +++ b/gdaex2gettext/Makefile.am @@ -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 index 0000000..8f29f15 --- /dev/null +++ b/gdaex2gettext/gdaex2gettext.c @@ -0,0 +1,153 @@ +/* + * Copyright (C) 2016 Andrea Zagli + * + * 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 + +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 index 0000000..02b7bcb --- /dev/null +++ b/tests/gdaex2gettext.xml @@ -0,0 +1,8 @@ + + + + + SELECT * FROM articoli + + +