Code

store: Removed a obsolete (and now somewhat misleading) comment.
[sysdb.git] / src / include / core / store.h
1 /*
2  * SysDB - src/include/core/store.h
3  * Copyright (C) 2012 Sebastian 'tokkee' Harl <sh@tokkee.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
19  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
28 #ifndef SDB_CORE_STORE_H
29 #define SDB_CORE_STORE_H 1
31 #include "sysdb.h"
32 #include "core/object.h"
33 #include "core/data.h"
34 #include "core/time.h"
35 #include "utils/llist.h"
36 #include "utils/strbuf.h"
38 #include <stdio.h>
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
44 /*
45  * Store object types.
46  */
47 enum {
48         SDB_HOST = 1,
49         SDB_SERVICE,
50         SDB_ATTRIBUTE,
51 };
52 #define SDB_STORE_TYPE_TO_NAME(t) \
53         (((t) == SDB_HOST) ? "host" \
54                 : ((t) == SDB_SERVICE) ? "service" \
55                 : ((t) == SDB_ATTRIBUTE) ? "attribute" : "unknown")
58 /*
59  * sdb_store_base_t represents the super-class of any object stored in the
60  * database. It inherits from sdb_object_t and may safely be cast to a generic
61  * object to access its name.
62  */
63 struct sdb_store_base;
64 typedef struct sdb_store_base sdb_store_base_t;
66 /*
67  * sdb_store_clear:
68  * Clear the entire store and remove all stored objects.
69  */
70 void
71 sdb_store_clear(void);
73 /*
74  * sdb_store_host:
75  * Add/update a host in the store. If the host, identified by its
76  * canonicalized name, already exists, it will be updated according to the
77  * specified name and timestamp. Else, a new entry will be created in the
78  * store. Any memory required for storing the entry will be allocated an
79  * managed by the store itself.
80  *
81  * Returns:
82  *  - 0 on success
83  *  - a positive value if the new entry is older than the currently stored
84  *    entry (in this case, no update will happen)
85  *  - a negative value on error
86  */
87 int
88 sdb_store_host(const char *name, sdb_time_t last_update);
90 /*
91  * sdb_store_has_host:
92  * sdb_store_get_host:
93  * Query the store for a host by its (canonicalized) name.
94  *
95  * sdb_store_get_host increments the ref count of the host object. The caller
96  * needs to deref it when no longer using it.
97  */
98 _Bool
99 sdb_store_has_host(const char *name);
101 sdb_store_base_t *
102 sdb_store_get_host(const char *name);
104 /*
105  * sdb_store_attribute:
106  * Add/update a host's attribute in the store. If the attribute, identified by
107  * its key, already exists for the specified host, it will be updated to the
108  * specified values. If the referenced host does not exist, an error will be
109  * reported. Else, a new entry will be created in the store. Any memory
110  * required for storing the entry will be allocated and managed by the store
111  * itself.
112  *
113  * Returns:
114  *  - 0 on success
115  *  - a positive value if the new entry is older than the currently stored
116  *    entry (in this case, no update will happen)
117  *  - a negative value on error
118  */
119 int
120 sdb_store_attribute(const char *hostname,
121                 const char *key, const sdb_data_t *value,
122                 sdb_time_t last_update);
124 /*
125  * sdb_store_service:
126  * Add/update a store in the store. If the service, identified by its name,
127  * already exists for the specified host, it will be updated according to the
128  * specified 'service' object. If the referenced host does not exist, an error
129  * will be reported. Else, a new entry will be created in the store. Any
130  * memory required for storing the entry will be allocated an managed by the
131  * store itself. The specified service-object will not be referenced or
132  * further accessed.
133  *
134  * Returns:
135  *  - 0 on success
136  *  - a positive value if the new entry is older than the currently stored
137  *    entry (in this case, no update will happen)
138  *  - a negative value on error
139  */
140 int
141 sdb_store_service(const char *hostname, const char *name,
142                 sdb_time_t last_update);
144 /*
145  * Store matchers may be used to lookup hosts from the store based on their
146  * various attributes. Service and attribute matchers are applied to a host's
147  * services and attributes and evaluate to true if *any* service or attribute
148  * matches.
149  *
150  * A store matcher object inherits from sdb_object_t and, thus, may safely be
151  * cast to a generic object.
152  */
153 struct sdb_store_matcher;
154 typedef struct sdb_store_matcher sdb_store_matcher_t;
155 #define SDB_STORE_MATCHER(obj) ((sdb_store_matcher_t *)(obj))
157 /*
158  * sdb_store_name_matcher:
159  * Creates a matcher matching by the specified object type's name. If 're' is
160  * true, the specified name is treated as a POSIX extended regular expression.
161  * Else, the exact name has to match (case-insensitive).
162  */
163 sdb_store_matcher_t *
164 sdb_store_name_matcher(int type, const char *name, _Bool re);
166 /*
167  * sdb_store_attr_matcher:
168  * Creates a matcher matching attributes based on their value. If 're' is
169  * true, the specified name is treated as a POSIX extended regular expression.
170  * Else, the exact name has to match (case-insensitive).
171  */
172 sdb_store_matcher_t *
173 sdb_store_attr_matcher(const char *name, const char *value, _Bool re);
175 /*
176  * sdb_store_matcher_parse_cmp:
177  * Parse a simple compare expression (<obj_type>.<attr> <op> <value>).
178  *
179  * Returns:
180  *  - a matcher object on success
181  *  - NULL else
182  */
183 sdb_store_matcher_t *
184 sdb_store_matcher_parse_cmp(const char *obj_type, const char *attr,
185                 const char *op, const char *value);
187 /*
188  * sdb_store_dis_matcher:
189  * Creates a matcher matching the disjunction (logical OR) of two matchers.
190  */
191 sdb_store_matcher_t *
192 sdb_store_dis_matcher(sdb_store_matcher_t *left, sdb_store_matcher_t *right);
194 /*
195  * sdb_store_con_matcher:
196  * Creates a matcher matching the conjunction (logical AND) of two matchers.
197  */
198 sdb_store_matcher_t *
199 sdb_store_con_matcher(sdb_store_matcher_t *left, sdb_store_matcher_t *right);
201 /*
202  * sdb_store_con_matcher::
203  * Creates a matcher matching the inverse (logical NOT) of a matcher.
204  */
205 sdb_store_matcher_t *
206 sdb_store_inv_matcher(sdb_store_matcher_t *m);
208 /*
209  * sdb_store_matcher_matches:
210  * Check whether the specified matcher matches the specified store object.
211  *
212  * Returns:
213  *  - 1 if the object matches
214  *  - 0 else
215  */
216 int
217 sdb_store_matcher_matches(sdb_store_matcher_t *m, sdb_store_base_t *obj);
219 /*
220  * sdb_store_matcher_tostring:
221  * Format a matcher object as string. This is meant for logging or debugging
222  * purposes.
223  */
224 char *
225 sdb_store_matcher_tostring(sdb_store_matcher_t *m, char *buf, size_t buflen);
227 /*
228  * sdb_store_lookup_cb:
229  * Lookup callback. It is called for each matching object when looking up data
230  * in the store. The lookup aborts if the callback returns non-zero.
231  */
232 typedef int (*sdb_store_lookup_cb)(sdb_store_base_t *obj, void *user_data);
234 /*
235  * sdb_store_lookup:
236  * Look up objects in the store. The specified callback function is called for
237  * each object in the store matching 'm'.
238  *
239  * Returns:
240  *  - 0 on success
241  *  - a negative value else
242  */
243 int
244 sdb_store_lookup(sdb_store_matcher_t *m, sdb_store_lookup_cb cb,
245                 void *user_data);
247 /*
248  * Flags for serialization functions.
249  *
250  * By default, the full object will be included in the serialized output. When
251  * specifying any of the flags, the respective information will be left out.
252  */
253 enum {
254         SDB_SKIP_ATTRIBUTES         = 1 << 0,
255         SDB_SKIP_SERVICES           = 1 << 1,
256         SDB_SKIP_SERVICE_ATTRIBUTES = 1 << 2,
258         SDB_SKIP_ALL                = 0xffff,
259 };
261 /*
262  * sdb_store_tojson:
263  * Serialize the entire store to JSON and append the result to the specified
264  * buffer.
265  *
266  * Returns:
267  *  - 0 on success
268  *  - a negative value on error
269  */
270 int
271 sdb_store_tojson(sdb_strbuf_t *buf, int flags);
273 /*
274  * sdb_store_host_tojson:
275  * Serialize a host object to JSON and append the result to the specified
276  * buffer.
277  *
278  * Returns:
279  *  - 0 on success
280  *  - a negative value on error
281  */
282 int
283 sdb_store_host_tojson(sdb_store_base_t *host, sdb_strbuf_t *buf, int flags);
285 /*
286  * sdb_store_iter_cb:
287  * Store iterator callback. Iteration stops if the callback returns non-zero.
288  */
289 typedef int (*sdb_store_iter_cb)(sdb_store_base_t *obj, void *user_data);
291 /*
292  * sdb_store_iterate:
293  * Iterate the entire store, calling the specified callback for each object.
294  * The user_data pointer is passed on to each call of the callback.
295  *
296  * Returns:
297  *  - 0 on success
298  *  - a negative value else
299  */
300 int
301 sdb_store_iterate(sdb_store_iter_cb cb, void *user_data);
303 #ifdef __cplusplus
304 } /* extern "C" */
305 #endif
307 #endif /* ! SDB_CORE_STORE_H */
309 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */