sl@0
|
1 |
/* GLIB - Library of useful routines for C programming
|
sl@0
|
2 |
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
sl@0
|
3 |
* Copyright (C) 1999 The Free Software Foundation
|
sl@0
|
4 |
* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
5 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
6 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
7 |
* License as published by the Free Software Foundation; either
|
sl@0
|
8 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
9 |
*
|
sl@0
|
10 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
13 |
* Lesser General Public License for more details.
|
sl@0
|
14 |
*
|
sl@0
|
15 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
16 |
* License along with this library; if not, write to the
|
sl@0
|
17 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
18 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
|
sl@0
|
21 |
/*
|
sl@0
|
22 |
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
sl@0
|
23 |
* file for a list of people on the GLib Team. See the ChangeLog
|
sl@0
|
24 |
* files for a list of changes. These files are distributed with
|
sl@0
|
25 |
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
|
sl@0
|
28 |
#undef G_DISABLE_ASSERT
|
sl@0
|
29 |
#undef G_LOG_DOMAIN
|
sl@0
|
30 |
|
sl@0
|
31 |
#ifdef HAVE_CONFIG_H
|
sl@0
|
32 |
#include "config.h"
|
sl@0
|
33 |
#endif
|
sl@0
|
34 |
|
sl@0
|
35 |
#if STDC_HEADERS
|
sl@0
|
36 |
#include <stdio.h>
|
sl@0
|
37 |
#include <string.h>
|
sl@0
|
38 |
#include <stdlib.h>
|
sl@0
|
39 |
#endif
|
sl@0
|
40 |
|
sl@0
|
41 |
#include <glib.h>
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
#ifdef __SYMBIAN32__
|
sl@0
|
45 |
#include "mrt2_glib2_test.h"
|
sl@0
|
46 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
47 |
|
sl@0
|
48 |
int array[10000];
|
sl@0
|
49 |
|
sl@0
|
50 |
static void
|
sl@0
|
51 |
fill_hash_table_and_array (GHashTable *hash_table)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
int i;
|
sl@0
|
54 |
|
sl@0
|
55 |
for (i = 0; i < 10000; i++)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
array[i] = i;
|
sl@0
|
58 |
g_hash_table_insert (hash_table, &array[i], &array[i]);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
static void
|
sl@0
|
63 |
init_result_array (int *result_array)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
int i;
|
sl@0
|
66 |
|
sl@0
|
67 |
for (i = 0; i < 10000; i++)
|
sl@0
|
68 |
result_array[i] = -1;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
static void
|
sl@0
|
72 |
verify_result_array (int *array)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
int i;
|
sl@0
|
75 |
|
sl@0
|
76 |
for (i = 0; i < 10000; i++)
|
sl@0
|
77 |
g_assert (array[i] == i);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
static void
|
sl@0
|
81 |
handle_pair (gpointer key, gpointer value, int *result_array)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
int n;
|
sl@0
|
84 |
|
sl@0
|
85 |
g_assert (key == value);
|
sl@0
|
86 |
|
sl@0
|
87 |
n = *((int *) value);
|
sl@0
|
88 |
|
sl@0
|
89 |
g_assert (n >= 0 && n < 10000);
|
sl@0
|
90 |
g_assert (result_array[n] == -1);
|
sl@0
|
91 |
|
sl@0
|
92 |
result_array[n] = n;
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
static gboolean
|
sl@0
|
96 |
my_hash_callback_remove (gpointer key,
|
sl@0
|
97 |
gpointer value,
|
sl@0
|
98 |
gpointer user_data)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
int *d = value;
|
sl@0
|
101 |
|
sl@0
|
102 |
if ((*d) % 2)
|
sl@0
|
103 |
return TRUE;
|
sl@0
|
104 |
|
sl@0
|
105 |
return FALSE;
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
static void
|
sl@0
|
109 |
my_hash_callback_remove_test (gpointer key,
|
sl@0
|
110 |
gpointer value,
|
sl@0
|
111 |
gpointer user_data)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
int *d = value;
|
sl@0
|
114 |
|
sl@0
|
115 |
if ((*d) % 2)
|
sl@0
|
116 |
g_assert_not_reached ();
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
static void
|
sl@0
|
120 |
my_hash_callback (gpointer key,
|
sl@0
|
121 |
gpointer value,
|
sl@0
|
122 |
gpointer user_data)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
handle_pair (key, value, user_data);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
static guint
|
sl@0
|
128 |
my_hash (gconstpointer key)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
return (guint) *((const gint*) key);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
static gboolean
|
sl@0
|
134 |
my_hash_equal (gconstpointer a,
|
sl@0
|
135 |
gconstpointer b)
|
sl@0
|
136 |
{
|
sl@0
|
137 |
return *((const gint*) a) == *((const gint*) b);
|
sl@0
|
138 |
}
|
sl@0
|
139 |
|
sl@0
|
140 |
|
sl@0
|
141 |
|
sl@0
|
142 |
/*
|
sl@0
|
143 |
* This is a simplified version of the pathalias hashing function.
|
sl@0
|
144 |
* Thanks to Steve Belovin and Peter Honeyman
|
sl@0
|
145 |
*
|
sl@0
|
146 |
* hash a string into a long int. 31 bit crc (from andrew appel).
|
sl@0
|
147 |
* the crc table is computed at run time by crcinit() -- we could
|
sl@0
|
148 |
* precompute, but it takes 1 clock tick on a 750.
|
sl@0
|
149 |
*
|
sl@0
|
150 |
* This fast table calculation works only if POLY is a prime polynomial
|
sl@0
|
151 |
* in the field of integers modulo 2. Since the coefficients of a
|
sl@0
|
152 |
* 32-bit polynomial won't fit in a 32-bit word, the high-order bit is
|
sl@0
|
153 |
* implicit. IT MUST ALSO BE THE CASE that the coefficients of orders
|
sl@0
|
154 |
* 31 down to 25 are zero. Happily, we have candidates, from
|
sl@0
|
155 |
* E. J. Watson, "Primitive Polynomials (Mod 2)", Math. Comp. 16 (1962):
|
sl@0
|
156 |
* x^32 + x^7 + x^5 + x^3 + x^2 + x^1 + x^0
|
sl@0
|
157 |
* x^31 + x^3 + x^0
|
sl@0
|
158 |
*
|
sl@0
|
159 |
* We reverse the bits to get:
|
sl@0
|
160 |
* 111101010000000000000000000000001 but drop the last 1
|
sl@0
|
161 |
* f 5 0 0 0 0 0 0
|
sl@0
|
162 |
* 010010000000000000000000000000001 ditto, for 31-bit crc
|
sl@0
|
163 |
* 4 8 0 0 0 0 0 0
|
sl@0
|
164 |
*/
|
sl@0
|
165 |
|
sl@0
|
166 |
#define POLY 0x48000000L /* 31-bit polynomial (avoids sign problems) */
|
sl@0
|
167 |
|
sl@0
|
168 |
static guint CrcTable[128];
|
sl@0
|
169 |
|
sl@0
|
170 |
/*
|
sl@0
|
171 |
- crcinit - initialize tables for hash function
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
static void crcinit(void)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
int i, j;
|
sl@0
|
176 |
guint sum;
|
sl@0
|
177 |
|
sl@0
|
178 |
for (i = 0; i < 128; ++i) {
|
sl@0
|
179 |
sum = 0L;
|
sl@0
|
180 |
for (j = 7 - 1; j >= 0; --j)
|
sl@0
|
181 |
if (i & (1 << j))
|
sl@0
|
182 |
sum ^= POLY >> j;
|
sl@0
|
183 |
CrcTable[i] = sum;
|
sl@0
|
184 |
}
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
/*
|
sl@0
|
188 |
- hash - Honeyman's nice hashing function
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
static guint honeyman_hash(gconstpointer key)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
const gchar *name = (const gchar *) key;
|
sl@0
|
193 |
gint size;
|
sl@0
|
194 |
guint sum = 0;
|
sl@0
|
195 |
|
sl@0
|
196 |
g_assert (name != NULL);
|
sl@0
|
197 |
g_assert (*name != 0);
|
sl@0
|
198 |
|
sl@0
|
199 |
size = strlen(name);
|
sl@0
|
200 |
|
sl@0
|
201 |
while (size--) {
|
sl@0
|
202 |
sum = (sum >> 7) ^ CrcTable[(sum ^ (*name++)) & 0x7f];
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
return(sum);
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
|
sl@0
|
209 |
static gboolean second_hash_cmp (gconstpointer a, gconstpointer b)
|
sl@0
|
210 |
{
|
sl@0
|
211 |
return (strcmp (a, b) == 0);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
|
sl@0
|
215 |
|
sl@0
|
216 |
static guint one_hash(gconstpointer key)
|
sl@0
|
217 |
{
|
sl@0
|
218 |
return 1;
|
sl@0
|
219 |
}
|
sl@0
|
220 |
|
sl@0
|
221 |
|
sl@0
|
222 |
static void not_even_foreach (gpointer key,
|
sl@0
|
223 |
gpointer value,
|
sl@0
|
224 |
gpointer user_data)
|
sl@0
|
225 |
{
|
sl@0
|
226 |
const char *_key = (const char *) key;
|
sl@0
|
227 |
const char *_value = (const char *) value;
|
sl@0
|
228 |
int i;
|
sl@0
|
229 |
char val [20];
|
sl@0
|
230 |
|
sl@0
|
231 |
g_assert (_key != NULL);
|
sl@0
|
232 |
g_assert (*_key != 0);
|
sl@0
|
233 |
g_assert (_value != NULL);
|
sl@0
|
234 |
g_assert (*_value != 0);
|
sl@0
|
235 |
|
sl@0
|
236 |
i = atoi (_key);
|
sl@0
|
237 |
|
sl@0
|
238 |
sprintf (val, "%d value", i);
|
sl@0
|
239 |
g_assert (strcmp (_value, val) == 0);
|
sl@0
|
240 |
|
sl@0
|
241 |
g_assert ((i % 2) != 0);
|
sl@0
|
242 |
g_assert (i != 3);
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
|
sl@0
|
246 |
static gboolean remove_even_foreach (gpointer key,
|
sl@0
|
247 |
gpointer value,
|
sl@0
|
248 |
gpointer user_data)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
const char *_key = (const char *) key;
|
sl@0
|
251 |
const char *_value = (const char *) value;
|
sl@0
|
252 |
int i;
|
sl@0
|
253 |
char val [20];
|
sl@0
|
254 |
|
sl@0
|
255 |
g_assert (_key != NULL);
|
sl@0
|
256 |
g_assert (*_key != 0);
|
sl@0
|
257 |
g_assert (_value != NULL);
|
sl@0
|
258 |
g_assert (*_value != 0);
|
sl@0
|
259 |
|
sl@0
|
260 |
i = atoi (_key);
|
sl@0
|
261 |
|
sl@0
|
262 |
sprintf (val, "%d value", i);
|
sl@0
|
263 |
g_assert (strcmp (_value, val) == 0);
|
sl@0
|
264 |
|
sl@0
|
265 |
return ((i % 2) == 0) ? TRUE : FALSE;
|
sl@0
|
266 |
}
|
sl@0
|
267 |
|
sl@0
|
268 |
|
sl@0
|
269 |
|
sl@0
|
270 |
|
sl@0
|
271 |
static void second_hash_test (gboolean simple_hash)
|
sl@0
|
272 |
{
|
sl@0
|
273 |
int i;
|
sl@0
|
274 |
char key[20] = "", val[20]="", *v, *orig_key, *orig_val;
|
sl@0
|
275 |
GHashTable *h;
|
sl@0
|
276 |
gboolean found;
|
sl@0
|
277 |
|
sl@0
|
278 |
crcinit ();
|
sl@0
|
279 |
|
sl@0
|
280 |
h = g_hash_table_new_full (simple_hash ? one_hash : honeyman_hash,
|
sl@0
|
281 |
second_hash_cmp,
|
sl@0
|
282 |
g_free, g_free);
|
sl@0
|
283 |
g_assert (h != NULL);
|
sl@0
|
284 |
for (i=0; i<20; i++)
|
sl@0
|
285 |
{
|
sl@0
|
286 |
sprintf (key, "%d", i);
|
sl@0
|
287 |
g_assert (atoi (key) == i);
|
sl@0
|
288 |
|
sl@0
|
289 |
sprintf (val, "%d value", i);
|
sl@0
|
290 |
g_assert (atoi (val) == i);
|
sl@0
|
291 |
|
sl@0
|
292 |
g_hash_table_insert (h, g_strdup (key), g_strdup (val));
|
sl@0
|
293 |
}
|
sl@0
|
294 |
|
sl@0
|
295 |
g_assert (g_hash_table_size (h) == 20);
|
sl@0
|
296 |
|
sl@0
|
297 |
for (i=0; i<20; i++)
|
sl@0
|
298 |
{
|
sl@0
|
299 |
sprintf (key, "%d", i);
|
sl@0
|
300 |
g_assert (atoi(key) == i);
|
sl@0
|
301 |
|
sl@0
|
302 |
v = (char *) g_hash_table_lookup (h, key);
|
sl@0
|
303 |
|
sl@0
|
304 |
g_assert (v != NULL);
|
sl@0
|
305 |
g_assert (*v != 0);
|
sl@0
|
306 |
g_assert (atoi (v) == i);
|
sl@0
|
307 |
}
|
sl@0
|
308 |
|
sl@0
|
309 |
sprintf (key, "%d", 3);
|
sl@0
|
310 |
g_hash_table_remove (h, key);
|
sl@0
|
311 |
g_assert (g_hash_table_size (h) == 19);
|
sl@0
|
312 |
g_hash_table_foreach_remove (h, remove_even_foreach, NULL);
|
sl@0
|
313 |
g_assert (g_hash_table_size (h) == 9);
|
sl@0
|
314 |
g_hash_table_foreach (h, not_even_foreach, NULL);
|
sl@0
|
315 |
|
sl@0
|
316 |
for (i=0; i<20; i++)
|
sl@0
|
317 |
{
|
sl@0
|
318 |
sprintf (key, "%d", i);
|
sl@0
|
319 |
g_assert (atoi(key) == i);
|
sl@0
|
320 |
|
sl@0
|
321 |
sprintf (val, "%d value", i);
|
sl@0
|
322 |
g_assert (atoi (val) == i);
|
sl@0
|
323 |
|
sl@0
|
324 |
orig_key = orig_val = NULL;
|
sl@0
|
325 |
found = g_hash_table_lookup_extended (h, key,
|
sl@0
|
326 |
(gpointer)&orig_key,
|
sl@0
|
327 |
(gpointer)&orig_val);
|
sl@0
|
328 |
if ((i % 2) == 0 || i == 3)
|
sl@0
|
329 |
{
|
sl@0
|
330 |
g_assert (!found);
|
sl@0
|
331 |
continue;
|
sl@0
|
332 |
}
|
sl@0
|
333 |
|
sl@0
|
334 |
g_assert (found);
|
sl@0
|
335 |
|
sl@0
|
336 |
g_assert (orig_key != NULL);
|
sl@0
|
337 |
g_assert (strcmp (key, orig_key) == 0);
|
sl@0
|
338 |
|
sl@0
|
339 |
g_assert (orig_val != NULL);
|
sl@0
|
340 |
g_assert (strcmp (val, orig_val) == 0);
|
sl@0
|
341 |
}
|
sl@0
|
342 |
|
sl@0
|
343 |
g_hash_table_destroy (h);
|
sl@0
|
344 |
}
|
sl@0
|
345 |
|
sl@0
|
346 |
static gboolean find_first (gpointer key,
|
sl@0
|
347 |
gpointer value,
|
sl@0
|
348 |
gpointer user_data)
|
sl@0
|
349 |
{
|
sl@0
|
350 |
gint *v = value;
|
sl@0
|
351 |
gint *test = user_data;
|
sl@0
|
352 |
return (*v == *test);
|
sl@0
|
353 |
}
|
sl@0
|
354 |
|
sl@0
|
355 |
|
sl@0
|
356 |
static void direct_hash_test (void)
|
sl@0
|
357 |
{
|
sl@0
|
358 |
gint i, rc;
|
sl@0
|
359 |
GHashTable *h;
|
sl@0
|
360 |
|
sl@0
|
361 |
h = g_hash_table_new (NULL, NULL);
|
sl@0
|
362 |
g_assert (h != NULL);
|
sl@0
|
363 |
for (i=1; i<=20; i++)
|
sl@0
|
364 |
{
|
sl@0
|
365 |
g_hash_table_insert (h, GINT_TO_POINTER (i),
|
sl@0
|
366 |
GINT_TO_POINTER (i + 42));
|
sl@0
|
367 |
}
|
sl@0
|
368 |
|
sl@0
|
369 |
g_assert (g_hash_table_size (h) == 20);
|
sl@0
|
370 |
|
sl@0
|
371 |
for (i=1; i<=20; i++)
|
sl@0
|
372 |
{
|
sl@0
|
373 |
rc = GPOINTER_TO_INT (
|
sl@0
|
374 |
g_hash_table_lookup (h, GINT_TO_POINTER (i)));
|
sl@0
|
375 |
|
sl@0
|
376 |
g_assert (rc != 0);
|
sl@0
|
377 |
g_assert ((rc - 42) == i);
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
g_hash_table_destroy (h);
|
sl@0
|
381 |
}
|
sl@0
|
382 |
|
sl@0
|
383 |
|
sl@0
|
384 |
|
sl@0
|
385 |
int
|
sl@0
|
386 |
main (int argc,
|
sl@0
|
387 |
char *argv[])
|
sl@0
|
388 |
{
|
sl@0
|
389 |
GHashTable *hash_table;
|
sl@0
|
390 |
gint i;
|
sl@0
|
391 |
gint value = 120;
|
sl@0
|
392 |
gint *pvalue;
|
sl@0
|
393 |
GList *keys, *values;
|
sl@0
|
394 |
gint keys_len, values_len;
|
sl@0
|
395 |
GHashTableIter iter;
|
sl@0
|
396 |
gpointer ikey, ivalue;
|
sl@0
|
397 |
int result_array[10000];
|
sl@0
|
398 |
|
sl@0
|
399 |
#ifdef __SYMBIAN32__
|
sl@0
|
400 |
g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
|
sl@0
|
401 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
402 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
403 |
|
sl@0
|
404 |
|
sl@0
|
405 |
hash_table = g_hash_table_new (my_hash, my_hash_equal);
|
sl@0
|
406 |
fill_hash_table_and_array (hash_table);
|
sl@0
|
407 |
pvalue = g_hash_table_find (hash_table, find_first, &value);
|
sl@0
|
408 |
if (!pvalue || *pvalue != value)
|
sl@0
|
409 |
g_assert_not_reached();
|
sl@0
|
410 |
|
sl@0
|
411 |
keys = g_hash_table_get_keys (hash_table);
|
sl@0
|
412 |
if (!keys)
|
sl@0
|
413 |
g_assert_not_reached ();
|
sl@0
|
414 |
|
sl@0
|
415 |
values = g_hash_table_get_values (hash_table);
|
sl@0
|
416 |
if (!values)
|
sl@0
|
417 |
g_assert_not_reached ();
|
sl@0
|
418 |
|
sl@0
|
419 |
keys_len = g_list_length (keys);
|
sl@0
|
420 |
values_len = g_list_length (values);
|
sl@0
|
421 |
if (values_len != keys_len && keys_len != g_hash_table_size (hash_table))
|
sl@0
|
422 |
g_assert_not_reached ();
|
sl@0
|
423 |
|
sl@0
|
424 |
g_list_free (keys);
|
sl@0
|
425 |
g_list_free (values);
|
sl@0
|
426 |
|
sl@0
|
427 |
init_result_array (result_array);
|
sl@0
|
428 |
g_hash_table_iter_init (&iter, hash_table);
|
sl@0
|
429 |
for (i = 0; i < 10000; i++)
|
sl@0
|
430 |
{
|
sl@0
|
431 |
g_assert (g_hash_table_iter_next (&iter, &ikey, &ivalue));
|
sl@0
|
432 |
|
sl@0
|
433 |
handle_pair (ikey, ivalue, result_array);
|
sl@0
|
434 |
|
sl@0
|
435 |
if (i % 2)
|
sl@0
|
436 |
g_hash_table_iter_remove (&iter);
|
sl@0
|
437 |
}
|
sl@0
|
438 |
g_assert (! g_hash_table_iter_next (&iter, &ikey, &ivalue));
|
sl@0
|
439 |
g_assert (g_hash_table_size (hash_table) == 5000);
|
sl@0
|
440 |
verify_result_array (result_array);
|
sl@0
|
441 |
|
sl@0
|
442 |
fill_hash_table_and_array (hash_table);
|
sl@0
|
443 |
|
sl@0
|
444 |
init_result_array (result_array);
|
sl@0
|
445 |
g_hash_table_foreach (hash_table, my_hash_callback, result_array);
|
sl@0
|
446 |
verify_result_array (result_array);
|
sl@0
|
447 |
|
sl@0
|
448 |
for (i = 0; i < 10000; i++)
|
sl@0
|
449 |
g_hash_table_remove (hash_table, &array[i]);
|
sl@0
|
450 |
|
sl@0
|
451 |
fill_hash_table_and_array (hash_table);
|
sl@0
|
452 |
|
sl@0
|
453 |
if (g_hash_table_foreach_remove (hash_table, my_hash_callback_remove, NULL) != 5000 ||
|
sl@0
|
454 |
g_hash_table_size (hash_table) != 5000)
|
sl@0
|
455 |
g_assert_not_reached();
|
sl@0
|
456 |
|
sl@0
|
457 |
g_hash_table_foreach (hash_table, my_hash_callback_remove_test, NULL);
|
sl@0
|
458 |
|
sl@0
|
459 |
|
sl@0
|
460 |
g_hash_table_destroy (hash_table);
|
sl@0
|
461 |
|
sl@0
|
462 |
second_hash_test (TRUE);
|
sl@0
|
463 |
second_hash_test (FALSE);
|
sl@0
|
464 |
direct_hash_test ();
|
sl@0
|
465 |
|
sl@0
|
466 |
#if __SYMBIAN32__
|
sl@0
|
467 |
testResultXml("hash-test");
|
sl@0
|
468 |
#endif /* EMULATOR */
|
sl@0
|
469 |
|
sl@0
|
470 |
return 0;
|
sl@0
|
471 |
|
sl@0
|
472 |
}
|