Merge branch 'master' of verplant.org:/var/lib/git/collection4
[collection4.git] / src / action_show_graph.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include <errno.h>
5 #include <stdint.h>
6 #include <inttypes.h>
7 #include <assert.h>
8
9 #include "action_show_graph.h"
10 #include "common.h"
11 #include "graph_ident.h"
12 #include "graph_list.h"
13 #include "utils_cgi.h"
14
15 #include <fcgiapp.h>
16 #include <fcgi_stdio.h>
17
18 #define OUTPUT_ERROR(...) do {             \
19   printf ("Content-Type: text/plain\n\n"); \
20   printf (__VA_ARGS__);                    \
21   return (0);                              \
22 } while (0)
23
24 struct show_graph_data_s
25 {
26   graph_config_t *cfg;
27   graph_instance_t *inst;
28 };
29 typedef struct show_graph_data_s show_graph_data_t;
30
31 static void show_breadcrump_field (const char *str, /* {{{ */
32     const char *field_name)
33 {
34   if ((str == NULL) || (str[0] == 0))
35     printf ("<em>none</em>");
36   else if (IS_ANY (str))
37     printf ("<em>any</em>");
38   else if (IS_ALL (str))
39     printf ("<em>all</em>");
40   else
41   {
42     char *str_html = html_escape (str);
43
44     if (field_name != NULL)
45       printf ("<a href=\"%s?action=list_graphs;q=%s:%s\">%s</a>",
46           script_name (), field_name, str_html, str_html);
47     else
48       printf ("<a href=\"%s?action=list_graphs;q=%s\">%s</a>",
49           script_name (), str_html, str_html);
50
51     free (str_html);
52   }
53 } /* }}} void show_breadcrump_field */
54
55 static int show_breadcrump (show_graph_data_t *data) /* {{{ */
56 {
57   graph_ident_t *ident;
58   char *prefix;
59
60   if (data->inst != NULL)
61   {
62     prefix = "Instance";
63     ident = inst_get_selector (data->inst);
64   }
65   else
66   {
67     prefix = "Graph";
68     ident = graph_get_selector (data->cfg);
69   }
70
71   printf ("<div class=\"breadcrump\">%s: &quot;", prefix);
72   show_breadcrump_field (ident_get_host (ident), "host");
73   printf ("&nbsp;/ ");
74   show_breadcrump_field (ident_get_plugin (ident), "plugin");
75   printf ("&nbsp;&ndash; ");
76   show_breadcrump_field (ident_get_plugin_instance (ident), NULL);
77   printf ("&nbsp;/ ");
78   show_breadcrump_field (ident_get_type (ident), "type");
79   printf ("&nbsp;&ndash; ");
80   show_breadcrump_field (ident_get_type_instance (ident), NULL);
81   printf ("&quot;</div>\n");
82
83   return (0);
84 } /* }}} int show_breadcrump */
85
86 static int show_instance_list_cb (graph_instance_t *inst, /* {{{ */
87     void *user_data)
88 {
89   show_graph_data_t *data = user_data;
90   char descr[128];
91   char params[1024];
92
93   memset (descr, 0, sizeof (descr));
94   inst_describe (data->cfg, inst, descr, sizeof (descr));
95   html_escape_buffer (descr, sizeof (descr));
96
97   if (inst == data->inst)
98   {
99     printf ("    <li class=\"instance\"><strong>%s</strong></li>\n", descr);
100     return (0);
101   }
102
103   memset (params, 0, sizeof (params));
104   inst_get_params (data->cfg, inst, params, sizeof (params));
105   html_escape_buffer (params, sizeof (params));
106
107   printf ("    <li class=\"instance\">"
108       "<a href=\"%s?action=show_graph;%s\">%s</a></li>\n",
109       script_name (), params, descr);
110
111   return (0);
112 } /* }}} int show_instance_list_cb */
113
114 static int show_instance_list (void *user_data) /* {{{ */
115 {
116   show_graph_data_t *data = user_data;
117   char title[128];
118   char params[1024];
119
120   memset (title, 0, sizeof (title));
121   graph_get_title (data->cfg, title, sizeof (title));
122   html_escape_buffer (title, sizeof (title));
123
124   memset (params, 0, sizeof (params));
125   graph_get_params (data->cfg, params, sizeof (params));
126   html_escape_buffer (params, sizeof (params));
127
128   printf ("<ul class=\"graph_list\">\n"
129       "  <li class=\"graph\"><a href=\"%s?action=show_graph;%s\">%s</a>\n"
130       "  <ul class=\"instance_list\">\n",
131       script_name (), params, title);
132
133   graph_inst_foreach (data->cfg, show_instance_list_cb, user_data);
134
135   printf ("  </ul>\n"
136       "</ul>\n");
137
138   return (0);
139 } /* }}} int show_instance_list */
140
141 static int show_instance (void *user_data) /* {{{ */
142 {
143   show_graph_data_t *data = user_data;
144   char title[128];
145   char descr[128];
146   char params[1024];
147
148   show_breadcrump (data);
149
150   memset (title, 0, sizeof (title));
151   graph_get_title (data->cfg, title, sizeof (title));
152   html_escape_buffer (title, sizeof (title));
153
154   memset (descr, 0, sizeof (descr));
155   inst_describe (data->cfg, data->inst, descr, sizeof (descr));
156   html_escape_buffer (descr, sizeof (descr));
157
158   memset (params, 0, sizeof (params));
159   inst_get_params (data->cfg, data->inst, params, sizeof (params));
160   html_escape_buffer (params, sizeof (params));
161
162   printf ("<div class=\"graph-img\"><img src=\"%s?action=graph;%s\" "
163       "title=\"%s / %s\" /></div>\n",
164       script_name (), params, title, descr);
165
166   return (0);
167 } /* }}} int show_instance */
168
169 static int show_graph (void *user_data)
170 {
171   show_graph_data_t *data = user_data;
172
173   show_breadcrump (data);
174   return (show_instance_list (user_data));
175 } /* }}} int show_graph */
176
177 int action_show_graph (void) /* {{{ */
178 {
179   page_callbacks_t pg_callbacks = PAGE_CALLBACKS_INIT;
180   show_graph_data_t pg_data;
181
182   char title[128];
183
184   pg_data.cfg = gl_graph_get_selected ();
185   if (pg_data.cfg == NULL)
186     OUTPUT_ERROR ("gl_graph_get_selected () failed.\n");
187
188   memset (title, 0, sizeof (title));
189   graph_get_title (pg_data.cfg, title, sizeof (title));
190
191   pg_data.inst = inst_get_selected (pg_data.cfg);
192   if (pg_data.inst != NULL)
193   {
194     char descr[128];
195     char html_title[128];
196
197     memset (descr, 0, sizeof (descr));
198     inst_describe (pg_data.cfg, pg_data.inst, descr, sizeof (descr));
199
200     snprintf (html_title, sizeof (html_title), "Graph \"%s / %s\"",
201         title, descr);
202     html_title[sizeof (html_title) - 1] = 0;
203
204     pg_callbacks.top_right = html_print_search_box;
205     pg_callbacks.middle_center = show_instance;
206     pg_callbacks.middle_left = show_instance_list;
207
208     html_print_page (html_title, &pg_callbacks, &pg_data);
209   }
210   else /* if (pg_data.inst == NULL) */
211   {
212     pg_callbacks.top_right = html_print_search_box;
213     pg_callbacks.middle_center = show_graph;
214
215     html_print_page (title, &pg_callbacks, &pg_data);
216   }
217
218   return (0);
219 } /* }}} int action_graph */
220
221 /* vim: set sw=2 sts=2 et fdm=marker : */