X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=blobdiff_plain;f=src%2Finclude%2Fcore%2Fplugin.h;fp=src%2Finclude%2Fcore%2Fplugin.h;h=4ccc983c446551db07ec729b4c7b26cfc8161b8b;hp=f75788ad2359a479c5be92d276366d41bf2fa21b;hb=c67634d0683a42c1e5457279de98958cbacc679d;hpb=dd74510898e5a480fc18a1acad7aa4196f732efe diff --git a/src/include/core/plugin.h b/src/include/core/plugin.h index f75788a..4ccc983 100644 --- a/src/include/core/plugin.h +++ b/src/include/core/plugin.h @@ -31,6 +31,7 @@ #include "sysdb.h" #include "core/object.h" #include "core/time.h" +#include "core/timeseries.h" #include "liboconfig/oconfig.h" @@ -120,6 +121,9 @@ typedef int (*sdb_plugin_shutdown_cb)(sdb_object_t *user_data); typedef int (*sdb_plugin_log_cb)(int prio, const char *msg, sdb_object_t *user_data); +typedef sdb_timeseries_t *(*sdb_plugin_fetch_ts_cb)(const char *id, + sdb_timeseries_opts_t *opts, sdb_object_t *user_data); + /* * sdb_plugin_register_config: * Register a "config" function. This will be used to pass on the @@ -233,6 +237,26 @@ int sdb_plugin_register_log(const char *name, sdb_plugin_log_cb callback, sdb_object_t *user_data); +/* + * sdb_plugin_register_ts_fetcher: + * Register a "time-series fetcher" function to be called whenever retrieving + * a time-series from a data-store. The callback will receive an identifier + * describing where to retrieve the data from (e.g. a filename or some kind of + * URL) and options which further describe the query. + * + * The name is used literally (without prepending the plugin name) to look up + * the appropriate fetcher callback. + * + * Arguments: + * - user_data: If specified, this will be passed on to each call of the + * callback. The function will take ownership of the object, that is, + * increment the reference count by one. In case the caller does not longer + * use the object for other purposes, it should thus deref it. + */ +int +sdb_plugin_register_ts_fetcher(const char *name, + sdb_plugin_fetch_ts_cb callback, sdb_object_t *user_data); + /* * sdb_plugin_get_ctx, sdb_plugin_set_ctx: * The plugin context defines a set of settings that are available whenever a