]> git.proxmox.com Git - mirror_frr.git/blame - lib/hash.h
Merge pull request #128 from donaldsharp/readme
[mirror_frr.git] / lib / hash.h
CommitLineData
718e3744 1/* 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
4a1ab8e4
DL
24#include "memory.h"
25
26DECLARE_MTYPE(HASH)
27DECLARE_MTYPE(HASH_BACKET)
28
718e3744 29/* Default hash table size. */
97c84db0
SH
30#define HASH_INITIAL_SIZE 256 /* initial number of backets. */
31#define HASH_THRESHOLD 10 /* expand when backet. */
718e3744 32
3f9c7369
DS
33#define HASHWALK_CONTINUE 0
34#define HASHWALK_ABORT -1
35
718e3744 36struct hash_backet
37{
38 /* Linked list. */
39 struct hash_backet *next;
40
41 /* Hash key. */
42 unsigned int key;
43
44 /* Data. */
45 void *data;
46};
47
48struct hash
49{
50 /* Hash backet. */
51 struct hash_backet **index;
52
90645f55 53 /* Hash table size. Must be power of 2 */
718e3744 54 unsigned int size;
55
97c84db0
SH
56 /* If expansion failed. */
57 int no_expand;
58
718e3744 59 /* Key make function. */
8cc4198f 60 unsigned int (*hash_key) (void *);
718e3744 61
62 /* Data compare function. */
ffe11cfb 63 int (*hash_cmp) (const void *, const void *);
718e3744 64
65 /* Backet alloc. */
66 unsigned long count;
67};
68
8cc4198f 69extern struct hash *hash_create (unsigned int (*) (void *),
ffe11cfb 70 int (*) (const void *, const void *));
8cc4198f 71extern struct hash *hash_create_size (unsigned int, unsigned int (*) (void *),
24873f0c 72 int (*) (const void *, const void *));
718e3744 73
8cc4198f 74extern void *hash_get (struct hash *, void *, void * (*) (void *));
75extern void *hash_alloc_intern (void *);
76extern void *hash_lookup (struct hash *, void *);
77extern void *hash_release (struct hash *, void *);
718e3744 78
8cc4198f 79extern void hash_iterate (struct hash *,
718e3744 80 void (*) (struct hash_backet *, void *), void *);
81
3f9c7369
DS
82extern void hash_walk (struct hash *,
83 int (*) (struct hash_backet *, void *), void *);
84
8cc4198f 85extern void hash_clean (struct hash *, void (*) (void *));
86extern void hash_free (struct hash *);
718e3744 87
6392aa83
SH
88extern unsigned int string_hash_make (const char *);
89
718e3744 90#endif /* _ZEBRA_HASH_H */