X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=graph_list.c;h=965fcbac4f6caad5913b9a0097dd2937ec773ffb;hb=586ff0da90125e8449db2ee1b5894c5883255daa;hp=baa8849ea0f9c9985e40da8457263f7e1404d0f8;hpb=9e5770370bb085ccfb19f3dd14707542bf1475f1;p=collection4.git diff --git a/graph_list.c b/graph_list.c index baa8849..965fcba 100644 --- a/graph_list.c +++ b/graph_list.c @@ -1,201 +1,287 @@ #include #include +#include +#include #include #include #include #include "graph_list.h" +#include "graph_ident.h" +#include "graph_def.h" +#include "graph_config.h" #include "common.h" +#include "filesystem.h" +#include "utils_params.h" + +#include +#include + +/* + * Defines + */ +#define UPDATE_INTERVAL 10 + +/* + * Global variables + */ +static graph_config_t **gl_active = NULL; +static size_t gl_active_num = 0; + +static graph_config_t **gl_staging = NULL; +static size_t gl_staging_num = 0; -static graph_list_t *graph_list = NULL; -static size_t graph_list_length = 0; static time_t gl_last_update = 0; -static int gl_add_copy (graph_list_t *gl) /* {{{ */ +/* + * Private functions + */ +int gl_add_graph_internal (graph_config_t *cfg, /* {{{ */ + graph_config_t ***gl_array, size_t *gl_array_num) { - graph_list_t *ptr; - int status; + graph_config_t **tmp; + +#define ARRAY_PTR (*gl_array) +#define ARRAY_SIZE (*gl_array_num) - if (gl == NULL) + if (cfg == NULL) return (EINVAL); - ptr = realloc (graph_list, sizeof (*graph_list) * (graph_list_length + 1)); - if (ptr == NULL) + tmp = realloc (ARRAY_PTR, sizeof (*ARRAY_PTR) * (ARRAY_SIZE + 1)); + if (tmp == NULL) return (ENOMEM); - graph_list = ptr; - - ptr = graph_list + graph_list_length; - memset (ptr, 0, sizeof (*ptr)); - ptr->host = NULL; - ptr->plugin = NULL; - ptr->plugin_instance = NULL; - ptr->type = NULL; - ptr->type_instance = NULL; - -#define DUP_OR_BREAK(member) do { \ - ptr->member = NULL; \ - if (gl->member != NULL) \ - { \ - ptr->member = strdup (gl->member); \ - if (ptr->member == NULL) \ - break; \ - } \ -} while (0) - - status = ENOMEM; - do + ARRAY_PTR = tmp; + + ARRAY_PTR[ARRAY_SIZE] = cfg; + ARRAY_SIZE++; + +#undef ARRAY_SIZE +#undef ARRAY_PTR + + return (0); +} /* }}} int gl_add_graph_internal */ + +static int gl_register_file (const graph_ident_t *file, /* {{{ */ + __attribute__((unused)) void *user_data) +{ + graph_config_t *cfg; + int num_graphs = 0; + size_t i; + + for (i = 0; i < gl_active_num; i++) { - DUP_OR_BREAK(host); - DUP_OR_BREAK(plugin); - DUP_OR_BREAK(plugin_instance); - DUP_OR_BREAK(type); - DUP_OR_BREAK(type_instance); + graph_config_t *cfg = gl_active[i]; + int status; - status = 0; - } while (0); + if (!graph_matches (cfg, file)) + continue; -#undef DUP_OR_BREAK + status = graph_add_file (cfg, file); + if (status != 0) + { + /* report error */; + } + else + { + num_graphs++; + } + } - if (status != 0) + if (num_graphs == 0) { - free (ptr->host); - free (ptr->plugin); - free (ptr->plugin_instance); - free (ptr->type); - free (ptr->type_instance); - return (status); + cfg = graph_create (file); + gl_add_graph_internal (cfg, &gl_active, &gl_active_num); + graph_add_file (cfg, file); } - graph_list_length++; return (0); -} /* }}} int gl_add_copy */ +} /* }}} int gl_register_file */ -static int callback_type (const char *type, void *user_data) /* {{{ */ +static const char *get_part_from_param (const char *prim_key, /* {{{ */ + const char *sec_key) { - graph_list_t *gl; - int status; + const char *val; - if ((type == NULL) || (user_data == NULL)) - return (EINVAL); + val = param (prim_key); + if (val != NULL) + return (val); + + return (param (sec_key)); +} /* }}} const char *get_part_from_param */ - gl = user_data; - if ((gl->type != NULL) || (gl->type_instance != NULL)) - return (EINVAL); - - gl->type = strdup (type); - if (gl->type == NULL) - return (ENOMEM); +static int gl_clear_instances (void) /* {{{ */ +{ + size_t i; - gl->type_instance = strchr (gl->type, '-'); - if (gl->type_instance != NULL) - { - *gl->type_instance = 0; - gl->type_instance++; - } + for (i = 0; i < gl_active_num; i++) + graph_clear_instances (gl_active[i]); - status = gl_add_copy (gl); + return (0); +} /* }}} int gl_clear_instances */ - free (gl->type); - gl->type = NULL; - gl->type_instance = NULL; - return (status); -} /* }}} int callback_type */ +/* + * Global functions + */ +int gl_add_graph (graph_config_t *cfg) /* {{{ */ +{ + return (gl_add_graph_internal (cfg, &gl_staging, &gl_staging_num)); +} /* }}} int gl_add_graph */ -static int callback_plugin (const char *plugin, void *user_data) /* {{{ */ +int gl_config_submit (void) /* {{{ */ { - graph_list_t *gl; - int status; + graph_config_t **old; + size_t old_num; + size_t i; - if ((plugin == NULL) || (user_data == NULL)) - return (EINVAL); + old = gl_active; + old_num = gl_active_num; - gl = user_data; - if ((gl->plugin != NULL) || (gl->plugin_instance != NULL)) - return (EINVAL); + gl_active = gl_staging; + gl_active_num = gl_staging_num; - gl->plugin = strdup (plugin); - if (gl->plugin == NULL) - return (ENOMEM); + gl_staging = NULL; + gl_staging_num = 0; - gl->plugin_instance = strchr (gl->plugin, '-'); - if (gl->plugin_instance != NULL) + for (i = 0; i < old_num; i++) { - *gl->plugin_instance = 0; - gl->plugin_instance++; + graph_destroy (old[i]); + old[i] = NULL; } + free (old); - status = foreach_type (gl->host, plugin, callback_type, gl); + return (0); +} /* }}} int graph_config_submit */ - free (gl->plugin); - gl->plugin = NULL; - gl->plugin_instance = NULL; +int gl_graph_get_all (gl_cfg_callback callback, /* {{{ */ + void *user_data) +{ + size_t i; - return (status); -} /* }}} int callback_plugin */ + if (callback == NULL) + return (EINVAL); + + gl_update (); + + for (i = 0; i < gl_active_num; i++) + { + int status; -static int callback_host (const char *host, void *user_data) /* {{{ */ + status = (*callback) (gl_active[i], user_data); + if (status != 0) + return (status); + } + + return (0); +} /* }}} int gl_graph_get_all */ + +graph_config_t *gl_graph_get_selected (void) /* {{{ */ { - graph_list_t *gl; - int status; + const char *host = get_part_from_param ("graph_host", "host"); + const char *plugin = get_part_from_param ("graph_plugin", "plugin"); + const char *plugin_instance = get_part_from_param ("graph_plugin_instance", "plugin_instance"); + const char *type = get_part_from_param ("graph_type", "type"); + const char *type_instance = get_part_from_param ("graph_type_instance", "type_instance"); + graph_ident_t *ident; + size_t i; - if ((host == NULL) || (user_data == NULL)) - return (EINVAL); + if ((host == NULL) + || (plugin == NULL) || (plugin_instance == NULL) + || (type == NULL) || (type_instance == NULL)) + return (NULL); - gl = user_data; - if (gl->host != NULL) - return (EINVAL); + ident = ident_create (host, plugin, plugin_instance, type, type_instance); - gl->host = strdup (host); - if (gl->host == NULL) - return (ENOMEM); + gl_update (); - status = foreach_plugin (host, callback_plugin, gl); + for (i = 0; i < gl_active_num; i++) + { + if (graph_compare (gl_active[i], ident) != 0) + continue; - free (gl->host); - gl->host = NULL; + ident_destroy (ident); + return (gl_active[i]); + } - return (status); -} /* }}} int callback_host */ + ident_destroy (ident); + return (NULL); +} /* }}} graph_config_t *gl_graph_get_selected */ -int gl_update (void) /* {{{ */ +/* gl_instance_get_all, gl_graph_instance_get_all {{{ */ +struct gl_inst_callback_data /* {{{ */ { - time_t now; - graph_list_t gl; - int status; + graph_config_t *cfg; + gl_inst_callback callback; + void *user_data; +}; /* }}} struct gl_inst_callback_data */ - now = time (NULL); +static int gl_inst_callback_handler (graph_instance_t *inst, /* {{{ */ + void *user_data) +{ + struct gl_inst_callback_data *data = user_data; - if ((gl_last_update + 2) >= now) - return (0); + return ((*data->callback) (data->cfg, inst, data->user_data)); +} /* }}} int gl_inst_callback_handler */ - memset (&gl, 0, sizeof (gl)); - gl.host = NULL; - gl.plugin = NULL; - gl.plugin_instance = NULL; - gl.type = NULL; - gl.type_instance = NULL; +int gl_graph_instance_get_all (graph_config_t *cfg, /* {{{ */ + gl_inst_callback callback, void *user_data) +{ + struct gl_inst_callback_data data = + { + cfg, + callback, + user_data + }; - /* TODO: Free old list */ + if ((cfg == NULL) || (callback == NULL)) + return (EINVAL); - status = foreach_host (callback_host, &gl); - return (status); -} /* }}} int gl_update */ + return (inst_foreach (graph_get_instances (cfg), + gl_inst_callback_handler, &data)); +} /* }}} int gl_graph_instance_get_all */ -int gl_foreach (gl_callback callback, void *user_data) /* {{{ */ +int gl_instance_get_all (gl_inst_callback callback, /* {{{ */ + void *user_data) { size_t i; - for (i = 0; i < graph_list_length; i++) + gl_update (); + + for (i = 0; i < gl_active_num; i++) { int status; - status = (*callback) (graph_list + i, user_data); + status = gl_graph_instance_get_all (gl_active[i], callback, user_data); if (status != 0) return (status); } return (0); -} /* }}} int gl_foreach */ +} /* }}} int gl_instance_get_all */ +/* }}} gl_instance_get_all, gl_graph_instance_get_all */ + +int gl_update (void) /* {{{ */ +{ + time_t now; + int status; + + /* + printf ("Content-Type: text/plain\n\n"); + */ + + now = time (NULL); + + if ((gl_last_update + UPDATE_INTERVAL) >= now) + return (0); + + graph_read_config (); + + gl_clear_instances (); + status = fs_scan (/* callback = */ gl_register_file, /* user data = */ NULL); + + gl_last_update = now; + + return (status); +} /* }}} int gl_update */ /* vim: set sw=2 sts=2 et fdm=marker : */