]> saetta.ns0.it Git - gdadbdiff/commitdiff
Comparing tables fields (only by name).
authorAndrea Zagli <azagli@libero.it>
Sun, 16 Sep 2012 10:14:01 +0000 (12:14 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 16 Sep 2012 10:14:01 +0000 (12:14 +0200)
.anjuta_sym_db.db
src/main.c

index a563dbd9affdb16c7eb542b859f2d79ab90710d2..1d8ea91f98dd3f04d466427d44c7e15a68741b89 100644 (file)
Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ
index 1bad39b1aab7b3b03922de2bfee40aff9e95c3b9..0ae446f49779f6d80c6d646dca4a7c4a1ffc6e80 100644 (file)
@@ -169,26 +169,56 @@ read_tables (GdaConnection *gdacon, GHashTable *ht)
 }
 
 static gboolean
-comparing (GHashTable *ht_ref_db_tables, GHashTable *ht_db_tables)
+comparing_fields (Table *ref_table, Table *table)
 {
+       gboolean ret;
+
        GHashTableIter iter;
        gpointer key, value;
 
-       Table *table;
+       Field *field;
 
+       g_hash_table_iter_init (&iter, ref_table->ht_fields);
+       while (g_hash_table_iter_next (&iter, &key, &value))
+               {
+                       field = (Field *)value;
+                       if (!g_hash_table_lookup (table->ht_fields, field->name))
+                               {
+                                       g_message ("Field «%s» missing on table «%s».", field->name, table->name);
+                                       ret = FALSE;
+                               }
+               }
+
+       return ret;
+}
+
+static gboolean
+comparing (GHashTable *ht_ref_db_tables, GHashTable *ht_db_tables)
+{
        gboolean ret;
 
+       GHashTableIter iter;
+       gpointer key, value;
+
+       Table *ref_table;
+       Table *table;
+
        ret = TRUE;
 
        g_hash_table_iter_init (&iter, ht_ref_db_tables);
        while (g_hash_table_iter_next (&iter, &key, &value))
                {
-                       table = (Table *)value;
-                       if (!g_hash_table_lookup (ht_db_tables, table->name))
+                       ref_table = (Table *)value;
+                       table = g_hash_table_lookup (ht_db_tables, ref_table->name);
+                       if (table == NULL)
                                {
-                                       g_message ("Table «%s» missing.", table->name);
+                                       g_message ("Table «%s» missing.", ref_table->name);
                                        ret = FALSE;
                                }
+                       else
+                               {
+                                       comparing_fields (ref_table, table);
+                               }
                }
 
        return ret;