summaryrefslogtreecommitdiffstats
path: root/include/hash.h
blob: d260f6595b4ce3c427499b5045b464dbb19a786c (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
#ifndef _NF_SET_HASH_H_
#define _NF_SET_HASH_H_

#include <unistd.h>
#include "slist.h"
#include "linux_list.h"

#include <stdint.h>

struct hashtable;
struct hashtable_node;

struct hashtable {
	uint32_t hashsize;
	uint32_t limit;
	uint32_t count;
	uint32_t initval;
	uint32_t datasize;
	
	uint32_t	(*hash)(const void *data, struct hashtable *table);
	int		(*compare)(const void *data1, const void *data2);

	struct slist_head 	members[0];
};

struct hashtable_node {
	struct slist_head head;
	char data[0];
};

struct hashtable_node *hashtable_alloc_node(int datasize, void *data);
void hashtable_destroy_node(struct hashtable_node *h);

struct hashtable *
hashtable_create(int hashsize, int limit, int datasize,
		 uint32_t (*hash)(const void *data, struct hashtable *table),
		 int (*compare)(const void *data1, const void *data2));
void hashtable_destroy(struct hashtable *h);

void *hashtable_add(struct hashtable *table, void *data);
void *hashtable_find(struct hashtable *table, const void *data);
int hashtable_del(struct hashtable *table, void *data);
int hashtable_flush(struct hashtable *table);
int hashtable_iterate(struct hashtable *table, void *data,
		      int (*iterate)(void *data1, void *data2));
unsigned int hashtable_counter(const struct hashtable *table);

#endif