2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
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.
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
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
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.
22 #include <urcu/compiler.h>
24 #include <common/common.h>
25 #include <common/defaults.h>
27 #include "hashtable.h"
30 unsigned long lttng_ht_seed
;
32 static unsigned long min_hash_alloc_size
= 1;
33 static unsigned long max_hash_buckets_size
= 0;
36 * Match function for string node.
38 static int match_str(struct cds_lfht_node
*node
, const void *key
)
40 struct lttng_ht_node_str
*match_node
=
41 caa_container_of(node
, struct lttng_ht_node_str
, node
);
43 return hash_match_key_str(match_node
->key
, (void *) key
);
47 * Match function for ulong node.
49 static int match_ulong(struct cds_lfht_node
*node
, const void *key
)
51 struct lttng_ht_node_ulong
*match_node
=
52 caa_container_of(node
, struct lttng_ht_node_ulong
, node
);
54 return hash_match_key_ulong((void *) match_node
->key
, (void *) key
);
58 * Match function for u64 node.
60 static int match_u64(struct cds_lfht_node
*node
, const void *key
)
62 struct lttng_ht_node_u64
*match_node
=
63 caa_container_of(node
, struct lttng_ht_node_u64
, node
);
65 return hash_match_key_u64(&match_node
->key
, (void *) key
);
69 * Match function for two uint64_t node.
71 static int match_two_u64(struct cds_lfht_node
*node
, const void *key
)
73 struct lttng_ht_node_two_u64
*match_node
=
74 caa_container_of(node
, struct lttng_ht_node_two_u64
, node
);
76 return hash_match_key_two_u64((void *) &match_node
->key
, (void *) key
);
80 * Return an allocated lttng hashtable.
82 struct lttng_ht
*lttng_ht_new(unsigned long size
, int type
)
88 size
= DEFAULT_HT_SIZE
;
90 ht
= zmalloc(sizeof(*ht
));
92 PERROR("zmalloc lttng_ht");
96 ht
->ht
= cds_lfht_new(size
, min_hash_alloc_size
, max_hash_buckets_size
,
97 CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
, NULL
);
99 * There is already an assert in the RCU hashtable code so if the ht is
100 * NULL here there is a *huge* problem.
105 case LTTNG_HT_TYPE_STRING
:
106 ht
->match_fct
= match_str
;
107 ht
->hash_fct
= hash_key_str
;
109 case LTTNG_HT_TYPE_ULONG
:
110 ht
->match_fct
= match_ulong
;
111 ht
->hash_fct
= hash_key_ulong
;
113 case LTTNG_HT_TYPE_U64
:
114 ht
->match_fct
= match_u64
;
115 ht
->hash_fct
= hash_key_u64
;
117 case LTTNG_HT_TYPE_TWO_U64
:
118 ht
->match_fct
= match_two_u64
;
119 ht
->hash_fct
= hash_key_two_u64
;
122 ERR("Unknown lttng hashtable type %d", type
);
123 lttng_ht_destroy(ht
);
127 DBG3("Created hashtable size %lu at %p of type %d", size
, ht
->ht
, type
);
136 * Free a lttng hashtable.
138 void lttng_ht_destroy(struct lttng_ht
*ht
)
142 ret
= cds_lfht_destroy(ht
->ht
, NULL
);
148 * Init lttng ht node string.
150 void lttng_ht_node_init_str(struct lttng_ht_node_str
*node
, char *key
)
155 cds_lfht_node_init(&node
->node
);
159 * Init lttng ht node unsigned long.
161 void lttng_ht_node_init_ulong(struct lttng_ht_node_ulong
*node
,
167 cds_lfht_node_init(&node
->node
);
171 * Init lttng ht node uint64_t.
173 void lttng_ht_node_init_u64(struct lttng_ht_node_u64
*node
,
179 cds_lfht_node_init(&node
->node
);
183 * Init lttng ht node with two uint64_t.
185 void lttng_ht_node_init_two_u64(struct lttng_ht_node_two_u64
*node
,
186 uint64_t key1
, uint64_t key2
)
190 node
->key
.key1
= key1
;
191 node
->key
.key2
= key2
;
192 cds_lfht_node_init(&node
->node
);
196 * Free lttng ht node string.
198 void lttng_ht_node_free_str(struct lttng_ht_node_str
*node
)
205 * Free lttng ht node unsigned long.
207 void lttng_ht_node_free_ulong(struct lttng_ht_node_ulong
*node
)
214 * Free lttng ht node uint64_t.
216 void lttng_ht_node_free_u64(struct lttng_ht_node_u64
*node
)
223 * Free lttng ht node two uint64_t.
225 void lttng_ht_node_free_two_u64(struct lttng_ht_node_two_u64
*node
)
232 * Lookup function in hashtable.
234 void lttng_ht_lookup(struct lttng_ht
*ht
, void *key
,
235 struct lttng_ht_iter
*iter
)
240 cds_lfht_lookup(ht
->ht
, ht
->hash_fct(key
, lttng_ht_seed
),
241 ht
->match_fct
, key
, &iter
->iter
);
245 * Add unique string node to hashtable.
247 void lttng_ht_add_unique_str(struct lttng_ht
*ht
,
248 struct lttng_ht_node_str
*node
)
250 struct cds_lfht_node
*node_ptr
;
255 node_ptr
= cds_lfht_add_unique(ht
->ht
, ht
->hash_fct(node
->key
, lttng_ht_seed
),
256 ht
->match_fct
, node
->key
, &node
->node
);
257 assert(node_ptr
== &node
->node
);
261 * Add string node to hashtable.
263 void lttng_ht_add_str(struct lttng_ht
*ht
,
264 struct lttng_ht_node_str
*node
)
270 cds_lfht_add(ht
->ht
, ht
->hash_fct(node
->key
, lttng_ht_seed
),
275 * Add unsigned long node to hashtable.
277 void lttng_ht_add_ulong(struct lttng_ht
*ht
, struct lttng_ht_node_ulong
*node
)
283 cds_lfht_add(ht
->ht
, ht
->hash_fct((void *) node
->key
, lttng_ht_seed
),
288 * Add uint64_t node to hashtable.
291 void lttng_ht_add_u64(struct lttng_ht
*ht
, struct lttng_ht_node_u64
*node
)
297 cds_lfht_add(ht
->ht
, ht
->hash_fct(&node
->key
, lttng_ht_seed
),
302 * Add unique unsigned long node to hashtable.
304 void lttng_ht_add_unique_ulong(struct lttng_ht
*ht
,
305 struct lttng_ht_node_ulong
*node
)
307 struct cds_lfht_node
*node_ptr
;
312 node_ptr
= cds_lfht_add_unique(ht
->ht
,
313 ht
->hash_fct((void *) node
->key
, lttng_ht_seed
), ht
->match_fct
,
314 (void *) node
->key
, &node
->node
);
315 assert(node_ptr
== &node
->node
);
319 * Add unique uint64_t node to hashtable.
321 void lttng_ht_add_unique_u64(struct lttng_ht
*ht
,
322 struct lttng_ht_node_u64
*node
)
324 struct cds_lfht_node
*node_ptr
;
329 node_ptr
= cds_lfht_add_unique(ht
->ht
,
330 ht
->hash_fct(&node
->key
, lttng_ht_seed
), ht
->match_fct
,
331 &node
->key
, &node
->node
);
332 assert(node_ptr
== &node
->node
);
336 * Add unique two uint64_t node to hashtable.
338 void lttng_ht_add_unique_two_u64(struct lttng_ht
*ht
,
339 struct lttng_ht_node_two_u64
*node
)
341 struct cds_lfht_node
*node_ptr
;
346 node_ptr
= cds_lfht_add_unique(ht
->ht
,
347 ht
->hash_fct((void *) &node
->key
, lttng_ht_seed
), ht
->match_fct
,
348 (void *) &node
->key
, &node
->node
);
349 assert(node_ptr
== &node
->node
);
353 * Add replace unsigned long node to hashtable.
355 struct lttng_ht_node_ulong
*lttng_ht_add_replace_ulong(struct lttng_ht
*ht
,
356 struct lttng_ht_node_ulong
*node
)
358 struct cds_lfht_node
*node_ptr
;
363 node_ptr
= cds_lfht_add_replace(ht
->ht
,
364 ht
->hash_fct((void *) node
->key
, lttng_ht_seed
), ht
->match_fct
,
365 (void *) node
->key
, &node
->node
);
369 return caa_container_of(node_ptr
, struct lttng_ht_node_ulong
, node
);
371 assert(node_ptr
== &node
->node
);
375 * Add replace unsigned long node to hashtable.
377 struct lttng_ht_node_u64
*lttng_ht_add_replace_u64(struct lttng_ht
*ht
,
378 struct lttng_ht_node_u64
*node
)
380 struct cds_lfht_node
*node_ptr
;
385 node_ptr
= cds_lfht_add_replace(ht
->ht
,
386 ht
->hash_fct(&node
->key
, lttng_ht_seed
), ht
->match_fct
,
387 &node
->key
, &node
->node
);
391 return caa_container_of(node_ptr
, struct lttng_ht_node_u64
, node
);
393 assert(node_ptr
== &node
->node
);
397 * Delete node from hashtable.
399 int lttng_ht_del(struct lttng_ht
*ht
, struct lttng_ht_iter
*iter
)
405 return cds_lfht_del(ht
->ht
, iter
->iter
.node
);
409 * Get first node in the hashtable.
411 void lttng_ht_get_first(struct lttng_ht
*ht
, struct lttng_ht_iter
*iter
)
417 cds_lfht_first(ht
->ht
, &iter
->iter
);
421 * Get next node in the hashtable.
423 void lttng_ht_get_next(struct lttng_ht
*ht
, struct lttng_ht_iter
*iter
)
429 cds_lfht_next(ht
->ht
, &iter
->iter
);
433 * Return the number of nodes in the hashtable.
435 unsigned long lttng_ht_get_count(struct lttng_ht
*ht
)
443 cds_lfht_count_nodes(ht
->ht
, &scb
, &count
, &sca
);
449 * Return lttng ht string node from iterator.
451 struct lttng_ht_node_str
*lttng_ht_iter_get_node_str(
452 struct lttng_ht_iter
*iter
)
454 struct cds_lfht_node
*node
;
457 node
= cds_lfht_iter_get_node(&iter
->iter
);
461 return caa_container_of(node
, struct lttng_ht_node_str
, node
);
465 * Return lttng ht unsigned long node from iterator.
467 struct lttng_ht_node_ulong
*lttng_ht_iter_get_node_ulong(
468 struct lttng_ht_iter
*iter
)
470 struct cds_lfht_node
*node
;
473 node
= cds_lfht_iter_get_node(&iter
->iter
);
477 return caa_container_of(node
, struct lttng_ht_node_ulong
, node
);
481 * Return lttng ht unsigned long node from iterator.
483 struct lttng_ht_node_u64
*lttng_ht_iter_get_node_u64(
484 struct lttng_ht_iter
*iter
)
486 struct cds_lfht_node
*node
;
489 node
= cds_lfht_iter_get_node(&iter
->iter
);
493 return caa_container_of(node
, struct lttng_ht_node_u64
, node
);
497 * Return lttng ht stream and index id node from iterator.
499 struct lttng_ht_node_two_u64
*lttng_ht_iter_get_node_two_u64(
500 struct lttng_ht_iter
*iter
)
502 struct cds_lfht_node
*node
;
505 node
= cds_lfht_iter_get_node(&iter
->iter
);
509 return caa_container_of(node
, struct lttng_ht_node_two_u64
, node
);
515 static void __attribute__((constructor
)) _init(void)
517 /* Init hash table seed */
518 lttng_ht_seed
= (unsigned long) time(NULL
);
This page took 0.067187 seconds and 4 git commands to generate.