Add g_type_module_register_enum() and g_type_module_register_flags().
[glib.git] / glib / ghash.c
blobecc5c963dffbdcdcdb1ee6bf210dd677310d326f
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 /*
28 * MT safe
31 #include "config.h"
33 #include "glib.h"
36 #define HASH_TABLE_MIN_SIZE 11
37 #define HASH_TABLE_MAX_SIZE 13845163
40 typedef struct _GHashNode GHashNode;
42 struct _GHashNode
44 gpointer key;
45 gpointer value;
46 GHashNode *next;
49 struct _GHashTable
51 gint size;
52 gint nnodes;
53 GHashNode **nodes;
54 GHashFunc hash_func;
55 GEqualFunc key_equal_func;
56 GDestroyNotify key_destroy_func;
57 GDestroyNotify value_destroy_func;
60 #define G_HASH_TABLE_RESIZE(hash_table) \
61 G_STMT_START { \
62 if ((hash_table->size >= 3 * hash_table->nnodes && \
63 hash_table->size > HASH_TABLE_MIN_SIZE) || \
64 (3 * hash_table->size <= hash_table->nnodes && \
65 hash_table->size < HASH_TABLE_MAX_SIZE)) \
66 g_hash_table_resize (hash_table); \
67 } G_STMT_END
69 static void g_hash_table_resize (GHashTable *hash_table);
70 static GHashNode** g_hash_table_lookup_node (GHashTable *hash_table,
71 gconstpointer key);
72 static GHashNode* g_hash_node_new (gpointer key,
73 gpointer value);
74 static void g_hash_node_destroy (GHashNode *hash_node,
75 GDestroyNotify key_destroy_func,
76 GDestroyNotify value_destroy_func);
77 static void g_hash_nodes_destroy (GHashNode *hash_node,
78 GDestroyNotify key_destroy_func,
79 GDestroyNotify value_destroy_func);
80 static guint g_hash_table_foreach_remove_or_steal (GHashTable *hash_table,
81 GHRFunc func,
82 gpointer user_data,
83 gboolean notify);
86 #ifndef DISABLE_MEM_POOLS
87 G_LOCK_DEFINE_STATIC (g_hash_global);
89 static GMemChunk *node_mem_chunk = NULL;
90 static GHashNode *node_free_list = NULL;
91 #endif
93 /**
94 * g_hash_table_new:
95 * @hash_func: a function to create a hash value from a key.
96 * Hash values are used to determine where keys are stored within the
97 * #GHashTable data structure. The g_direct_hash(), g_int_hash() and
98 * g_str_hash() functions are provided for some common types of keys.
99 * If hash_func is %NULL, g_direct_hash() is used.
100 * @key_equal_func: a function to check two keys for equality. This is
101 * used when looking up keys in the #GHashTable. The g_direct_equal(),
102 * g_int_equal() and g_str_equal() functions are provided for the most
103 * common types of keys. If @key_equal_func is %NULL, keys are compared
104 * directly in a similar fashion to g_direct_equal(), but without the
105 * overhead of a function call.
107 * Creates a new #GHashTable.
109 * Return value: a new #GHashTable.
111 GHashTable*
112 g_hash_table_new (GHashFunc hash_func,
113 GEqualFunc key_equal_func)
115 return g_hash_table_new_full (hash_func, key_equal_func, NULL, NULL);
120 * g_hash_table_new_full:
121 * @hash_func: a function to create a hash value from a key.
122 * @key_equal_func: a function to check two keys for equality.
123 * @key_destroy_func: a function to free the memory allocated for the key
124 * used when removing the entry from the #GHashTable or %NULL if you
125 * don't want to supply such a function.
126 * @value_destroy_func: a function to free the memory allocated for the
127 * value used when removing the entry from the #GHashTable or %NULL if
128 * you don't want to supply such a function.
130 * Creates a new #GHashTable like g_hash_table_new() and allows to specify
131 * functions to free the memory allocated for the key and value that get
132 * called when removing the entry from the #GHashTable.
134 * Return value: a new #GHashTable.
136 GHashTable*
137 g_hash_table_new_full (GHashFunc hash_func,
138 GEqualFunc key_equal_func,
139 GDestroyNotify key_destroy_func,
140 GDestroyNotify value_destroy_func)
142 GHashTable *hash_table;
143 guint i;
145 hash_table = g_new (GHashTable, 1);
146 hash_table->size = HASH_TABLE_MIN_SIZE;
147 hash_table->nnodes = 0;
148 hash_table->hash_func = hash_func ? hash_func : g_direct_hash;
149 hash_table->key_equal_func = key_equal_func;
150 hash_table->key_destroy_func = key_destroy_func;
151 hash_table->value_destroy_func = value_destroy_func;
152 hash_table->nodes = g_new (GHashNode*, hash_table->size);
154 for (i = 0; i < hash_table->size; i++)
155 hash_table->nodes[i] = NULL;
157 return hash_table;
161 * g_hash_table_destroy:
162 * @hash_table: a #GHashTable.
164 * Destroys the #GHashTable. If keys and/or values are dynamically
165 * allocated, you should either free them first or create the #GHashTable
166 * using g_hash_table_new_full(). In the latter case the destroy functions
167 * you supplied will be called on all keys and values before destroying
168 * the #GHashTable.
170 void
171 g_hash_table_destroy (GHashTable *hash_table)
173 guint i;
175 g_return_if_fail (hash_table != NULL);
177 for (i = 0; i < hash_table->size; i++)
178 g_hash_nodes_destroy (hash_table->nodes[i],
179 hash_table->key_destroy_func,
180 hash_table->value_destroy_func);
182 g_free (hash_table->nodes);
183 g_free (hash_table);
186 static inline GHashNode**
187 g_hash_table_lookup_node (GHashTable *hash_table,
188 gconstpointer key)
190 GHashNode **node;
192 node = &hash_table->nodes
193 [(* hash_table->hash_func) (key) % hash_table->size];
195 /* Hash table lookup needs to be fast.
196 * We therefore remove the extra conditional of testing
197 * whether to call the key_equal_func or not from
198 * the inner loop.
200 if (hash_table->key_equal_func)
201 while (*node && !(*hash_table->key_equal_func) ((*node)->key, key))
202 node = &(*node)->next;
203 else
204 while (*node && (*node)->key != key)
205 node = &(*node)->next;
207 return node;
211 * g_hash_table_lookup:
212 * @hash_table: a #GHashTable.
213 * @key: the key to look up.
215 * Looks up a key in a #GHashTable.
217 * Return value: the associated value, or %NULL if the key is not found.
219 gpointer
220 g_hash_table_lookup (GHashTable *hash_table,
221 gconstpointer key)
223 GHashNode *node;
225 g_return_val_if_fail (hash_table != NULL, NULL);
227 node = *g_hash_table_lookup_node (hash_table, key);
229 return node ? node->value : NULL;
233 * g_hash_table_lookup_extended:
234 * @hash_table: a #GHashTable.
235 * @lookup_key: the key to look up.
236 * @orig_key: returns the original key.
237 * @value: returns the value associated with the key.
239 * Looks up a key in the #GHashTable, returning the original key and the
240 * associated value and a #gboolean which is %TRUE if the key was found. This
241 * is useful if you need to free the memory allocated for the original key,
242 * for example before calling g_hash_table_remove().
244 * Return value: %TRUE if the key was found in the #GHashTable.
246 gboolean
247 g_hash_table_lookup_extended (GHashTable *hash_table,
248 gconstpointer lookup_key,
249 gpointer *orig_key,
250 gpointer *value)
252 GHashNode *node;
254 g_return_val_if_fail (hash_table != NULL, FALSE);
256 node = *g_hash_table_lookup_node (hash_table, lookup_key);
258 if (node)
260 if (orig_key)
261 *orig_key = node->key;
262 if (value)
263 *value = node->value;
264 return TRUE;
266 else
267 return FALSE;
271 * g_hash_table_insert:
272 * @hash_table: a #GHashTable.
273 * @key: a key to insert.
274 * @value: the value to associate with the key.
276 * Inserts a new key and value into a #GHashTable.
278 * If the key already exists in the #GHashTable its current value is replaced
279 * with the new value. If you supplied a @value_destroy_func when creating the
280 * #GHashTable, the old value is freed using that function. If you supplied
281 * a @key_destroy_func when creating the #GHashTable, the passed key is freed
282 * using that function.
284 void
285 g_hash_table_insert (GHashTable *hash_table,
286 gpointer key,
287 gpointer value)
289 GHashNode **node;
291 g_return_if_fail (hash_table != NULL);
293 node = g_hash_table_lookup_node (hash_table, key);
295 if (*node)
297 /* do not reset node->key in this place, keeping
298 * the old key is the intended behaviour.
299 * g_hash_table_replace() can be used instead.
302 /* free the passed key */
303 if (hash_table->key_destroy_func)
304 hash_table->key_destroy_func (key);
306 if (hash_table->value_destroy_func)
307 hash_table->value_destroy_func ((*node)->value);
309 (*node)->value = value;
311 else
313 *node = g_hash_node_new (key, value);
314 hash_table->nnodes++;
315 G_HASH_TABLE_RESIZE (hash_table);
320 * g_hash_table_replace:
321 * @hash_table: a #GHashTable.
322 * @key: a key to insert.
323 * @value: the value to associate with the key.
325 * Inserts a new key and value into a #GHashTable similar to
326 * g_hash_table_insert(). The difference is that if the key already exists
327 * in the #GHashTable, it gets replaced by the new key. If you supplied a
328 * @value_destroy_func when creating the #GHashTable, the old value is freed
329 * using that function. If you supplied a @key_destroy_func when creating the
330 * #GHashTable, the old key is freed using that function.
332 void
333 g_hash_table_replace (GHashTable *hash_table,
334 gpointer key,
335 gpointer value)
337 GHashNode **node;
339 g_return_if_fail (hash_table != NULL);
341 node = g_hash_table_lookup_node (hash_table, key);
343 if (*node)
345 if (hash_table->key_destroy_func)
346 hash_table->key_destroy_func ((*node)->key);
348 if (hash_table->value_destroy_func)
349 hash_table->value_destroy_func ((*node)->value);
351 (*node)->key = key;
352 (*node)->value = value;
354 else
356 *node = g_hash_node_new (key, value);
357 hash_table->nnodes++;
358 G_HASH_TABLE_RESIZE (hash_table);
363 * g_hash_table_remove:
364 * @hash_table: a #GHashTable.
365 * @key: the key to remove.
367 * Removes a key and its associated value from a #GHashTable.
369 * If the #GHashTable was created using g_hash_table_new_full(), the
370 * key and value are freed using the supplied destroy functions, otherwise
371 * you have to make sure that any dynamically allocated values are freed
372 * yourself.
374 * Return value: %TRUE if the key was found and removed from the #GHashTable.
376 gboolean
377 g_hash_table_remove (GHashTable *hash_table,
378 gconstpointer key)
380 GHashNode **node, *dest;
382 g_return_val_if_fail (hash_table != NULL, FALSE);
384 node = g_hash_table_lookup_node (hash_table, key);
385 if (*node)
387 dest = *node;
388 (*node) = dest->next;
389 g_hash_node_destroy (dest,
390 hash_table->key_destroy_func,
391 hash_table->value_destroy_func);
392 hash_table->nnodes--;
394 G_HASH_TABLE_RESIZE (hash_table);
396 return TRUE;
399 return FALSE;
403 * g_hash_table_steal:
404 * @hash_table: a #GHashTable.
405 * @key: the key to remove.
407 * Removes a key and its associated value from a #GHashTable without
408 * calling the key and value destroy functions.
410 * Return value: %TRUE if the key was found and removed from the #GHashTable.
412 gboolean
413 g_hash_table_steal (GHashTable *hash_table,
414 gconstpointer key)
416 GHashNode **node, *dest;
418 g_return_val_if_fail (hash_table != NULL, FALSE);
420 node = g_hash_table_lookup_node (hash_table, key);
421 if (*node)
423 dest = *node;
424 (*node) = dest->next;
425 g_hash_node_destroy (dest, NULL, NULL);
426 hash_table->nnodes--;
428 G_HASH_TABLE_RESIZE (hash_table);
430 return TRUE;
433 return FALSE;
437 * g_hash_table_foreach_remove:
438 * @hash_table: a #GHashTable.
439 * @func: the function to call for each key/value pair.
440 * @user_data: user data to pass to the function.
442 * Calls the given function for each key/value pair in the #GHashTable.
443 * If the function returns %TRUE, then the key/value pair is removed from the
444 * #GHashTable. If you supplied key or value destroy functions when creating
445 * the #GHashTable, they are used to free the memory allocated for the removed
446 * keys and values.
448 * Return value: the number of key/value pairs removed.
450 guint
451 g_hash_table_foreach_remove (GHashTable *hash_table,
452 GHRFunc func,
453 gpointer user_data)
455 g_return_val_if_fail (hash_table != NULL, 0);
456 g_return_val_if_fail (func != NULL, 0);
458 return g_hash_table_foreach_remove_or_steal (hash_table, func, user_data, TRUE);
462 * g_hash_table_foreach_steal:
463 * @hash_table: a #GHashTable.
464 * @func: the function to call for each key/value pair.
465 * @user_data: user data to pass to the function.
467 * Calls the given function for each key/value pair in the #GHashTable.
468 * If the function returns %TRUE, then the key/value pair is removed from the
469 * #GHashTable, but no key or value destroy functions are called.
471 * Return value: the number of key/value pairs removed.
473 guint
474 g_hash_table_foreach_steal (GHashTable *hash_table,
475 GHRFunc func,
476 gpointer user_data)
478 g_return_val_if_fail (hash_table != NULL, 0);
479 g_return_val_if_fail (func != NULL, 0);
481 return g_hash_table_foreach_remove_or_steal (hash_table, func, user_data, FALSE);
484 static guint
485 g_hash_table_foreach_remove_or_steal (GHashTable *hash_table,
486 GHRFunc func,
487 gpointer user_data,
488 gboolean notify)
490 GHashNode *node, *prev;
491 guint i;
492 guint deleted = 0;
494 for (i = 0; i < hash_table->size; i++)
496 restart:
498 prev = NULL;
500 for (node = hash_table->nodes[i]; node; prev = node, node = node->next)
502 if ((* func) (node->key, node->value, user_data))
504 deleted += 1;
506 hash_table->nnodes -= 1;
508 if (prev)
510 prev->next = node->next;
511 g_hash_node_destroy (node,
512 notify ? hash_table->key_destroy_func : NULL,
513 notify ? hash_table->value_destroy_func : NULL);
514 node = prev;
516 else
518 hash_table->nodes[i] = node->next;
519 g_hash_node_destroy (node,
520 notify ? hash_table->key_destroy_func : NULL,
521 notify ? hash_table->value_destroy_func : NULL);
522 goto restart;
528 G_HASH_TABLE_RESIZE (hash_table);
530 return deleted;
534 * g_hash_table_foreach:
535 * @hash_table: a #GHashTable.
536 * @func: the function to call for each key/value pair.
537 * @user_data: user data to pass to the function.
539 * Calls the given function for each of the key/value pairs in the
540 * #GHashTable. The function is passed the key and value of each
541 * pair, and the given @user_data parameter. The hash table may not
542 * be modified while iterating over it (you can't add/remove
543 * items). To remove all items matching a predicate, use
544 * g_hash_table_remove().
546 void
547 g_hash_table_foreach (GHashTable *hash_table,
548 GHFunc func,
549 gpointer user_data)
551 GHashNode *node;
552 gint i;
554 g_return_if_fail (hash_table != NULL);
555 g_return_if_fail (func != NULL);
557 for (i = 0; i < hash_table->size; i++)
558 for (node = hash_table->nodes[i]; node; node = node->next)
559 (* func) (node->key, node->value, user_data);
563 * g_hash_table_find:
564 * @hash_table: a #GHashTable.
565 * @predicate: function to test the key/value pairs for a certain property.
566 * @user_data: user data to pass to the function.
568 * Calls the given function for key/value pairs in the #GHashTable until
569 * @predicate returns %TRUE. The function is passed the key and value of
570 * each pair, and the given @user_data parameter. The hash table may not
571 * be modified while iterating over it (you can't add/remove items).
573 * Return value: The value of the first key/value pair is returned, for which
574 * func evaluates to %TRUE. If no pair with the requested property is found,
575 * %NULL is returned.
577 * Since: 2.4
579 gpointer
580 g_hash_table_find (GHashTable *hash_table,
581 GHRFunc predicate,
582 gpointer user_data)
584 GHashNode *node;
585 gint i;
587 g_return_val_if_fail (hash_table != NULL, NULL);
588 g_return_val_if_fail (predicate != NULL, NULL);
590 for (i = 0; i < hash_table->size; i++)
591 for (node = hash_table->nodes[i]; node; node = node->next)
592 if (predicate (node->key, node->value, user_data))
593 return node->value;
594 return NULL;
598 * g_hash_table_size:
599 * @hash_table: a #GHashTable.
601 * Returns the number of elements contained in the #GHashTable.
603 * Return value: the number of key/value pairs in the #GHashTable.
605 guint
606 g_hash_table_size (GHashTable *hash_table)
608 g_return_val_if_fail (hash_table != NULL, 0);
610 return hash_table->nnodes;
613 static void
614 g_hash_table_resize (GHashTable *hash_table)
616 GHashNode **new_nodes;
617 GHashNode *node;
618 GHashNode *next;
619 guint hash_val;
620 gint new_size;
621 gint i;
623 new_size = g_spaced_primes_closest (hash_table->nnodes);
624 new_size = CLAMP (new_size, HASH_TABLE_MIN_SIZE, HASH_TABLE_MAX_SIZE);
626 new_nodes = g_new0 (GHashNode*, new_size);
628 for (i = 0; i < hash_table->size; i++)
629 for (node = hash_table->nodes[i]; node; node = next)
631 next = node->next;
633 hash_val = (* hash_table->hash_func) (node->key) % new_size;
635 node->next = new_nodes[hash_val];
636 new_nodes[hash_val] = node;
639 g_free (hash_table->nodes);
640 hash_table->nodes = new_nodes;
641 hash_table->size = new_size;
644 static GHashNode*
645 g_hash_node_new (gpointer key,
646 gpointer value)
648 GHashNode *hash_node;
650 #ifdef DISABLE_MEM_POOLS
651 hash_node = g_new (GHashNode, 1);
652 #else
653 G_LOCK (g_hash_global);
654 if (node_free_list)
656 hash_node = node_free_list;
657 node_free_list = node_free_list->next;
659 else
661 if (!node_mem_chunk)
662 node_mem_chunk = g_mem_chunk_new ("hash node mem chunk",
663 sizeof (GHashNode),
664 1024, G_ALLOC_ONLY);
666 hash_node = g_chunk_new (GHashNode, node_mem_chunk);
668 G_UNLOCK (g_hash_global);
669 #endif
671 hash_node->key = key;
672 hash_node->value = value;
673 hash_node->next = NULL;
675 return hash_node;
678 static void
679 g_hash_node_destroy (GHashNode *hash_node,
680 GDestroyNotify key_destroy_func,
681 GDestroyNotify value_destroy_func)
683 if (key_destroy_func)
684 key_destroy_func (hash_node->key);
685 if (value_destroy_func)
686 value_destroy_func (hash_node->value);
688 #ifdef ENABLE_GC_FRIENDLY
689 hash_node->key = NULL;
690 hash_node->value = NULL;
691 #endif /* ENABLE_GC_FRIENDLY */
693 #ifdef DISABLE_MEM_POOLS
694 g_free (hash_node);
695 #else
696 G_LOCK (g_hash_global);
697 hash_node->next = node_free_list;
698 node_free_list = hash_node;
699 G_UNLOCK (g_hash_global);
700 #endif
703 static void
704 g_hash_nodes_destroy (GHashNode *hash_node,
705 GFreeFunc key_destroy_func,
706 GFreeFunc value_destroy_func)
708 #ifdef DISABLE_MEM_POOLS
709 while (hash_node)
711 GHashNode *next = hash_node->next;
713 if (key_destroy_func)
714 key_destroy_func (hash_node->key);
715 if (value_destroy_func)
716 value_destroy_func (hash_node->value);
718 g_free (hash_node);
719 hash_node = next;
721 #else
722 if (hash_node)
724 GHashNode *node = hash_node;
726 while (node->next)
728 if (key_destroy_func)
729 key_destroy_func (node->key);
730 if (value_destroy_func)
731 value_destroy_func (node->value);
733 #ifdef ENABLE_GC_FRIENDLY
734 node->key = NULL;
735 node->value = NULL;
736 #endif /* ENABLE_GC_FRIENDLY */
738 node = node->next;
741 if (key_destroy_func)
742 key_destroy_func (node->key);
743 if (value_destroy_func)
744 value_destroy_func (node->value);
746 #ifdef ENABLE_GC_FRIENDLY
747 node->key = NULL;
748 node->value = NULL;
749 #endif /* ENABLE_GC_FRIENDLY */
751 G_LOCK (g_hash_global);
752 node->next = node_free_list;
753 node_free_list = hash_node;
754 G_UNLOCK (g_hash_global);
756 #endif