summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4fcb875)
raw | patch | inline | side by side (parent: 4fcb875)
author | Sebastian Harl <sh@tokkee.org> | |
Sat, 17 Aug 2013 18:23:07 +0000 (20:23 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Sat, 17 Aug 2013 18:23:07 +0000 (20:23 +0200) |
This makes the function even more flexible.
src/core/store.c | patch | blob | history |
diff --git a/src/core/store.c b/src/core/store.c
index 1eb22d6c5e2c9be5e1942a711abc3126ce55fdfe..2088e73547c48e436d2de216003ca8bab9748430 100644 (file)
--- a/src/core/store.c
+++ b/src/core/store.c
int type, const char *name, sdb_time_t last_update)
{
sdb_llist_t *parent_list;
- sdb_store_obj_t *old;
+ store_obj_t *old;
int status = 0;
if (! name)
}
/* TODO: only look into direct children? */
- old = sdb_store_lookup_in_list(parent_list, type, name);
+ old = STORE_OBJ(sdb_store_lookup_in_list(parent_list, type, name));
if (old) {
- if (old->_last_update > last_update) {
+ if (old->last_update > last_update) {
sdb_log(SDB_LOG_DEBUG, "store: Cannot update %s '%s' - "
"value too old (%"PRIscTIME" < %"PRIscTIME")",
- TYPE_TO_NAME(type), name, last_update, old->_last_update);
+ TYPE_TO_NAME(type), name, last_update, old->last_update);
/* don't report an error; the object may be updated by multiple
* backends */
status = 1;
}
else {
- old->_last_update = last_update;
+ old->last_update = last_update;
}
}
else {
- sdb_store_obj_t *new = SDB_STORE_OBJ(sdb_object_create(name,
+ store_obj_t *new = STORE_OBJ(sdb_object_create(name,
sdb_store_obj_type, type));
if (! new) {
char errbuf[1024];
return -1;
}
+ /* TODO: insert type-aware */
status = sdb_llist_insert_sorted(parent_list, SDB_OBJ(new),
sdb_object_cmp_by_name);