]> saetta.ns0.it Git - libgdaex/commitdiff
Added functions GdaEx::metastore_update, ::metastore_get_tables and ::metastore_get_t...
authorAndrea Zagli <andrea.zagli@email.it>
Wed, 3 Jan 2018 14:51:15 +0000 (15:51 +0100)
committerAndrea Zagli <andrea.zagli@email.it>
Wed, 3 Jan 2018 14:51:15 +0000 (15:51 +0100)
.gitignore
src/gdaex.c
src/gdaex.h
tests/Makefile.am
tests/metastore.c [new file with mode: 0644]

index cd1690df17d3526f584b62a621d1dab56cc15fa4..830881cf75671392562bd518023fef93ea7f8e39 100644 (file)
@@ -53,6 +53,7 @@ tests/*.exe
 tests/select
 tests/getsql
 tests/sqlbuilder
+tests/metastore
 *~
 *.gir
 *.typelib
\ No newline at end of file
index fc6938ef6dbdf4f0c76e3e8972c75209ef61668c..5cd241986a352bd66a8864219a5a00c2c8d10413 100644 (file)
@@ -3771,6 +3771,105 @@ const gchar
        return ret;
 }
 
+gboolean
+gdaex_meta_store_udpate (GdaEx *gdaex, GdaMetaContext *mcontext)
+{
+       gboolean ret;
+
+       GError *error;
+
+       GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
+
+       error = NULL;
+       ret = gda_connection_update_meta_store (priv->gda_conn, mcontext, &error);
+       if (!ret)
+               {
+                       g_warning (_("Unable to update meta store: %s"),
+                                  error != NULL && error->message != NULL ? error->message : _("no detail."));
+               }
+
+       return ret;
+}
+
+GdaDataModel
+*gdaex_meta_store_get_tables (GdaEx *gdaex, gboolean update_meta_store)
+{
+       GdaDataModel *dm;
+
+       GError *error;
+
+       GdaMetaContext mcontext = {"_tables", 0, NULL, NULL};
+
+       GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
+
+       dm = NULL;
+
+       if (update_meta_store)
+               {
+                       gdaex_meta_store_udpate (gdaex, &mcontext);
+               }
+
+       error = NULL;
+       dm = gda_connection_get_meta_store_data (priv->gda_conn,
+                                                GDA_CONNECTION_META_TABLES,
+                                                &error,
+                                                0);
+
+       if (dm == NULL
+           || error != NULL)
+               {
+                       g_warning (_("Unable to get tables list: %s"),
+                                  error != NULL && error->message != NULL ? error->message : _("no detail."));
+               }
+
+       return dm;
+}
+
+GdaDataModel
+*gdaex_meta_store_get_table_fields (GdaEx *gdaex, const gchar *table_name, gboolean update_meta_store)
+{
+       GdaDataModel *dm;
+
+       GError *error;
+       GValue *gval;
+
+       GdaMetaContext mcontext = {"_columns", 1, NULL, NULL};
+
+       GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
+
+       dm = NULL;
+
+       if (update_meta_store)
+               {
+                       mcontext.column_names = g_new (gchar *, 1);
+                       mcontext.column_names[0] = "table_name";
+                       mcontext.column_values = g_new (GValue *, 1);
+                       mcontext.column_values[0] = gda_value_new (G_TYPE_STRING);
+                       g_value_take_string (mcontext.column_values[0],
+                                            gda_sql_identifier_quote (table_name, priv->gda_conn, NULL, FALSE, FALSE));
+
+                       gdaex_meta_store_udpate (gdaex, &mcontext);
+               }
+
+       gval = gda_value_new (G_TYPE_STRING);
+       g_value_take_string (gval, (gchar *)table_name);
+
+       error = NULL;
+       dm = gda_connection_get_meta_store_data (priv->gda_conn,
+                                                GDA_CONNECTION_META_FIELDS,
+                                                &error,
+                                                1,
+                                                "name", gval);
+
+       if (dm == NULL
+           || error != NULL)
+               {
+                       g_warning (_("Unable to get table fields list: %s"),
+                                  error != NULL && error->message != NULL ? error->message : _("no detail."));
+               }
+
+       return dm;
+}
 
 /* PRIVATE */
 static void
index 555c9b5682f21ee9f50a83ca61b873c6bb9bebff..f0c5f7c8c9cc6255952a57651f8a39d924610adb 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *  gdaex.h
  *
- *  Copyright (C) 2005-2017 Andrea Zagli <azagli@libero.it>
+ *  Copyright (C) 2005-2018 Andrea Zagli <azagli@libero.it>
  *
  *  This file is part of libgdaex.
  *
@@ -311,6 +311,10 @@ const gchar *gdaex_get_blob (GdaEx *gdaex,
                              const gchar *filename_field_name,
                              const gchar *blob_field_name);
 
+gboolean gdaex_meta_store_udpate (GdaEx *gdaex, GdaMetaContext *mcontext);
+GdaDataModel *gdaex_meta_store_get_tables (GdaEx *gdaex, gboolean update_meta_store);
+GdaDataModel *gdaex_meta_store_get_table_fields (GdaEx *gdaex, const gchar *table_name, gboolean update_meta_store);
+
 
 G_END_DECLS
 
index 57543bd0ec2b36e2abdf2805b09e96056443fcf3..6fe70f6bb4f684c7aa8cf913cc3c4f1ab6579c34 100644 (file)
@@ -7,6 +7,7 @@ AM_CPPFLAGS = $(GDAEX_CFLAGS) \
 
 noinst_PROGRAMS = fill_liststore \
                   getsql \
+                  metastore \
                   query_editor \
                   select \
                   sqlbuilder \
diff --git a/tests/metastore.c b/tests/metastore.c
new file mode 100644 (file)
index 0000000..657d7bf
--- /dev/null
@@ -0,0 +1,71 @@
+/*
+ * Copyright (C) 2018 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>
+
+int
+main (int argc, char **argv)
+{
+       GdaEx *gdaex;
+
+       GdaDataModel *dm;
+       GdaDataModel *dmf;
+
+       guint rows;
+       guint row;
+
+       guint rowsf;
+       guint rowf;
+
+       gtk_init (&argc, &argv);
+
+       gdaex = gdaex_new_from_string (argv[1]);
+       if (gdaex == NULL)
+               {
+                       g_error ("Unable to connect to the db: %s.", argv[1]);
+               }
+
+       dm = gdaex_meta_store_get_tables (gdaex, TRUE);
+       if (dm != NULL)
+               {
+                       rows = gda_data_model_get_n_rows (dm);
+                       for (row = 0; row < rows; row++)
+                               {
+                                       g_printf ("Table: %s\n"
+                                                 "--------------------------------------------------------------\n",
+                                                 gdaex_data_model_get_value_stringify_at (dm, row, 0));
+
+                                       dmf = gdaex_meta_store_get_table_fields (gdaex, gdaex_data_model_get_value_stringify_at (dm, row, 0), TRUE);
+                                       if (dmf != NULL)
+                                               {
+                                                       rowsf = gda_data_model_get_n_rows (dmf);
+                                                       for (rowf = 0; rowf < rowsf; rowf++)
+                                                               {
+                                                                       g_printf ("\t- %s\n",
+                                                                                 gdaex_data_model_get_value_stringify_at (dmf, rowf, 0));
+                                                               }
+                                                       g_object_unref (dmf);
+                                               }
+
+                                       g_printf ("\n");
+                               }
+                       g_object_unref (dm);
+               }
+
+       return 0;
+}