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