X-Git-Url: https://git.octo.it/?p=collection4.git;a=blobdiff_plain;f=src%2Faction_list_graphs.c;h=ac37cc025a519c2eb8d7ba52451e0b10f6b44b0a;hp=6e4f0d42c18d45f2a8f5de12ffd9167e52ecd43e;hb=2ef734476e3511b6f1c2611875e340b6b8ca2d4c;hpb=7a68173fb6818d30bf2335d40970e38adc259588 diff --git a/src/action_list_graphs.c b/src/action_list_graphs.c index 6e4f0d4..ac37cc0 100644 --- a/src/action_list_graphs.c +++ b/src/action_list_graphs.c @@ -1,177 +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_ident.h" #include "graph_list.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) +static int left_menu (__attribute__((unused)) void *user_data) /* {{{ */ { - _Bool *first; - graph_ident_t *ident; - char *json; - - first = user_data; - - ident = inst_get_selector (inst); - if (ident == NULL) - return (-1); + printf ("\n\n", + script_name (), script_name ()); - 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 */ +} /* }}} int left_menu */ -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) /* {{{ */ -{ - _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 */ - -struct callback_data_s -{ - graph_config_t *cfg; - int limit; -}; -typedef struct callback_data_s callback_data_t; - -static int print_graph_inst_html (graph_config_t *cfg, /* {{{ */ - graph_instance_t *inst, - void *user_data) +static int print_one_graph (graph_config_t *cfg, /* {{{ */ + __attribute__((unused)) void *user_data) { - callback_data_t *data = user_data; char params[1024]; - char desc[1024]; + char title[1024]; + size_t num_instances; - if (data->cfg != cfg) - { - if (data->cfg != NULL) - printf (" \n"); - - memset (desc, 0, sizeof (desc)); - graph_get_title (cfg, desc, sizeof (desc)); - html_escape_buffer (desc, sizeof (desc)); + num_instances = graph_num_instances (cfg); + if (num_instances < 1) + return (0); - printf ("
  • %s\n" - "
      \n", desc); - - data->cfg = cfg; - } + memset (title, 0, sizeof (title)); + graph_get_title (cfg, title, sizeof (title)); + html_escape_buffer (title, sizeof (title)); memset (params, 0, sizeof (params)); - inst_get_params (cfg, inst, params, sizeof (params)); + graph_get_params (cfg, params, sizeof (params)); html_escape_buffer (params, sizeof (params)); - memset (desc, 0, sizeof (desc)); - inst_describe (cfg, inst, desc, sizeof (desc)); - html_escape_buffer (desc, sizeof (desc)); - - printf ("
    • %s
    • \n", - script_name (), params, desc); - - if (data->limit > 0) - data->limit--; - - /* Abort scan if limit is reached. */ - if (data->limit == 0) - return (1); + 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 list_graphs_html (const char *term) /* {{{ */ +static int print_all_graphs (__attribute__((unused)) void *user_data) /* {{{ */ { - callback_data_t data = { NULL, /* limit = */ 20 }; - char *term_html; - - term_html = NULL; - if (term != NULL) - term_html = html_escape (term); - - printf ("Content-Type: text/html\n\n"); + const char *dynamic; + _Bool include_dynamic = 0; - printf ("\n \n"); - if (term != NULL) - printf (" c4: Graphs matching "%s"\n", term); - else - printf (" c4: List of all graphs\n"); - printf (" \n"); - printf (" \n \n"); - - printf ("
      \n" - " \n" - " \n" - " \n" - "
      \n", - script_name (), (term_html != NULL) ? term_html : ""); - - free (term_html); + dynamic = param ("dynamic"); + if ((dynamic != NULL) + && (strcmp ("true", dynamic) == 0)) + include_dynamic = 1; printf ("
        \n"); - if (term == NULL) - gl_instance_get_all (print_graph_inst_html, /* user_data = */ &data); - else - gl_search (term, print_graph_inst_html, /* user_data = */ &data); - - if (data.cfg != NULL) - printf ("
      \n"); - + gl_graph_get_all (include_dynamic, print_one_graph, /* user_data = */ NULL); printf ("
    \n"); - printf (" \n\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]; - gl_update (); + strncpy (title, "List of all graphs", sizeof (title)); + title[sizeof (title) - 1] = 0; - format = param ("format"); - if (format == NULL) - format = "html"; + pg_callbacks.top_right = html_print_search_box; + pg_callbacks.middle_left = left_menu; + pg_callbacks.middle_center = print_all_graphs; - if (strcmp ("json", format) == 0) - return (list_graphs_json ()); - else - return (list_graphs_html (param ("search"))); + html_print_page (title, &pg_callbacks, /* user data = */ NULL); + + return (0); } /* }}} int action_list_graphs */ /* vim: set sw=2 sts=2 et fdm=marker : */