share/collection.js: Add legend label formatter.
[collection4.git] / share / collection.js
1 /**
2  * collection4 - collection.js
3  * Copyright (C) 2010  Florian octo Forster
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  * 
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA  02110-1301  USA
19  *
20  * Authors:
21  *   Florian octo Forster <ff at octo.it>
22  **/
23
24 var c4 =
25 {
26   instances: []
27 };
28
29 function value_to_string (value) /* {{{ */
30 {
31   var abs_value;
32   var v2s = function (value)
33   {
34     var tmp = Math.round (100.0 * value) / 100.0;
35     return ("" + tmp);
36   }
37
38   if (value == null)
39     return ('NaN');
40   else if (value == 0)
41     return ('0');
42
43   abs_value = Math.abs (value);
44
45   if ((abs_value < 10000) && (abs_value >= 0.1))
46     return (v2s (value));
47   else if (abs_value > 1)
48   {
49     if (abs_value < 10000000)
50       return (v2s (value / 1000) + "k");
51     else if (abs_value < 10000000000)
52       return (v2s (value / 1000000) + "M");
53     else if (abs_value < 10000000000000)
54       return (v2s (value / 1000000000) + "G");
55     else
56       return (v2s (value / 1000000000000) + "T");
57   }
58   else
59   {
60     if (abs_value >= 0.001)
61       return (v2s (value * 1000) + "m");
62     else if (abs_value >= 0.000001)
63       return (v2s (value * 1000000) + "u");
64     else
65       return (v2s (value * 1000000000) + "n");
66   }
67 } /* }}} function value_to_string */
68
69 function instance_get_params (inst) /* {{{ */
70 {
71   var graph_selector = inst.graph_selector;
72   var inst_selector = inst.instance_selector;
73   var selector = {};
74
75   if (graph_selector.host == inst_selector.host)
76   {
77     selector.host = graph_selector.host;
78   }
79   else
80   {
81     selector.graph_host = graph_selector.host;
82     selector.inst_host = inst_selector.host;
83   }
84
85   if (graph_selector.plugin == inst_selector.plugin)
86   {
87     selector.plugin = graph_selector.plugin;
88   }
89   else
90   {
91     selector.graph_plugin = graph_selector.plugin;
92     selector.inst_plugin = inst_selector.plugin;
93   }
94
95   if (graph_selector.plugin_instance == inst_selector.plugin_instance)
96   {
97     selector.plugin_instance = graph_selector.plugin_instance;
98   }
99   else
100   {
101     selector.graph_plugin_instance = graph_selector.plugin_instance;
102     selector.inst_plugin_instance = inst_selector.plugin_instance;
103   }
104
105   if (graph_selector.type == inst_selector.type)
106   {
107     selector.type = graph_selector.type;
108   }
109   else
110   {
111     selector.graph_type = graph_selector.type;
112     selector.inst_type = inst_selector.type;
113   }
114
115   if (graph_selector.type_instance == inst_selector.type_instance)
116   {
117     selector.type_instance = graph_selector.type_instance;
118   }
119   else
120   {
121     selector.graph_type_instance = graph_selector.type_instance;
122     selector.inst_type_instance = inst_selector.type_instance;
123   }
124
125   return (selector);
126 } /* }}} instance_get_params */
127
128 function ident_clone (ident) /* {{{ */
129 {
130   var ret = {};
131
132   ret.host = ident.host;
133   ret.plugin = ident.plugin;
134   ret.plugin_instance = ident.plugin_instance;
135   ret.type = ident.type;
136   ret.type_instance = ident.type_instance;
137
138   return (ret);
139 } /* }}} ident_clone */
140
141 function inst_get_defs (inst) /* {{{ */
142 {
143   if (!inst.def)
144   {
145     var params = instance_get_params (inst);
146     params.action = "graph_def_json";
147
148     $.ajax({
149       url: "collection.fcgi",
150       async: false,
151       dataType: 'json',
152       data: params,
153       success: function (data)
154       {
155         if (!data)
156           return;
157
158         inst.def = data;
159       }});
160   }
161
162   if (inst.def)
163     return (inst.def);
164   return;
165 } /* }}} inst_get_defs */
166
167 function ident_matches (selector, ident) /* {{{ */
168 {
169   var part_matches = function (s,p)
170   {
171     if (s == null)
172       return (false);
173
174     if ((s == "/any/") || (s == "/all/"))
175       return (true);
176
177     if (p == null)
178       return (false);
179
180     if (s == p)
181       return (true);
182
183     return (false);
184   };
185
186   if (!part_matches (selector.host, ident.host))
187     return (false);
188
189   if (!part_matches (selector.plugin, ident.plugin))
190     return (false);
191
192   if (!part_matches (selector.plugin_instance, ident.plugin_instance))
193     return (false);
194
195   if (!part_matches (selector.type, ident.type))
196     return (false);
197
198   if (!part_matches (selector.type_instance, ident.type_instance))
199     return (false);
200
201   return (true);
202 } /* }}} function ident_matches */
203
204 function ident_describe (ident, selector) /* {{{ */
205 {
206   var ret = "";
207   var check_field = function (field)
208   {
209     if (ident[field].toLowerCase () != selector[field].toLowerCase ())
210     {
211       if (ret != "")
212         ret += "/";
213       ret += ident[field];
214     }
215   };
216
217   check_field ("host");
218   check_field ("plugin");
219   check_field ("plugin_instance");
220   check_field ("type");
221   check_field ("type_instance");
222
223   if (ret == "")
224     return (null);
225   return (ret);
226 } /* }}} function ident_describe */
227
228 function def_draw_one (def, data, chart_opts) /* {{{ */
229 {
230   var chart_series = new Object ();
231
232   chart_series.type = 'line';
233   chart_series.pointInterval = data.interval * 1000;
234   chart_series.pointStart = data.first_value_time * 1000;
235   chart_series.data = data.data;
236   chart_series.lineWidth = 1;
237   chart_series.shadow = false;
238   chart_series.marker = { enabled: false };
239
240   if (def.legend)
241     chart_series.name = def.legend;
242   else if (def.ds_name)
243     chart_series.name = def.ds_name;
244
245   if (def.area)
246     chart_series.type = 'area';
247
248   if (def.stack)
249     chart_series.stacking = 'normal';
250
251   if ((def.color) && (def.color != 'random'))
252     chart_series.color = def.color;
253
254   chart_opts.series.push (chart_series);
255 } /* }}} function def_draw_one */
256
257 function def_draw (def, data_list, chart_opts) /* {{{ */
258 {
259   var i;
260
261   for (i = 0; i < data_list.length; i++)
262   {
263     if ((def.ds_name) && (def.ds_name != data_list[i].data_source))
264       continue;
265     if (!ident_matches (def.select, data_list[i].file))
266       continue;
267
268     def_draw_one (def, data_list[i], chart_opts);
269   }
270 } /* }}} function def_draw */
271
272 function instance_draw (inst, def, data_list) /* {{{ */
273 {
274   var x_data = [];
275   var y_data = [];
276   var i;
277
278   var chart_opts = new Object ();
279
280   if (!inst || !def || !data_list)
281     return;
282
283   chart_opts.chart =
284   {
285     renderTo: inst.container,
286     zoomType: 'x'
287   };
288   chart_opts.xAxis =
289   {
290     type: 'datetime',
291     maxZoom: 300, // five minutes
292     title: { text: null }
293   };
294   chart_opts.yAxis =
295   {
296     labels:
297     {
298       formatter: function () { return (value_to_string (this.value)); }
299     },
300     endOnTick: false
301   };
302   chart_opts.legend =
303   {
304     labelFormatter: function ()
305     {
306       var series = this;
307       var min = Number.MAX_VALUE;
308       var max = Number.NEGATIVE_INFINITY;
309       var num = 0;
310       var sum = 0;
311       var avg;
312       var i;
313
314       for (i = 0; i < this.data.length; i++)
315       {
316         var v;
317
318         v = this.data[i].y;
319         if (v == null)
320           continue;
321
322         if (min > v)
323           min = v;
324         if (max < v)
325           max = v;
326
327         sum += v;
328         num++;
329       }
330
331       if (num == 0)
332       {
333         min = null;
334         max = null;
335         avg = null;
336       }
337       else
338       {
339         avg = sum / num;
340       }
341
342       return (this.name + " (" + value_to_string (min) + " min, "
343           + value_to_string (avg) + " avg, "
344           + value_to_string (max) + " max)");
345     }
346   };
347   chart_opts.series = new Array ();
348
349   if (def.title)
350     chart_opts.title = { text: def.title };
351
352   for (i = def.defs.length - 1; i >= 0; i--)
353     def_draw (def.defs[i], data_list, chart_opts);
354
355 //  if ((def.defs.length == 0) && (data_list.length == 1))
356 //    def_draw_one (null, data_list[0], chart_opts);
357
358   inst.chart = new Highcharts.Chart (chart_opts);
359 } /* }}} function instance_draw */
360
361 function json_graph_update (index) /* {{{ */
362 {
363   var inst;
364   var def;
365   var params;
366
367   inst = c4.instances[index];
368   if (!inst)
369     return;
370
371   def = inst_get_defs (inst);
372   if (!def)
373     return;
374
375   if (!inst.container)
376     inst.container = "c4-graph" + index;
377
378   params = instance_get_params (inst);
379   params.action = "instance_data_json";
380   params.begin = inst.begin;
381   params.end = inst.end;
382
383   $.getJSON ("collection.fcgi", params,
384       function (data)
385       {
386         instance_draw (inst, def, data);
387       }); /* getJSON */
388 } /* }}} json_graph_update */
389
390 function format_instance(inst)
391 {
392   return ("<li class=\"instance\"><a href=\"" + location.pathname
393       + "?action=show_instance;" + inst.params + "\">" + inst.description
394       + "</a></li>");
395 }
396
397 function format_instance_list(instances)
398 {
399   var ret = "<ul class=\"instance_list\">";
400   var i;
401
402   if (instances.length == 0)
403     return ("");
404
405   for (i = 0; i < instances.length; i++)
406     ret += format_instance (instances[i]);
407   
408   ret += "</ul>";
409
410   return (ret);
411 }
412
413 function format_graph(graph)
414 {
415   return ("<li class=\"graph\">" + graph.title + format_instance_list (graph.instances) + "</li>");
416 }
417
418 function update_search_suggestions ()
419 {
420   var term = $("#search-input").val ();
421   if (term.length < 2)
422   {
423     $("#search-suggest").hide ();
424     return (true);
425   }
426
427   $("#search-suggest").show ();
428   $.getJSON ("collection.fcgi",
429     { "action": "search_json", "q": term},
430     function(data)
431     {
432       var i;
433       $("#search-suggest").html ("");
434       for (i = 0; i < data.length; i++)
435       {
436         var graph = data[i];
437         $("#search-suggest").append (format_graph (graph));
438       }
439     }
440   );
441 } /* update_search_suggestions */
442
443 function zoom_redraw (jq_obj) /* {{{ */
444 {
445   var url = jq_obj.data ("base_url");
446
447   if ((jq_obj == null) || (url == null))
448     return (false);
449
450   if (jq_obj.data ('begin') != null)
451     url += ";begin=" + jq_obj.data ('begin');
452   if (jq_obj.data ('end') != null)
453     url += ";end=" + jq_obj.data ('end');
454
455   jq_obj.attr ("src", url);
456   return (true);
457 } /* }}} function zoom_redraw */
458
459 function zoom_reset (graph_id, diff) /* {{{ */
460 {
461   var jq_obj;
462   var end;
463   var begin;
464
465   jq_obj = $("#" + graph_id);
466   if (jq_obj == null)
467     return (false);
468
469   end = new Number ((new Date ()).getTime () / 1000);
470   begin = new Number (end - diff);
471
472   jq_obj.data ('begin', begin.toFixed (0));
473   jq_obj.data ('end', end.toFixed (0));
474
475   return (zoom_redraw (jq_obj));
476 } /* }}} function zoom_reset */
477
478 function zoom_hour (graph_id) /* {{{ */
479 {
480   zoom_reset (graph_id, 3600);
481 } /* }}} function zoom_hour */
482
483 function zoom_day (graph_id) /* {{{ */
484 {
485   zoom_reset (graph_id, 86400);
486 } /* }}} function zoom_day */
487
488 function zoom_week (graph_id) /* {{{ */
489 {
490   zoom_reset (graph_id, 7 * 86400);
491 } /* }}} function zoom_week */
492
493 function zoom_month (graph_id) /* {{{ */
494 {
495   zoom_reset (graph_id, 31 * 86400);
496 } /* }}} function zoom_month */
497
498 function zoom_year (graph_id) /* {{{ */
499 {
500   zoom_reset (graph_id, 366 * 86400);
501 } /* }}} function zoom_year */
502
503 function zoom_relative (graph_id, factor_begin, factor_end) /* {{{ */
504 {
505   var jq_obj;
506   var end;
507   var begin;
508   var diff;
509
510   jq_obj = $("#" + graph_id);
511   if (jq_obj == null)
512     return (false);
513
514   begin = jq_obj.data ('begin');
515   end = jq_obj.data ('end');
516   if ((begin == null) || (end == null))
517     return (zoom_day (graph_id));
518
519   begin = new Number (begin);
520   end = new Number (end);
521
522   diff = end - begin;
523   if ((diff <= 300) && (factor_begin > 0.0) && (factor_end < 0.0))
524     return (true);
525
526   jq_obj.data ('begin', begin + (diff * factor_begin));
527   jq_obj.data ('end', end + (diff * factor_end));
528
529   return (zoom_redraw (jq_obj));
530 } /* }}} function zoom_relative */
531
532 function zoom_reference (graph_id) /* {{{ */
533 {
534   var jq_obj;
535   var end;
536   var begin;
537
538   jq_obj = $("#" + graph_id);
539   if (jq_obj == null)
540     return (false);
541
542   begin = jq_obj.data ('begin');
543   end = jq_obj.data ('end');
544   if ((begin == null) || (end == null))
545     return (false);
546
547   $(".graph-img img").each (function ()
548   {
549     $(this).data ('begin', begin);
550     $(this).data ('end', end);
551     zoom_redraw ($(this));
552   });
553 } /* }}} function zoom_reference */
554
555 function zoom_earlier (graph_id) /* {{{ */
556 {
557   return (zoom_relative (graph_id, -0.2, -0.2));
558 } /* }}} function zoom_earlier */
559
560 function zoom_later (graph_id) /* {{{ */
561 {
562   return (zoom_relative (graph_id, +0.2, +0.2));
563 } /* }}} function zoom_later */
564
565 function zoom_in (graph_id) /* {{{ */
566 {
567   return (zoom_relative (graph_id, +0.2, -0.2));
568 } /* }}} function zoom_earlier */
569
570 function zoom_out (graph_id) /* {{{ */
571 {
572   return (zoom_relative (graph_id, (-1.0 / 3.0), (1.0 / 3.0)));
573 } /* }}} function zoom_earlier */
574
575 $(document).ready(function() {
576     /* $("#layout-middle-right").html ("<ul id=\"search-suggest\" class=\"graph_list\"></ul>"); */
577     $("#search-form").append ("<ul id=\"search-suggest\" class=\"graph_list\"></ul>");
578     $("#search-suggest").hide ();
579
580     $("#search-input").blur (function()
581     {
582       window.setTimeout (function ()
583       {
584         $("#search-suggest").hide ();
585       }, 500);
586     });
587
588     $("#search-input").focus (function()
589     {
590       var term = $("#search-input").val ();
591       if (term.length < 2)
592       {
593         $("#search-suggest").hide ();
594       }
595       else
596       {
597         $("#search-suggest").show ();
598       }
599     });
600
601     $("#search-input").keyup (function()
602     {
603       update_search_suggestions ();
604     });
605
606     var graph_count = 0;
607     $(".graph-img").each (function (index, elem)
608     {
609       var id = "graph" + graph_count;
610       graph_count++;
611
612       $(this).find ("img").each (function (img_index, img_elem)
613       {
614         var base_url;
615
616         $(this).attr ("id", id);
617
618         base_url = $(this).attr ("src").replace (/;(begin|end)=[^;]*/g, '');
619         $(this).data ("base_url", base_url);
620       });
621
622       $(this).append ("<div class=\"graph-buttons presets\">"
623         + "<div class=\"graph-button\" onClick=\"zoom_hour  ('"+id+"');\">H</div>"
624         + "<div class=\"graph-button\" onClick=\"zoom_day   ('"+id+"');\">D</div>"
625         + "<div class=\"graph-button\" onClick=\"zoom_week  ('"+id+"');\">W</div>"
626         + "<div class=\"graph-button\" onClick=\"zoom_month ('"+id+"');\">M</div>"
627         + "<div class=\"graph-button\" onClick=\"zoom_year  ('"+id+"');\">Y</div>"
628         + "<div class=\"graph-button\" onClick=\"zoom_reference ('"+id+"');\">!</div>"
629         + "</div>"
630         + "<div class=\"graph-buttons navigation\">"
631         + "<div class=\"graph-button\" onClick=\"zoom_earlier ('"+id+"');\">←</div>"
632         + "<div class=\"graph-button\" onClick=\"zoom_out     ('"+id+"');\">−</div>"
633         + "<div class=\"graph-button\" onClick=\"zoom_in      ('"+id+"');\">+</div>"
634         + "<div class=\"graph-button\" onClick=\"zoom_later   ('"+id+"');\">→</div>"
635         + "</div>"
636         );
637     });
638
639     var i;
640     for (i = 0; i < c4.instances.length; i++)
641     {
642       json_graph_update (i);
643     }
644 });
645
646 /* vim: set sw=2 sts=2 et fdm=marker : */