X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=graph_list.c;h=a5df4cb6d68e0482d0a5ba486db711c820668b32;hb=a27a2222a526bfc8fde95d4f59e9e93bce322bfd;hp=240f2e1b8a62f64d4f3cc1ce56bb1257634f7b0e;hpb=c9b217f727d67ff413804672ff4601b0eb761de0;p=collection4.git diff --git a/graph_list.c b/graph_list.c index 240f2e1..a5df4cb 100644 --- a/graph_list.c +++ b/graph_list.c @@ -1,15 +1,22 @@ #include #include +#include +#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 @@ -22,32 +29,25 @@ /* * Data types */ -struct graph_ident_s /* {{{ */ +struct gl_ident_stage_s /* {{{ */ { char *host; char *plugin; char *plugin_instance; char *type; char *type_instance; -}; /* }}} struct graph_ident_s */ - -struct graph_instance_s /* {{{ */ -{ - graph_ident_t select; - - graph_ident_t *files; - size_t files_num; - - graph_instance_t *next; -}; /* }}} struct graph_instance_s */ +}; /* }}} */ +typedef struct gl_ident_stage_s gl_ident_stage_t; struct graph_config_s /* {{{ */ { - graph_ident_t select; + graph_ident_t *select; char *title; char *vertical_label; + graph_def_t *defs; + graph_instance_t *instances; graph_config_t *next; @@ -57,67 +57,14 @@ struct graph_config_s /* {{{ */ * Global variables */ static graph_config_t *graph_config_head = NULL; +static graph_config_t *graph_config_staging = NULL; -static graph_ident_t *graph_list = NULL; -static size_t graph_list_length = 0; static time_t gl_last_update = 0; /* * Private functions */ -/* FIXME: These "print_*" functions are used for debugging. They should be - * removed at some point. */ -static int print_files (const graph_instance_t *inst) /* {{{ */ -{ - size_t i; - - for (i = 0; i < inst->files_num; i++) - { - graph_ident_t *file = inst->files + i; - - printf (" File \"%s/%s-%s/%s-%s\"\n", - file->host, - file->plugin, file->plugin_instance, - file->type, file->type_instance); - } - - return (0); -} /* }}} int print_instances */ - -static int print_instances (const graph_config_t *cfg) /* {{{ */ -{ - graph_instance_t *inst; - - for (inst = cfg->instances; inst != NULL; inst = inst->next) - { - printf (" Instance \"%s/%s-%s/%s-%s\"\n", - inst->select.host, - inst->select.plugin, inst->select.plugin_instance, - inst->select.type, inst->select.type_instance); - - print_files (inst); - } - - return (0); -} /* }}} int print_instances */ - -static int print_graphs (void) /* {{{ */ -{ - graph_config_t *cfg; - - for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) - { - printf ("Graph \"%s/%s-%s/%s-%s\"\n", - cfg->select.host, - cfg->select.plugin, cfg->select.plugin_instance, - cfg->select.type, cfg->select.type_instance); - - print_instances (cfg); - } - - return (0); -} /* }}} int print_graphs */ - +#if 0 /* "Safe" version of strcmp(3): Either or both pointers may be NULL. */ static int strcmp_s (const char *s1, const char *s2) /* {{{ */ { @@ -131,172 +78,21 @@ static int strcmp_s (const char *s1, const char *s2) /* {{{ */ return (strcmp (s1, s2)); } /* }}} int strcmp_s */ - -static _Bool part_matches (const char *sel, const char *val) /* {{{ */ -{ - if ((sel == NULL) && (val == NULL)) - return (1); - - if (sel == NULL) /* && (val != NULL) */ - return (0); - - if ((strcasecmp (ALL_TOKEN, sel) == 0) - || (strcasecmp (ANY_TOKEN, sel) == 0)) - return (1); - - if (val == NULL) /* && (sel != NULL) */ - return (0); - - if (strcmp (sel, val) == 0) - return (1); - - return (0); -} /* }}} _Bool part_matches */ - -static _Bool file_matches (const graph_ident_t *sel, /* {{{ */ - const graph_ident_t *val) -{ - if ((sel == NULL) && (val == NULL)) - return (0); - else if (sel == NULL) - return (-1); - else if (val == NULL) - return (1); - - if (!part_matches (sel->host, val->host)) - return (0); - - if (!part_matches (sel->plugin, val->plugin)) - return (0); - - if (!part_matches (sel->plugin_instance, val->plugin_instance)) - return (0); - - if (!part_matches (sel->type, val->type)) - return (0); - - if (!part_matches (sel->type_instance, val->type_instance)) - return (0); - - return (1); -} /* }}} _Bool ident_compare */ +#endif /* * Copy part of an identifier. If the "template" value is ANY_TOKEN, "value" is * copied and returned. This function is used when creating graph_instance_t * from graph_config_t. */ -static char *identifier_copy_part (const char *template, const char *value) /* {{{ */ -{ - if (template == NULL) - { - return (NULL); - } - else if (strcasecmp (ANY_TOKEN, template) == 0) - { - /* ANY in the graph selection => concrete value in the instance. */ - if (value == NULL) - return (NULL); - else - return (strdup (value)); - } - else if (strcasecmp (ALL_TOKEN, template) == 0) - { - /* ALL in the graph selection => ALL in the instance. */ - return (strdup (ALL_TOKEN)); - } - else - { - assert (value != NULL); - assert (strcmp (template, value) == 0); - return (strdup (template)); - } -} /* }}} int identifier_copy_part */ - -static graph_instance_t *instance_create (graph_config_t *cfg, /* {{{ */ - const graph_ident_t *file) -{ - graph_instance_t *i; - - if ((cfg == NULL) || (file == NULL)) - return (NULL); - - i = malloc (sizeof (*i)); - if (i == NULL) - return (NULL); - memset (i, 0, sizeof (*i)); - - i->select.host = identifier_copy_part (cfg->select.host, file->host); - i->select.plugin = identifier_copy_part (cfg->select.plugin, file->plugin); - i->select.plugin_instance = identifier_copy_part (cfg->select.plugin_instance, - file->plugin_instance); - i->select.type = identifier_copy_part (cfg->select.type, file->type); - i->select.type_instance = identifier_copy_part (cfg->select.type_instance, - file->type_instance); - - i->files = NULL; - i->files_num = 0; - - i->next = NULL; - - if (cfg->instances == NULL) - cfg->instances = i; - else - { - graph_instance_t *last; - - last = cfg->instances; - while (last->next != NULL) - last = last->next; - - last->next = i; - } - - return (i); -} /* }}} graph_instance_t *instance_create */ - -static int instance_add_file (graph_instance_t *inst, /* {{{ */ - const graph_ident_t *file) -{ - graph_ident_t *tmp; - - tmp = realloc (inst->files, sizeof (*inst->files) * (inst->files_num + 1)); - if (tmp == NULL) - return (ENOMEM); - inst->files = tmp; - tmp = inst->files + inst->files_num; - - memset (tmp, 0, sizeof (*tmp)); - tmp->host = strdup (file->host); - tmp->plugin = strdup (file->plugin); - if (file->plugin_instance != NULL) - tmp->plugin_instance = strdup (file->plugin_instance); - else - tmp->plugin_instance = NULL; - tmp->type = strdup (file->type); - if (file->type_instance != NULL) - tmp->type_instance = strdup (file->type_instance); - else - tmp->type_instance = NULL; - - inst->files_num++; - - return (0); -} /* }}} int instance_add_file */ static graph_instance_t *graph_find_instance (graph_config_t *cfg, /* {{{ */ - const graph_ident_t *file) + const graph_ident_t *ident) { - graph_instance_t *i; - - if ((cfg == NULL) || (file == NULL)) + if ((cfg == NULL) || (ident == NULL)) return (NULL); - for (i = cfg->instances; i != NULL; i = i->next) - if (file_matches (&i->select, file)) - return (i); - - return (NULL); + return (inst_find_matching (cfg->instances, ident)); } /* }}} graph_instance_t *graph_find_instance */ static int graph_add_file (graph_config_t *cfg, const graph_ident_t *file) /* {{{ */ @@ -306,28 +102,37 @@ static int graph_add_file (graph_config_t *cfg, const graph_ident_t *file) /* {{ inst = graph_find_instance (cfg, file); if (inst == NULL) { - inst = instance_create (cfg, file); + inst = inst_create (cfg, file); if (inst == NULL) return (ENOMEM); + + if (cfg->instances == NULL) + cfg->instances = inst; + else + inst_append (cfg->instances, inst); } - return (instance_add_file (inst, file)); + return (inst_add_file (inst, file)); } /* }}} int graph_add_file */ -static int graph_append (graph_config_t *cfg) /* {{{ */ +static int graph_append (graph_config_t **head, /* {{{ */ + graph_config_t *cfg) { graph_config_t *last; if (cfg == NULL) return (EINVAL); - if (graph_config_head == NULL) + if (head == NULL) + head = &graph_config_head; + + if (*head == NULL) { - graph_config_head = cfg; + *head = cfg; return (0); } - last = graph_config_head; + last = *head; while (last->next != NULL) last = last->next; @@ -336,32 +141,51 @@ static int graph_append (graph_config_t *cfg) /* {{{ */ return (0); } /* }}} int graph_append */ -static int graph_create_from_file (const graph_ident_t *file) /* {{{ */ +static graph_config_t *graph_create (const graph_ident_t *selector) /* {{{ */ { graph_config_t *cfg; cfg = malloc (sizeof (*cfg)); if (cfg == NULL) - return (ENOMEM); + return (NULL); memset (cfg, 0, sizeof (*cfg)); - cfg->select.host = strdup (file->host); - cfg->select.plugin = strdup (file->plugin); - cfg->select.plugin_instance = strdup (file->plugin_instance); - cfg->select.type = strdup (file->type); - cfg->select.type_instance = strdup (file->type_instance); + if (selector != NULL) + cfg->select = ident_clone (selector); + else + cfg->select = NULL; cfg->title = NULL; cfg->vertical_label = NULL; + cfg->defs = NULL; cfg->instances = NULL; cfg->next = NULL; - graph_append (cfg); + return (cfg); +} /* }}} int graph_create */ - return (graph_add_file (cfg, file)); -} /* }}} int graph_create_from_file */ +static void graph_destroy (graph_config_t *cfg) /* {{{ */ +{ + graph_config_t *next; + + if (cfg == NULL) + return; + + next = cfg->next; -static int register_file (const graph_ident_t *file) /* {{{ */ + ident_destroy (cfg->select); + + free (cfg->title); + free (cfg->vertical_label); + + def_destroy (cfg->defs); + inst_destroy (cfg->instances); + + graph_destroy (next); +} /* }}} void graph_destroy */ + +static int gl_register_file (const graph_ident_t *file, /* {{{ */ + __attribute__((unused)) void *user_data) { graph_config_t *cfg; int num_graphs = 0; @@ -370,7 +194,7 @@ static int register_file (const graph_ident_t *file) /* {{{ */ { int status; - if (!file_matches (&cfg->select, file)) + if (!ident_matches (cfg->select, file)) continue; status = graph_add_file (cfg, file); @@ -385,390 +209,313 @@ static int register_file (const graph_ident_t *file) /* {{{ */ } if (num_graphs == 0) - graph_create_from_file (file); + { + cfg = graph_create (file); + graph_append (/* head = */ NULL, cfg); + graph_add_file (cfg, file); + } return (0); -} /* }}} int register_file */ +} /* }}} int gl_register_file */ -static int FIXME_graph_create_from_file (const graph_ident_t *file) /* {{{ */ +static const char *get_part_from_param (const char *prim_key, /* {{{ */ + const char *sec_key) { - graph_config_t *cfg; + const char *val; - cfg = malloc (sizeof (*cfg)); - if (cfg == NULL) - return (ENOMEM); - memset (cfg, 0, sizeof (*cfg)); - - cfg->select.host = strdup (file->host); - cfg->select.plugin = strdup (file->plugin); - cfg->select.plugin_instance = strdup (file->plugin_instance); - cfg->select.type = strdup (file->type); - cfg->select.type_instance = strdup (file->type_instance); + val = param (prim_key); + if (val != NULL) + return (val); + + return (param (sec_key)); +} /* }}} const char *get_part_from_param */ - cfg->title = NULL; - cfg->vertical_label = NULL; - cfg->instances = NULL; - cfg->next = NULL; - - graph_append (cfg); - - return (0); -} /* }}} int FIXME_graph_create_from_file */ - -/* FIXME: Actually read the config file here. */ -static int read_graph_config (void) /* {{{ */ +static int gl_clear_instances (void) /* {{{ */ { - if (graph_config_head != NULL) - return (0); - - graph_ident_t ident; - - - ident.host = ANY_TOKEN; - ident.plugin = "cpu"; - ident.plugin_instance = ANY_TOKEN; - ident.type = "cpu"; - ident.type_instance = ALL_TOKEN; - FIXME_graph_create_from_file (&ident); - - ident.plugin = "memory"; - ident.plugin_instance = ""; - ident.type = "memory"; - FIXME_graph_create_from_file (&ident); - - ident.plugin = "swap"; - ident.plugin_instance = ""; - ident.type = "swap"; - FIXME_graph_create_from_file (&ident); - - ident.plugin = ANY_TOKEN; - ident.plugin_instance = ANY_TOKEN; - ident.type = "ps_state"; - FIXME_graph_create_from_file (&ident); + graph_config_t *cfg; - ident.host = ALL_TOKEN; - ident.plugin = "cpu"; - ident.plugin_instance = ALL_TOKEN; - ident.type = "cpu"; - ident.type_instance = "idle"; - FIXME_graph_create_from_file (&ident); + for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) + { + inst_destroy (cfg->instances); + cfg->instances = NULL; + } return (0); -} /* }}} int read_graph_config */ - +} /* }}} int gl_clear_instances */ -static int gl_compare (const void *p0, const void *p1) /* {{{ */ +/* + * Config functions + */ +static graph_ident_t *graph_config_get_selector (const oconfig_item_t *ci) /* {{{ */ { - const graph_ident_t *gl0 = p0; - const graph_ident_t *gl1 = p1; - int status; - - status = strcmp (gl0->host, gl1->host); - if (status != 0) - return (status); - - status = strcmp (gl0->plugin, gl1->plugin); - if (status != 0) - return (status); + char *host = NULL; + char *plugin = NULL; + char *plugin_instance = NULL; + char *type = NULL; + char *type_instance = NULL; + graph_ident_t *ret; + int i; - status = strcmp_s (gl0->plugin_instance, gl1->plugin_instance); - if (status != 0) - return (status); - - status = strcmp (gl0->type, gl1->type); - if (status != 0) - return (status); - - return (strcmp_s (gl0->type_instance, gl1->type_instance)); -} /* }}} int gl_compare */ + for (i = 0; i < ci->children_num; i++) + { + oconfig_item_t *child; + + child = ci->children + i; + + if (strcasecmp ("Host", child->key) == 0) + graph_config_get_string (child, &host); + else if (strcasecmp ("Plugin", child->key) == 0) + graph_config_get_string (child, &plugin); + else if (strcasecmp ("PluginInstance", child->key) == 0) + graph_config_get_string (child, &plugin_instance); + else if (strcasecmp ("Type", child->key) == 0) + graph_config_get_string (child, &type); + else if (strcasecmp ("TypeInstance", child->key) == 0) + graph_config_get_string (child, &type_instance); + /* else: ignore all other directives here. */ + } /* for */ + + ret = ident_create (host, plugin, plugin_instance, type, type_instance); + + free (host); + free (plugin); + free (plugin_instance); + free (type); + free (type_instance); + + return (ret); +} /* }}} int graph_config_get_selector */ -static void gl_clear_entry (graph_ident_t *gl) /* {{{ */ +/* + * Global functions + */ +int graph_config_add (const oconfig_item_t *ci) /* {{{ */ { - if (gl == NULL) - return; + graph_ident_t *select; + graph_config_t *cfg = NULL; + int i; - free (gl->host); - free (gl->plugin); - free (gl->plugin_instance); - free (gl->type); - free (gl->type_instance); + select = graph_config_get_selector (ci); + if (select == NULL) + return (EINVAL); - gl->host = NULL; - gl->plugin = NULL; - gl->plugin_instance = NULL; - gl->type = NULL; - gl->type_instance = NULL; -} /* }}} void gl_clear_entry */ + cfg = graph_create (/* selector = */ NULL); + if (cfg == NULL) + return (ENOMEM); -static void gl_clear (void) /* {{{ */ -{ - size_t i; + cfg->select = select; - for (i = 0; i < graph_list_length; i++) - gl_clear_entry (graph_list + i); + for (i = 0; i < ci->children_num; i++) + { + oconfig_item_t *child; - free (graph_list); - graph_list = NULL; - graph_list_length = 0; - gl_last_update = 0; -} /* }}} void gl_clear */ + child = ci->children + i; -static int gl_add_copy (graph_ident_t *gl) /* {{{ */ -{ - graph_ident_t *ptr; - int status; + if (strcasecmp ("Title", child->key) == 0) + graph_config_get_string (child, &cfg->title); + else if (strcasecmp ("VerticalLabel", child->key) == 0) + graph_config_get_string (child, &cfg->vertical_label); + else if (strcasecmp ("DEF", child->key) == 0) + def_config (cfg, child); + } /* for */ - if (gl == NULL) - return (EINVAL); + graph_append (&graph_config_staging, cfg); - ptr = realloc (graph_list, sizeof (*graph_list) * (graph_list_length + 1)); - if (ptr == 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 - { - DUP_OR_BREAK(host); - DUP_OR_BREAK(plugin); - DUP_OR_BREAK(plugin_instance); - DUP_OR_BREAK(type); - DUP_OR_BREAK(type_instance); + return (0); +} /* }}} graph_config_add */ - status = 0; - } while (0); +int graph_config_submit (void) /* {{{ */ +{ + graph_config_t *tmp; -#undef DUP_OR_BREAK + tmp = graph_config_head; + graph_config_head = graph_config_staging; + graph_config_staging = NULL; - if (status != 0) - { - free (ptr->host); - free (ptr->plugin); - free (ptr->plugin_instance); - free (ptr->type); - free (ptr->type_instance); - return (status); - } + graph_destroy (tmp); - graph_list_length++; return (0); -} /* }}} int gl_add_copy */ +} /* }}} int graph_config_submit */ -static int callback_type (const char *type, void *user_data) /* {{{ */ +int gl_graph_get_all (gl_cfg_callback callback, /* {{{ */ + void *user_data) { - graph_ident_t *gl; - int status; - - if ((type == NULL) || (user_data == NULL)) - return (EINVAL); + graph_config_t *cfg; - gl = user_data; - if ((gl->type != NULL) || (gl->type_instance != NULL)) + if (callback == NULL) return (EINVAL); - gl->type = strdup (type); - if (gl->type == NULL) - return (ENOMEM); + gl_update (); - gl->type_instance = strchr (gl->type, '-'); - if (gl->type_instance != NULL) - { - *gl->type_instance = 0; - gl->type_instance++; - } - else + for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) { - gl->type_instance = gl->type + strlen (gl->type); - } - - register_file (gl); - - status = gl_add_copy (gl); + int status; - free (gl->type); - gl->type = NULL; - gl->type_instance = NULL; + status = (*callback) (cfg, user_data); + if (status != 0) + return (status); + } - return (status); -} /* }}} int callback_type */ + return (0); +} /* }}} int gl_graph_get_all */ -static int callback_plugin (const char *plugin, void *user_data) /* {{{ */ +graph_config_t *graph_get_selected (void) /* {{{ */ { - graph_ident_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; + graph_config_t *cfg; - if ((plugin == 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->plugin != NULL) || (gl->plugin_instance != NULL)) - return (EINVAL); + ident = ident_create (host, plugin, plugin_instance, type, type_instance); - gl->plugin = strdup (plugin); - if (gl->plugin == NULL) - return (ENOMEM); + gl_update (); - gl->plugin_instance = strchr (gl->plugin, '-'); - if (gl->plugin_instance != NULL) - { - *gl->plugin_instance = 0; - gl->plugin_instance++; - } - else + for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) { - gl->plugin_instance = gl->plugin + strlen (gl->plugin); - } - - status = foreach_type (gl->host, plugin, callback_type, gl); + if (ident_compare (ident, cfg->select) != 0) + continue; - free (gl->plugin); - gl->plugin = NULL; - gl->plugin_instance = NULL; + ident_destroy (ident); + return (cfg); + } - return (status); -} /* }}} int callback_plugin */ + ident_destroy (ident); + return (NULL); +} /* }}} graph_config_t *graph_get_selected */ -static int callback_host (const char *host, void *user_data) /* {{{ */ +/* gl_instance_get_all, gl_graph_instance_get_all {{{ */ +struct gl_inst_callback_data /* {{{ */ { - graph_ident_t *gl; - int status; - - if ((host == NULL) || (user_data == NULL)) - return (EINVAL); - - gl = user_data; - if (gl->host != NULL) - return (EINVAL); - - gl->host = strdup (host); - if (gl->host == NULL) - return (ENOMEM); - - status = foreach_plugin (host, callback_plugin, gl); + graph_config_t *cfg; + gl_inst_callback callback; + void *user_data; +}; /* }}} struct gl_inst_callback_data */ - free (gl->host); - gl->host = NULL; +static int gl_inst_callback_handler (graph_instance_t *inst, /* {{{ */ + void *user_data) +{ + struct gl_inst_callback_data *data = user_data; - return (status); -} /* }}} int callback_host */ + return ((*data->callback) (data->cfg, inst, data->user_data)); +} /* }}} int gl_inst_callback_handler */ -/* - * Global functions - */ -int gl_instance_get_ident (graph_instance_t *inst, /* {{{ */ - char *buffer, size_t buffer_size) +int gl_graph_instance_get_all (graph_config_t *cfg, /* {{{ */ + gl_inst_callback callback, void *user_data) { - if ((inst == NULL) || (buffer == NULL) || (buffer_size < 1)) - return (EINVAL); + struct gl_inst_callback_data data = + { + cfg, + callback, + user_data + }; - snprintf (buffer, buffer_size, "%s/%s-%s/%s-%s", - inst->select.host, - inst->select.plugin, inst->select.plugin_instance, - inst->select.type, inst->select.type_instance); - buffer[buffer_size - 1] = 0; + if ((cfg == NULL) || (callback == NULL)) + return (EINVAL); - return (0); -} /* }}} int gl_instance_get_ident */ + return (inst_foreach (cfg->instances, gl_inst_callback_handler, &data)); +} /* }}} int gl_graph_instance_get_all */ -int gl_graph_get_all (gl_cfg_callback callback, /* {{{ */ +int gl_instance_get_all (gl_inst_callback callback, /* {{{ */ void *user_data) { graph_config_t *cfg; - if (callback == NULL) - return (EINVAL); + gl_update (); for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) { int status; - status = (*callback) (cfg, user_data); + status = gl_graph_instance_get_all (cfg, callback, user_data); if (status != 0) return (status); } return (0); -} /* }}} int gl_graph_get_all */ +} /* }}} int gl_instance_get_all */ +/* }}} gl_instance_get_all, gl_graph_instance_get_all */ -int gl_graph_instance_get_all (graph_config_t *cfg, /* {{{ */ - gl_inst_callback callback, void *user_data) +int gl_graph_get_title (graph_config_t *cfg, /* {{{ */ + char *buffer, size_t buffer_size) { - graph_instance_t *inst; - - if ((cfg == NULL) || (callback == NULL)) + if ((cfg == NULL) || (buffer == NULL) || (buffer_size < 1)) return (EINVAL); - for (inst = cfg->instances; inst != NULL; inst = inst->next) - { - int status; + if (cfg->title == NULL) + cfg->title = ident_to_string (cfg->select); - status = (*callback) (cfg, inst, user_data); - if (status != 0) - return (status); - } + if (cfg->title == NULL) + return (ENOMEM); + + strncpy (buffer, cfg->title, buffer_size); + buffer[buffer_size - 1] = 0; return (0); -} /* }}} int gl_graph_instance_get_all */ +} /* }}} int gl_graph_get_title */ -int gl_instance_get_all (gl_inst_callback callback, /* {{{ */ - void *user_data) +graph_ident_t *gl_graph_get_selector (graph_config_t *cfg) /* {{{ */ { - graph_config_t *cfg; + if (cfg == NULL) + return (NULL); - for (cfg = graph_config_head; cfg != NULL; cfg = cfg->next) - { - graph_instance_t *inst; + return (ident_clone (cfg->select)); +} /* }}} graph_ident_t *gl_graph_get_selector */ - for (inst = cfg->instances; inst != NULL; inst = inst->next) - { - int status; +graph_instance_t *gl_graph_get_instances (graph_config_t *cfg) /* {{{ */ +{ + if (cfg == NULL) + return (NULL); - status = (*callback) (cfg, inst, user_data); - if (status != 0) - return (status); - } + return (cfg->instances); +} /* }}} graph_instance_t *gl_graph_get_instances */ + +graph_def_t *gl_graph_get_defs (graph_config_t *cfg) /* {{{ */ +{ + if (cfg == NULL) + return (NULL); + + return (cfg->defs); +} /* }}} graph_def_t *gl_graph_get_defs */ + +int gl_graph_add_def (graph_config_t *cfg, graph_def_t *def) /* {{{ */ +{ + if ((cfg == NULL) || (def == NULL)) + return (EINVAL); + + if (cfg->defs == NULL) + { + cfg->defs = def; + return (0); } - return (0); -} /* }}} int gl_instance_get_all */ + return (def_append (cfg->defs, def)); +} /* }}} int gl_graph_add_def */ int gl_update (void) /* {{{ */ { time_t now; - graph_ident_t gl; + gl_ident_stage_t gl; int status; /* printf ("Content-Type: text/plain\n\n"); */ - read_graph_config (); - now = time (NULL); if ((gl_last_update + UPDATE_INTERVAL) >= now) return (0); - gl_clear (); + graph_read_config (); memset (&gl, 0, sizeof (gl)); gl.host = NULL; @@ -777,30 +524,12 @@ int gl_update (void) /* {{{ */ gl.type = NULL; gl.type_instance = NULL; - status = foreach_host (callback_host, &gl); - - /* print_graphs (); */ + gl_clear_instances (); + status = fs_scan (/* callback = */ gl_register_file, /* user data = */ NULL); - if (graph_list_length > 1) - qsort (graph_list, graph_list_length, sizeof (*graph_list), gl_compare); + gl_last_update = now; return (status); } /* }}} int gl_update */ -int gl_foreach (gl_callback callback, void *user_data) /* {{{ */ -{ - size_t i; - - for (i = 0; i < graph_list_length; i++) - { - int status; - - status = (*callback) ((void *) (graph_list + i), user_data); - if (status != 0) - return (status); - } - - return (0); -} /* }}} int gl_foreach */ - /* vim: set sw=2 sts=2 et fdm=marker : */