share/collection.js: Implement fetching of more detailed data …
[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, series_array) /* {{{ */
229 {
230   var chart_series = new Object ();
231
232   chart_series.type = 'line';
233   chart_series.pointInterval = data.interval * 1000.0;
234   chart_series.pointStart = data.first_value_time * 1000.0;
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   series_array.push (chart_series);
255 } /* }}} function def_draw_one */
256
257 function def_draw (def, data_list, series_array) /* {{{ */
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], series_array);
269   }
270 } /* }}} function def_draw */
271
272 function inst_get_chart_opts (inst, def) /* {{{ */
273 {
274   var chart_opts = new Object ();
275
276   chart_opts.chart =
277   {
278     renderTo: inst.container,
279     zoomType: 'x'
280   };
281   chart_opts.xAxis =
282   {
283     type: 'datetime',
284     maxZoom: 300, // five minutes
285     title: { text: null },
286     events:
287     {
288       setExtremes: function (event)
289       {
290         var begin = null;
291         var end   = null;
292
293         if ((event.min) && (event.max))
294         {
295           begin = event.min / 1000.0;
296           end   = event.max / 1000.0;
297         }
298         inst_fetch_data (inst, begin, end);
299       }
300     }
301   };
302   chart_opts.yAxis =
303   {
304     labels:
305     {
306       formatter: function () { return (value_to_string (this.value)); }
307     },
308     startOnTick: false,
309     endOnTick: false
310   };
311   chart_opts.legend =
312   {
313     labelFormatter: function ()
314     {
315       var series = this;
316       var min = Number.MAX_VALUE;
317       var max = Number.NEGATIVE_INFINITY;
318       var num = 0;
319       var sum = 0;
320       var avg;
321       var i;
322
323       for (i = 0; i < this.data.length; i++)
324       {
325         var v;
326
327         v = this.data[i].y;
328         if (v == null)
329           continue;
330
331         if (min > v)
332           min = v;
333         if (max < v)
334           max = v;
335
336         sum += v;
337         num++;
338       }
339
340       if (num == 0)
341       {
342         min = null;
343         max = null;
344         avg = null;
345       }
346       else
347       {
348         avg = sum / num;
349       }
350
351       return (this.name + " (" + value_to_string (min) + " min, "
352           + value_to_string (avg) + " avg, "
353           + value_to_string (max) + " max)");
354     }
355   };
356   chart_opts.series = new Array ();
357
358   if (def.title)
359     chart_opts.title = { text: def.title };
360
361   return (chart_opts);
362 } /* }}} function chart_opts_get */
363
364 function inst_draw (inst, def, data_list) /* {{{ */
365 {
366   var chart_opts;
367   var i;
368
369   if (!inst || !def || !data_list)
370     return;
371
372   chart_opts = inst_get_chart_opts (inst, def);
373
374   for (i = def.defs.length - 1; i >= 0; i--)
375     def_draw (def.defs[i], data_list, chart_opts.series);
376
377   inst.chart = new Highcharts.Chart (chart_opts);
378 } /* }}} function inst_draw */
379
380 function inst_redraw (inst, def, data_list) /* {{{ */
381 {
382   var series_array;
383   var i;
384
385   if (!inst.chart)
386     return (inst_draw (inst, def, data_list));
387
388   series_array = new Array ();
389   for (i = def.defs.length - 1; i >= 0; i--)
390     def_draw (def.defs[i], data_list, series_array);
391
392   if (inst.chart.series.length != series_array.length)
393   {
394     alert ("inst.chart.series.length != series_array.length");
395     return;
396   }
397
398   for (i = inst.chart.series.length - 1; i >= 0; i--)
399     inst.chart.series[i].remove (/* redraw = */ false);
400
401   for (i = 0; i < series_array.length; i++)
402     inst.chart.addSeries (series_array[i], /* redraw = */ false);
403
404   inst.chart.redraw ();
405 } /* }}} function inst_redraw */
406
407 function inst_fetch_data (inst, begin, end) /* {{{ */
408 {
409   var def;
410   var params;
411
412   def = inst_get_defs (inst);
413   if (!def)
414     return;
415
416   params = instance_get_params (inst);
417   params.action = "instance_data_json";
418   params.begin = begin || inst.begin;
419   params.end = end || inst.end;
420
421   $.getJSON ("collection.fcgi", params,
422       function (data)
423       {
424         inst_redraw (inst, def, data);
425       }); /* getJSON */
426 } /* }}} inst_fetch_data */
427
428 function json_graph_update (index) /* {{{ */
429 {
430   var inst;
431
432   inst = c4.instances[index];
433   if (!inst)
434     return;
435
436   if (!inst.container)
437     inst.container = "c4-graph" + index;
438
439   inst_fetch_data (inst);
440 } /* }}} json_graph_update */
441
442 function format_instance(inst)
443 {
444   return ("<li class=\"instance\"><a href=\"" + location.pathname
445       + "?action=show_instance;" + inst.params + "\">" + inst.description
446       + "</a></li>");
447 }
448
449 function format_instance_list(instances)
450 {
451   var ret = "<ul class=\"instance_list\">";
452   var i;
453
454   if (instances.length == 0)
455     return ("");
456
457   for (i = 0; i < instances.length; i++)
458     ret += format_instance (instances[i]);
459   
460   ret += "</ul>";
461
462   return (ret);
463 }
464
465 function format_graph(graph)
466 {
467   return ("<li class=\"graph\">" + graph.title + format_instance_list (graph.instances) + "</li>");
468 }
469
470 function update_search_suggestions ()
471 {
472   var term = $("#search-input").val ();
473   if (term.length < 2)
474   {
475     $("#search-suggest").hide ();
476     return (true);
477   }
478
479   $("#search-suggest").show ();
480   $.getJSON ("collection.fcgi",
481     { "action": "search_json", "q": term},
482     function(data)
483     {
484       var i;
485       $("#search-suggest").html ("");
486       for (i = 0; i < data.length; i++)
487       {
488         var graph = data[i];
489         $("#search-suggest").append (format_graph (graph));
490       }
491     }
492   );
493 } /* update_search_suggestions */
494
495 function zoom_redraw (jq_obj) /* {{{ */
496 {
497   var url = jq_obj.data ("base_url");
498
499   if ((jq_obj == null) || (url == null))
500     return (false);
501
502   if (jq_obj.data ('begin') != null)
503     url += ";begin=" + jq_obj.data ('begin');
504   if (jq_obj.data ('end') != null)
505     url += ";end=" + jq_obj.data ('end');
506
507   jq_obj.attr ("src", url);
508   return (true);
509 } /* }}} function zoom_redraw */
510
511 function zoom_reset (graph_id, diff) /* {{{ */
512 {
513   var jq_obj;
514   var end;
515   var begin;
516
517   jq_obj = $("#" + graph_id);
518   if (jq_obj == null)
519     return (false);
520
521   end = new Number ((new Date ()).getTime () / 1000);
522   begin = new Number (end - diff);
523
524   jq_obj.data ('begin', begin.toFixed (0));
525   jq_obj.data ('end', end.toFixed (0));
526
527   return (zoom_redraw (jq_obj));
528 } /* }}} function zoom_reset */
529
530 function zoom_hour (graph_id) /* {{{ */
531 {
532   zoom_reset (graph_id, 3600);
533 } /* }}} function zoom_hour */
534
535 function zoom_day (graph_id) /* {{{ */
536 {
537   zoom_reset (graph_id, 86400);
538 } /* }}} function zoom_day */
539
540 function zoom_week (graph_id) /* {{{ */
541 {
542   zoom_reset (graph_id, 7 * 86400);
543 } /* }}} function zoom_week */
544
545 function zoom_month (graph_id) /* {{{ */
546 {
547   zoom_reset (graph_id, 31 * 86400);
548 } /* }}} function zoom_month */
549
550 function zoom_year (graph_id) /* {{{ */
551 {
552   zoom_reset (graph_id, 366 * 86400);
553 } /* }}} function zoom_year */
554
555 function zoom_relative (graph_id, factor_begin, factor_end) /* {{{ */
556 {
557   var jq_obj;
558   var end;
559   var begin;
560   var diff;
561
562   jq_obj = $("#" + graph_id);
563   if (jq_obj == null)
564     return (false);
565
566   begin = jq_obj.data ('begin');
567   end = jq_obj.data ('end');
568   if ((begin == null) || (end == null))
569     return (zoom_day (graph_id));
570
571   begin = new Number (begin);
572   end = new Number (end);
573
574   diff = end - begin;
575   if ((diff <= 300) && (factor_begin > 0.0) && (factor_end < 0.0))
576     return (true);
577
578   jq_obj.data ('begin', begin + (diff * factor_begin));
579   jq_obj.data ('end', end + (diff * factor_end));
580
581   return (zoom_redraw (jq_obj));
582 } /* }}} function zoom_relative */
583
584 function zoom_reference (graph_id) /* {{{ */
585 {
586   var jq_obj;
587   var end;
588   var begin;
589
590   jq_obj = $("#" + graph_id);
591   if (jq_obj == null)
592     return (false);
593
594   begin = jq_obj.data ('begin');
595   end = jq_obj.data ('end');
596   if ((begin == null) || (end == null))
597     return (false);
598
599   $(".graph-img img").each (function ()
600   {
601     $(this).data ('begin', begin);
602     $(this).data ('end', end);
603     zoom_redraw ($(this));
604   });
605 } /* }}} function zoom_reference */
606
607 function zoom_earlier (graph_id) /* {{{ */
608 {
609   return (zoom_relative (graph_id, -0.2, -0.2));
610 } /* }}} function zoom_earlier */
611
612 function zoom_later (graph_id) /* {{{ */
613 {
614   return (zoom_relative (graph_id, +0.2, +0.2));
615 } /* }}} function zoom_later */
616
617 function zoom_in (graph_id) /* {{{ */
618 {
619   return (zoom_relative (graph_id, +0.2, -0.2));
620 } /* }}} function zoom_earlier */
621
622 function zoom_out (graph_id) /* {{{ */
623 {
624   return (zoom_relative (graph_id, (-1.0 / 3.0), (1.0 / 3.0)));
625 } /* }}} function zoom_earlier */
626
627 $(document).ready(function() {
628     /* $("#layout-middle-right").html ("<ul id=\"search-suggest\" class=\"graph_list\"></ul>"); */
629     $("#search-form").append ("<ul id=\"search-suggest\" class=\"graph_list\"></ul>");
630     $("#search-suggest").hide ();
631
632     $("#search-input").blur (function()
633     {
634       window.setTimeout (function ()
635       {
636         $("#search-suggest").hide ();
637       }, 500);
638     });
639
640     $("#search-input").focus (function()
641     {
642       var term = $("#search-input").val ();
643       if (term.length < 2)
644       {
645         $("#search-suggest").hide ();
646       }
647       else
648       {
649         $("#search-suggest").show ();
650       }
651     });
652
653     $("#search-input").keyup (function()
654     {
655       update_search_suggestions ();
656     });
657
658     var graph_count = 0;
659     $(".graph-img").each (function (index, elem)
660     {
661       var id = "graph" + graph_count;
662       graph_count++;
663
664       $(this).find ("img").each (function (img_index, img_elem)
665       {
666         var base_url;
667
668         $(this).attr ("id", id);
669
670         base_url = $(this).attr ("src").replace (/;(begin|end)=[^;]*/g, '');
671         $(this).data ("base_url", base_url);
672       });
673
674       $(this).append ("<div class=\"graph-buttons presets\">"
675         + "<div class=\"graph-button\" onClick=\"zoom_hour  ('"+id+"');\">H</div>"
676         + "<div class=\"graph-button\" onClick=\"zoom_day   ('"+id+"');\">D</div>"
677         + "<div class=\"graph-button\" onClick=\"zoom_week  ('"+id+"');\">W</div>"
678         + "<div class=\"graph-button\" onClick=\"zoom_month ('"+id+"');\">M</div>"
679         + "<div class=\"graph-button\" onClick=\"zoom_year  ('"+id+"');\">Y</div>"
680         + "<div class=\"graph-button\" onClick=\"zoom_reference ('"+id+"');\">!</div>"
681         + "</div>"
682         + "<div class=\"graph-buttons navigation\">"
683         + "<div class=\"graph-button\" onClick=\"zoom_earlier ('"+id+"');\">←</div>"
684         + "<div class=\"graph-button\" onClick=\"zoom_out     ('"+id+"');\">−</div>"
685         + "<div class=\"graph-button\" onClick=\"zoom_in      ('"+id+"');\">+</div>"
686         + "<div class=\"graph-button\" onClick=\"zoom_later   ('"+id+"');\">→</div>"
687         + "</div>"
688         );
689     });
690
691     var i;
692     for (i = 0; i < c4.instances.length; i++)
693     {
694       json_graph_update (i);
695     }
696 });
697
698 /* vim: set sw=2 sts=2 et fdm=marker : */