X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=action_list_graphs.c;h=0663b98dbbcfd6f1aad2bd06fc8cf423a0e31e77;hb=9f1edc0d06f42917c331199b67843f5201496514;hp=16d5cc4405761178a838a0e6de3426a4b93d5c98;hpb=bdd9ce2f4b4fc04f66fe96da300cc10d8f4222ee;p=collection4.git diff --git a/action_list_graphs.c b/action_list_graphs.c index 16d5cc4..0663b98 100644 --- a/action_list_graphs.c +++ b/action_list_graphs.c @@ -3,56 +3,74 @@ #include #include -#include -#include - #include "action_list_graphs.h" #include "graph_list.h" #include "utils_params.h" -static int print_graph_json (const graph_list_t *gl, void *user_data) /* {{{ */ +#include +#include + +static int print_graph_inst_json (__attribute__((unused)) graph_config_t *cfg, /* {{{ */ + graph_instance_t *inst, + void *user_data) { _Bool *first; + graph_ident_t *ident; + char *json; - if ((gl == NULL) || (user_data == NULL)) - return (EINVAL); + first = user_data; - first = (_Bool *) user_data; - if (!*first) - printf (",\n"); - *first = 0; + ident = gl_instance_get_selector (inst); + if (ident == NULL) + return (-1); - printf (" {"); + json = ident_to_json (ident); + if (json == NULL) + { + ident_destroy (ident); + return (ENOMEM); + } - printf ("\"host\":\"%s\"", gl->host); - - printf (",\"plugin\":\"%s\"", gl->plugin); - if (gl->plugin_instance != NULL) - printf (",\"plugin_instance\":\"%s\"", gl->plugin_instance); + if (*first) + printf ("%s", json); else - printf (",\"plugin_instance\":null"); + printf (",\n%s", json); - printf (",\"type\":\"%s\"", gl->type); - if (gl->type_instance != NULL) - printf (",\"type_instance\":\"%s\"", gl->type_instance); - else - printf (",\"type_instance\":null"); - - printf ("}"); + *first = 0; + ident_destroy (ident); return (0); +} /* }}} int print_graph_inst_json */ + +static int print_graph_json (graph_config_t *cfg, /* {{{ */ + void *user_data) +{ + return (gl_graph_instance_get_all (cfg, print_graph_inst_json, user_data)); } /* }}} int print_graph_json */ -static int print_graph_inst_html (__attribute__((unused)) graph_config_t *cfg, /* {{{ */ +static int list_graphs_json (void) /* {{{ */ +{ + _Bool first = 1; + + printf ("Content-Type: application/json\n\n"); + + printf ("[\n"); + gl_graph_get_all (print_graph_json, /* user_data = */ &first); + printf ("\n]"); + + return (0); +} /* }}} int list_graphs_json */ + +static int print_graph_inst_html (graph_config_t *cfg, /* {{{ */ graph_instance_t *inst, __attribute__((unused)) void *user_data) { char buffer[1024]; memset (buffer, 0, sizeof (buffer)); - gl_instance_get_ident (inst, buffer, sizeof (buffer)); + gl_instance_get_params (cfg, inst, buffer, sizeof (buffer)); - printf ("
  • %s
  • \n", buffer); + printf ("
  • %s
  • \n", buffer, buffer); return (0); } /* }}} int print_graph_inst_html */ @@ -60,26 +78,18 @@ static int print_graph_inst_html (__attribute__((unused)) graph_config_t *cfg, / static int print_graph_html (graph_config_t *cfg, /* {{{ */ __attribute__((unused)) void *user_data) { - printf ("
  • %p\n
      \n", (void *) cfg); + char buffer[1024]; + + memset (buffer, 0, sizeof (buffer)); + gl_graph_get_title (cfg, buffer, sizeof (buffer)); + + printf ("
    • %s\n
        \n", buffer); gl_graph_instance_get_all (cfg, print_graph_inst_html, /* user_data = */ NULL); printf ("
      \n"); return (0); } /* }}} int print_graph_html */ -static int list_graphs_json (void) /* {{{ */ -{ - _Bool first = 1; - - printf ("Content-Type: application/json\n\n"); - - printf ("[\n"); - gl_foreach (print_graph_json, /* user_data = */ &first); - printf ("\n]"); - - return (0); -} /* }}} int list_graphs_json */ - static int list_graphs_html (void) /* {{{ */ { printf ("Content-Type: text/html\n\n");