]> git.ozlabs.org Git - ccan/blob - ccan/htable/htable_type.h
2afa1484756025c21ee122dcd31dbc59623fab24
[ccan] / ccan / htable / htable_type.h
1 /* Licensed under LGPLv2+ - see LICENSE file for details */
2 #ifndef CCAN_HTABLE_TYPE_H
3 #define CCAN_HTABLE_TYPE_H
4 #include <ccan/htable/htable.h>
5 #include <ccan/compiler/compiler.h>
6 #include "config.h"
7
8 /**
9  * HTABLE_DEFINE_TYPE - create a set of htable ops for a type
10  * @type: a type whose pointers will be values in the hash.
11  * @keyof: a function/macro to extract a key: <keytype> @keyof(const type *elem)
12  * @hashfn: a hash function for a @key: size_t @hashfn(const <keytype> *)
13  * @eqfn: an equality function keys: bool @eqfn(const type *, const <keytype> *)
14  * @prefix: a prefix for all the functions to define (of form <name>_*)
15  *
16  * NULL values may not be placed into the hash table.
17  *
18  * This defines the type hashtable type and an iterator type:
19  *      struct <name>;
20  *      struct <name>_iter;
21  *
22  * It also defines initialization and freeing functions:
23  *      void <name>_init(struct <name> *);
24  *      void <name>_init_sized(struct <name> *, size_t);
25  *      void <name>_clear(struct <name> *);
26  *
27  * Add function only fails if we run out of memory:
28  *      bool <name>_add(struct <name> *ht, const <type> *e);
29  *
30  * Delete and delete-by key return true if it was in the set:
31  *      bool <name>_del(struct <name> *ht, const <type> *e);
32  *      bool <name>_delkey(struct <name> *ht, const <keytype> *k);
33  *
34  * Find and return the (first) matching element, or NULL:
35  *      type *<name>_get(const struct @name *ht, const <keytype> *k);
36  *
37  * Find and return all matching elements, or NULL:
38  *      type *<name>_getfirst(const struct @name *ht, const <keytype> *k,
39  *                            struct <name>_iter *i);
40  *      type *<name>_getnext(const struct @name *ht, const <keytype> *k,
41  *                           struct <name>_iter *i);
42  *
43  * Iteration over hashtable is also supported:
44  *      type *<name>_first(const struct <name> *ht, struct <name>_iter *i);
45  *      type *<name>_next(const struct <name> *ht, struct <name>_iter *i);
46  *
47  * It's currently safe to iterate over a changing hashtable, but you might
48  * miss an element.  Iteration isn't very efficient, either.
49  *
50  * You can use HTABLE_INITIALIZER like so:
51  *      struct <name> ht = { HTABLE_INITIALIZER(ht.raw, <name>_hash, NULL) };
52  */
53 #define HTABLE_DEFINE_TYPE(type, keyof, hashfn, eqfn, name)             \
54         struct name { struct htable raw; };                             \
55         struct name##_iter { struct htable_iter i; };                   \
56         static inline size_t name##_hash(const void *elem, void *priv)  \
57         {                                                               \
58                 return hashfn(keyof((const type *)elem));               \
59         }                                                               \
60         static inline UNNEEDED void name##_init(struct name *ht)        \
61         {                                                               \
62                 htable_init(&ht->raw, name##_hash, NULL);               \
63         }                                                               \
64         static inline UNNEEDED void name##_init_sized(struct name *ht,  \
65                                                       size_t s)         \
66         {                                                               \
67                 htable_init_sized(&ht->raw, name##_hash, NULL, s);      \
68         }                                                               \
69         static inline UNNEEDED void name##_clear(struct name *ht)       \
70         {                                                               \
71                 htable_clear(&ht->raw);                                 \
72         }                                                               \
73         static inline bool name##_add(struct name *ht, const type *elem) \
74         {                                                               \
75                 return htable_add(&ht->raw, hashfn(keyof(elem)), elem); \
76         }                                                               \
77         static inline UNNEEDED bool name##_del(struct name *ht,         \
78                                                const type *elem)        \
79         {                                                               \
80                 return htable_del(&ht->raw, hashfn(keyof(elem)), elem); \
81         }                                                               \
82         static inline UNNEEDED type *name##_get(const struct name *ht,  \
83                                        const HTABLE_KTYPE(keyof) k)     \
84         {                                                               \
85                 /* Typecheck for eqfn */                                \
86                 (void)sizeof(eqfn((const type *)NULL,                   \
87                                   keyof((const type *)NULL)));          \
88                 return htable_get(&ht->raw,                             \
89                                   hashfn(k),                            \
90                                   (bool (*)(const void *, void *))(eqfn), \
91                                   k);                                   \
92         }                                                               \
93         static inline UNNEEDED type *name##_getmatch_(const struct name *ht, \
94                                          const HTABLE_KTYPE(keyof) k,   \
95                                          size_t h,                      \
96                                          type *v,                       \
97                                          struct name##_iter *iter)      \
98         {                                                               \
99                 while (v) {                                             \
100                         if (eqfn(v, k))                                 \
101                                 break;                                  \
102                         v = htable_nextval(&ht->raw, &iter->i, h);      \
103                 }                                                       \
104                 return v;                                               \
105         }                                                               \
106         static inline UNNEEDED type *name##_getfirst(const struct name *ht, \
107                                          const HTABLE_KTYPE(keyof) k,   \
108                                          struct name##_iter *iter)      \
109         {                                                               \
110                 size_t h = hashfn(k);                                   \
111                 type *v = htable_firstval(&ht->raw, &iter->i, h);       \
112                 return name##_getmatch_(ht, k, h, v, iter);                     \
113         }                                                               \
114         static inline UNNEEDED type *name##_getnext(const struct name *ht, \
115                                          const HTABLE_KTYPE(keyof) k,   \
116                                          struct name##_iter *iter)      \
117         {                                                               \
118                 size_t h = hashfn(k);                                   \
119                 type *v = htable_nextval(&ht->raw, &iter->i, h);        \
120                 return name##_getmatch_(ht, k, h, v, iter);             \
121         }                                                               \
122         static inline UNNEEDED bool name##_delkey(struct name *ht,      \
123                                          const HTABLE_KTYPE(keyof) k)   \
124         {                                                               \
125                 type *elem = name##_get(ht, k);                         \
126                 if (elem)                                               \
127                         return name##_del(ht, elem);                    \
128                 return false;                                           \
129         }                                                               \
130         static inline UNNEEDED type *name##_first(const struct name *ht, \
131                                          struct name##_iter *iter)      \
132         {                                                               \
133                 return htable_first(&ht->raw, &iter->i);                \
134         }                                                               \
135         static inline UNNEEDED type *name##_next(const struct name *ht, \
136                                         struct name##_iter *iter)       \
137         {                                                               \
138                 return htable_next(&ht->raw, &iter->i);                 \
139         }
140
141 #if HAVE_TYPEOF
142 #define HTABLE_KTYPE(keyof) typeof(keyof(NULL))
143 #else
144 #define HTABLE_KTYPE(keyof) void *
145 #endif
146 #endif /* CCAN_HTABLE_TYPE_H */