X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fgraph_list.c;h=d767ef945585198691fd737c2d2de5c750f5eb9b;hb=ddfdfa88eb2e3db84ab47d65bc49bcc565f4bdd7;hp=b40547692441a39a39ea9e86b35fcdc9694cbd98;hpb=15fc8e0d4c830e05437ff068bb75a67fe5ea46b9;p=collection4.git diff --git a/src/graph_list.c b/src/graph_list.c index b405476..d767ef9 100644 --- a/src/graph_list.c +++ b/src/graph_list.c @@ -38,6 +38,7 @@ #include "graph_list.h" #include "common.h" +#include "data_provider.h" #include "filesystem.h" #include "graph.h" #include "graph_config.h" @@ -209,6 +210,14 @@ static int gl_register_file (const graph_ident_t *file, /* {{{ */ return (0); } /* }}} int gl_register_file */ +static int gl_register_ident (const graph_ident_t *ident, /* {{{ */ + __attribute__((unused)) void *user_data) +{ + /* TODO: Check for duplicates if multiple data providers are used. */ + + return (gl_register_file (ident, user_data)); +} /* }}} int gl_register_ident */ + static const char *get_part_from_param (const char *prim_key, /* {{{ */ const char *sec_key) { @@ -270,11 +279,8 @@ static int gl_update_cache (void) /* {{{ */ if (status == 0) { if (statbuf.st_mtime >= gl_last_update) - { - fprintf (stderr, "gl_update_cache: Not writing to cache because it's " - "at least as new as our internal data\n"); + /* Not writing to cache because it's at least as new as our internal data */ return (0); - } } else { @@ -344,11 +350,6 @@ static int gl_update_cache (void) /* {{{ */ return (0); } /* }}} int gl_update_cache */ -static int gl_scan_directory (void) -{ - return (-1); -} /* }}} int gl_scan_directory */ - /* * JSON parsing functions */ @@ -780,8 +781,8 @@ int gl_config_submit (void) /* {{{ */ return (0); } /* }}} int graph_config_submit */ -int gl_graph_get_all (graph_callback_t callback, /* {{{ */ - void *user_data) +int gl_graph_get_all (_Bool include_dynamic, /* {{{ */ + graph_callback_t callback, void *user_data) { size_t i; @@ -799,6 +800,9 @@ int gl_graph_get_all (graph_callback_t callback, /* {{{ */ return (status); } + if (!include_dynamic) + return (0); + for (i = 0; i < gl_dynamic_num; i++) { int status; @@ -1084,8 +1088,13 @@ int gl_update (_Bool request_served) /* {{{ */ if ((status != 0) || ((gl_last_update + UPDATE_INTERVAL) < now)) { - status = fs_scan (/* callback = */ gl_register_file, - /* user data = */ NULL); + /* Clear state */ + gl_clear_instances (); + gl_clear_hosts (); + gl_destroy (&gl_dynamic, &gl_dynamic_num); + + data_provider_get_idents (gl_register_ident, /* user data = */ NULL); + gl_last_update = now; }