2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; only version 2 of the License.
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 with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307, USA.
23 #include "rculfhash.h"
24 #include "rculfhash-internal.h"
26 typedef unsigned long (*hash_fct
)(void *_key
, unsigned long seed
);
27 typedef cds_lfht_match_fct hash_match_fct
;
36 cds_lfht_match_fct match_fct
;
40 struct lttng_ht_iter
{
41 struct cds_lfht_iter iter
;
44 struct lttng_ht_node_str
{
46 struct cds_lfht_node node
;
50 struct lttng_ht_node_ulong
{
52 struct cds_lfht_node node
;
56 /* Hashtable new and destroy */
57 extern struct lttng_ht
*lttng_ht_new(unsigned long size
, int type
);
58 extern void lttng_ht_destroy(struct lttng_ht
*ht
);
60 /* Specialized node init and free functions */
61 extern void lttng_ht_node_init_str(struct lttng_ht_node_str
*node
, char *key
);
62 extern void lttng_ht_node_init_ulong(struct lttng_ht_node_ulong
*node
,
64 extern void lttng_ht_node_free_str(struct lttng_ht_node_str
*node
);
65 extern void lttng_ht_node_free_ulong(struct lttng_ht_node_ulong
*node
);
67 extern void lttng_ht_lookup(struct lttng_ht
*ht
, void *key
,
68 struct lttng_ht_iter
*iter
);
70 /* Specialized add unique functions */
71 extern void lttng_ht_add_unique_str(struct lttng_ht
*ht
,
72 struct lttng_ht_node_str
*node
);
73 extern void lttng_ht_add_unique_ulong(struct lttng_ht
*ht
,
74 struct lttng_ht_node_ulong
*node
);
76 extern int lttng_ht_del(struct lttng_ht
*ht
, struct lttng_ht_iter
*iter
);
78 extern void lttng_ht_get_first(struct lttng_ht
*ht
,
79 struct lttng_ht_iter
*iter
);
80 extern void lttng_ht_get_next(struct lttng_ht
*ht
, struct lttng_ht_iter
*iter
);
82 extern unsigned long lttng_ht_get_count(struct lttng_ht
*ht
);
84 extern struct lttng_ht_node_str
*lttng_ht_iter_get_node_str(
85 struct lttng_ht_iter
*iter
);
86 extern struct lttng_ht_node_ulong
*lttng_ht_iter_get_node_ulong(
87 struct lttng_ht_iter
*iter
);
89 #endif /* _LTT_HT_H */