Commit | Line | Data |
---|---|---|
bec39940 DG |
1 | /* |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> | |
3 | * | |
d14d33bf AM |
4 | * This program is free software; you can redistribute it and/or modify |
5 | * it under the terms of the GNU General Public License, version 2 only, | |
6 | * as published by the Free Software Foundation. | |
bec39940 DG |
7 | * |
8 | * This program is distributed in the hope that it will be useful, but WITHOUT | |
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
d14d33bf | 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
bec39940 DG |
11 | * more details. |
12 | * | |
d14d33bf AM |
13 | * You should have received a copy of the GNU General Public License along |
14 | * with this program; if not, write to the Free Software Foundation, Inc., | |
15 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
bec39940 DG |
16 | */ |
17 | ||
18 | #ifndef _LTT_HT_H | |
19 | #define _LTT_HT_H | |
20 | ||
21 | #include <urcu.h> | |
d88aee68 | 22 | #include <stdint.h> |
10a8a223 DG |
23 | |
24 | #include "rculfhash.h" | |
25 | #include "rculfhash-internal.h" | |
bec39940 | 26 | |
b6314938 DG |
27 | extern unsigned long lttng_ht_seed; |
28 | ||
bec39940 DG |
29 | typedef unsigned long (*hash_fct)(void *_key, unsigned long seed); |
30 | typedef cds_lfht_match_fct hash_match_fct; | |
31 | ||
32 | enum lttng_ht_type { | |
33 | LTTNG_HT_TYPE_STRING, | |
34 | LTTNG_HT_TYPE_ULONG, | |
d88aee68 | 35 | LTTNG_HT_TYPE_U64, |
bec39940 DG |
36 | }; |
37 | ||
38 | struct lttng_ht { | |
39 | struct cds_lfht *ht; | |
40 | cds_lfht_match_fct match_fct; | |
41 | hash_fct hash_fct; | |
42 | }; | |
43 | ||
44 | struct lttng_ht_iter { | |
45 | struct cds_lfht_iter iter; | |
46 | }; | |
47 | ||
48 | struct lttng_ht_node_str { | |
49 | char *key; | |
50 | struct cds_lfht_node node; | |
51 | struct rcu_head head; | |
52 | }; | |
53 | ||
54 | struct lttng_ht_node_ulong { | |
55 | unsigned long key; | |
56 | struct cds_lfht_node node; | |
57 | struct rcu_head head; | |
58 | }; | |
59 | ||
d88aee68 DG |
60 | struct lttng_ht_node_u64 { |
61 | uint64_t key; | |
62 | struct cds_lfht_node node; | |
63 | struct rcu_head head; | |
64 | }; | |
65 | ||
bec39940 DG |
66 | /* Hashtable new and destroy */ |
67 | extern struct lttng_ht *lttng_ht_new(unsigned long size, int type); | |
68 | extern void lttng_ht_destroy(struct lttng_ht *ht); | |
69 | ||
70 | /* Specialized node init and free functions */ | |
71 | extern void lttng_ht_node_init_str(struct lttng_ht_node_str *node, char *key); | |
72 | extern void lttng_ht_node_init_ulong(struct lttng_ht_node_ulong *node, | |
73 | unsigned long key); | |
d88aee68 DG |
74 | extern void lttng_ht_node_init_u64(struct lttng_ht_node_u64 *node, |
75 | uint64_t key); | |
bec39940 DG |
76 | extern void lttng_ht_node_free_str(struct lttng_ht_node_str *node); |
77 | extern void lttng_ht_node_free_ulong(struct lttng_ht_node_ulong *node); | |
7972aab2 | 78 | extern void lttng_ht_node_free_u64(struct lttng_ht_node_u64 *node); |
bec39940 DG |
79 | |
80 | extern void lttng_ht_lookup(struct lttng_ht *ht, void *key, | |
81 | struct lttng_ht_iter *iter); | |
82 | ||
83 | /* Specialized add unique functions */ | |
84 | extern void lttng_ht_add_unique_str(struct lttng_ht *ht, | |
85 | struct lttng_ht_node_str *node); | |
86 | extern void lttng_ht_add_unique_ulong(struct lttng_ht *ht, | |
87 | struct lttng_ht_node_ulong *node); | |
d88aee68 DG |
88 | extern void lttng_ht_add_unique_u64(struct lttng_ht *ht, |
89 | struct lttng_ht_node_u64 *node); | |
852d0037 DG |
90 | extern struct lttng_ht_node_ulong *lttng_ht_add_replace_ulong( |
91 | struct lttng_ht *ht, struct lttng_ht_node_ulong *node); | |
d88aee68 DG |
92 | extern struct lttng_ht_node_u64 *lttng_ht_add_replace_u64( |
93 | struct lttng_ht *ht, struct lttng_ht_node_u64 *node); | |
aefea3b7 DG |
94 | extern void lttng_ht_add_ulong(struct lttng_ht *ht, |
95 | struct lttng_ht_node_ulong *node); | |
d88aee68 DG |
96 | extern void lttng_ht_add_u64(struct lttng_ht *ht, |
97 | struct lttng_ht_node_u64 *node); | |
bec39940 DG |
98 | |
99 | extern int lttng_ht_del(struct lttng_ht *ht, struct lttng_ht_iter *iter); | |
100 | ||
101 | extern void lttng_ht_get_first(struct lttng_ht *ht, | |
102 | struct lttng_ht_iter *iter); | |
103 | extern void lttng_ht_get_next(struct lttng_ht *ht, struct lttng_ht_iter *iter); | |
104 | ||
105 | extern unsigned long lttng_ht_get_count(struct lttng_ht *ht); | |
106 | ||
107 | extern struct lttng_ht_node_str *lttng_ht_iter_get_node_str( | |
108 | struct lttng_ht_iter *iter); | |
109 | extern struct lttng_ht_node_ulong *lttng_ht_iter_get_node_ulong( | |
110 | struct lttng_ht_iter *iter); | |
d88aee68 DG |
111 | extern struct lttng_ht_node_u64 *lttng_ht_iter_get_node_u64( |
112 | struct lttng_ht_iter *iter); | |
bec39940 DG |
113 | |
114 | #endif /* _LTT_HT_H */ |