chiark / gitweb /
service: add options RestartPreventExitStatus and SuccessExitStatus
[elogind.git] / src / shared / hashmap.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2010 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #include <stdbool.h>
25
26 /* Pretty straightforward hash table implementation. As a minor
27  * optimization a NULL hashmap object will be treated as empty hashmap
28  * for all read operations. That way it is not necessary to
29  * instantiate an object for each Hashmap use. */
30
31 typedef struct Hashmap Hashmap;
32 typedef struct _IteratorStruct _IteratorStruct;
33 typedef _IteratorStruct* Iterator;
34
35 #define ITERATOR_FIRST ((Iterator) 0)
36 #define ITERATOR_LAST ((Iterator) -1)
37
38 typedef unsigned (*hash_func_t)(const void *p);
39 typedef int (*compare_func_t)(const void *a, const void *b);
40
41 unsigned string_hash_func(const void *p);
42 int string_compare_func(const void *a, const void *b);
43
44 unsigned trivial_hash_func(const void *p);
45 int trivial_compare_func(const void *a, const void *b);
46
47 Hashmap *hashmap_new(hash_func_t hash_func, compare_func_t compare_func);
48 void hashmap_free(Hashmap *h);
49 void hashmap_free_free(Hashmap *h);
50 Hashmap *hashmap_copy(Hashmap *h);
51 int hashmap_ensure_allocated(Hashmap **h, hash_func_t hash_func, compare_func_t compare_func);
52
53 int hashmap_put(Hashmap *h, const void *key, void *value);
54 int hashmap_replace(Hashmap *h, const void *key, void *value);
55 void* hashmap_get(Hashmap *h, const void *key);
56 bool hashmap_contains(Hashmap *h, const void *key);
57 void* hashmap_remove(Hashmap *h, const void *key);
58 void* hashmap_remove_value(Hashmap *h, const void *key, void *value);
59 int hashmap_remove_and_put(Hashmap *h, const void *old_key, const void *new_key, void *value);
60 int hashmap_remove_and_replace(Hashmap *h, const void *old_key, const void *new_key, void *value);
61
62 int hashmap_merge(Hashmap *h, Hashmap *other);
63 void hashmap_move(Hashmap *h, Hashmap *other);
64 int hashmap_move_one(Hashmap *h, Hashmap *other, const void *key);
65
66 unsigned hashmap_size(Hashmap *h);
67 bool hashmap_isempty(Hashmap *h);
68
69 void *hashmap_iterate(Hashmap *h, Iterator *i, const void **key);
70 void *hashmap_iterate_backwards(Hashmap *h, Iterator *i, const void **key);
71 void *hashmap_iterate_skip(Hashmap *h, const void *key, Iterator *i);
72
73 void hashmap_clear(Hashmap *h);
74 void hashmap_clear_free(Hashmap *h);
75
76 void *hashmap_steal_first(Hashmap *h);
77 void *hashmap_steal_first_key(Hashmap *h);
78 void* hashmap_first(Hashmap *h);
79 void* hashmap_first_key(Hashmap *h);
80 void* hashmap_last(Hashmap *h);
81
82 char **hashmap_get_strv(Hashmap *h);
83
84 #define HASHMAP_FOREACH(e, h, i) \
85         for ((i) = ITERATOR_FIRST, (e) = hashmap_iterate((h), &(i), NULL); (e); (e) = hashmap_iterate((h), &(i), NULL))
86
87 #define HASHMAP_FOREACH_KEY(e, k, h, i) \
88         for ((i) = ITERATOR_FIRST, (e) = hashmap_iterate((h), &(i), (const void**) &(k)); (e); (e) = hashmap_iterate((h), &(i), (const void**) &(k)))
89
90 #define HASHMAP_FOREACH_BACKWARDS(e, h, i) \
91         for ((i) = ITERATOR_LAST, (e) = hashmap_iterate_backwards((h), &(i), NULL); (e); (e) = hashmap_iterate_backwards((h), &(i), NULL))