X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Faction_list_graphs.c;h=ac37cc025a519c2eb8d7ba52451e0b10f6b44b0a;hb=5c0a3fd94a71e65c0d9cf55861ab515d9de03348;hp=29e3d8b887839b3c3424578280e38e68e89c691a;hpb=0ab3085f89e64eecd67d3179ea87f0463e918a10;p=collection4.git diff --git a/src/action_list_graphs.c b/src/action_list_graphs.c index 29e3d8b..ac37cc0 100644 --- a/src/action_list_graphs.c +++ b/src/action_list_graphs.c @@ -1,126 +1,118 @@ +/** + * collection4 - action_list_graphs.c + * Copyright (C) 2010 Florian octo Forster + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA + * + * Authors: + * Florian octo Forster + **/ + #include #include #include #include #include "action_list_graphs.h" +#include "common.h" #include "graph.h" #include "graph_list.h" -#include "utils_params.h" +#include "utils_cgi.h" #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; - - first = user_data; - - ident = inst_get_selector (inst); - if (ident == NULL) - return (-1); - - json = ident_to_json (ident); - if (json == NULL) - { - ident_destroy (ident); - return (ENOMEM); - } - - if (*first) - printf ("%s", json); - else - printf (",\n%s", json); - - *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 list_graphs_json (void) /* {{{ */ +static int left_menu (__attribute__((unused)) void *user_data) /* {{{ */ { - _Bool first = 1; - - printf ("Content-Type: application/json\n\n"); - - printf ("[\n"); - gl_graph_get_all (print_graph_json, /* user_data = */ &first); - printf ("\n]"); + printf ("\n\n", + script_name (), script_name ()); return (0); -} /* }}} int list_graphs_json */ +} /* }}} int left_menu */ -static int print_graph_inst_html (graph_config_t *cfg, /* {{{ */ - graph_instance_t *inst, +static int print_one_graph (graph_config_t *cfg, /* {{{ */ __attribute__((unused)) void *user_data) { char params[1024]; - char desc[1024]; + char title[1024]; + size_t num_instances; - memset (params, 0, sizeof (params)); - inst_get_params (cfg, inst, params, sizeof (params)); + num_instances = graph_num_instances (cfg); + if (num_instances < 1) + return (0); - memset (desc, 0, sizeof (desc)); - inst_describe (cfg, inst, desc, sizeof (desc)); + memset (title, 0, sizeof (title)); + graph_get_title (cfg, title, sizeof (title)); + html_escape_buffer (title, sizeof (title)); - printf ("
  • %s
  • \n", - params, desc); + memset (params, 0, sizeof (params)); + graph_get_params (cfg, params, sizeof (params)); + html_escape_buffer (params, sizeof (params)); + + printf ("
  • " + "%s (%lu %s)
  • \n", + script_name (), params, title, + (unsigned long) num_instances, + (num_instances == 1) ? "instance" : "instances"); return (0); -} /* }}} int print_graph_inst_html */ +} /* }}} int print_one_graph */ -static int print_graph_html (graph_config_t *cfg, /* {{{ */ - __attribute__((unused)) void *user_data) +static int print_all_graphs (__attribute__((unused)) void *user_data) /* {{{ */ { - char buffer[1024]; - - memset (buffer, 0, sizeof (buffer)); - graph_get_title (cfg, buffer, sizeof (buffer)); + const char *dynamic; + _Bool include_dynamic = 0; - printf ("
  • %s\n
      \n", buffer); - gl_graph_instance_get_all (cfg, print_graph_inst_html, /* user_data = */ NULL); - printf ("
  • \n"); + dynamic = param ("dynamic"); + if ((dynamic != NULL) + && (strcmp ("true", dynamic) == 0)) + include_dynamic = 1; - return (0); -} /* }}} int print_graph_html */ - -static int list_graphs_html (void) /* {{{ */ -{ - printf ("Content-Type: text/html\n\n"); + printf ("
      \n"); + gl_graph_get_all (include_dynamic, print_one_graph, /* user_data = */ NULL); + printf ("
    \n"); - printf ("
      \n"); - gl_graph_get_all (print_graph_html, /* user_data = */ NULL); - printf ("
    \n"); + if (!include_dynamic) + { + printf (" \n", script_name ()); + } return (0); -} /* }}} int list_graphs_html */ +} /* }}} int print_all_graphs */ int action_list_graphs (void) /* {{{ */ { - const char *format; + page_callbacks_t pg_callbacks = PAGE_CALLBACKS_INIT; + char title[512]; + + strncpy (title, "List of all graphs", sizeof (title)); + title[sizeof (title) - 1] = 0; - gl_update (); + pg_callbacks.top_right = html_print_search_box; + pg_callbacks.middle_left = left_menu; + pg_callbacks.middle_center = print_all_graphs; - format = param ("format"); - if (format == NULL) - format = "html"; + html_print_page (title, &pg_callbacks, /* user data = */ NULL); - if (strcmp ("json", format) == 0) - return (list_graphs_json ()); - else - return (list_graphs_html ()); + return (0); } /* }}} int action_list_graphs */ /* vim: set sw=2 sts=2 et fdm=marker : */