Code

store_lookup: Made the attribute matcher a "standalone" matcher.
[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  * For each matcher object, *all* specified attributes have to match.
151  *
152  * A store matcher object inherits from sdb_object_t and, thus, may safely be
153  * cast to a generic object.
154  */
155 struct sdb_store_matcher;
156 typedef struct sdb_store_matcher sdb_store_matcher_t;
157 #define SDB_STORE_MATCHER(obj) ((sdb_store_matcher_t *)(obj))
159 /*
160  * sdb_store_name_matcher:
161  * Creates a matcher matching by the specified object type's name. If 're' is
162  * true, the specified name is treated as a POSIX extended regular expression.
163  * Else, the exact name has to match (case-insensitive).
164  */
165 sdb_store_matcher_t *
166 sdb_store_name_matcher(int type, const char *name, _Bool re);
168 /*
169  * sdb_store_attr_matcher:
170  * Creates a matcher matching attributes based on their value. If 're' is
171  * true, the specified name is treated as a POSIX extended regular expression.
172  * Else, the exact name has to match (case-insensitive).
173  */
174 sdb_store_matcher_t *
175 sdb_store_attr_matcher(const char *name, const char *value, _Bool re);
177 /*
178  * sdb_store_host_matcher:
179  * Creates a matcher matching hosts based on their name or its attributes.
180  */
181 sdb_store_matcher_t *
182 sdb_store_host_matcher(const char *host_name, const char *host_name_re,
183                 sdb_store_matcher_t *attr_matcher);
185 /*
186  * sdb_store_matcher_parse_cmp:
187  * Parse a simple compare expression (<obj_type>.<attr> <op> <value>).
188  *
189  * Returns:
190  *  - a matcher object on success
191  *  - NULL else
192  */
193 sdb_store_matcher_t *
194 sdb_store_matcher_parse_cmp(const char *obj_type, const char *attr,
195                 const char *op, const char *value);
197 /*
198  * sdb_store_dis_matcher:
199  * Creates a matcher matching the disjunction (logical OR) of two matchers.
200  */
201 sdb_store_matcher_t *
202 sdb_store_dis_matcher(sdb_store_matcher_t *left, sdb_store_matcher_t *right);
204 /*
205  * sdb_store_con_matcher:
206  * Creates a matcher matching the conjunction (logical AND) of two matchers.
207  */
208 sdb_store_matcher_t *
209 sdb_store_con_matcher(sdb_store_matcher_t *left, sdb_store_matcher_t *right);
211 /*
212  * sdb_store_con_matcher::
213  * Creates a matcher matching the inverse (logical NOT) of a matcher.
214  */
215 sdb_store_matcher_t *
216 sdb_store_inv_matcher(sdb_store_matcher_t *m);
218 /*
219  * sdb_store_matcher_matches:
220  * Check whether the specified matcher matches the specified store object.
221  *
222  * Returns:
223  *  - 1 if the object matches
224  *  - 0 else
225  */
226 int
227 sdb_store_matcher_matches(sdb_store_matcher_t *m, sdb_store_base_t *obj);
229 /*
230  * sdb_store_matcher_tostring:
231  * Format a matcher object as string. This is meant for logging or debugging
232  * purposes.
233  */
234 char *
235 sdb_store_matcher_tostring(sdb_store_matcher_t *m, char *buf, size_t buflen);
237 /*
238  * sdb_store_lookup_cb:
239  * Lookup callback. It is called for each matching object when looking up data
240  * in the store. The lookup aborts if the callback returns non-zero.
241  */
242 typedef int (*sdb_store_lookup_cb)(sdb_store_base_t *obj, void *user_data);
244 /*
245  * sdb_store_lookup:
246  * Look up objects in the store. The specified callback function is called for
247  * each object in the store matching 'm'.
248  *
249  * Returns:
250  *  - 0 on success
251  *  - a negative value else
252  */
253 int
254 sdb_store_lookup(sdb_store_matcher_t *m, sdb_store_lookup_cb cb,
255                 void *user_data);
257 /*
258  * Flags for serialization functions.
259  *
260  * By default, the full object will be included in the serialized output. When
261  * specifying any of the flags, the respective information will be left out.
262  */
263 enum {
264         SDB_SKIP_ATTRIBUTES         = 1 << 0,
265         SDB_SKIP_SERVICES           = 1 << 1,
266         SDB_SKIP_SERVICE_ATTRIBUTES = 1 << 2,
268         SDB_SKIP_ALL                = 0xffff,
269 };
271 /*
272  * sdb_store_tojson:
273  * Serialize the entire store to JSON and append the result to the specified
274  * buffer.
275  *
276  * Returns:
277  *  - 0 on success
278  *  - a negative value on error
279  */
280 int
281 sdb_store_tojson(sdb_strbuf_t *buf, int flags);
283 /*
284  * sdb_store_host_tojson:
285  * Serialize a host object to JSON and append the result to the specified
286  * buffer.
287  *
288  * Returns:
289  *  - 0 on success
290  *  - a negative value on error
291  */
292 int
293 sdb_store_host_tojson(sdb_store_base_t *host, sdb_strbuf_t *buf, int flags);
295 /*
296  * sdb_store_iter_cb:
297  * Store iterator callback. Iteration stops if the callback returns non-zero.
298  */
299 typedef int (*sdb_store_iter_cb)(sdb_store_base_t *obj, void *user_data);
301 /*
302  * sdb_store_iterate:
303  * Iterate the entire store, calling the specified callback for each object.
304  * The user_data pointer is passed on to each call of the callback.
305  *
306  * Returns:
307  *  - 0 on success
308  *  - a negative value else
309  */
310 int
311 sdb_store_iterate(sdb_store_iter_cb cb, void *user_data);
313 #ifdef __cplusplus
314 } /* extern "C" */
315 #endif
317 #endif /* ! SDB_CORE_STORE_H */
319 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */