applied patch from Andreas Persenius <ndap@swipnet.se> that updates the
[platform/upstream/glib.git] / ghash.c
diff --git a/ghash.c b/ghash.c
index b2c3838..a664e87 100644 (file)
--- a/ghash.c
+++ b/ghash.c
@@ -2,20 +2,32 @@
  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
  *
  * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
+ * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2 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
- * Library General Public License for more details.
+ * 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 Library General Public
+ * 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., 59 Temple Place - Suite 330,
  * Boston, MA 02111-1307, USA.
  */
+
+/*
+ * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
+ * file for a list of people on the GLib Team.  See the ChangeLog
+ * files for a list of changes.  These files are distributed with
+ * GLib at ftp://ftp.gtk.org/pub/gtk/. 
+ */
+
+/* 
+ * MT safe
+ */
+
 #include "glib.h"
 
 
@@ -36,21 +48,22 @@ struct _GHashTable
 {
   gint size;
   gint nnodes;
-  gint frozen;
   GHashNode **nodes;
   GHashFunc hash_func;
   GCompareFunc key_compare_func;
 };
 
 
-static void            g_hash_table_resize     (GHashTable     *hash_table);
-static GHashNode**     g_hash_table_lookup_node(GHashTable     *hash_table,
-                                                gconstpointer   key);
-static GHashNode*      g_hash_node_new         (gpointer        key,
-                                                gpointer        value);
-static void            g_hash_node_destroy     (GHashNode      *hash_node);
-static void            g_hash_nodes_destroy    (GHashNode      *hash_node);
+static void            g_hash_table_resize      (GHashTable    *hash_table);
+static GHashNode**     g_hash_table_lookup_node (GHashTable    *hash_table,
+                                                 gconstpointer  key);
+static GHashNode*      g_hash_node_new          (gpointer       key,
+                                                 gpointer       value);
+static void            g_hash_node_destroy      (GHashNode     *hash_node);
+static void            g_hash_nodes_destroy     (GHashNode     *hash_node);
+
 
+G_LOCK_DEFINE_STATIC (g_hash_global);
 
 static GMemChunk *node_mem_chunk = NULL;
 static GHashNode *node_free_list = NULL;
@@ -61,47 +74,83 @@ g_hash_table_new (GHashFunc    hash_func,
                  GCompareFunc key_compare_func)
 {
   GHashTable *hash_table;
-  gint i;
-
+  guint i;
+  
   hash_table = g_new (GHashTable, 1);
   hash_table->size = HASH_TABLE_MIN_SIZE;
   hash_table->nnodes = 0;
-  hash_table->frozen = FALSE;
   hash_table->hash_func = hash_func ? hash_func : g_direct_hash;
   hash_table->key_compare_func = key_compare_func;
   hash_table->nodes = g_new (GHashNode*, hash_table->size);
-
+  
   for (i = 0; i < hash_table->size; i++)
     hash_table->nodes[i] = NULL;
-
+  
   return hash_table;
 }
 
 void
 g_hash_table_destroy (GHashTable *hash_table)
 {
-  gint i;
-
-  g_return_if_fail (hash_table);
-
+  guint i;
+  
+  g_return_if_fail (hash_table != NULL);
+  
   for (i = 0; i < hash_table->size; i++)
     g_hash_nodes_destroy (hash_table->nodes[i]);
-
+  
   g_free (hash_table->nodes);
   g_free (hash_table);
 }
 
-void
-g_hash_table_insert (GHashTable *hash_table,
-                    gpointer    key,
-                    gpointer    value)
+static inline GHashNode**
+g_hash_table_lookup_node (GHashTable   *hash_table,
+                         gconstpointer  key)
 {
   GHashNode **node;
+  
+  node = &hash_table->nodes
+    [(* hash_table->hash_func) (key) % hash_table->size];
+  
+  /* Hash table lookup needs to be fast.
+   *  We therefore remove the extra conditional of testing
+   *  whether to call the key_compare_func or not from
+   *  the inner loop.
+   */
+  if (hash_table->key_compare_func)
+    while (*node && !(*hash_table->key_compare_func) ((*node)->key, key))
+      node = &(*node)->next;
+  else
+    while (*node && (*node)->key != key)
+      node = &(*node)->next;
+  
+  return node;
+}
 
-  g_return_if_fail (hash_table);
+gpointer
+g_hash_table_lookup (GHashTable          *hash_table,
+                    gconstpointer key)
+{
+  GHashNode *node;
+  
+  g_return_val_if_fail (hash_table != NULL, NULL);
+  
+  node = *g_hash_table_lookup_node (hash_table, key);
+  
+  return node ? node->value : NULL;
+}
 
+void
+g_hash_table_insert (GHashTable *hash_table,
+                    gpointer    key,
+                    gpointer    value)
+{
+  GHashNode **node;
+  
+  g_return_if_fail (hash_table != NULL);
+  
   node = g_hash_table_lookup_node (hash_table, key);
-
+  
   if (*node)
     {
       /* do not reset node->key in this place, keeping
@@ -116,40 +165,29 @@ g_hash_table_insert (GHashTable *hash_table,
     {
       *node = g_hash_node_new (key, value);
       hash_table->nnodes++;
-      if (!hash_table->frozen)
-       g_hash_table_resize (hash_table);
+      g_hash_table_resize (hash_table);
     }
 }
 
 void
-g_hash_table_remove (GHashTable      *hash_table,
+g_hash_table_remove (GHashTable             *hash_table,
                     gconstpointer    key)
 {
   GHashNode **node, *dest;
+  
+  g_return_if_fail (hash_table != NULL);
+  
+  node = g_hash_table_lookup_node (hash_table, key);
 
-  g_return_if_fail (hash_table);
-
-  while (*(node = g_hash_table_lookup_node (hash_table, key)))
+  if (*node)
     {
       dest = *node;
       (*node) = dest->next;
       g_hash_node_destroy (dest);
       hash_table->nnodes--;
+  
+      g_hash_table_resize (hash_table);
     }
-  if (!hash_table->frozen)
-    g_hash_table_resize (hash_table);
-}
-
-gpointer
-g_hash_table_lookup (GHashTable   *hash_table,
-                    gconstpointer key)
-{
-  GHashNode *node;
-
-  g_return_val_if_fail (hash_table, NULL);
-
-  node = *g_hash_table_lookup_node (hash_table, key);
-  return node ? node->value : NULL;
 }
 
 gboolean
@@ -159,11 +197,11 @@ g_hash_table_lookup_extended (GHashTable  *hash_table,
                              gpointer          *value)
 {
   GHashNode *node;
-
-  g_return_val_if_fail (hash_table, FALSE);
-
+  
+  g_return_val_if_fail (hash_table != NULL, FALSE);
+  
   node = *g_hash_table_lookup_node (hash_table, lookup_key);
-
+  
   if (node)
     {
       if (orig_key)
@@ -179,41 +217,91 @@ g_hash_table_lookup_extended (GHashTable  *hash_table,
 void
 g_hash_table_freeze (GHashTable *hash_table)
 {
-  g_return_if_fail (hash_table);
+#ifdef G_ENABLE_DEBUG
+  static gboolean first_call = TRUE;
 
-  hash_table->frozen = TRUE;
+  if (first_call)
+    {
+      g_warning("g_hash_table_freeze and g_hash_table_thaw are deprecated.");
+      first_call = FALSE;
+    }
+#endif /* G_ENABLE_DEBUG */
 }
 
 void
 g_hash_table_thaw (GHashTable *hash_table)
 {
-  g_return_if_fail (hash_table);
-
-  hash_table->frozen = FALSE;
+}
 
+guint
+g_hash_table_foreach_remove (GHashTable        *hash_table,
+                            GHRFunc     func,
+                            gpointer    user_data)
+{
+  GHashNode *node, *prev;
+  guint i;
+  guint deleted = 0;
+  
+  g_return_val_if_fail (hash_table != NULL, 0);
+  g_return_val_if_fail (func != NULL, 0);
+  
+  for (i = 0; i < hash_table->size; i++)
+    {
+    restart:
+      
+      prev = NULL;
+      
+      for (node = hash_table->nodes[i]; node; prev = node, node = node->next)
+       {
+         if ((* func) (node->key, node->value, user_data))
+           {
+             deleted += 1;
+             
+             hash_table->nnodes -= 1;
+             
+             if (prev)
+               {
+                 prev->next = node->next;
+                 g_hash_node_destroy (node);
+                 node = prev;
+               }
+             else
+               {
+                 hash_table->nodes[i] = node->next;
+                 g_hash_node_destroy (node);
+                 goto restart;
+               }
+           }
+       }
+    }
+  
   g_hash_table_resize (hash_table);
+  
+  return deleted;
 }
 
 void
 g_hash_table_foreach (GHashTable *hash_table,
-                     GHFunc      func,
-                     gpointer    user_data)
+                     GHFunc      func,
+                     gpointer    user_data)
 {
   GHashNode *node;
   gint i;
-
-  g_return_if_fail (hash_table);
-
+  
+  g_return_if_fail (hash_table != NULL);
+  g_return_if_fail (func != NULL);
+  
   for (i = 0; i < hash_table->size; i++)
     for (node = hash_table->nodes[i]; node; node = node->next)
       (* func) (node->key, node->value, user_data);
 }
 
 /* Returns the number of elements contained in the hash table. */
-gint g_hash_table_size (GHashTable *hash_table)
+guint
+g_hash_table_size (GHashTable *hash_table)
 {
-  g_return_val_if_fail (hash_table, 0);
-
+  g_return_val_if_fail (hash_table != NULL, 0);
+  
   return hash_table->nnodes;
 }
 
@@ -227,69 +315,41 @@ g_hash_table_resize (GHashTable *hash_table)
   guint hash_val;
   gint new_size;
   gint i;
-
-  g_return_if_fail (hash_table);
-
+  
   nodes_per_list = (gfloat) hash_table->nnodes / (gfloat) hash_table->size;
-
+  
   if ((nodes_per_list > 0.3 || hash_table->size <= HASH_TABLE_MIN_SIZE) &&
       (nodes_per_list < 3.0 || hash_table->size >= HASH_TABLE_MAX_SIZE))
     return;
-
+  
   new_size = CLAMP(g_spaced_primes_closest (hash_table->nnodes),
                   HASH_TABLE_MIN_SIZE,
                   HASH_TABLE_MAX_SIZE);
-  new_nodes = g_new (GHashNode*, new_size);
-
-  for (i = 0; i < new_size; i++)
-    new_nodes[i] = NULL;
-
+  new_nodes = g_new0 (GHashNode*, new_size);
+  
   for (i = 0; i < hash_table->size; i++)
     for (node = hash_table->nodes[i]; node; node = next)
       {
        next = node->next;
+
        hash_val = (* hash_table->hash_func) (node->key) % new_size;
+
        node->next = new_nodes[hash_val];
        new_nodes[hash_val] = node;
       }
-
+  
   g_free (hash_table->nodes);
   hash_table->nodes = new_nodes;
   hash_table->size = new_size;
 }
 
-static GHashNode **
-g_hash_table_lookup_node (GHashTable   *hash_table,
-                         gconstpointer  key)
-{
-  GHashNode **node;
-
-  g_return_val_if_fail (hash_table, NULL);
-
-  node = &hash_table->nodes
-    [(* hash_table->hash_func) (key) % hash_table->size];
-
-  /* Hash table lookup needs to be fast.
-   *  We therefore remove the extra conditional of testing
-   *  whether to call the key_compare_func or not from
-   *  the inner loop.
-   */
-  if (hash_table->key_compare_func)
-    while (*node && !(*hash_table->key_compare_func) ((*node)->key, key))
-      node = &(*node)->next;
-  else
-    while (*node && (*node)->key != key)
-      node = &(*node)->next;
-
-  return node;
-}
-
 static GHashNode*
 g_hash_node_new (gpointer key,
                 gpointer value)
 {
   GHashNode *hash_node;
-
+  
+  G_LOCK (g_hash_global);
   if (node_free_list)
     {
       hash_node = node_free_list;
@@ -301,39 +361,57 @@ g_hash_node_new (gpointer key,
        node_mem_chunk = g_mem_chunk_new ("hash node mem chunk",
                                          sizeof (GHashNode),
                                          1024, G_ALLOC_ONLY);
-
+      
       hash_node = g_chunk_new (GHashNode, node_mem_chunk);
     }
-
+  G_UNLOCK (g_hash_global);
+  
   hash_node->key = key;
   hash_node->value = value;
   hash_node->next = NULL;
-
+  
   return hash_node;
 }
 
 static void
 g_hash_node_destroy (GHashNode *hash_node)
 {
-  g_return_if_fail (hash_node);
 
+#ifdef ENABLE_GC_FRIENDLY
+  hash_node->key = NULL;
+  hash_node->value = NULL;
+#endif /* ENABLE_GC_FRIENDLY */
+
+  G_LOCK (g_hash_global);
   hash_node->next = node_free_list;
   node_free_list = hash_node;
+  G_UNLOCK (g_hash_global);
 }
 
 static void
 g_hash_nodes_destroy (GHashNode *hash_node)
 {
-  GHashNode *node;
-
-  if (!hash_node)
-    return;
-
-  node = hash_node;
-
-  while (node->next)
-    node = node->next;
-
-  node->next = node_free_list;
-  node_free_list = hash_node;
+  if (hash_node)
+    {
+      GHashNode *node = hash_node;
+  
+      while (node->next)
+       {
+#ifdef ENABLE_GC_FRIENDLY
+         node->key = NULL;
+         node->value = NULL;
+#endif /* ENABLE_GC_FRIENDLY */
+         node = node->next;
+       }
+
+#ifdef ENABLE_GC_FRIENDLY
+      node->key = NULL;
+      node->value = NULL;
+#endif /* ENABLE_GC_FRIENDLY */
+      G_LOCK (g_hash_global);
+      node->next = node_free_list;
+      node_free_list = hash_node;
+      G_UNLOCK (g_hash_global);
+    }
 }