blob: f4b1c23eb5c0e63d9af687c0ea3f28b43e921a3a [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. */
25#define HASHTABSIZE 1024
26
27struct hash_backet
28{
29 /* Linked list. */
30 struct hash_backet *next;
31
32 /* Hash key. */
33 unsigned int key;
34
35 /* Data. */
36 void *data;
37};
38
39struct hash
40{
41 /* Hash backet. */
42 struct hash_backet **index;
43
44 /* Hash table size. */
45 unsigned int size;
46
47 /* Key make function. */
paul8cc41982005-05-06 21:25:49 +000048 unsigned int (*hash_key) (void *);
paul718e3742002-12-13 20:15:29 +000049
50 /* Data compare function. */
Stephen Hemmingerffe11cf2008-08-14 16:25:25 +010051 int (*hash_cmp) (const void *, const void *);
paul718e3742002-12-13 20:15:29 +000052
53 /* Backet alloc. */
54 unsigned long count;
55};
56
paul8cc41982005-05-06 21:25:49 +000057extern struct hash *hash_create (unsigned int (*) (void *),
Stephen Hemmingerffe11cf2008-08-14 16:25:25 +010058 int (*) (const void *, const void *));
paul8cc41982005-05-06 21:25:49 +000059extern struct hash *hash_create_size (unsigned int, unsigned int (*) (void *),
Stephen Hemmingerffe11cf2008-08-14 16:25:25 +010060 int (*) (const void *, const void *));
paul718e3742002-12-13 20:15:29 +000061
paul8cc41982005-05-06 21:25:49 +000062extern void *hash_get (struct hash *, void *, void * (*) (void *));
63extern void *hash_alloc_intern (void *);
64extern void *hash_lookup (struct hash *, void *);
65extern void *hash_release (struct hash *, void *);
paul718e3742002-12-13 20:15:29 +000066
paul8cc41982005-05-06 21:25:49 +000067extern void hash_iterate (struct hash *,
paul718e3742002-12-13 20:15:29 +000068 void (*) (struct hash_backet *, void *), void *);
69
paul8cc41982005-05-06 21:25:49 +000070extern void hash_clean (struct hash *, void (*) (void *));
71extern void hash_free (struct hash *);
paul718e3742002-12-13 20:15:29 +000072
73#endif /* _ZEBRA_HASH_H */