chiark / gitweb /
Prep v228: Condense elogind source masks (2/5)
[elogind.git] / src / basic / set.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 "hashmap.h"
25 #include "macro.h"
26
27 Set *internal_set_new(const struct hash_ops *hash_ops  HASHMAP_DEBUG_PARAMS);
28 #define set_new(ops) internal_set_new(ops  HASHMAP_DEBUG_SRC_ARGS)
29
30
31 static inline Set *set_free(Set *s) {
32         internal_hashmap_free(HASHMAP_BASE(s));
33         return NULL;
34 }
35
36 static inline Set *set_free_free(Set *s) {
37         internal_hashmap_free_free(HASHMAP_BASE(s));
38         return NULL;
39 }
40
41 /* no set_free_free_free */
42
43 static inline Set *set_copy(Set *s) {
44         return (Set*) internal_hashmap_copy(HASHMAP_BASE(s));
45 }
46
47 int internal_set_ensure_allocated(Set **s, const struct hash_ops *hash_ops  HASHMAP_DEBUG_PARAMS);
48 #define set_ensure_allocated(h, ops) internal_set_ensure_allocated(h, ops  HASHMAP_DEBUG_SRC_ARGS)
49
50 int set_put(Set *s, const void *key);
51 /* no set_update */
52 /* no set_replace */
53 static inline void *set_get(Set *s, void *key) {
54         return internal_hashmap_get(HASHMAP_BASE(s), key);
55 }
56 /* no set_get2 */
57
58 static inline bool set_contains(Set *s, const void *key) {
59         return internal_hashmap_contains(HASHMAP_BASE(s), key);
60 }
61
62 static inline void *set_remove(Set *s, const void *key) {
63         return internal_hashmap_remove(HASHMAP_BASE(s), key);
64 }
65
66 /* no set_remove2 */
67 /* no set_remove_value */
68 #if 0 /// UNNEEDED by elogind
69 int set_remove_and_put(Set *s, const void *old_key, const void *new_key);
70 #endif // 0
71 /* no set_remove_and_replace */
72 int set_merge(Set *s, Set *other);
73
74 static inline int set_reserve(Set *h, unsigned entries_add) {
75         return internal_hashmap_reserve(HASHMAP_BASE(h), entries_add);
76 }
77
78 static inline int set_move(Set *s, Set *other) {
79         return internal_hashmap_move(HASHMAP_BASE(s), HASHMAP_BASE(other));
80 }
81
82 static inline int set_move_one(Set *s, Set *other, const void *key) {
83         return internal_hashmap_move_one(HASHMAP_BASE(s), HASHMAP_BASE(other), key);
84 }
85
86 static inline unsigned set_size(Set *s) {
87         return internal_hashmap_size(HASHMAP_BASE(s));
88 }
89
90 static inline bool set_isempty(Set *s) {
91         return set_size(s) == 0;
92 }
93
94 static inline unsigned set_buckets(Set *s) {
95         return internal_hashmap_buckets(HASHMAP_BASE(s));
96 }
97
98 bool set_iterate(Set *s, Iterator *i, void **value);
99
100 static inline void set_clear(Set *s) {
101         internal_hashmap_clear(HASHMAP_BASE(s));
102 }
103
104 static inline void set_clear_free(Set *s) {
105         internal_hashmap_clear_free(HASHMAP_BASE(s));
106 }
107
108 /* no set_clear_free_free */
109
110 static inline void *set_steal_first(Set *s) {
111         return internal_hashmap_steal_first(HASHMAP_BASE(s));
112 }
113
114 /* no set_steal_first_key */
115 /* no set_first_key */
116
117 static inline void *set_first(Set *s) {
118         return internal_hashmap_first(HASHMAP_BASE(s));
119 }
120
121 /* no set_next */
122
123 static inline char **set_get_strv(Set *s) {
124         return internal_hashmap_get_strv(HASHMAP_BASE(s));
125 }
126
127 int set_consume(Set *s, void *value);
128 int set_put_strdup(Set *s, const char *p);
129 #if 0 /// UNNEEDED by elogind
130 int set_put_strdupv(Set *s, char **l);
131 #endif // 0
132
133 #define SET_FOREACH(e, s, i) \
134         for ((i) = ITERATOR_FIRST; set_iterate((s), &(i), (void**)&(e)); )
135
136 DEFINE_TRIVIAL_CLEANUP_FUNC(Set*, set_free);
137 DEFINE_TRIVIAL_CLEANUP_FUNC(Set*, set_free_free);
138
139 #define _cleanup_set_free_ _cleanup_(set_freep)
140 #define _cleanup_set_free_free_ _cleanup_(set_free_freep)