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