Code

store: Added sdb_store_clear().
[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  * sdb_store_base_t represents the super-class of any object stored in the
46  * database. It inherits from sdb_object_t and may safely be cast to a generic
47  * object to access its name.
48  */
49 struct sdb_store_base;
50 typedef struct sdb_store_base sdb_store_base_t;
52 /*
53  * sdb_store_clear:
54  * Clear the entire store and remove all stored objects.
55  */
56 void
57 sdb_store_clear(void);
59 /*
60  * sdb_store_host:
61  * Add/update a host in the store. If the host, identified by its
62  * canonicalized name, already exists, it will be updated according to the
63  * specified name and timestamp. Else, a new entry will be created in the
64  * store. Any memory required for storing the entry will be allocated an
65  * managed by the store itself.
66  *
67  * Returns:
68  *  - 0 on success
69  *  - a positive value if the new entry is older than the currently stored
70  *    entry (in this case, no update will happen)
71  *  - a negative value on error
72  */
73 int
74 sdb_store_host(const char *name, sdb_time_t last_update);
76 /*
77  * sdb_store_has_host:
78  * sdb_store_get_host:
79  * Query the store for a host by its (canonicalized) name.
80  *
81  * sdb_store_get_host increments the ref count of the host object. The caller
82  * needs to deref it when no longer using it.
83  */
84 _Bool
85 sdb_store_has_host(const char *name);
87 sdb_store_base_t *
88 sdb_store_get_host(const char *name);
90 /*
91  * sdb_store_attribute:
92  * Add/update a host's attribute in the store. If the attribute, identified by
93  * its key, already exists for the specified host, it will be updated to the
94  * specified values. If the referenced host does not exist, an error will be
95  * reported. Else, a new entry will be created in the store. Any memory
96  * required for storing the entry will be allocated and managed by the store
97  * itself.
98  *
99  * Returns:
100  *  - 0 on success
101  *  - a positive value if the new entry is older than the currently stored
102  *    entry (in this case, no update will happen)
103  *  - a negative value on error
104  */
105 int
106 sdb_store_attribute(const char *hostname,
107                 const char *key, const sdb_data_t *value,
108                 sdb_time_t last_update);
110 /*
111  * sdb_store_service:
112  * Add/update a store in the store. If the service, identified by its name,
113  * already exists for the specified host, it will be updated according to the
114  * specified 'service' object. If the referenced host does not exist, an error
115  * will be reported. Else, a new entry will be created in the store. Any
116  * memory required for storing the entry will be allocated an managed by the
117  * store itself. The specified service-object will not be referenced or
118  * further accessed.
119  *
120  * Returns:
121  *  - 0 on success
122  *  - a positive value if the new entry is older than the currently stored
123  *    entry (in this case, no update will happen)
124  *  - a negative value on error
125  */
126 int
127 sdb_store_service(const char *hostname, const char *name,
128                 sdb_time_t last_update);
130 /*
131  * Flags for serialization functions.
132  *
133  * By default, the full object will be included in the serialized output. When
134  * specifying any of the flags, the respective information will be left out.
135  */
136 enum {
137         SDB_SKIP_ATTRIBUTES         = 1 << 0,
138         SDB_SKIP_SERVICES           = 1 << 1,
139         SDB_SKIP_SERVICE_ATTRIBUTES = 1 << 2,
140 };
142 /*
143  * sdb_store_tojson:
144  * Serialize the entire store to JSON and append the result to the specified
145  * buffer.
146  *
147  * Returns:
148  *  - 0 on success
149  *  - a negative value on error
150  */
151 int
152 sdb_store_tojson(sdb_strbuf_t *buf, int flags);
154 /*
155  * sdb_store_host_tojson:
156  * Serialize a host object to JSON and append the result to the specified
157  * buffer.
158  *
159  * Returns:
160  *  - 0 on success
161  *  - a negative value on error
162  */
163 int
164 sdb_store_host_tojson(sdb_store_base_t *host, sdb_strbuf_t *buf, int flags);
166 #ifdef __cplusplus
167 } /* extern "C" */
168 #endif
170 #endif /* ! SDB_CORE_STORE_H */
172 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */