common: compile libhashtable as C++
[lttng-tools.git] / src / common / hashtable / hashtable.h
CommitLineData
bec39940 1/*
ab5be9fa 2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
bec39940 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
bec39940 5 *
bec39940
DG
6 */
7
8#ifndef _LTT_HT_H
9#define _LTT_HT_H
10
11#include <urcu.h>
d88aee68 12#include <stdint.h>
10a8a223 13
d604af56 14#include <common/macros.h>
4bd69c5f 15#include <lttng/lttng-export.h>
8684af09 16#include <urcu/rculfhash.h>
bec39940 17
7966af57
SM
18#ifdef __cplusplus
19extern "C" {
20#endif
21
4bd69c5f 22LTTNG_EXPORT extern unsigned long lttng_ht_seed;
b6314938 23
7966af57 24typedef unsigned long (*hash_fct_type)(const void *_key, unsigned long seed);
bec39940
DG
25typedef cds_lfht_match_fct hash_match_fct;
26
27enum lttng_ht_type {
28 LTTNG_HT_TYPE_STRING,
29 LTTNG_HT_TYPE_ULONG,
d88aee68 30 LTTNG_HT_TYPE_U64,
3c4599b9 31 LTTNG_HT_TYPE_TWO_U64,
bec39940
DG
32};
33
34struct lttng_ht {
35 struct cds_lfht *ht;
36 cds_lfht_match_fct match_fct;
7966af57 37 hash_fct_type hash_fct;
bec39940
DG
38};
39
40struct lttng_ht_iter {
41 struct cds_lfht_iter iter;
42};
43
44struct lttng_ht_node_str {
45 char *key;
46 struct cds_lfht_node node;
47 struct rcu_head head;
48};
49
50struct lttng_ht_node_ulong {
51 unsigned long key;
52 struct cds_lfht_node node;
53 struct rcu_head head;
54};
55
d88aee68
DG
56struct lttng_ht_node_u64 {
57 uint64_t key;
58 struct cds_lfht_node node;
59 struct rcu_head head;
60};
61
3c4599b9
JD
62struct lttng_ht_two_u64 {
63 uint64_t key1;
64 uint64_t key2;
65};
66
67struct lttng_ht_node_two_u64 {
68 struct lttng_ht_two_u64 key;
69 struct cds_lfht_node node;
70 struct rcu_head head;
71};
72
bec39940 73/* Hashtable new and destroy */
6dca8ba7 74struct lttng_ht *lttng_ht_new(unsigned long size, enum lttng_ht_type type);
d604af56 75void lttng_ht_destroy(struct lttng_ht *ht);
bec39940
DG
76
77/* Specialized node init and free functions */
d604af56 78void lttng_ht_node_init_str(struct lttng_ht_node_str *node, char *key);
d604af56 79void lttng_ht_node_init_ulong(struct lttng_ht_node_ulong *node,
bec39940 80 unsigned long key);
d604af56 81void lttng_ht_node_init_u64(struct lttng_ht_node_u64 *node,
d88aee68 82 uint64_t key);
d604af56 83void lttng_ht_node_init_two_u64(struct lttng_ht_node_two_u64 *node,
3c4599b9 84 uint64_t key1, uint64_t key2);
d604af56 85void lttng_ht_node_free_str(struct lttng_ht_node_str *node);
d604af56 86void lttng_ht_node_free_ulong(struct lttng_ht_node_ulong *node);
d604af56 87void lttng_ht_node_free_u64(struct lttng_ht_node_u64 *node);
d604af56
JG
88void lttng_ht_node_free_two_u64(struct lttng_ht_node_two_u64 *node);
89
fb9a95c4 90void lttng_ht_lookup(struct lttng_ht *ht, const void *key,
bec39940
DG
91 struct lttng_ht_iter *iter);
92
93/* Specialized add unique functions */
d604af56 94void lttng_ht_add_unique_str(struct lttng_ht *ht,
bec39940 95 struct lttng_ht_node_str *node);
d604af56 96void lttng_ht_add_unique_ulong(struct lttng_ht *ht,
bec39940 97 struct lttng_ht_node_ulong *node);
d604af56 98void lttng_ht_add_unique_u64(struct lttng_ht *ht,
d88aee68 99 struct lttng_ht_node_u64 *node);
d604af56 100void lttng_ht_add_unique_two_u64(struct lttng_ht *ht,
3c4599b9 101 struct lttng_ht_node_two_u64 *node);
d604af56 102struct lttng_ht_node_ulong *lttng_ht_add_replace_ulong(
852d0037 103 struct lttng_ht *ht, struct lttng_ht_node_ulong *node);
d604af56 104struct lttng_ht_node_u64 *lttng_ht_add_replace_u64(
d88aee68 105 struct lttng_ht *ht, struct lttng_ht_node_u64 *node);
d604af56 106void lttng_ht_add_str(struct lttng_ht *ht,
efa116c6 107 struct lttng_ht_node_str *node);
d604af56 108void lttng_ht_add_ulong(struct lttng_ht *ht,
aefea3b7 109 struct lttng_ht_node_ulong *node);
d604af56 110void lttng_ht_add_u64(struct lttng_ht *ht,
d88aee68 111 struct lttng_ht_node_u64 *node);
bec39940 112
d604af56 113int lttng_ht_del(struct lttng_ht *ht, struct lttng_ht_iter *iter);
bec39940 114
d604af56 115void lttng_ht_get_first(struct lttng_ht *ht,
bec39940 116 struct lttng_ht_iter *iter);
d604af56 117void lttng_ht_get_next(struct lttng_ht *ht, struct lttng_ht_iter *iter);
bec39940 118
d604af56 119unsigned long lttng_ht_get_count(struct lttng_ht *ht);
bec39940 120
d604af56 121struct lttng_ht_node_str *lttng_ht_iter_get_node_str(
bec39940 122 struct lttng_ht_iter *iter);
d604af56 123struct lttng_ht_node_ulong *lttng_ht_iter_get_node_ulong(
bec39940 124 struct lttng_ht_iter *iter);
d604af56 125struct lttng_ht_node_u64 *lttng_ht_iter_get_node_u64(
d88aee68 126 struct lttng_ht_iter *iter);
d604af56 127struct lttng_ht_node_two_u64 *lttng_ht_iter_get_node_two_u64(
3c4599b9 128 struct lttng_ht_iter *iter);
bec39940 129
7966af57
SM
130#ifdef __cplusplus
131}
132#endif
133
bec39940 134#endif /* _LTT_HT_H */
This page took 0.06534 seconds and 4 git commands to generate.