summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3a2b73b)
raw | patch | inline | side by side (parent: 3a2b73b)
author | Sebastian Harl <sh@tokkee.org> | |
Fri, 16 Jan 2015 23:46:23 +0000 (00:46 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Fri, 16 Jan 2015 23:46:23 +0000 (00:46 +0100) |
Else, we cannot use them in the same way.
src/core/plugin.c | patch | blob | history |
diff --git a/src/core/plugin.c b/src/core/plugin.c
index 7404b036392ecd5c76899009dd7f515ff9d87d8e..e2fce04dcc75b1c7180ca23b0b43f68384df222a 100644 (file)
--- a/src/core/plugin.c
+++ b/src/core/plugin.c
#define SDB_CONST_PLUGIN_CCB(obj) ((const sdb_plugin_collector_cb_t *)(obj))
typedef struct {
- sdb_object_t super;
+ sdb_plugin_cb_t super; /* cb_callback will always be NULL */
+#define w_user_data super.cb_user_data
+#define w_ctx super.cb_ctx
sdb_store_writer_t impl;
- sdb_object_t *user_data;
- ctx_t *ctx;
} sdb_plugin_writer_t;
#define SDB_PLUGIN_WRITER(obj) ((sdb_plugin_writer_t *)(obj))
/* ctx may be NULL if the plugin was not registered by a plugin */
SDB_PLUGIN_WRITER(obj)->impl = *impl;
- SDB_PLUGIN_WRITER(obj)->ctx = ctx_get();
- sdb_object_ref(SDB_OBJ(SDB_PLUGIN_WRITER(obj)->ctx));
+ SDB_PLUGIN_WRITER(obj)->w_ctx = ctx_get();
+ sdb_object_ref(SDB_OBJ(SDB_PLUGIN_WRITER(obj)->w_ctx));
sdb_object_ref(ud);
- SDB_PLUGIN_WRITER(obj)->user_data = ud;
+ SDB_PLUGIN_WRITER(obj)->w_user_data = ud;
return 0;
} /* plugin_writer_init */
plugin_writer_destroy(sdb_object_t *obj)
{
assert(obj);
- sdb_object_deref(SDB_PLUGIN_WRITER(obj)->user_data);
- sdb_object_deref(SDB_OBJ(SDB_PLUGIN_WRITER(obj)->ctx));
+ sdb_object_deref(SDB_PLUGIN_WRITER(obj)->w_user_data);
+ sdb_object_deref(SDB_OBJ(SDB_PLUGIN_WRITER(obj)->w_ctx));
} /* plugin_writer_destroy */
static sdb_type_t sdb_plugin_writer_type = {
sdb_plugin_writer_t *writer;
writer = SDB_PLUGIN_WRITER(sdb_llist_iter_get_next(iter));
assert(writer);
- if (writer->impl.store_host(name, last_update, writer->user_data))
+ if (writer->impl.store_host(name, last_update, writer->w_user_data))
status = -1;
}
sdb_llist_iter_destroy(iter);
writer = SDB_PLUGIN_WRITER(sdb_llist_iter_get_next(iter));
assert(writer);
if (writer->impl.store_service(hostname, name, last_update,
- writer->user_data))
+ writer->w_user_data))
status = -1;
}
sdb_llist_iter_destroy(iter);
writer = SDB_PLUGIN_WRITER(sdb_llist_iter_get_next(iter));
assert(writer);
if (writer->impl.store_metric(hostname, name, store, last_update,
- writer->user_data))
+ writer->w_user_data))
status = -1;
}
sdb_llist_iter_destroy(iter);
writer = SDB_PLUGIN_WRITER(sdb_llist_iter_get_next(iter));
assert(writer);
if (writer->impl.store_attribute(hostname, key, value, last_update,
- writer->user_data))
+ writer->w_user_data))
status = -1;
}
sdb_llist_iter_destroy(iter);
writer = SDB_PLUGIN_WRITER(sdb_llist_iter_get_next(iter));
assert(writer);
if (writer->impl.store_service_attr(hostname, service,
- key, value, last_update, writer->user_data))
+ key, value, last_update, writer->w_user_data))
status = -1;
}
sdb_llist_iter_destroy(iter);
writer = SDB_PLUGIN_WRITER(sdb_llist_iter_get_next(iter));
assert(writer);
if (writer->impl.store_metric_attr(hostname, metric,
- key, value, last_update, writer->user_data))
+ key, value, last_update, writer->w_user_data))
status = -1;
}
sdb_llist_iter_destroy(iter);