]> arthur.barton.de Git - netdata.git/blob - src/dictionary.h
c659d580143bf35b69cc22b7a433c1dbb6b3dd77
[netdata.git] / src / dictionary.h
1 #include <pthread.h>
2
3 #include "web_buffer.h"
4 #include "avl.h"
5
6 #ifndef NETDATA_DICTIONARY_H
7 #define NETDATA_DICTIONARY_H 1
8
9 typedef struct name_value {
10         avl avl;                                // the index - this has to be first!
11
12         uint32_t hash;                  // a simple hash to speed up searching
13                                                         // we first compare hashes, and only if the hashes are equal we do string comparisons
14
15         char *name;
16         void *value;
17 } NAME_VALUE;
18
19 typedef struct dictionary {
20         uint32_t flags;
21
22         unsigned long long inserts;
23         unsigned long long deletes;
24         unsigned long long searches;
25         unsigned long long entries;
26
27         avl_tree values_index;
28         pthread_rwlock_t rwlock;
29 } DICTIONARY;
30
31 #define DICTIONARY_FLAG_DEFAULT                                 0x00000000
32 #define DICTIONARY_FLAG_SINGLE_THREADED                 0x00000001
33 #define DICTIONARY_FLAG_VALUE_LINK_DONT_CLONE   0x00000002
34 #define DICTIONARY_FLAG_NAME_LINK_DONT_CLONE    0x00000004
35
36 extern DICTIONARY *dictionary_create(uint32_t flags);
37 extern void dictionary_destroy(DICTIONARY *dict);
38 extern void *dictionary_set(DICTIONARY *dict, const char *name, void *value, size_t value_len);
39 extern void *dictionary_get(DICTIONARY *dict, const char *name);
40 extern int dictionary_del(DICTIONARY *dict, const char *name);
41
42 extern int dictionary_get_all(DICTIONARY *dict, int (*callback)(void *entry, void *data), void *data);
43
44 #endif /* NETDATA_DICTIONARY_H */