X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Finclude%2Fcore%2Fstore.h;h=bc4de1090f6d4a95e980835cf7c4033002776e79;hb=2e2e989712ec5991526b3aaeec011440adb5bf7e;hp=46cd53643a7ec8b1d63a5431d4fde5dc3b94c2fb;hpb=ec7449c79712d8fa29d63b7e8f1f08e183b916a1;p=sysdb.git diff --git a/src/include/core/store.h b/src/include/core/store.h index 46cd536..bc4de10 100644 --- a/src/include/core/store.h +++ b/src/include/core/store.h @@ -30,8 +30,9 @@ #include "sysdb.h" #include "core/object.h" -#include "utils/time.h" +#include "core/time.h" #include "utils/llist.h" +#include "utils/strbuf.h" #include @@ -39,59 +40,13 @@ extern "C" { #endif -typedef struct { - sdb_object_t parent; - - sdb_time_t last_update; - char *name; -} sdb_store_obj_t; -#define SDB_STORE_OBJ_INIT { SDB_OBJECT_INIT, 0, NULL } -#define SDB_STORE_OBJ(obj) ((sdb_store_obj_t *)(obj)) - -typedef struct { - sdb_store_obj_t parent; - - char *hostname; -} sdb_service_t; -#define SDB_SVC_INIT { SDB_STORE_OBJ_INIT, NULL } -#define SDB_SVC(obj) ((sdb_service_t *)(obj)) - -typedef struct { - sdb_store_obj_t parent; - - char *attr_value; - char *hostname; -} sdb_attribute_t; -#define SDB_ATTR_INIT { SDB_STORE_OBJ_INIT, NULL, NULL } -#define SDB_ATTR(obj) ((sdb_attribute_t *)(obj)) - -typedef struct { - sdb_store_obj_t parent; - - sdb_llist_t *attributes; - sdb_llist_t *services; -} sdb_host_t; -#define SDB_HOST_INIT { SDB_STORE_OBJ_INIT, NULL, NULL } -#define SDB_HOST(obj) ((sdb_host_t *)(obj)) - -/* shortcuts for accessing the sdb_store_obj_t attributes of inheriting - * objects */ -#define _last_update parent.last_update -#define _name parent.name - -sdb_host_t * -sdb_host_create(const char *name); - -sdb_host_t * -sdb_host_clone(const sdb_host_t *host); - /* * sdb_store_host: - * Add/update a host in the store. If the host, identified by its name, - * already exists, it will be updated according to the specified 'host' - * object. Else, a new entry will be created in the store. Any memory required - * for storing the entry will be allocated an managed by the store itself. The - * specified host-object will not be referenced or further accessed. + * Add/update a host in the store. If the host, identified by its + * canonicalized name, already exists, it will be updated according to the + * specified name and timestamp. Else, a new entry will be created in the + * store. Any memory required for storing the entry will be allocated an + * managed by the store itself. * * Returns: * - 0 on success @@ -100,27 +55,19 @@ sdb_host_clone(const sdb_host_t *host); * - a negative value on error */ int -sdb_store_host(const sdb_host_t *host); +sdb_store_host(const char *name, sdb_time_t last_update); -const sdb_host_t * -sdb_store_get_host(const char *name); - -sdb_attribute_t * -sdb_attribute_create(const char *hostname, - const char *name, const char *value); - -sdb_attribute_t * -sdb_attribute_clone(const sdb_attribute_t *attr); +_Bool +sdb_store_has_host(const char *name); /* * sdb_store_attribute: * Add/update a host's attribute in the store. If the attribute, identified by - * its name, already exists for the specified host, it will be updated - * according to the specified 'attr' object. If the referenced host does not - * exist, an error will be reported. Else, a new entry will be created in the - * store. Any memory required for storing the entry will be allocated and - * managed by the store itself. The specified attribute-object will not be - * referenced or further accessed. + * its key, already exists for the specified host, it will be updated to the + * specified values. If the referenced host does not exist, an error will be + * reported. Else, a new entry will be created in the store. Any memory + * required for storing the entry will be allocated and managed by the store + * itself. * * Returns: * - 0 on success @@ -129,13 +76,8 @@ sdb_attribute_clone(const sdb_attribute_t *attr); * - a negative value on error */ int -sdb_store_attribute(const sdb_attribute_t *attr); - -sdb_service_t * -sdb_service_create(const char *hostname, const char *name); - -sdb_service_t * -sdb_service_clone(const sdb_service_t *svc); +sdb_store_attribute(const char *hostname, const char *key, const char *value, + sdb_time_t last_update); /* * sdb_store_service: @@ -154,13 +96,20 @@ sdb_service_clone(const sdb_service_t *svc); * - a negative value on error */ int -sdb_store_service(const sdb_service_t *svc); - -const sdb_service_t * -sdb_store_get_service(const sdb_host_t *host, const char *name); +sdb_store_service(const char *hostname, const char *name, + sdb_time_t last_update); +/* + * sdb_store_tojson: + * Serialize the entire store to JSON and append the result to the specified + * buffer. + * + * Returns: + * - 0 on success + * - a negative value on error + */ int -sdb_store_dump(FILE *fh); +sdb_store_tojson(sdb_strbuf_t *buf); #ifdef __cplusplus } /* extern "C" */