blob: 920c6685fb697230e0715e8512bcda45338249dd [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Hash routine.
2 Copyright (C) 1998 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published
8by the Free Software Foundation; either version 2, or (at your
9option) any later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the
18Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
21#ifndef _ZEBRA_HASH_H
22#define _ZEBRA_HASH_H
23
24/* Default hash table size. */
Stephen Hemminger97c84db2013-01-11 18:25:26 +000025#define HASH_INITIAL_SIZE 256 /* initial number of backets. */
26#define HASH_THRESHOLD 10 /* expand when backet. */
paul718e3742002-12-13 20:15:29 +000027
28struct hash_backet
29{
30 /* Linked list. */
31 struct hash_backet *next;
32
33 /* Hash key. */
34 unsigned int key;
35
36 /* Data. */
37 void *data;
38};
39
40struct hash
41{
42 /* Hash backet. */
43 struct hash_backet **index;
44
Stephen Hemminger90645f52013-01-04 22:29:21 +000045 /* Hash table size. Must be power of 2 */
paul718e3742002-12-13 20:15:29 +000046 unsigned int size;
47
Stephen Hemminger97c84db2013-01-11 18:25:26 +000048 /* If expansion failed. */
49 int no_expand;
50
paul718e3742002-12-13 20:15:29 +000051 /* Key make function. */
paul8cc41982005-05-06 21:25:49 +000052 unsigned int (*hash_key) (void *);
paul718e3742002-12-13 20:15:29 +000053
54 /* Data compare function. */
Stephen Hemmingerffe11cf2008-08-14 16:25:25 +010055 int (*hash_cmp) (const void *, const void *);
paul718e3742002-12-13 20:15:29 +000056
57 /* Backet alloc. */
58 unsigned long count;
59};
60
paul8cc41982005-05-06 21:25:49 +000061extern struct hash *hash_create (unsigned int (*) (void *),
Stephen Hemmingerffe11cf2008-08-14 16:25:25 +010062 int (*) (const void *, const void *));
paul8cc41982005-05-06 21:25:49 +000063extern struct hash *hash_create_size (unsigned int, unsigned int (*) (void *),
Stephen Hemmingerffe11cf2008-08-14 16:25:25 +010064 int (*) (const void *, const void *));
paul718e3742002-12-13 20:15:29 +000065
paul8cc41982005-05-06 21:25:49 +000066extern void *hash_get (struct hash *, void *, void * (*) (void *));
67extern void *hash_alloc_intern (void *);
68extern void *hash_lookup (struct hash *, void *);
69extern void *hash_release (struct hash *, void *);
paul718e3742002-12-13 20:15:29 +000070
paul8cc41982005-05-06 21:25:49 +000071extern void hash_iterate (struct hash *,
paul718e3742002-12-13 20:15:29 +000072 void (*) (struct hash_backet *, void *), void *);
73
paul8cc41982005-05-06 21:25:49 +000074extern void hash_clean (struct hash *, void (*) (void *));
75extern void hash_free (struct hash *);
paul718e3742002-12-13 20:15:29 +000076
Stephen Hemminger6392aa82010-08-27 14:11:14 -070077extern unsigned int string_hash_make (const char *);
78
paul718e3742002-12-13 20:15:29 +000079#endif /* _ZEBRA_HASH_H */