summaryrefslogtreecommitdiff
path: root/utils/HashTable.cc
blob: 03bfd9af49a787752568a1f227ff2139c43de257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
/*
 *	CENA C++ Utilities
 *
 *	by Stephane Chatty
 *
 *	Copyright 1991, 1992
 *	Laboratoire de Recherche en Informatique (LRI)
 *	Centre d'Etudes de la Navigation Aerienne (CENA)
 *
 *	plain and generic hash tables and dictionnaries
 *	(Original C version by Michel Beaudouin-Lafon)
 *
 *	$Id$
 *	$CurLog$
 */

#include <string.h>
#include "String.h"
#include "HashTable.h"
#include "Allocator.h"

/*?class CcuHashTable
The class \typ{CcuHashTable} implements association tables based on a hashing algorithm.
Hash tables are useful to store information that needs to be retrieved
quickly, and which bears no efficient ordering. For instance, this is the
case for strings:
in a compiler, one may wish to maintain a hash table with identifiers
as hash keys and symbol table entries as information.

A hash table is made of a set of hash entries (of class \typ{CcuHashCell}),
which can be modified during
the life of the table. An entry has two main fields: a hash key, and a user defined
information attached to that key. We will not give details about the structure of
a hash table, as they can be found in any book about algorithms. Figure~\ref{fig:hash} is only
here as a reminder.
\fig{hash}{Internals of a hash table}
The current implementation uses lists to store the synonyms so that entries can
be deleted efficiently.

The class \typ{CcuHashTable} makes no assumption about the type of the keys, which it handles as 
\typ{const void *}.

The user can define several functions used when managing a hash table: the hash function, which 
is determinant for the performances of the hash table, and the functions to copy, compare, and
destroy keys. Basic functions are provided by default.
?*/



CcuAllocator* CcuHashCell::HashCellMem = 0;

/*?nodoc?*/ 
void
CcuHashCell :: ClassInit ()
{
	if (!HashCellMem)
		HashCellMem = new CcuAllocator (sizeof (CcuHashCell));
} 

/*?nodoc?*/
void*
CcuHashCell :: operator new (unsigned int)
{
	return HashCellMem->Alloc ();
}

/*?nodoc?*/
void
CcuHashCell :: operator delete (void* that)
{
	HashCellMem->Free (that);
}



/*?
Constructor for \typ{CcuHashTable}s. Build a hash table based on an array of
size \var{size}.
You can optionally provide your own functions for copying, destroying
and comparing keys, and the hashing function. If no hashing function is
provided, the identity function is used.
?*/
CcuHashTable :: CcuHashTable (unsigned int size, HASH_F hash_fun, HCP_F cp_fun, HDEL_F del_fun, HCMP_F cmp_fun)
: Size (size),
  Hash (hash_fun),
  Copy (cp_fun),
  Delete (del_fun),
  Compare (cmp_fun)
{
	if (Size <= 0)
		Size = 1;
	Table = new CcuHashCell* [Size];
	memset (Table, 0, Size*sizeof (CcuHashCell*));

	/* I know that HashCells can only be created from HashTables */
	if (!CcuHashCell::HashCellMem)
		CcuHashCell::ClassInit ();
}

/*?
Copy constructor for hash tables. The table and the cells are copied. The keys are
copied only if \var{ht} had a copy function. The new hash table will contain the
same informations as \var{ht}, but the synonyms will not necessarily be in the same order.
?*/
CcuHashTable :: CcuHashTable (const CcuHashTable& ht)
: Size (ht.Size),
  Hash (ht.Hash),
  Copy (ht.Copy),
  Delete (ht.Delete),
  Compare (ht.Compare)
{
	Table = new CcuHashCell* [Size];
	register CcuHashCell** p = Table;
	register CcuHashCell** q = ht.Table;
	while (p < Table + Size) {
		*p = 0;
		register CcuHashCell* r = *q;
		while (r) {
			(*p) = new CcuHashCell (Copy ? (*Copy) (r->GetKey ()) : r->GetKey (), *p);
			(*p)->SetInfo (r->Info);
			r = r->Next;
		}
		++p;
		++q;
	}
}

/*?
Destructor for hash tables. All keys are destroyed if a destruction function was provided.
?*/
CcuHashTable :: ~CcuHashTable ()
{
	Clear ();

#ifdef CPLUS_BUG4
	delete [Size] Table;
#else
	delete [] Table;
#endif
}


/*?
Remove all data from the hash table.  All keys are destroyed if a destruction function was provided.
?*/
void
CcuHashTable :: Clear ()
{
	/* destroy keys */
	if (Delete) {
		CcuHashCellIter hi (*this);
		while (++hi)
			(*Delete) ((*hi)->Key);
	}

	/* destroy cells */
	int s = Size;
	CcuHashCell** entry = Table;

	/* for each slot of the array ... */	
	for ( ; s--; ++entry ) {
		if (! *entry)
			continue;
		
		/* ... destroy all cells linked from that slot ...*/
		for (CcuHashCell* h = *entry; h;) {
			CcuHashCell* del = h;
			h = h->Next;
			delete del;
		}

		/* ... and clear it */
		*entry = 0;
	}
}


/*?hidden?*/
CcuHashCell** 
CcuHashTable :: HashKey (const void* key) const
{
	register unsigned int h = (unsigned int) key;

	if (Hash)
		h = (*Hash) (key, Size);
	
	if (h >= Size)
		h %= Size;

	return (Table + h);
}

/*?hidden?*/
CcuHashCell*
CcuHashTable :: FindCell (CcuHashCell** entry, const void* key) const
{
	CcuHashCell* h;
	for (h = *entry; h; h = h -> Next)
		if (Compare ? (*Compare) (key, h->Key) : (key == h->Key))
			break;
	return h;
}

	
/*?hidden?*/
CcuHashCell*
CcuHashTable :: AddCell (CcuHashCell** entry, const void* key) const
{
	if (Copy)
		key = (* Copy) (key);
	
	CcuHashCell* h = new CcuHashCell (key, *entry);
	*entry = h;
	return h;
}

/*?class CcuHashCell
\typ{CcuHashCell}s hold the entries of an hash table.
A \typ{CcuHashCell} contains a key and a user defined information.
?*/


#ifdef DOC

/*?hidden?*/
CcuHashCellOf :: CcuHashCell (const void*, CcuHashCell*)
{
}

/*?nextdoc?*/
const void*
CcuHashCell :: GetKey () const
{
}

/*?
Retrieve the key, or the information from a \typ{CcuHashCell}.
?*/
CcuHashItem*
CcuHashCell :: GetInfo () const
{
}

/*?
Set the cell information to \var{p}.
?*/
void
CcuHashCell :: SetInfo (CcuHashItem* p)
{
}

#endif

/*?
Add the key \var{key} into the table. If 
\var{found} is not 0, it is a return parameter which contains TRUE if the
key was already in the table, or FALSE if it was new. In both cases, the 
function returns the address of the hash entry corresponding to the key.
\fun{Add} uses the hash function of the table.
If the key is new and a copy function was provided, the key is copied.
?*/
CcuHashCell*
CcuHashTable :: Add (const void* key, int* found)
{
	/* est-il dans la table ? */
	CcuHashCell** entry = HashKey (key);
	CcuHashCell* h = FindCell (entry, key);
	
	if (found)
		*found = (h != 0);

	if (h)
		return h;
	
	return AddCell (entry, key);
}

/*?
Retrieve the key \var{key} from the table. If it exists, return
the address of its hash entry, thus allowing to get its associated info. If the key
does not exist in the table, return 0.
?*/
CcuHashCell*
CcuHashTable :: Get (const void* key)
{
	CcuHashCell **entry = HashKey (key);
	return FindCell (entry, key);
}

#if 0
/*?
Get a reference to the data stored in the table for the key \var{key}. That
reference can be used for reading as for writing. If the key was not present
in the table, a new entry is created.
?*/
CcuHashItem*&
CcuHashTable :: operator [] (const void* key)
{
	CcuHashCell **entry = HashKey (key);
	CcuHashCell *h = FindCell (entry, key);
	
	if (!h)
		h = AddCell (entry, key);

	return h->Info;
}
#else
CcuHashCellRef
CcuHashTable :: operator [] (const void* key) const
{
	return CcuHashCellRef (*this, key);
}
#endif


/*?
Remove the key \var{key} from the table. If it exists, return its
associated data. If the key does not exist, return 0. \var{found} may
be used to test whether the key was found.
?*/
CcuHashItem*
CcuHashTable :: Remove (const void* key, int* found)
{
	CcuHashCell **entry;
	register CcuHashCell *h, *hp = 0;
	CcuHashItem* info = 0;
	
	entry = HashKey (key);
	
	for (h = *entry; h; h = h->Next) {
		if (Compare ? (*Compare) (key, h->Key) : (key == h->Key)) {
			/* remove it from the list */
			if (hp)
				hp->Next = h->Next;
			else
				*entry = h->Next;
			
			/* free it, sparing its info */
			if (Delete)
				(*Delete) (h->Key);
			info = h->Info;
			delete h;
			break;
		}
		hp = h;
	}
	if (found)
		*found = (h != 0);
	return info;
}


/*?
Change the size of the table, which is re-hashed.
?*/
void
CcuHashTable :: Resize (int size)
{
	int s = Size;
	if (size <= 0)
		size = 1;
	Size = size;

	CcuHashCell** entry = Table;
	CcuHashCell** old_table = Table;
	Table = new CcuHashCell* [size];
	memset (Table, 0, size*sizeof (CcuHashCell*));

	/* rehash */
	for (; s--; ++entry) {
		
		/* scan the list */
		register CcuHashCell *cur, *next;
		for (cur = *entry; cur; cur = next) {
			next = cur->Next;

			register CcuHashCell** slot = HashKey (cur->Key);

			/* prepend the cell to the corresponding list */
			cur->Next = *slot;
			*slot = cur;
		}
	}
#ifdef CPLUS_BUG4
	delete [Size] old_table;
#else
	delete [] old_table;
#endif
}


#ifdef TUNE
/*?nextdoc?*/
void
CcuHashTable :: HashStats (int fd)
{
	CcuHashCell * h;
	CcuHashCell **entry;
	char msg[80];
	int s, coll = 0, empty = 0;

	for (s = Size, entry = Table; s--; entry++) {
		if (h = *entry) {
			sprintf (msg, "%s(%d)", h->Key, h->Info);
			write (fd, msg, strlen (msg));
			while (h = h->Next) {
				sprintf (msg, "\t%s(%d)", h->Key, h->Info);
				write (fd, msg, strlen (msg));
				coll++;
			}
			write (fd, "\n", 1);
		} else	{
			write (fd, "<EMPTY>\n", 8);
			empty++;
		}
	}
	sprintf (msg, "size : %d; %d empty; %d collisions\n", Size, empty, coll);
	write (fd, msg, strlen (msg));
}

/*?
Print some statistics about this hash table on file descriptor \var{fd}
(default is standard error).
?*/
void
CcuHashTable :: CollStats (int fd)
{
	CcuHashCell * h;
	CcuHashCell **entry;
	char msg[80];
	int s, lcoll, coll = 0, empty = 0;
	int min = 999999, max = 0, moy = 0, moy2 = 0;
	float fmoy, fvar;
	
	for (s = Size, entry = (CcuHashCell**) Data; s--; entry++) {
		lcoll = 0;
		if (h = *entry) {
			while (h = h->Next) {
				coll++, lcoll++;
			}
/*			sprintf (msg, "%d colls\n", lcoll);
			write (fd, msg, strlen (msg));
*/			moy += lcoll;
			moy2 += lcoll * lcoll;
			if (lcoll < min)
				min = lcoll;
			if (lcoll > max)
				max = lcoll;
		} else	{
/*			write (fd, "<EMPTY>\n", 8);
*/			empty++;
		}
	}
	fmoy = ((float) moy) / ((float) Size);
	fvar = fmoy * fmoy - (((float) moy2) / ((float) Size));
	sprintf (msg, "size : %d; %d empty; %d collisions\n", Size, empty, coll);
	write (fd, msg, strlen (msg));
	sprintf (msg, "min : %d; max %d; moy %f; variance %f\n----\n\n", min, max, fmoy, fvar);
	write (fd, msg, strlen (msg));
}

#endif	/* TUNE */

CcuHashItem*
CcuHashCellRef :: operator = (CcuHashItem* info)
{
	CcuHashCell **entry = Table.HashKey (Key);
	CcuHashCell *h = Table.FindCell (entry, Key);
	
	if (!h)
		h = Table.AddCell (entry, Key);

	h->SetInfo (info);

	return info;
}

CcuHashCellRef :: operator CcuHashItem* ()
{
	CcuHashCell **entry = Table.HashKey (Key);
	CcuHashCell *h = Table.FindCell (entry, Key);
	return h ? h->GetInfo () : 0;
}


/*?class CcuDictionnary
For the common case when character strings are used as keys, 
the class \typ{CcuDictionnary} was derived from the class \typ{CcuHashTable}. 
It is the class that should be used for dictionaries, symbol tables,~\ldots\,
For this special kind of hash tables, keys are compared as strings, and are copied with the 
function \fun{NewString} (see page~\pageref{newstring}). If users do not provide a hash function,
a default one is used.

All the functions of class \typ{CcuHashTable} are available in class \typ{CcuDictionnary}.
The iterator \typ{Hashiter} can be used on \typ{CcuDictionnary} as well.
?*/


/*?hidden?*/
int 
CcuDictionnary :: HashKey (const void* key, int)
{
	register int h = 0;
	register const char *p = (const char *) key;
	while (*p)
		h ^= *p++;
	return h;
}

/*?hidden?*/
int
CcuDictionnary :: CompareKey (const void* a, const void* b)
{
	register const char *p, *q;
	/* on fait le strcmp a la main : ca va + vite */
	for (p = (const char *) a, q = (const char *) b; *p == *q++; p++)
		if (*p == '\0')
			return 1;
	return 0;
}

/*?hidden?*/
void*
CcuDictionnary :: CopyKey (const void* k)
{
	return NewString ((const char*) k);
}

/*?hidden?*/
void
CcuDictionnary :: DeleteKey (void* k)
{
	FreeString ((char*) k);
}

/*?
Constructor for \typ{CcuDictionnary}s. Initialize a \typ{CcuDictionnary} with an array of size \var{size},
and \var{hash\_fun} as the hash function. If \var{hash\_fun} is not provided, the default 
function is used.
?*/
CcuDictionnary :: CcuDictionnary (int size, HASH_F f)
: CcuHashTable (size, (f ? f : HashKey), (HCP_F) (CopyKey), (HDEL_F) (DeleteKey), (HCMP_F) (CompareKey))
{
}

/*?nodoc?*/
CcuDictionnary :: ~CcuDictionnary ()
{
}

/*?nodoc?*/
void
CcuDictionnary :: KeyCopy (int flag)
{
	if (flag) {
		Copy = (HCP_F) (&CopyKey);
		Delete = (HDEL_F) &DeleteKey;
	} else {
		Copy = 0;
		Delete = 0;
	}
}

/*?class Hashiter
The class \typ{Hashiter} makes it possible to iterate through the entries of an hash table.
?*/

#ifdef DOC
/*?
Constructor for \typ{CcuHashCellIter}s. Initialize an iterator on the hash table \var{t}.
?*/
CcuHashCellIterOf :: CcuHashCellIter (const CcuHashTable& t)
{
}

/*?
Get the current cell  pointed by an interator.
?*/
CcuHashCell*
CcuHashCellIter :: operator * () const
{
}
#endif

/*?
Take one step of iteration. This operator returns a pointer on the next 
hash entry of the table it is iterating on. When it is finished, it returns 0.
?*/
CcuHashCellIter&
CcuHashCellIter :: operator ++ ()
{
	register CcuHashCell* h = 0;
	register int size = TheTable.GetSize ();
	
	
	if (!CurCell || !(h = CurCell->Next))
		while ((++CurIndex < size) && !(h = (TheTable.Table [CurIndex])))
			;

	CurCell = h;
	return *this;
}

#ifndef CPLUS_BUG16
/*?
Post-increment equivalent of the previous operator.
?*/
CcuHashCellIter
CcuHashCellIter :: operator ++ (int)
{
	CcuHashCellIter result = *this;
	++(*this);
	return result;
}
#endif

#ifndef CPLUS_BUG13
CcuHashCellIter::
#endif
hashiter_status
CcuHashCellIter :: Status () const
{
	if (CurCell)
		return Normal;
	if (CurIndex < 0)
		return StartOfTable;
	return EndOfTable;
}

#ifdef DOC
CcuHashCellIter :: operator int () const
{
}
#endif