X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fcore%2Fstore.c;h=fc2a7f472d6dbdc0fb7111c2096cbfde38741d6f;hb=b1208c38f5098db7fb76ee760b29b57d89366807;hp=f80c49e15d8964c606a32dad0470755cef9efed3;hpb=22b93dff4d8c4eed238d60f7f6ddc43604206acd;p=sysdb.git diff --git a/src/core/store.c b/src/core/store.c index f80c49e..fc2a7f4 100644 --- a/src/core/store.c +++ b/src/core/store.c @@ -1,6 +1,6 @@ /* - * syscollector - src/core/store.c - * Copyright (C) 2012 Sebastian 'tokkee' Harl + * SysDB - src/core/store.c + * Copyright (C) 2012-2013 Sebastian 'tokkee' Harl * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,10 +25,15 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "syscollector.h" -#include "core/store.h" +#if HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "sysdb.h" +#include "core/store-private.h" +#include "core/plugin.h" +#include "utils/error.h" #include "utils/llist.h" -#include "utils/string.h" #include @@ -44,379 +49,603 @@ * private variables */ -static sc_llist_t *host_list = NULL; +static sdb_llist_t *host_list = NULL; static pthread_rwlock_t host_lock = PTHREAD_RWLOCK_INITIALIZER; /* - * private helper functions + * private types */ +static sdb_type_t sdb_host_type; +static sdb_type_t sdb_service_type; +static sdb_type_t sdb_attribute_type; + static int -sc_store_obj_cmp_by_name(const sc_object_t *a, const sc_object_t *b) +store_obj_init(sdb_object_t *obj, va_list ap) { - const sc_store_obj_t *h1 = (const sc_store_obj_t *)a; - const sc_store_obj_t *h2 = (const sc_store_obj_t *)b; + sdb_store_obj_t *sobj = STORE_OBJ(obj); - assert(h1 && h2); - return strcasecmp(h1->name, h2->name); -} /* sc_store_obj_cmp_by_name */ + sobj->type = va_arg(ap, int); -static int -sc_host_init(sc_object_t *obj, va_list ap) + sobj->last_update = va_arg(ap, sdb_time_t); + sobj->interval = 0; + sobj->backends = NULL; + sobj->backends_num = 0; + sobj->parent = NULL; + return 0; +} /* store_obj_init */ + +static void +store_obj_destroy(sdb_object_t *obj) { - char *name = va_arg(ap, char *); + sdb_store_obj_t *sobj = STORE_OBJ(obj); + size_t i; - SC_HOST(obj)->host_name = strdup(name); - if (! SC_HOST(obj)->host_name) - return -1; + for (i = 0; i < sobj->backends_num; ++i) + free(sobj->backends[i]); + free(sobj->backends); + sobj->backends = NULL; + sobj->backends_num = 0; + + if (sobj->parent) + sdb_object_deref(SDB_OBJ(sobj->parent)); +} /* store_obj_destroy */ + +static int +sdb_host_init(sdb_object_t *obj, va_list ap) +{ + sdb_host_t *sobj = HOST(obj); + int ret; - SC_HOST(obj)->host_last_update = sc_gettime(); - /* ignore errors -> last_update will be updated later */ + /* this will consume the first argument (type) of ap */ + ret = store_obj_init(obj, ap); + if (ret) + return ret; - SC_HOST(obj)->services = sc_llist_create(); - if (! SC_HOST(obj)->services) + sobj->services = sdb_llist_create(); + if (! sobj->services) + return -1; + sobj->attributes = sdb_llist_create(); + if (! sobj->attributes) return -1; return 0; -} /* sc_host_init */ +} /* sdb_host_init */ static void -sc_host_destroy(sc_object_t *obj) +sdb_host_destroy(sdb_object_t *obj) { + sdb_host_t *sobj = HOST(obj); assert(obj); - if (SC_HOST(obj)->host_name) - free(SC_HOST(obj)->host_name); + store_obj_destroy(obj); - if (SC_HOST(obj)->services) - sc_llist_destroy(SC_HOST(obj)->services); -} /* sc_host_destroy */ + if (sobj->services) + sdb_llist_destroy(sobj->services); + if (sobj->attributes) + sdb_llist_destroy(sobj->attributes); +} /* sdb_host_destroy */ static int -sc_svc_init(sc_object_t *obj, va_list ap) +sdb_service_init(sdb_object_t *obj, va_list ap) { - char *hostname = va_arg(ap, char *); - char *name = va_arg(ap, char *); + sdb_service_t *sobj = SVC(obj); + int ret; - SC_SVC(obj)->hostname = strdup(hostname); - SC_SVC(obj)->svc_name = strdup(name); - if ((! SC_SVC(obj)->hostname) || (! SC_SVC(obj)->svc_name)) - return -1; + /* this will consume the first argument (type) of ap */ + ret = store_obj_init(obj, ap); + if (ret) + return ret; - SC_SVC(obj)->svc_last_update = sc_gettime(); - /* ignore errors -> last_update will be updated later */ + sobj->attributes = sdb_llist_create(); + if (! sobj->attributes) + return -1; return 0; -} /* sc_svc_init */ +} /* sdb_service_init */ static void -sc_svc_destroy(sc_object_t *obj) +sdb_service_destroy(sdb_object_t *obj) { + sdb_service_t *sobj = SVC(obj); assert(obj); - if (SC_SVC(obj)->hostname) - free(SC_SVC(obj)->hostname); - if (SC_SVC(obj)->svc_name) - free(SC_SVC(obj)->svc_name); -} /* sc_svc_destroy */ + store_obj_destroy(obj); -/* - * public API - */ + if (sobj->attributes) + sdb_llist_destroy(sobj->attributes); +} /* sdb_service_destroy */ -sc_host_t * -sc_host_create(char *name) +static int +sdb_attr_init(sdb_object_t *obj, va_list ap) { - sc_object_t *obj; + const sdb_data_t *value; + int ret; + + /* this will consume the first two arguments + * (type and last_update) of ap */ + ret = store_obj_init(obj, ap); + if (ret) + return ret; + value = va_arg(ap, const sdb_data_t *); + + if (value) + if (sdb_data_copy(&ATTR(obj)->value, value)) + return -1; + return 0; +} /* sdb_attr_init */ - if (! name) - return NULL; +static void +sdb_attr_destroy(sdb_object_t *obj) +{ + assert(obj); - obj = sc_object_create(sizeof(sc_host_t), sc_host_init, - sc_host_destroy, name); - if (! obj) - return NULL; - return SC_HOST(obj); -} /* sc_host_create */ + store_obj_destroy(obj); + sdb_data_free_datum(&ATTR(obj)->value); +} /* sdb_attr_destroy */ -sc_host_t * -sc_host_clone(const sc_host_t *host) -{ - sc_host_t *clone; +static sdb_type_t sdb_host_type = { + sizeof(sdb_host_t), + sdb_host_init, + sdb_host_destroy +}; - clone = sc_host_create(host->host_name); - if (! clone) - return NULL; +static sdb_type_t sdb_service_type = { + sizeof(sdb_service_t), + sdb_service_init, + sdb_service_destroy +}; - clone->host_last_update = host->host_last_update; - if (host->services) { - clone->services = sc_llist_clone(host->services); - if (! clone->services) { - sc_object_deref(SC_OBJ(clone)); - return NULL; - } - } - else - clone->services = NULL; - return clone; -} /* sc_host_clone */ +static sdb_type_t sdb_attribute_type = { + sizeof(sdb_attribute_t), + sdb_attr_init, + sdb_attr_destroy +}; -int -sc_store_host(const sc_host_t *host) +/* + * private helper functions + */ + +static sdb_host_t * +lookup_host(const char *name) { - sc_time_t last_update; + return HOST(sdb_llist_search_by_name(host_list, name)); +} /* lookup_host */ - sc_host_t *old; - int status = 0; +static int +record_backend(sdb_store_obj_t *obj) +{ + const sdb_plugin_info_t *info; + char **tmp; + size_t i; + + info = sdb_plugin_current(); + if (! info) + return 0; + + for (i = 0; i < obj->backends_num; ++i) + if (!strcasecmp(obj->backends[i], info->plugin_name)) + return 0; - if ((! host) || (! host->host_name)) + tmp = realloc(obj->backends, + (obj->backends_num + 1) * sizeof(*obj->backends)); + if (! tmp) return -1; - last_update = host->host_last_update; - if (last_update <= 0) - last_update = sc_gettime(); + obj->backends = tmp; + obj->backends[obj->backends_num] = strdup(info->plugin_name); + if (! obj->backends[obj->backends_num]) + return -1; - pthread_rwlock_wrlock(&host_lock); + ++obj->backends_num; + return 0; +} /* record_backend */ - if (! host_list) { - if (! (host_list = sc_llist_create())) { - pthread_rwlock_unlock(&host_lock); - return -1; - } - } +static int +store_obj(sdb_llist_t *parent_list, int type, const char *name, + sdb_time_t last_update, sdb_store_obj_t **updated_obj) +{ + sdb_store_obj_t *old, *new; + int status = 0; - old = SC_HOST(sc_llist_search(host_list, (const sc_object_t *)host, - sc_store_obj_cmp_by_name)); + assert(parent_list); + old = STORE_OBJ(sdb_llist_search_by_name(parent_list, name)); if (old) { - if (old->host_last_update > last_update) { - fprintf(stderr, "store: Cannot update host '%s' - " - "value too old (%"PRIscTIME" < %"PRIscTIME")\n", - host->host_name, last_update, old->host_last_update); - /* don't report an error; the host may be updated by multiple + if (old->last_update >= last_update) { + sdb_log(SDB_LOG_DEBUG, "store: Cannot update %s '%s' - " + "value too old (%"PRIscTIME" < %"PRIscTIME")", + SDB_STORE_TYPE_TO_NAME(type), name, + last_update, old->last_update); + /* don't report an error; the object may be updated by multiple * backends */ - status = 0; + status = 1; } else { - old->host_last_update = last_update; + sdb_time_t interval = last_update - old->last_update; + old->last_update = last_update; + if (interval) { + if (old->interval) + old->interval = (sdb_time_t)((0.9 * (double)old->interval) + + (0.1 * (double)interval)); + else + old->interval = interval; + } } + + new = old; } else { - sc_host_t *new = sc_host_clone(host); - if (! new) { - char errbuf[1024]; - fprintf(stderr, "store: Failed to clone host object: %s\n", - sc_strerror(errno, errbuf, sizeof(errbuf))); - return -1; + if (type == SDB_ATTRIBUTE) { + /* the value will be updated by the caller */ + new = STORE_OBJ(sdb_object_create(name, sdb_attribute_type, + type, last_update, NULL)); } - - if (! new->services) { - if (! (new->services = sc_llist_create())) { - char errbuf[1024]; - fprintf(stderr, "store: Failed to initialize " - "host object '%s': %s\n", host->host_name, - sc_strerror(errno, errbuf, sizeof(errbuf))); - sc_object_deref(SC_OBJ(new)); - return -1; - } + else { + sdb_type_t t; + t = type == SDB_HOST ? sdb_host_type : sdb_service_type; + new = STORE_OBJ(sdb_object_create(name, t, type, last_update)); } - status = sc_llist_insert_sorted(host_list, SC_OBJ(new), - sc_store_obj_cmp_by_name); + if (new) { + status = sdb_llist_insert_sorted(parent_list, SDB_OBJ(new), + sdb_object_cmp_by_name); - /* pass control to the list or destroy in case of an error */ - sc_object_deref(SC_OBJ(new)); + /* pass control to the list or destroy in case of an error */ + sdb_object_deref(SDB_OBJ(new)); + } + else { + char errbuf[1024]; + sdb_log(SDB_LOG_ERR, "store: Failed to create %s '%s': %s", + SDB_STORE_TYPE_TO_NAME(type), name, + sdb_strerror(errno, errbuf, sizeof(errbuf))); + status = -1; + } } - pthread_rwlock_unlock(&host_lock); + if (status < 0) + return status; + assert(new); + + if (updated_obj) + *updated_obj = new; + + if (record_backend(new)) + return -1; return status; -} /* sc_store_host */ +} /* store_obj */ -const sc_host_t * -sc_store_get_host(char *name) +/* The host_lock has to be acquired before calling this function. */ +static int +store_host_obj(const char *hostname, int type, const char *name, + sdb_time_t last_update, sdb_store_obj_t **updated_obj) { - sc_host_t tmp = SC_HOST_INIT; - sc_host_t *host; + char *cname = NULL; + sdb_host_t *host; + sdb_llist_t *parent_list; - if (! name) - return NULL; + int status = 0; - tmp.host_name = name; - host = SC_HOST(sc_llist_search(host_list, (const sc_object_t *)&tmp, - sc_store_obj_cmp_by_name)); + if (last_update <= 0) + last_update = sdb_gettime(); - if (! host) - return NULL; - return host; -} /* sc_store_get_host */ + assert(hostname); + assert((type == SDB_SERVICE) || (type == SDB_ATTRIBUTE)); -sc_service_t * -sc_service_create(char *hostname, char *name) -{ - sc_object_t *obj; + if (! host_list) + return -1; - if ((! hostname) || (! name)) - return NULL; + cname = sdb_plugin_cname(strdup(hostname)); + if (! cname) { + sdb_log(SDB_LOG_ERR, "store: strdup failed"); + return -1; + } - obj = sc_object_create(sizeof(sc_service_t), sc_svc_init, - sc_svc_destroy, hostname, name); - if (! obj) - return NULL; - return SC_SVC(obj); -} /* sc_service_create */ + host = lookup_host(cname); + if (! host) { + sdb_log(SDB_LOG_ERR, "store: Failed to store %s '%s' - " + "host '%s' not found", SDB_STORE_TYPE_TO_NAME(type), + name, hostname); + free(cname); + return -1; + } -sc_service_t * -sc_service_clone(const sc_service_t *svc) -{ - sc_service_t *clone; + if (type == SDB_ATTRIBUTE) + parent_list = host->attributes; + else + parent_list = host->services; - clone = sc_service_create(svc->hostname, svc->svc_name); - if (! clone) - return NULL; + status = store_obj(parent_list, type, name, + last_update, updated_obj); - clone->svc_last_update = svc->svc_last_update; - return clone; -} /* sc_service_clone */ + free(cname); + return status; +} /* store_host_obj */ -int -sc_store_service(const sc_service_t *svc) +/* + * store_common_tojson serializes common object attributes to JSON. + * + * The function never returns an error. Rather, an error message will be part + * of the serialized data. + */ +static void +store_common_tojson(sdb_store_obj_t *obj, sdb_strbuf_t *buf) { - sc_host_t tmp = SC_HOST_INIT; - sc_host_t *host; + char time_str[64]; + char interval_str[64]; + size_t i; + + if (! sdb_strftime(time_str, sizeof(time_str), + "%F %T %z", obj->last_update)) + snprintf(time_str, sizeof(time_str), ""); + time_str[sizeof(time_str) - 1] = '\0'; + + if (! sdb_strfinterval(interval_str, sizeof(interval_str), + obj->interval)) + snprintf(interval_str, sizeof(interval_str), ""); + interval_str[sizeof(interval_str) - 1] = '\0'; + + sdb_strbuf_append(buf, "\"last_update\": \"%s\", " + "\"update_interval\": \"%s\", \"backends\": [", + time_str, interval_str); + + for (i = 0; i < obj->backends_num; ++i) { + sdb_strbuf_append(buf, "\"%s\"", obj->backends[i]); + if (i < obj->backends_num - 1) + sdb_strbuf_append(buf, ","); + } + sdb_strbuf_append(buf, "]"); +} /* store_common_tojson */ - sc_service_t *old; +/* + * store_obj_tojson serializes attribute / service objects to JSON. + * + * The function never returns an error. Rather, an error message will be part + * of the serialized data. + */ +static void +store_obj_tojson(sdb_llist_t *list, int type, sdb_strbuf_t *buf) +{ + sdb_llist_iter_t *iter; + + assert((type == SDB_ATTRIBUTE) || (type == SDB_SERVICE)); + + sdb_strbuf_append(buf, "["); + iter = sdb_llist_get_iter(list); + if (! iter) { + char errbuf[1024]; + sdb_log(SDB_LOG_ERR, "store: Failed to retrieve %ss: %s\n", + SDB_STORE_TYPE_TO_NAME(type), + sdb_strerror(errno, errbuf, sizeof(errbuf))); + sdb_strbuf_append(buf, "{\"error\": \"failed to retrieve %ss: %s\"}", + SDB_STORE_TYPE_TO_NAME(type), errbuf); + } + + /* has_next returns false if the iterator is NULL */ + while (sdb_llist_iter_has_next(iter)) { + sdb_store_obj_t *sobj = STORE_OBJ(sdb_llist_iter_get_next(iter)); + assert(sobj); + assert(sobj->type == type); + + sdb_strbuf_append(buf, "{\"name\": \"%s\", ", SDB_OBJ(sobj)->name); + if (sobj->type == SDB_ATTRIBUTE) { + char tmp[sdb_data_strlen(&ATTR(sobj)->value) + 1]; + sdb_data_format(&ATTR(sobj)->value, tmp, sizeof(tmp), + SDB_DOUBLE_QUOTED); + sdb_strbuf_append(buf, "\"value\": %s, ", tmp); + } + + store_common_tojson(sobj, buf); + sdb_strbuf_append(buf, "}"); + + if (sdb_llist_iter_has_next(iter)) + sdb_strbuf_append(buf, ","); + } + + sdb_llist_iter_destroy(iter); + sdb_strbuf_append(buf, "]"); +} /* store_obj_tojson */ + +/* + * public API + */ - sc_time_t last_update; +void +sdb_store_clear(void) +{ + sdb_llist_destroy(host_list); + host_list = NULL; +} /* sdb_store_clear */ +int +sdb_store_host(const char *name, sdb_time_t last_update) +{ + char *cname = NULL; int status = 0; - if (! svc) + if (! name) return -1; - last_update = svc->svc_last_update; if (last_update <= 0) - last_update = sc_gettime(); + last_update = sdb_gettime(); - if (! host_list) + cname = sdb_plugin_cname(strdup(name)); + if (! cname) { + sdb_log(SDB_LOG_ERR, "store: strdup failed"); return -1; + } pthread_rwlock_wrlock(&host_lock); + if (! host_list) + if (! (host_list = sdb_llist_create())) + status = -1; + + if (! status) + status = store_obj(host_list, SDB_HOST, cname, last_update, NULL); + pthread_rwlock_unlock(&host_lock); + + free(cname); + return status; +} /* sdb_store_host */ + +_Bool +sdb_store_has_host(const char *name) +{ + sdb_host_t *host; + + if (! name) + return NULL; + + host = lookup_host(name); + return host != NULL; +} /* sdb_store_has_host */ - tmp.host_name = svc->hostname; - host = SC_HOST(sc_llist_search(host_list, (const sc_object_t *)&tmp, - sc_store_obj_cmp_by_name)); +sdb_store_obj_t * +sdb_store_get_host(const char *name) +{ + sdb_host_t *host; + + if (! name) + return NULL; + host = lookup_host(name); if (! host) + return NULL; + + sdb_object_ref(SDB_OBJ(host)); + return STORE_OBJ(host); +} /* sdb_store_get_host */ + +int +sdb_store_attribute(const char *hostname, + const char *key, const sdb_data_t *value, + sdb_time_t last_update) +{ + int status; + + sdb_store_obj_t *updated_attr = NULL; + + if ((! hostname) || (! key)) return -1; - old = SC_SVC(sc_llist_search(host->services, (const sc_object_t *)svc, - sc_store_obj_cmp_by_name)); + pthread_rwlock_wrlock(&host_lock); + status = store_host_obj(hostname, SDB_ATTRIBUTE, key, last_update, + &updated_attr); - if (old) { - if (old->host_last_update > last_update) { - fprintf(stderr, "store: Cannot update service '%s/%s' - " - "value too old (%"PRIscTIME" < %"PRIscTIME")\n", - svc->hostname, svc->svc_name, last_update, - old->host_last_update); + if (status >= 0) { + assert(updated_attr); + if (sdb_data_copy(&ATTR(updated_attr)->value, value)) status = -1; - } - else { - old->svc_last_update = last_update; - } } - else { - sc_service_t *new = sc_service_clone(svc); - if (! new) { - char errbuf[1024]; - fprintf(stderr, "store: Failed to clone service object: %s\n", - sc_strerror(errno, errbuf, sizeof(errbuf))); - return -1; - } - status = sc_llist_insert_sorted(host->services, SC_OBJ(new), - sc_store_obj_cmp_by_name); + pthread_rwlock_unlock(&host_lock); + return status; +} /* sdb_store_attribute */ + +int +sdb_store_service(const char *hostname, const char *name, + sdb_time_t last_update) +{ + int status; - /* pass control to the list or destroy in case of an error */ - sc_object_deref(SC_OBJ(new)); - } + if ((! hostname) || (! name)) + return -1; + pthread_rwlock_wrlock(&host_lock); + status = store_host_obj(hostname, SDB_SERVICE, name, last_update, NULL); pthread_rwlock_unlock(&host_lock); return status; -} /* sc_store_service */ +} /* sdb_store_service */ -const sc_service_t * -sc_store_get_service(const sc_host_t *host, char *name) +int +sdb_store_host_tojson(sdb_store_obj_t *h, sdb_strbuf_t *buf, int flags) { - sc_service_t tmp = SC_SVC_INIT; - sc_service_t *svc; + sdb_host_t *host; - if ((! host) || (! name)) - return NULL; + if ((! h) || (h->type != SDB_HOST) || (! buf)) + return -1; - tmp.svc_name = name; - svc = SC_SVC(sc_llist_search(host->services, (const sc_object_t *)&tmp, - sc_store_obj_cmp_by_name)); + host = HOST(h); - if (! svc) - return NULL; - return svc; -} /* sc_store_get_service */ + sdb_strbuf_append(buf, "{\"name\": \"%s\", ", SDB_OBJ(host)->name); + store_common_tojson(h, buf); + + if (! (flags & SDB_SKIP_ATTRIBUTES)) { + sdb_strbuf_append(buf, ", \"attributes\": "); + store_obj_tojson(host->attributes, SDB_ATTRIBUTE, buf); + } + + if (! (flags & SDB_SKIP_SERVICES)) { + sdb_strbuf_append(buf, ", \"services\": "); + store_obj_tojson(host->services, SDB_SERVICE, buf); + } + + sdb_strbuf_append(buf, "}"); + return 0; +} /* sdb_store_host_tojson */ int -sc_store_dump(FILE *fh) +sdb_store_tojson(sdb_strbuf_t *buf, int flags) { - sc_llist_iter_t *host_iter; + sdb_llist_iter_t *host_iter; - if (! fh) + if (! buf) return -1; pthread_rwlock_rdlock(&host_lock); - host_iter = sc_llist_get_iter(host_list); - if (! host_iter) + host_iter = sdb_llist_get_iter(host_list); + if (! host_iter) { + pthread_rwlock_unlock(&host_lock); return -1; + } - while (sc_llist_iter_has_next(host_iter)) { - sc_host_t *host = SC_HOST(sc_llist_iter_get_next(host_iter)); - sc_llist_iter_t *svc_iter; - - char time_str[64]; + sdb_strbuf_append(buf, "{\"hosts\":["); + while (sdb_llist_iter_has_next(host_iter)) { + sdb_store_obj_t *host = STORE_OBJ(sdb_llist_iter_get_next(host_iter)); assert(host); - if (! sc_strftime(time_str, sizeof(time_str), - "%F %T %z", host->host_last_update)) - snprintf(time_str, sizeof(time_str), ""); - time_str[sizeof(time_str) - 1] = '\0'; + if (sdb_store_host_tojson(host, buf, flags)) + return -1; - fprintf(fh, "Host '%s' (last updated: %s):\n", - host->host_name, time_str); + if (sdb_llist_iter_has_next(host_iter)) + sdb_strbuf_append(buf, ","); + } - svc_iter = sc_llist_get_iter(host->services); - if (! svc_iter) { - char errbuf[1024]; - fprintf(fh, "Failed to retrieve services: %s\n", - sc_strerror(errno, errbuf, sizeof(errbuf))); - continue; - } + sdb_strbuf_append(buf, "]}"); - while (sc_llist_iter_has_next(svc_iter)) { - sc_service_t *svc = SC_SVC(sc_llist_iter_get_next(svc_iter)); - assert(svc); + sdb_llist_iter_destroy(host_iter); + pthread_rwlock_unlock(&host_lock); + return 0; +} /* sdb_store_tojson */ - if (! sc_strftime(time_str, sizeof(time_str), - "%F %T %z", host->host_last_update)) - snprintf(time_str, sizeof(time_str), ""); - time_str[sizeof(time_str) - 1] = '\0'; +/* TODO: actually support hierarchical data */ +int +sdb_store_iterate(sdb_store_iter_cb cb, void *user_data) +{ + sdb_llist_iter_t *host_iter; + int status = 0; - fprintf(fh, "\tService '%s' (last updated: %s)\n", - svc->svc_name, time_str); - } + pthread_rwlock_rdlock(&host_lock); + + host_iter = sdb_llist_get_iter(host_list); + if (! host_iter) + status = -1; + + /* has_next returns false if the iterator is NULL */ + while (sdb_llist_iter_has_next(host_iter)) { + sdb_store_obj_t *host = STORE_OBJ(sdb_llist_iter_get_next(host_iter)); + assert(host); - sc_llist_iter_destroy(svc_iter); + if (cb(host, user_data)) { + status = -1; + break; + } } - sc_llist_iter_destroy(host_iter); - return 0; -} /* sc_store_dump */ + sdb_llist_iter_destroy(host_iter); + pthread_rwlock_unlock(&host_lock); + return status; +} /* sdb_store_iterate */ /* vim: set tw=78 sw=4 ts=4 noexpandtab : */