X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fdaemon%2Fplugin_mock.c;h=6df4c15df691b2c3c162ff6e2c39d76637aa2cb4;hp=9e7ba39ef44bdc113b9fc0d9c2f5893e5ab4d44a;hb=1159cb5d383c55a80a0db100b8f7aadcf44740a5;hpb=464c89681dae3bdf9b30470469161da6ac5aeb37 diff --git a/src/daemon/plugin_mock.c b/src/daemon/plugin_mock.c index 9e7ba39e..6df4c15d 100644 --- a/src/daemon/plugin_mock.c +++ b/src/daemon/plugin_mock.c @@ -30,7 +30,12 @@ kstat_ctl_t *kc = NULL; #endif /* HAVE_LIBKSTAT */ -char hostname_g[] = "example.com"; +char *hostname_g = "example.com"; + +void plugin_set_dir(const char *dir) { /* nop */ +} + +int plugin_load(const char *name, _Bool global) { return ENOTSUP; } int plugin_register_config(const char *name, int (*callback)(const char *key, const char *val), @@ -62,6 +67,8 @@ int plugin_register_shutdown(const char *name, int (*callback)(void)) { return ENOTSUP; } +int plugin_register_data_set(const data_set_t *ds) { return ENOTSUP; } + int plugin_dispatch_values(value_list_t const *vl) { return ENOTSUP; } int plugin_flush(const char *plugin, cdtime_t timeout, const char *identifier) { @@ -88,4 +95,25 @@ void plugin_log(int level, char const *format, ...) { printf("plugin_log (%i, \"%s\");\n", level, buffer); } -cdtime_t plugin_get_interval(void) { return TIME_T_TO_CDTIME_T(10); } +void plugin_init_ctx(void) { /* nop */ +} + +plugin_ctx_t mock_context = { + .interval = TIME_T_TO_CDTIME_T_STATIC(10), +}; + +plugin_ctx_t plugin_get_ctx(void) { return mock_context; } + +plugin_ctx_t plugin_set_ctx(plugin_ctx_t ctx) { + plugin_ctx_t prev = mock_context; + mock_context = ctx; + return prev; +} + +cdtime_t plugin_get_interval(void) { return mock_context.interval; } + +/* TODO(octo): this function is actually from filter_chain.h, but in order not + * to tumble down that rabbit hole, we're declaring it here. A better solution + * would be to hard-code the top-level config keys in daemon/collectd.c to avoid + * having these references in daemon/configfile.c. */ +int fc_configure(const oconfig_item_t *ci) { return ENOTSUP; }