summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 82f8f7d)
raw | patch | inline | side by side (parent: 82f8f7d)
author | Sebastian Harl <sh@tokkee.org> | |
Thu, 24 Sep 2015 07:38:26 +0000 (09:38 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Thu, 24 Sep 2015 07:38:26 +0000 (09:38 +0200) |
Add a new type representing a to-be-stored object to simplify storing new
objects.
objects.
src/core/store.c | patch | blob | history |
diff --git a/src/core/store.c b/src/core/store.c
index e643f457a7e6ba564242e369f8ad7bf64b0ebbd2..9c83218f1efccbde39512f6831383d5f99c5801e 100644 (file)
--- a/src/core/store.c
+++ b/src/core/store.c
#include <pthread.h>
/*
- * private variables
+ * private types
*/
struct sdb_store {
pthread_rwlock_t host_lock;
};
-/*
- * private types
- */
+/* internal representation of a to-be-stored object */
+typedef struct {
+ sdb_store_obj_t *parent;
+ sdb_avltree_t *parent_tree;
+ int type;
+ const char *name;
+ sdb_time_t last_update;
+} store_obj_t;
+#define STORE_OBJ_INIT { NULL, NULL, 0, NULL, 0 }
static sdb_type_t host_type;
static sdb_type_t service_type;
} /* record_backend */
static int
-store_obj(sdb_store_obj_t *parent, sdb_avltree_t *parent_tree,
- int type, const char *name, sdb_time_t last_update,
- sdb_store_obj_t **updated_obj)
+store_obj(store_obj_t *obj, sdb_store_obj_t **updated_obj)
{
sdb_store_obj_t *old, *new;
int status = 0;
- assert(parent_tree);
+ assert(obj->parent_tree);
- if (last_update <= 0)
- last_update = sdb_gettime();
+ if (obj->last_update <= 0)
+ obj->last_update = sdb_gettime();
- old = STORE_OBJ(sdb_avltree_lookup(parent_tree, name));
+ old = STORE_OBJ(sdb_avltree_lookup(obj->parent_tree, obj->name));
if (old) {
- if (old->last_update > last_update) {
+ if (old->last_update > obj->last_update) {
sdb_log(SDB_LOG_DEBUG, "store: Cannot update %s '%s' - "
"value too old (%"PRIsdbTIME" < %"PRIsdbTIME")",
- SDB_STORE_TYPE_TO_NAME(type), name,
- last_update, old->last_update);
+ SDB_STORE_TYPE_TO_NAME(obj->type), obj->name,
+ obj->last_update, old->last_update);
/* don't report an error; the object may be updated by multiple
* backends */
status = 1;
}
- else if (old->last_update == last_update) {
+ else if (old->last_update == obj->last_update) {
/* don't report an error and also don't even log this to avoid
* excessive noise on high sampling frequencies */
status = 1;
}
else {
- sdb_time_t interval = last_update - old->last_update;
- old->last_update = last_update;
+ sdb_time_t interval = obj->last_update - old->last_update;
+ old->last_update = obj->last_update;
if (interval) {
if (old->interval)
old->interval = (sdb_time_t)((0.9 * (double)old->interval)
sdb_object_deref(SDB_OBJ(old));
}
else {
- if (type == SDB_ATTRIBUTE) {
+ if (obj->type == SDB_ATTRIBUTE) {
/* the value will be updated by the caller */
- new = STORE_OBJ(sdb_object_create(name, attribute_type,
- type, last_update, NULL));
+ new = STORE_OBJ(sdb_object_create(obj->name, attribute_type,
+ obj->type, obj->last_update, NULL));
}
else {
sdb_type_t t;
- t = type == SDB_HOST
+ t = obj->type == SDB_HOST
? host_type
- : type == SDB_SERVICE
+ : obj->type == SDB_SERVICE
? service_type
: metric_type;
- new = STORE_OBJ(sdb_object_create(name, t, type, last_update));
+ new = STORE_OBJ(sdb_object_create(obj->name, t,
+ obj->type, obj->last_update));
}
if (new) {
- status = sdb_avltree_insert(parent_tree, SDB_OBJ(new));
+ status = sdb_avltree_insert(obj->parent_tree, SDB_OBJ(new));
/* pass control to the tree 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_STORE_TYPE_TO_NAME(obj->type), obj->name,
sdb_strerror(errno, errbuf, sizeof(errbuf)));
status = -1;
}
return status;
assert(new);
- if (new->parent != parent) {
+ if (new->parent != obj->parent) {
// Avoid circular self-references which are not handled
// correctly by the ref-count based management layer.
//sdb_object_deref(SDB_OBJ(new->parent));
- //sdb_object_ref(SDB_OBJ(parent));
- new->parent = parent;
+ //sdb_object_ref(SDB_OBJ(obj->parent));
+ new->parent = obj->parent;
}
if (updated_obj)
store_attribute(sdb_store_attribute_t *attr, sdb_object_t *user_data)
{
sdb_store_t *st = SDB_STORE(user_data);
- sdb_store_obj_t *parent = NULL;
+ store_obj_t obj = STORE_OBJ_INIT;
sdb_store_obj_t *new = NULL;
const char *hostname;
host_t *host;
sdb_avltree_t *children = NULL;
- sdb_avltree_t *attributes;
int status = 0;
if ((! attr) || (! attr->parent) || (! attr->key))
switch (attr->parent_type) {
case SDB_HOST:
- parent = STORE_OBJ(host);
- attributes = get_host_children(host, SDB_ATTRIBUTE);
+ obj.parent = STORE_OBJ(host);
+ obj.parent_tree = get_host_children(host, SDB_ATTRIBUTE);
break;
case SDB_SERVICE:
children = get_host_children(host, SDB_SERVICE);
}
if (children) {
- parent = STORE_OBJ(sdb_avltree_lookup(children, attr->parent));
- if (! parent) {
+ obj.parent = STORE_OBJ(sdb_avltree_lookup(children, attr->parent));
+ if (! obj.parent) {
sdb_log(SDB_LOG_ERR, "store: Failed to store attribute '%s' - "
"%s '%s/%s' not found", attr->key,
SDB_STORE_TYPE_TO_NAME(attr->parent_type),
status = -1;
}
else
- attributes = attr->parent_type == SDB_SERVICE
- ? SVC(parent)->attributes
- : METRIC(parent)->attributes;
+ obj.parent_tree = attr->parent_type == SDB_SERVICE
+ ? SVC(obj.parent)->attributes
+ : METRIC(obj.parent)->attributes;
}
+ obj.type = SDB_ATTRIBUTE;
+ obj.name = attr->key;
+ obj.last_update = attr->last_update;
if (! status)
- status = store_obj(parent, attributes, SDB_ATTRIBUTE,
- attr->key, attr->last_update, &new);
+ status = store_obj(&obj, &new);
if (! status) {
assert(new);
status = -1;
}
- if (parent != STORE_OBJ(host))
- sdb_object_deref(SDB_OBJ(parent));
+ if (obj.parent != STORE_OBJ(host))
+ sdb_object_deref(SDB_OBJ(obj.parent));
sdb_object_deref(SDB_OBJ(host));
pthread_rwlock_unlock(&st->host_lock);
store_host(sdb_store_host_t *host, sdb_object_t *user_data)
{
sdb_store_t *st = SDB_STORE(user_data);
+ store_obj_t obj = { NULL, st->hosts, SDB_HOST, NULL, 0 };
int status = 0;
if ((! host) || (! host->name))
return -1;
+ obj.name = host->name;
+ obj.last_update = host->last_update;
pthread_rwlock_wrlock(&st->host_lock);
- status = store_obj(NULL, st->hosts,
- SDB_HOST, host->name, host->last_update, NULL);
+ status = store_obj(&obj, NULL);
pthread_rwlock_unlock(&st->host_lock);
return status;
store_service(sdb_store_service_t *service, sdb_object_t *user_data)
{
sdb_store_t *st = SDB_STORE(user_data);
-
+ store_obj_t obj = STORE_OBJ_INIT;
host_t *host;
- sdb_avltree_t *services;
int status = 0;
pthread_rwlock_wrlock(&st->host_lock);
host = HOST(sdb_avltree_lookup(st->hosts, service->hostname));
- services = get_host_children(host, SDB_SERVICE);
- if (! services) {
+ obj.parent = STORE_OBJ(host);
+ obj.parent_tree = get_host_children(host, SDB_SERVICE);
+ obj.type = SDB_SERVICE;
+ if (! obj.parent_tree) {
sdb_log(SDB_LOG_ERR, "store: Failed to store service '%s' - "
"host '%s' not found", service->name, service->hostname);
status = -1;
}
+ obj.name = service->name;
+ obj.last_update = service->last_update;
if (! status)
- status = store_obj(STORE_OBJ(host), services, SDB_SERVICE,
- service->name, service->last_update, NULL);
+ status = store_obj(&obj, NULL);
sdb_object_deref(SDB_OBJ(host));
pthread_rwlock_unlock(&st->host_lock);
store_metric(sdb_store_metric_t *metric, sdb_object_t *user_data)
{
sdb_store_t *st = SDB_STORE(user_data);
-
- sdb_store_obj_t *obj = NULL;
- sdb_avltree_t *metrics;
+ store_obj_t obj = STORE_OBJ_INIT;
+ sdb_store_obj_t *new = NULL;
host_t *host;
int status = 0;
pthread_rwlock_wrlock(&st->host_lock);
host = HOST(sdb_avltree_lookup(st->hosts, metric->hostname));
- metrics = get_host_children(host, SDB_METRIC);
- if (! metrics) {
+ obj.parent = STORE_OBJ(host);
+ obj.parent_tree = get_host_children(host, SDB_METRIC);
+ obj.type = SDB_METRIC;
+ if (! obj.parent_tree) {
sdb_log(SDB_LOG_ERR, "store: Failed to store metric '%s' - "
"host '%s' not found", metric->name, metric->hostname);
status = -1;
}
+ obj.name = metric->name;
+ obj.last_update = metric->last_update;
if (! status)
- status = store_obj(STORE_OBJ(host), metrics, SDB_METRIC,
- metric->name, metric->last_update, &obj);
+ status = store_obj(&obj, &new);
sdb_object_deref(SDB_OBJ(host));
if (status) {
return status;
}
- assert(obj);
+ assert(new);
if (metric->store.type && metric->store.id)
- if (store_metric_store(METRIC(obj), metric))
+ if (store_metric_store(METRIC(new), metric))
status = -1;
pthread_rwlock_unlock(&st->host_lock);
return status;