Code

Renamed the project to SysDB (System DataBase).
[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 "utils/time.h"
34 #include "utils/llist.h"
36 #include <stdio.h>
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
42 typedef struct {
43         sdb_object_t parent;
45         sdb_time_t last_update;
46         char *name;
47 } sdb_store_obj_t;
48 #define SDB_STORE_OBJ_INIT { SDB_OBJECT_INIT, 0, NULL }
49 #define SDB_STORE_OBJ(obj) ((sdb_store_obj_t *)(obj))
51 typedef struct {
52         sdb_store_obj_t parent;
53 #define svc_last_update parent.last_update
54 #define svc_name parent.name
56         char *hostname;
57 } sdb_service_t;
58 #define SDB_SVC_INIT { SDB_STORE_OBJ_INIT, NULL }
59 #define SDB_SVC(obj) ((sdb_service_t *)(obj))
61 typedef struct {
62         sdb_store_obj_t parent;
63 #define attr_last_update parent.last_update
64 #define attr_name parent.name
66         char *attr_value;
67         char *hostname;
68 } sdb_attribute_t;
69 #define SDB_ATTR_INIT { SDB_STORE_OBJ_INIT, NULL, NULL }
70 #define SDB_ATTR(obj) ((sdb_attribute_t *)(obj))
72 typedef struct {
73         sdb_store_obj_t parent;
74 #define host_last_update parent.last_update
75 #define host_name parent.name
77         sdb_llist_t *attributes;
78         sdb_llist_t *services;
79 } sdb_host_t;
80 #define SDB_HOST_INIT { SDB_STORE_OBJ_INIT, NULL, NULL }
81 #define SDB_HOST(obj) ((sdb_host_t *)(obj))
83 sdb_host_t *
84 sdb_host_create(const char *name);
86 sdb_host_t *
87 sdb_host_clone(const sdb_host_t *host);
89 /*
90  * sdb_store_host:
91  * Add/update a host in the store. If the host, identified by its name,
92  * already exists, it will be updated according to the specified 'host'
93  * object. Else, a new entry will be created in the store. Any memory required
94  * for storing the entry will be allocated an managed by the store itself. The
95  * specified host-object will not be referenced or further accessed.
96  *
97  * Returns:
98  *  - 0 on success
99  *  - a positive value if the new entry is older than the currently stored
100  *    entry (in this case, no update will happen)
101  *  - a negative value on error
102  */
103 int
104 sdb_store_host(const sdb_host_t *host);
106 const sdb_host_t *
107 sdb_store_get_host(const char *name);
109 sdb_attribute_t *
110 sdb_attribute_create(const char *hostname,
111                 const char *name, const char *value);
113 sdb_attribute_t *
114 sdb_attribute_clone(const sdb_attribute_t *attr);
116 /*
117  * sdb_store_attribute:
118  * Add/update a host's attribute in the store. If the attribute, identified by
119  * its name, already exists for the specified host, it will be updated
120  * according to the specified 'attr' object. If the referenced host does not
121  * exist, an error will be reported. Else, a new entry will be created in the
122  * store. Any memory required for storing the entry will be allocated and
123  * managed by the store itself. The specified attribute-object will not be
124  * referenced or further accessed.
125  *
126  * Returns:
127  *  - 0 on success
128  *  - a positive value if the new entry is older than the currently stored
129  *    entry (in this case, no update will happen)
130  *  - a negative value on error
131  */
132 int
133 sdb_store_attribute(const sdb_attribute_t *attr);
135 sdb_service_t *
136 sdb_service_create(const char *hostname, const char *name);
138 sdb_service_t *
139 sdb_service_clone(const sdb_service_t *svc);
141 /*
142  * sdb_store_service:
143  * Add/update a store in the store. If the service, identified by its name,
144  * already exists for the specified host, it will be updated according to the
145  * specified 'service' object. If the referenced host does not exist, an error
146  * will be reported. Else, a new entry will be created in the store. Any
147  * memory required for storing the entry will be allocated an managed by the
148  * store itself. The specified service-object will not be referenced or
149  * further accessed.
150  *
151  * Returns:
152  *  - 0 on success
153  *  - a positive value if the new entry is older than the currently stored
154  *    entry (in this case, no update will happen)
155  *  - a negative value on error
156  */
157 int
158 sdb_store_service(const sdb_service_t *svc);
160 const sdb_service_t *
161 sdb_store_get_service(const sdb_host_t *host, const char *name);
163 int
164 sdb_store_dump(FILE *fh);
166 #ifdef __cplusplus
167 } /* extern "C" */
168 #endif
170 #endif /* ! SDB_CORE_STORE_H */
172 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */