williamr@2
|
1 |
/* GLIB - Library of useful routines for C programming
|
williamr@2
|
2 |
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
williamr@2
|
3 |
* Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
williamr@2
|
4 |
*
|
williamr@2
|
5 |
* This library is free software; you can redistribute it and/or
|
williamr@2
|
6 |
* modify it under the terms of the GNU Lesser General Public
|
williamr@2
|
7 |
* License as published by the Free Software Foundation; either
|
williamr@2
|
8 |
* version 2 of the License, or (at your option) any later version.
|
williamr@2
|
9 |
*
|
williamr@2
|
10 |
* This library is distributed in the hope that it will be useful,
|
williamr@2
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
williamr@2
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
williamr@2
|
13 |
* Lesser General Public License for more details.
|
williamr@2
|
14 |
*
|
williamr@2
|
15 |
* You should have received a copy of the GNU Lesser General Public
|
williamr@2
|
16 |
* License along with this library; if not, write to the
|
williamr@2
|
17 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
williamr@2
|
18 |
* Boston, MA 02111-1307, USA.
|
williamr@2
|
19 |
*/
|
williamr@2
|
20 |
|
williamr@2
|
21 |
/*
|
williamr@2
|
22 |
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
williamr@2
|
23 |
* file for a list of people on the GLib Team. See the ChangeLog
|
williamr@2
|
24 |
* files for a list of changes. These files are distributed with
|
williamr@2
|
25 |
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
williamr@2
|
26 |
*/
|
williamr@2
|
27 |
|
williamr@2
|
28 |
#ifndef __G_HASH_H__
|
williamr@2
|
29 |
#define __G_HASH_H__
|
williamr@2
|
30 |
|
williamr@2
|
31 |
#include <_ansi.h>
|
williamr@2
|
32 |
#include <glib/gtypes.h>
|
williamr@2
|
33 |
|
williamr@2
|
34 |
G_BEGIN_DECLS
|
williamr@2
|
35 |
|
williamr@2
|
36 |
typedef struct _GHashTable GHashTable;
|
williamr@2
|
37 |
|
williamr@2
|
38 |
typedef gboolean (*GHRFunc) (gpointer key,
|
williamr@2
|
39 |
gpointer value,
|
williamr@2
|
40 |
gpointer user_data);
|
williamr@2
|
41 |
|
williamr@2
|
42 |
/* Hash tables
|
williamr@2
|
43 |
*/
|
williamr@2
|
44 |
IMPORT_C GHashTable* g_hash_table_new (GHashFunc hash_func,
|
williamr@2
|
45 |
GEqualFunc key_equal_func);
|
williamr@2
|
46 |
IMPORT_C GHashTable* g_hash_table_new_full (GHashFunc hash_func,
|
williamr@2
|
47 |
GEqualFunc key_equal_func,
|
williamr@2
|
48 |
GDestroyNotify key_destroy_func,
|
williamr@2
|
49 |
GDestroyNotify value_destroy_func);
|
williamr@2
|
50 |
IMPORT_C void g_hash_table_destroy (GHashTable *hash_table);
|
williamr@2
|
51 |
IMPORT_C void g_hash_table_insert (GHashTable *hash_table,
|
williamr@2
|
52 |
gpointer key,
|
williamr@2
|
53 |
gpointer value);
|
williamr@2
|
54 |
IMPORT_C void g_hash_table_replace (GHashTable *hash_table,
|
williamr@2
|
55 |
gpointer key,
|
williamr@2
|
56 |
gpointer value);
|
williamr@2
|
57 |
IMPORT_C gboolean g_hash_table_remove (GHashTable *hash_table,
|
williamr@2
|
58 |
gconstpointer key);
|
williamr@2
|
59 |
IMPORT_C gboolean g_hash_table_steal (GHashTable *hash_table,
|
williamr@2
|
60 |
gconstpointer key);
|
williamr@2
|
61 |
IMPORT_C gpointer g_hash_table_lookup (GHashTable *hash_table,
|
williamr@2
|
62 |
gconstpointer key);
|
williamr@2
|
63 |
IMPORT_C gboolean g_hash_table_lookup_extended (GHashTable *hash_table,
|
williamr@2
|
64 |
gconstpointer lookup_key,
|
williamr@2
|
65 |
gpointer *orig_key,
|
williamr@2
|
66 |
gpointer *value);
|
williamr@2
|
67 |
IMPORT_C void g_hash_table_foreach (GHashTable *hash_table,
|
williamr@2
|
68 |
GHFunc func,
|
williamr@2
|
69 |
gpointer user_data);
|
williamr@2
|
70 |
IMPORT_C gpointer g_hash_table_find (GHashTable *hash_table,
|
williamr@2
|
71 |
GHRFunc predicate,
|
williamr@2
|
72 |
gpointer user_data);
|
williamr@2
|
73 |
IMPORT_C guint g_hash_table_foreach_remove (GHashTable *hash_table,
|
williamr@2
|
74 |
GHRFunc func,
|
williamr@2
|
75 |
gpointer user_data);
|
williamr@2
|
76 |
IMPORT_C guint g_hash_table_foreach_steal (GHashTable *hash_table,
|
williamr@2
|
77 |
GHRFunc func,
|
williamr@2
|
78 |
gpointer user_data);
|
williamr@2
|
79 |
IMPORT_C guint g_hash_table_size (GHashTable *hash_table);
|
williamr@2
|
80 |
|
williamr@2
|
81 |
/* keeping hash tables alive */
|
williamr@2
|
82 |
IMPORT_C GHashTable* g_hash_table_ref (GHashTable *hash_table);
|
williamr@2
|
83 |
IMPORT_C void g_hash_table_unref (GHashTable *hash_table);
|
williamr@2
|
84 |
|
williamr@2
|
85 |
#ifndef G_DISABLE_DEPRECATED
|
williamr@2
|
86 |
|
williamr@2
|
87 |
/* The following two functions are deprecated and will be removed in
|
williamr@2
|
88 |
* the next major release. They do no good. */
|
williamr@2
|
89 |
#define g_hash_table_freeze(hash_table) ((void)0)
|
williamr@2
|
90 |
#define g_hash_table_thaw(hash_table) ((void)0)
|
williamr@2
|
91 |
|
williamr@2
|
92 |
#endif /* G_DISABLE_DEPRECATED */
|
williamr@2
|
93 |
|
williamr@2
|
94 |
/* Hash Functions
|
williamr@2
|
95 |
*/
|
williamr@2
|
96 |
IMPORT_C gboolean g_str_equal (gconstpointer v1,
|
williamr@2
|
97 |
gconstpointer v2);
|
williamr@2
|
98 |
IMPORT_C guint g_str_hash (gconstpointer v);
|
williamr@2
|
99 |
|
williamr@2
|
100 |
IMPORT_C gboolean g_int_equal (gconstpointer v1,
|
williamr@2
|
101 |
gconstpointer v2);
|
williamr@2
|
102 |
IMPORT_C guint g_int_hash (gconstpointer v);
|
williamr@2
|
103 |
|
williamr@2
|
104 |
/* This "hash" function will just return the key's address as an
|
williamr@2
|
105 |
* unsigned integer. Useful for hashing on plain addresses or
|
williamr@2
|
106 |
* simple integer values.
|
williamr@2
|
107 |
* Passing NULL into g_hash_table_new() as GHashFunc has the
|
williamr@2
|
108 |
* same effect as passing g_direct_hash().
|
williamr@2
|
109 |
*/
|
williamr@2
|
110 |
IMPORT_C guint g_direct_hash (gconstpointer v) G_GNUC_CONST;
|
williamr@2
|
111 |
IMPORT_C gboolean g_direct_equal (gconstpointer v1,
|
williamr@2
|
112 |
gconstpointer v2) G_GNUC_CONST;
|
williamr@2
|
113 |
|
williamr@2
|
114 |
G_END_DECLS
|
williamr@2
|
115 |
|
williamr@2
|
116 |
#endif /* __G_HASH_H__ */
|
williamr@2
|
117 |
|