Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-sdk-app / src / main / webapp / static / fusion / raptor / dy3 / js / dygraph-utils.js
1 /**
2  * @license
3  * Copyright 2011 Dan Vanderkam (danvdk@gmail.com)
4  * MIT-licensed (http://opensource.org/licenses/MIT)
5  */
6
7 /**
8  * @fileoverview This file contains utility functions used by dygraphs. These
9  * are typically static (i.e. not related to any particular dygraph). Examples
10  * include date/time formatting functions, basic algorithms (e.g. binary
11  * search) and generic DOM-manipulation functions.
12  */
13
14 /*jshint globalstrict: true */
15 /*global Dygraph:false, G_vmlCanvasManager:false, Node:false, printStackTrace: false */
16 "use strict";
17
18 Dygraph.LOG_SCALE = 10;
19 Dygraph.LN_TEN = Math.log(Dygraph.LOG_SCALE);
20
21 /**
22  * @private
23  * @param {number} x
24  * @return {number}
25  */
26 Dygraph.log10 = function(x) {
27   return Math.log(x) / Dygraph.LN_TEN;
28 };
29
30 // Various logging levels.
31 Dygraph.DEBUG = 1;
32 Dygraph.INFO = 2;
33 Dygraph.WARNING = 3;
34 Dygraph.ERROR = 3;
35
36 // Set this to log stack traces on warnings, etc.
37 // This requires stacktrace.js, which is up to you to provide.
38 // A copy can be found in the dygraphs repo, or at
39 // https://github.com/eriwen/javascript-stacktrace
40 Dygraph.LOG_STACK_TRACES = false;
41
42 /** A dotted line stroke pattern. */
43 Dygraph.DOTTED_LINE = [2, 2];
44 /** A dashed line stroke pattern. */
45 Dygraph.DASHED_LINE = [7, 3];
46 /** A dot dash stroke pattern. */
47 Dygraph.DOT_DASH_LINE = [7, 2, 2, 2];
48
49 /**
50  * Log an error on the JS console at the given severity.
51  * @param {number} severity One of Dygraph.{DEBUG,INFO,WARNING,ERROR}
52  * @param {string} message The message to log.
53  * @private
54  */
55 Dygraph.log = function(severity, message) {
56   var st;
57   if (typeof(printStackTrace) != 'undefined') {
58     try {
59       // Remove uninteresting bits: logging functions and paths.
60       st = printStackTrace({guess:false});
61       while (st[0].indexOf("stacktrace") != -1) {
62         st.splice(0, 1);
63       }
64
65       st.splice(0, 2);
66       for (var i = 0; i < st.length; i++) {
67         st[i] = st[i].replace(/\([^)]*\/(.*)\)/, '@$1')
68             .replace(/\@.*\/([^\/]*)/, '@$1')
69             .replace('[object Object].', '');
70       }
71       var top_msg = st.splice(0, 1)[0];
72       message += ' (' + top_msg.replace(/^.*@ ?/, '') + ')';
73     } catch(e) {
74       // Oh well, it was worth a shot!
75     }
76   }
77
78   if (typeof(window.console) != 'undefined') {
79     // In older versions of Firefox, only console.log is defined.
80     var console = window.console;
81     var log = function(console, method, msg) {
82       if (method && typeof(method) == 'function') {
83         method.call(console, msg);
84       } else {
85         console.log(msg);
86       }
87     };
88
89     switch (severity) {
90       case Dygraph.DEBUG:
91         log(console, console.debug, 'dygraphs: ' + message);
92         break;
93       case Dygraph.INFO:
94         log(console, console.info, 'dygraphs: ' + message);
95         break;
96       case Dygraph.WARNING:
97         log(console, console.warn, 'dygraphs: ' + message);
98         break;
99       case Dygraph.ERROR:
100         log(console, console.error, 'dygraphs: ' + message);
101         break;
102     }
103   }
104
105   if (Dygraph.LOG_STACK_TRACES) {
106     window.console.log(st.join('\n'));
107   }
108 };
109
110 /**
111  * @param {string} message
112  * @private
113  */
114 Dygraph.info = function(message) {
115   Dygraph.log(Dygraph.INFO, message);
116 };
117 /**
118  * @param {string} message
119  * @private
120  */
121 Dygraph.prototype.info = Dygraph.info;
122
123 /**
124  * @param {string} message
125  * @private
126  */
127 Dygraph.warn = function(message) {
128   Dygraph.log(Dygraph.WARNING, message);
129 };
130 /**
131  * @param {string} message
132  * @private
133  */
134 Dygraph.prototype.warn = Dygraph.warn;
135
136 /**
137  * @param {string} message
138  */
139 Dygraph.error = function(message) {
140   Dygraph.log(Dygraph.ERROR, message);
141 };
142 /**
143  * @param {string} message
144  * @private
145  */
146 Dygraph.prototype.error = Dygraph.error;
147
148 /**
149  * Return the 2d context for a dygraph canvas.
150  *
151  * This method is only exposed for the sake of replacing the function in
152  * automated tests, e.g.
153  *
154  * var oldFunc = Dygraph.getContext();
155  * Dygraph.getContext = function(canvas) {
156  *   var realContext = oldFunc(canvas);
157  *   return new Proxy(realContext);
158  * };
159  * @param {!HTMLCanvasElement} canvas
160  * @return {!CanvasRenderingContext2D}
161  * @private
162  */
163 Dygraph.getContext = function(canvas) {
164   return /** @type{!CanvasRenderingContext2D}*/(canvas.getContext("2d"));
165 };
166
167 /**
168  * Add an event handler. This smooths a difference between IE and the rest of
169  * the world.
170  * @param { !Element } elem The element to add the event to.
171  * @param { string } type The type of the event, e.g. 'click' or 'mousemove'.
172  * @param { function(Event):(boolean|undefined) } fn The function to call
173  *     on the event. The function takes one parameter: the event object.
174  * @private
175  */
176 Dygraph.addEvent = function addEvent(elem, type, fn) {
177   if (elem.addEventListener) {
178     elem.addEventListener(type, fn, false);
179   } else {
180     elem[type+fn] = function(){fn(window.event);};
181     elem.attachEvent('on'+type, elem[type+fn]);
182   }
183 };
184
185 /**
186  * Add an event handler. This event handler is kept until the graph is
187  * destroyed with a call to graph.destroy().
188  *
189  * @param { !Element } elem The element to add the event to.
190  * @param { string } type The type of the event, e.g. 'click' or 'mousemove'.
191  * @param { function(Event):(boolean|undefined) } fn The function to call
192  *     on the event. The function takes one parameter: the event object.
193  * @private
194  */
195 Dygraph.prototype.addAndTrackEvent = function(elem, type, fn) {
196   Dygraph.addEvent(elem, type, fn);
197   this.registeredEvents_.push({ elem : elem, type : type, fn : fn });
198 };
199
200 /**
201  * Remove an event handler. This smooths a difference between IE and the rest
202  * of the world.
203  * @param {!Element} elem The element to add the event to.
204  * @param {string} type The type of the event, e.g. 'click' or 'mousemove'.
205  * @param {function(Event):(boolean|undefined)} fn The function to call
206  *     on the event. The function takes one parameter: the event object.
207  * @private
208  */
209 Dygraph.removeEvent = function(elem, type, fn) {
210   if (elem.removeEventListener) {
211     elem.removeEventListener(type, fn, false);
212   } else {
213     try {
214       elem.detachEvent('on'+type, elem[type+fn]);
215     } catch(e) {
216       // We only detach event listeners on a "best effort" basis in IE. See:
217       // http://stackoverflow.com/questions/2553632/detachevent-not-working-with-named-inline-functions
218     }
219     elem[type+fn] = null;
220   }
221 };
222
223 Dygraph.prototype.removeTrackedEvents_ = function() {
224   if (this.registeredEvents_) {
225     for (var idx = 0; idx < this.registeredEvents_.length; idx++) {
226       var reg = this.registeredEvents_[idx];
227       Dygraph.removeEvent(reg.elem, reg.type, reg.fn);
228     }
229   }
230
231   this.registeredEvents_ = [];
232 };
233
234 /**
235  * Cancels further processing of an event. This is useful to prevent default
236  * browser actions, e.g. highlighting text on a double-click.
237  * Based on the article at
238  * http://www.switchonthecode.com/tutorials/javascript-tutorial-the-scroll-wheel
239  * @param { !Event } e The event whose normal behavior should be canceled.
240  * @private
241  */
242 Dygraph.cancelEvent = function(e) {
243   e = e ? e : window.event;
244   if (e.stopPropagation) {
245     e.stopPropagation();
246   }
247   if (e.preventDefault) {
248     e.preventDefault();
249   }
250   e.cancelBubble = true;
251   e.cancel = true;
252   e.returnValue = false;
253   return false;
254 };
255
256 /**
257  * Convert hsv values to an rgb(r,g,b) string. Taken from MochiKit.Color. This
258  * is used to generate default series colors which are evenly spaced on the
259  * color wheel.
260  * @param { number } hue Range is 0.0-1.0.
261  * @param { number } saturation Range is 0.0-1.0.
262  * @param { number } value Range is 0.0-1.0.
263  * @return { string } "rgb(r,g,b)" where r, g and b range from 0-255.
264  * @private
265  */
266 Dygraph.hsvToRGB = function (hue, saturation, value) {
267   var red;
268   var green;
269   var blue;
270   if (saturation === 0) {
271     red = value;
272     green = value;
273     blue = value;
274   } else {
275     var i = Math.floor(hue * 6);
276     var f = (hue * 6) - i;
277     var p = value * (1 - saturation);
278     var q = value * (1 - (saturation * f));
279     var t = value * (1 - (saturation * (1 - f)));
280     switch (i) {
281       case 1: red = q; green = value; blue = p; break;
282       case 2: red = p; green = value; blue = t; break;
283       case 3: red = p; green = q; blue = value; break;
284       case 4: red = t; green = p; blue = value; break;
285       case 5: red = value; green = p; blue = q; break;
286       case 6: // fall through
287       case 0: red = value; green = t; blue = p; break;
288     }
289   }
290   red = Math.floor(255 * red + 0.5);
291   green = Math.floor(255 * green + 0.5);
292   blue = Math.floor(255 * blue + 0.5);
293   return 'rgb(' + red + ',' + green + ',' + blue + ')';
294 };
295
296 // The following functions are from quirksmode.org with a modification for Safari from
297 // http://blog.firetree.net/2005/07/04/javascript-find-position/
298 // http://www.quirksmode.org/js/findpos.html
299 // ... and modifications to support scrolling divs.
300
301 /**
302  * Find the x-coordinate of the supplied object relative to the left side
303  * of the page.
304  * TODO(danvk): change obj type from Node -&gt; !Node
305  * @param {Node} obj
306  * @return {number}
307  * @private
308  */
309 Dygraph.findPosX = function(obj) {
310   var curleft = 0;
311   if(obj.offsetParent) {
312     var copyObj = obj;
313     while(1) {
314       // NOTE: the if statement here is for IE8.
315       var borderLeft = "0";
316       if (window.getComputedStyle) {
317         borderLeft = window.getComputedStyle(copyObj, null).borderLeft || "0";
318       }
319       curleft += parseInt(borderLeft, 10) ;
320       curleft += copyObj.offsetLeft;
321       if(!copyObj.offsetParent) {
322         break;
323       }
324       copyObj = copyObj.offsetParent;
325     }
326   } else if(obj.x) {
327     curleft += obj.x;
328   }
329   // This handles the case where the object is inside a scrolled div.
330   while(obj && obj != document.body) {
331     curleft -= obj.scrollLeft;
332     obj = obj.parentNode;
333   }
334   return curleft;
335 };
336
337 /**
338  * Find the y-coordinate of the supplied object relative to the top of the
339  * page.
340  * TODO(danvk): change obj type from Node -&gt; !Node
341  * TODO(danvk): consolidate with findPosX and return an {x, y} object.
342  * @param {Node} obj
343  * @return {number}
344  * @private
345  */
346 Dygraph.findPosY = function(obj) {
347   var curtop = 0;
348   if(obj.offsetParent) {
349     var copyObj = obj;
350     while(1) {
351       // NOTE: the if statement here is for IE8.
352       var borderTop = "0";
353       if (window.getComputedStyle) {
354         borderTop = window.getComputedStyle(copyObj, null).borderTop || "0";
355       }
356       curtop += parseInt(borderTop, 10) ;
357       curtop += copyObj.offsetTop;
358       if(!copyObj.offsetParent) {
359         break;
360       }
361       copyObj = copyObj.offsetParent;
362     }
363   } else if(obj.y) {
364     curtop += obj.y;
365   }
366   // This handles the case where the object is inside a scrolled div.
367   while(obj && obj != document.body) {
368     curtop -= obj.scrollTop;
369     obj = obj.parentNode;
370   }
371   return curtop;
372 };
373
374 /**
375  * Returns the x-coordinate of the event in a coordinate system where the
376  * top-left corner of the page (not the window) is (0,0).
377  * Taken from MochiKit.Signal
378  * @param {!Event} e
379  * @return {number}
380  * @private
381  */
382 Dygraph.pageX = function(e) {
383   if (e.pageX) {
384     return (!e.pageX || e.pageX < 0) ? 0 : e.pageX;
385   } else {
386     var de = document.documentElement;
387     var b = document.body;
388     return e.clientX +
389         (de.scrollLeft || b.scrollLeft) -
390         (de.clientLeft || 0);
391   }
392 };
393
394 /**
395  * Returns the y-coordinate of the event in a coordinate system where the
396  * top-left corner of the page (not the window) is (0,0).
397  * Taken from MochiKit.Signal
398  * @param {!Event} e
399  * @return {number}
400  * @private
401  */
402 Dygraph.pageY = function(e) {
403   if (e.pageY) {
404     return (!e.pageY || e.pageY < 0) ? 0 : e.pageY;
405   } else {
406     var de = document.documentElement;
407     var b = document.body;
408     return e.clientY +
409         (de.scrollTop || b.scrollTop) -
410         (de.clientTop || 0);
411   }
412 };
413
414 /**
415  * This returns true unless the parameter is 0, null, undefined or NaN.
416  * TODO(danvk): rename this function to something like 'isNonZeroNan'.
417  *
418  * @param {number} x The number to consider.
419  * @return {boolean} Whether the number is zero or NaN.
420  * @private
421  */
422 Dygraph.isOK = function(x) {
423   return !!x && !isNaN(x);
424 };
425
426 /**
427  * @param { {x:?number,y:?number,yval:?number} } p The point to consider, valid
428  *     points are {x, y} objects
429  * @param { boolean } allowNaNY Treat point with y=NaN as valid
430  * @return { boolean } Whether the point has numeric x and y.
431  * @private
432  */
433 Dygraph.isValidPoint = function(p, allowNaNY) {
434   if (!p) return false;  // null or undefined object
435   if (p.yval === null) return false;  // missing point
436   if (p.x === null || p.x === undefined) return false;
437   if (p.y === null || p.y === undefined) return false;
438   if (isNaN(p.x) || (!allowNaNY && isNaN(p.y))) return false;
439   return true;
440 };
441
442 /**
443  * Number formatting function which mimicks the behavior of %g in printf, i.e.
444  * either exponential or fixed format (without trailing 0s) is used depending on
445  * the length of the generated string.  The advantage of this format is that
446  * there is a predictable upper bound on the resulting string length,
447  * significant figures are not dropped, and normal numbers are not displayed in
448  * exponential notation.
449  *
450  * NOTE: JavaScript's native toPrecision() is NOT a drop-in replacement for %g.
451  * It creates strings which are too long for absolute values between 10^-4 and
452  * 10^-6, e.g. '0.00001' instead of '1e-5'. See tests/number-format.html for
453  * output examples.
454  *
455  * @param {number} x The number to format
456  * @param {number=} opt_precision The precision to use, default 2.
457  * @return {string} A string formatted like %g in printf.  The max generated
458  *                  string length should be precision + 6 (e.g 1.123e+300).
459  */
460 Dygraph.floatFormat = function(x, opt_precision) {
461   // Avoid invalid precision values; [1, 21] is the valid range.
462   var p = Math.min(Math.max(1, opt_precision || 2), 21);
463
464   // This is deceptively simple.  The actual algorithm comes from:
465   //
466   // Max allowed length = p + 4
467   // where 4 comes from 'e+n' and '.'.
468   //
469   // Length of fixed format = 2 + y + p
470   // where 2 comes from '0.' and y = # of leading zeroes.
471   //
472   // Equating the two and solving for y yields y = 2, or 0.00xxxx which is
473   // 1.0e-3.
474   //
475   // Since the behavior of toPrecision() is identical for larger numbers, we
476   // don't have to worry about the other bound.
477   //
478   // Finally, the argument for toExponential() is the number of trailing digits,
479   // so we take off 1 for the value before the '.'.
480   return (Math.abs(x) < 1.0e-3 && x !== 0.0) ?
481       x.toExponential(p - 1) : x.toPrecision(p);
482 };
483
484 /**
485  * Converts '9' to '09' (useful for dates)
486  * @param {number} x
487  * @return {string}
488  * @private
489  */
490 Dygraph.zeropad = function(x) {
491   if (x < 10) return "0" + x; else return "" + x;
492 };
493
494 /**
495  * Return a string version of the hours, minutes and seconds portion of a date.
496  *
497  * @param {number} date The JavaScript date (ms since epoch)
498  * @return {string} A time of the form "HH:MM:SS"
499  * @private
500  */
501 Dygraph.hmsString_ = function(date) {
502   var zeropad = Dygraph.zeropad;
503   var d = new Date(date);
504   if (d.getSeconds()) {
505     return zeropad(d.getHours()) + ":" +
506            zeropad(d.getMinutes()) + ":" +
507            zeropad(d.getSeconds());
508   } else {
509     return zeropad(d.getHours()) + ":" + zeropad(d.getMinutes());
510   }
511 };
512
513 /**
514  * Round a number to the specified number of digits past the decimal point.
515  * @param {number} num The number to round
516  * @param {number} places The number of decimals to which to round
517  * @return {number} The rounded number
518  * @private
519  */
520 Dygraph.round_ = function(num, places) {
521   var shift = Math.pow(10, places);
522   return Math.round(num * shift)/shift;
523 };
524
525 /**
526  * Implementation of binary search over an array.
527  * Currently does not work when val is outside the range of arry's values.
528  * @param {number} val the value to search for
529  * @param {Array.<number>} arry is the value over which to search
530  * @param {number} abs If abs > 0, find the lowest entry greater than val
531  *     If abs < 0, find the highest entry less than val.
532  *     If abs == 0, find the entry that equals val.
533  * @param {number=} low The first index in arry to consider (optional)
534  * @param {number=} high The last index in arry to consider (optional)
535  * @return {number} Index of the element, or -1 if it isn't found.
536  * @private
537  */
538 Dygraph.binarySearch = function(val, arry, abs, low, high) {
539   if (low === null || low === undefined ||
540       high === null || high === undefined) {
541     low = 0;
542     high = arry.length - 1;
543   }
544   if (low > high) {
545     return -1;
546   }
547   if (abs === null || abs === undefined) {
548     abs = 0;
549   }
550   var validIndex = function(idx) {
551     return idx >= 0 && idx < arry.length;
552   };
553   var mid = parseInt((low + high) / 2, 10);
554   var element = arry[mid];
555   var idx;
556   if (element == val) {
557     return mid;
558   } else if (element > val) {
559     if (abs > 0) {
560       // Accept if element > val, but also if prior element < val.
561       idx = mid - 1;
562       if (validIndex(idx) && arry[idx] < val) {
563         return mid;
564       }
565     }
566     return Dygraph.binarySearch(val, arry, abs, low, mid - 1);
567   } else if (element < val) {
568     if (abs < 0) {
569       // Accept if element < val, but also if prior element > val.
570       idx = mid + 1;
571       if (validIndex(idx) && arry[idx] > val) {
572         return mid;
573       }
574     }
575     return Dygraph.binarySearch(val, arry, abs, mid + 1, high);
576   }
577   return -1;  // can't actually happen, but makes closure compiler happy
578 };
579
580 /**
581  * Parses a date, returning the number of milliseconds since epoch. This can be
582  * passed in as an xValueParser in the Dygraph constructor.
583  * TODO(danvk): enumerate formats that this understands.
584  *
585  * @param {string} dateStr A date in a variety of possible string formats.
586  * @return {number} Milliseconds since epoch.
587  * @private
588  */
589 Dygraph.dateParser = function(dateStr) {
590   var dateStrSlashed;
591   var d;
592
593   // Let the system try the format first, with one caveat:
594   // YYYY-MM-DD[ HH:MM:SS] is interpreted as UTC by a variety of browsers.
595   // dygraphs displays dates in local time, so this will result in surprising
596   // inconsistencies. But if you specify "T" or "Z" (i.e. YYYY-MM-DDTHH:MM:SS),
597   // then you probably know what you're doing, so we'll let you go ahead.
598   // Issue: http://code.google.com/p/dygraphs/issues/detail?id=255
599   if (dateStr.search("-") == -1 ||
600       dateStr.search("T") != -1 || dateStr.search("Z") != -1) {
601     d = Dygraph.dateStrToMillis(dateStr);
602     if (d && !isNaN(d)) return d;
603   }
604
605   if (dateStr.search("-") != -1) {  // e.g. '2009-7-12' or '2009-07-12'
606     dateStrSlashed = dateStr.replace("-", "/", "g");
607     while (dateStrSlashed.search("-") != -1) {
608       dateStrSlashed = dateStrSlashed.replace("-", "/");
609     }
610     d = Dygraph.dateStrToMillis(dateStrSlashed);
611   } else if (dateStr.length == 8) {  // e.g. '20090712'
612     // TODO(danvk): remove support for this format. It's confusing.
613     dateStrSlashed = dateStr.substr(0,4) + "/" + dateStr.substr(4,2) + "/" +
614         dateStr.substr(6,2);
615     d = Dygraph.dateStrToMillis(dateStrSlashed);
616   } else {
617     // Any format that Date.parse will accept, e.g. "2009/07/12" or
618     // "2009/07/12 12:34:56"
619     d = Dygraph.dateStrToMillis(dateStr);
620   }
621
622   if (!d || isNaN(d)) {
623     Dygraph.error("Couldn't parse " + dateStr + " as a date");
624   }
625   return d;
626 };
627
628 /**
629  * This is identical to JavaScript's built-in Date.parse() method, except that
630  * it doesn't get replaced with an incompatible method by aggressive JS
631  * libraries like MooTools or Joomla.
632  * @param {string} str The date string, e.g. "2011/05/06"
633  * @return {number} millis since epoch
634  * @private
635  */
636 Dygraph.dateStrToMillis = function(str) {
637   return new Date(str).getTime();
638 };
639
640 // These functions are all based on MochiKit.
641 /**
642  * Copies all the properties from o to self.
643  *
644  * @param {!Object} self
645  * @param {!Object} o
646  * @return {!Object}
647  */
648 Dygraph.update = function(self, o) {
649   if (typeof(o) != 'undefined' && o !== null) {
650     for (var k in o) {
651       if (o.hasOwnProperty(k)) {
652         self[k] = o[k];
653       }
654     }
655   }
656   return self;
657 };
658
659 /**
660  * Copies all the properties from o to self.
661  *
662  * @param {!Object} self
663  * @param {!Object} o
664  * @return {!Object}
665  * @private
666  */
667 Dygraph.updateDeep = function (self, o) {
668   // Taken from http://stackoverflow.com/questions/384286/javascript-isdom-how-do-you-check-if-a-javascript-object-is-a-dom-object
669   function isNode(o) {
670     return (
671       typeof Node === "object" ? o instanceof Node :
672       typeof o === "object" && typeof o.nodeType === "number" && typeof o.nodeName==="string"
673     );
674   }
675
676   if (typeof(o) != 'undefined' && o !== null) {
677     for (var k in o) {
678       if (o.hasOwnProperty(k)) {
679         if (o[k] === null) {
680           self[k] = null;
681         } else if (Dygraph.isArrayLike(o[k])) {
682           self[k] = o[k].slice();
683         } else if (isNode(o[k])) {
684           // DOM objects are shallowly-copied.
685           self[k] = o[k];
686         } else if (typeof(o[k]) == 'object') {
687           if (typeof(self[k]) != 'object' || self[k] === null) {
688             self[k] = {};
689           }
690           Dygraph.updateDeep(self[k], o[k]);
691         } else {
692           self[k] = o[k];
693         }
694       }
695     }
696   }
697   return self;
698 };
699
700 /**
701  * @param {Object} o
702  * @return {boolean}
703  * @private
704  */
705 Dygraph.isArrayLike = function(o) {
706   var typ = typeof(o);
707   if (
708       (typ != 'object' && !(typ == 'function' &&
709         typeof(o.item) == 'function')) ||
710       o === null ||
711       typeof(o.length) != 'number' ||
712       o.nodeType === 3
713      ) {
714     return false;
715   }
716   return true;
717 };
718
719 /**
720  * @param {Object} o
721  * @return {boolean}
722  * @private
723  */
724 Dygraph.isDateLike = function (o) {
725   if (typeof(o) != "object" || o === null ||
726       typeof(o.getTime) != 'function') {
727     return false;
728   }
729   return true;
730 };
731
732 /**
733  * Note: this only seems to work for arrays.
734  * @param {!Array} o
735  * @return {!Array}
736  * @private
737  */
738 Dygraph.clone = function(o) {
739   // TODO(danvk): figure out how MochiKit's version works
740   var r = [];
741   for (var i = 0; i < o.length; i++) {
742     if (Dygraph.isArrayLike(o[i])) {
743       r.push(Dygraph.clone(o[i]));
744     } else {
745       r.push(o[i]);
746     }
747   }
748   return r;
749 };
750
751 /**
752  * Create a new canvas element. This is more complex than a simple
753  * document.createElement("canvas") because of IE and excanvas.
754  *
755  * @return {!HTMLCanvasElement}
756  * @private
757  */
758 Dygraph.createCanvas = function() {
759   var canvas = document.createElement("canvas");
760
761   var isIE = (/MSIE/.test(navigator.userAgent) && !window.opera);
762   if (isIE && (typeof(G_vmlCanvasManager) != 'undefined')) {
763     canvas = G_vmlCanvasManager.initElement(
764         /**@type{!HTMLCanvasElement}*/(canvas));
765   }
766
767   return canvas;
768 };
769
770 /**
771  * Checks whether the user is on an Android browser.
772  * Android does not fully support the <canvas> tag, e.g. w/r/t/ clipping.
773  * @return {boolean}
774  * @private
775  */
776 Dygraph.isAndroid = function() {
777   return (/Android/).test(navigator.userAgent);
778 };
779
780
781 /**
782  * TODO(danvk): use @template here when it's better supported for classes.
783  * @param {!Array} array
784  * @param {number} start
785  * @param {number} length
786  * @param {function(!Array,?):boolean=} predicate
787  * @constructor
788  */
789 Dygraph.Iterator = function(array, start, length, predicate) {
790   start = start || 0;
791   length = length || array.length;
792   this.hasNext = true; // Use to identify if there's another element.
793   this.peek = null; // Use for look-ahead
794   this.start_ = start;
795   this.array_ = array;
796   this.predicate_ = predicate;
797   this.end_ = Math.min(array.length, start + length);
798   this.nextIdx_ = start - 1; // use -1 so initial advance works.
799   this.next(); // ignoring result.
800 };
801
802 /**
803  * @return {Object}
804  */
805 Dygraph.Iterator.prototype.next = function() {
806   if (!this.hasNext) {
807     return null;
808   }
809   var obj = this.peek;
810
811   var nextIdx = this.nextIdx_ + 1;
812   var found = false;
813   while (nextIdx < this.end_) {
814     if (!this.predicate_ || this.predicate_(this.array_, nextIdx)) {
815       this.peek = this.array_[nextIdx];
816       found = true;
817       break;
818     }
819     nextIdx++;
820   }
821   this.nextIdx_ = nextIdx;
822   if (!found) {
823     this.hasNext = false;
824     this.peek = null;
825   }
826   return obj;
827 };
828
829 /**
830  * Returns a new iterator over array, between indexes start and
831  * start + length, and only returns entries that pass the accept function
832  *
833  * @param {!Array} array the array to iterate over.
834  * @param {number} start the first index to iterate over, 0 if absent.
835  * @param {number} length the number of elements in the array to iterate over.
836  *     This, along with start, defines a slice of the array, and so length
837  *     doesn't imply the number of elements in the iterator when accept doesn't
838  *     always accept all values. array.length when absent.
839  * @param {function(?):boolean=} opt_predicate a function that takes
840  *     parameters array and idx, which returns true when the element should be
841  *     returned.  If omitted, all elements are accepted.
842  * @private
843  */
844 Dygraph.createIterator = function(array, start, length, opt_predicate) {
845   return new Dygraph.Iterator(array, start, length, opt_predicate);
846 };
847
848 // Shim layer with setTimeout fallback.
849 // From: http://paulirish.com/2011/requestanimationframe-for-smart-animating/
850 // Should be called with the window context:
851 //   Dygraph.requestAnimFrame.call(window, function() {})
852 Dygraph.requestAnimFrame = (function() {
853   return window.requestAnimationFrame       ||
854           window.webkitRequestAnimationFrame ||
855           window.mozRequestAnimationFrame    ||
856           window.oRequestAnimationFrame      ||
857           window.msRequestAnimationFrame     ||
858           function (callback) {
859             window.setTimeout(callback, 1000 / 60);
860           };
861 })();
862
863 /**
864  * Call a function at most maxFrames times at an attempted interval of
865  * framePeriodInMillis, then call a cleanup function once. repeatFn is called
866  * once immediately, then at most (maxFrames - 1) times asynchronously. If
867  * maxFrames==1, then cleanup_fn() is also called synchronously.  This function
868  * is used to sequence animation.
869  * @param {function(number)} repeatFn Called repeatedly -- takes the frame
870  *     number (from 0 to maxFrames-1) as an argument.
871  * @param {number} maxFrames The max number of times to call repeatFn
872  * @param {number} framePeriodInMillis Max requested time between frames.
873  * @param {function()} cleanupFn A function to call after all repeatFn calls.
874  * @private
875  */
876 Dygraph.repeatAndCleanup = function(repeatFn, maxFrames, framePeriodInMillis,
877     cleanupFn) {
878   var frameNumber = 0;
879   var previousFrameNumber;
880   var startTime = new Date().getTime();
881   repeatFn(frameNumber);
882   if (maxFrames == 1) {
883     cleanupFn();
884     return;
885   }
886   var maxFrameArg = maxFrames - 1;
887
888   (function loop() {
889     if (frameNumber >= maxFrames) return;
890     Dygraph.requestAnimFrame.call(window, function() {
891       // Determine which frame to draw based on the delay so far.  Will skip
892       // frames if necessary.
893       var currentTime = new Date().getTime();
894       var delayInMillis = currentTime - startTime;
895       previousFrameNumber = frameNumber;
896       frameNumber = Math.floor(delayInMillis / framePeriodInMillis);
897       var frameDelta = frameNumber - previousFrameNumber;
898       // If we predict that the subsequent repeatFn call will overshoot our
899       // total frame target, so our last call will cause a stutter, then jump to
900       // the last call immediately.  If we're going to cause a stutter, better
901       // to do it faster than slower.
902       var predictOvershootStutter = (frameNumber + frameDelta) > maxFrameArg;
903       if (predictOvershootStutter || (frameNumber >= maxFrameArg)) {
904         repeatFn(maxFrameArg);  // Ensure final call with maxFrameArg.
905         cleanupFn();
906       } else {
907         if (frameDelta !== 0) {  // Don't call repeatFn with duplicate frames.
908           repeatFn(frameNumber);
909         }
910         loop();
911       }
912     });
913   })();
914 };
915
916 /**
917  * This function will scan the option list and determine if they
918  * require us to recalculate the pixel positions of each point.
919  * @param {!Array.<string>} labels a list of options to check.
920  * @param {!Object} attrs
921  * @return {boolean} true if the graph needs new points else false.
922  * @private
923  */
924 Dygraph.isPixelChangingOptionList = function(labels, attrs) {
925   // A whitelist of options that do not change pixel positions.
926   var pixelSafeOptions = {
927     'annotationClickHandler': true,
928     'annotationDblClickHandler': true,
929     'annotationMouseOutHandler': true,
930     'annotationMouseOverHandler': true,
931     'axisLabelColor': true,
932     'axisLineColor': true,
933     'axisLineWidth': true,
934     'clickCallback': true,
935     'digitsAfterDecimal': true,
936     'drawCallback': true,
937     'drawHighlightPointCallback': true,
938     'drawPoints': true,
939     'drawPointCallback': true,
940     'drawXGrid': true,
941     'drawYGrid': true,
942     'fillAlpha': true,
943     'gridLineColor': true,
944     'gridLineWidth': true,
945     'hideOverlayOnMouseOut': true,
946     'highlightCallback': true,
947     'highlightCircleSize': true,
948     'interactionModel': true,
949     'isZoomedIgnoreProgrammaticZoom': true,
950     'labelsDiv': true,
951     'labelsDivStyles': true,
952     'labelsDivWidth': true,
953     'labelsKMB': true,
954     'labelsKMG2': true,
955     'labelsSeparateLines': true,
956     'labelsShowZeroValues': true,
957     'legend': true,
958     'maxNumberWidth': true,
959     'panEdgeFraction': true,
960     'pixelsPerYLabel': true,
961     'pointClickCallback': true,
962     'pointSize': true,
963     'rangeSelectorPlotFillColor': true,
964     'rangeSelectorPlotStrokeColor': true,
965     'showLabelsOnHighlight': true,
966     'showRoller': true,
967     'sigFigs': true,
968     'strokeWidth': true,
969     'underlayCallback': true,
970     'unhighlightCallback': true,
971     'xAxisLabelFormatter': true,
972     'xTicker': true,
973     'xValueFormatter': true,
974     'yAxisLabelFormatter': true,
975     'yValueFormatter': true,
976     'zoomCallback': true
977   };
978
979   // Assume that we do not require new points.
980   // This will change to true if we actually do need new points.
981   var requiresNewPoints = false;
982
983   // Create a dictionary of series names for faster lookup.
984   // If there are no labels, then the dictionary stays empty.
985   var seriesNamesDictionary = { };
986   if (labels) {
987     for (var i = 1; i < labels.length; i++) {
988       seriesNamesDictionary[labels[i]] = true;
989     }
990   }
991
992   // Iterate through the list of updated options.
993   for (var property in attrs) {
994     // Break early if we already know we need new points from a previous option.
995     if (requiresNewPoints) {
996       break;
997     }
998     if (attrs.hasOwnProperty(property)) {
999       // Find out of this field is actually a series specific options list.
1000       if (seriesNamesDictionary[property]) {
1001         // This property value is a list of options for this series.
1002         // If any of these sub properties are not pixel safe, set the flag.
1003         for (var subProperty in attrs[property]) {
1004           // Break early if we already know we need new points from a previous option.
1005           if (requiresNewPoints) {
1006             break;
1007           }
1008           if (attrs[property].hasOwnProperty(subProperty) && !pixelSafeOptions[subProperty]) {
1009             requiresNewPoints = true;
1010           }
1011         }
1012       // If this was not a series specific option list, check if its a pixel changing property.
1013       } else if (!pixelSafeOptions[property]) {
1014         requiresNewPoints = true;
1015       }
1016     }
1017   }
1018
1019   return requiresNewPoints;
1020 };
1021
1022 /**
1023  * Compares two arrays to see if they are equal. If either parameter is not an
1024  * array it will return false. Does a shallow compare
1025  * Dygraph.compareArrays([[1,2], [3, 4]], [[1,2], [3,4]]) === false.
1026  * @param {!Array.<T>} array1 first array
1027  * @param {!Array.<T>} array2 second array
1028  * @return {boolean} True if both parameters are arrays, and contents are equal.
1029  * @template T
1030  */
1031 Dygraph.compareArrays = function(array1, array2) {
1032   if (!Dygraph.isArrayLike(array1) || !Dygraph.isArrayLike(array2)) {
1033     return false;
1034   }
1035   if (array1.length !== array2.length) {
1036     return false;
1037   }
1038   for (var i = 0; i < array1.length; i++) {
1039     if (array1[i] !== array2[i]) {
1040       return false;
1041     }
1042   }
1043   return true;
1044 };
1045
1046 /**
1047  * @param {!CanvasRenderingContext2D} ctx the canvas context
1048  * @param {number} sides the number of sides in the shape.
1049  * @param {number} radius the radius of the image.
1050  * @param {number} cx center x coordate
1051  * @param {number} cy center y coordinate
1052  * @param {number=} rotationRadians the shift of the initial angle, in radians.
1053  * @param {number=} delta the angle shift for each line. If missing, creates a
1054  *     regular polygon.
1055  * @private
1056  */
1057 Dygraph.regularShape_ = function(
1058     ctx, sides, radius, cx, cy, rotationRadians, delta) {
1059   rotationRadians = rotationRadians || 0;
1060   delta = delta || Math.PI * 2 / sides;
1061
1062   ctx.beginPath();
1063   var initialAngle = rotationRadians;
1064   var angle = initialAngle;
1065
1066   var computeCoordinates = function() {
1067     var x = cx + (Math.sin(angle) * radius);
1068     var y = cy + (-Math.cos(angle) * radius);
1069     return [x, y];
1070   };
1071
1072   var initialCoordinates = computeCoordinates();
1073   var x = initialCoordinates[0];
1074   var y = initialCoordinates[1];
1075   ctx.moveTo(x, y);
1076
1077   for (var idx = 0; idx < sides; idx++) {
1078     angle = (idx == sides - 1) ? initialAngle : (angle + delta);
1079     var coords = computeCoordinates();
1080     ctx.lineTo(coords[0], coords[1]);
1081   }
1082   ctx.fill();
1083   ctx.stroke();
1084 };
1085
1086 /**
1087  * TODO(danvk): be more specific on the return type.
1088  * @param {number} sides
1089  * @param {number=} rotationRadians
1090  * @param {number=} delta
1091  * @return {Function}
1092  * @private
1093  */
1094 Dygraph.shapeFunction_ = function(sides, rotationRadians, delta) {
1095   return function(g, name, ctx, cx, cy, color, radius) {
1096     ctx.strokeStyle = color;
1097     ctx.fillStyle = "white";
1098     Dygraph.regularShape_(ctx, sides, radius, cx, cy, rotationRadians, delta);
1099   };
1100 };
1101
1102 Dygraph.Circles = {
1103   DEFAULT : function(g, name, ctx, canvasx, canvasy, color, radius) {
1104     ctx.beginPath();
1105     ctx.fillStyle = color;
1106     ctx.arc(canvasx, canvasy, radius, 0, 2 * Math.PI, false);
1107     ctx.fill();
1108   },
1109   TRIANGLE : Dygraph.shapeFunction_(3),
1110   SQUARE : Dygraph.shapeFunction_(4, Math.PI / 4),
1111   DIAMOND : Dygraph.shapeFunction_(4),
1112   PENTAGON : Dygraph.shapeFunction_(5),
1113   HEXAGON : Dygraph.shapeFunction_(6),
1114   CIRCLE : function(g, name, ctx, cx, cy, color, radius) {
1115     ctx.beginPath();
1116     ctx.strokeStyle = color;
1117     ctx.fillStyle = "white";
1118     ctx.arc(cx, cy, radius, 0, 2 * Math.PI, false);
1119     ctx.fill();
1120     ctx.stroke();
1121   },
1122   STAR : Dygraph.shapeFunction_(5, 0, 4 * Math.PI / 5),
1123   PLUS : function(g, name, ctx, cx, cy, color, radius) {
1124     ctx.strokeStyle = color;
1125
1126     ctx.beginPath();
1127     ctx.moveTo(cx + radius, cy);
1128     ctx.lineTo(cx - radius, cy);
1129     ctx.closePath();
1130     ctx.stroke();
1131
1132     ctx.beginPath();
1133     ctx.moveTo(cx, cy + radius);
1134     ctx.lineTo(cx, cy - radius);
1135     ctx.closePath();
1136     ctx.stroke();
1137   },
1138   EX : function(g, name, ctx, cx, cy, color, radius) {
1139     ctx.strokeStyle = color;
1140
1141     ctx.beginPath();
1142     ctx.moveTo(cx + radius, cy + radius);
1143     ctx.lineTo(cx - radius, cy - radius);
1144     ctx.closePath();
1145     ctx.stroke();
1146
1147     ctx.beginPath();
1148     ctx.moveTo(cx + radius, cy - radius);
1149     ctx.lineTo(cx - radius, cy + radius);
1150     ctx.closePath();
1151     ctx.stroke();
1152   }
1153 };
1154
1155 /**
1156  * To create a "drag" interaction, you typically register a mousedown event
1157  * handler on the element where the drag begins. In that handler, you register a
1158  * mouseup handler on the window to determine when the mouse is released,
1159  * wherever that release happens. This works well, except when the user releases
1160  * the mouse over an off-domain iframe. In that case, the mouseup event is
1161  * handled by the iframe and never bubbles up to the window handler.
1162  *
1163  * To deal with this issue, we cover iframes with high z-index divs to make sure
1164  * they don't capture mouseup.
1165  *
1166  * Usage:
1167  * element.addEventListener('mousedown', function() {
1168  *   var tarper = new Dygraph.IFrameTarp();
1169  *   tarper.cover();
1170  *   var mouseUpHandler = function() {
1171  *     ...
1172  *     window.removeEventListener(mouseUpHandler);
1173  *     tarper.uncover();
1174  *   };
1175  *   window.addEventListener('mouseup', mouseUpHandler);
1176  * };
1177  *
1178  * @constructor
1179  */
1180 Dygraph.IFrameTarp = function() {
1181   /** @type {Array.<!HTMLDivElement>} */
1182   this.tarps = [];
1183 };
1184
1185 /**
1186  * Find all the iframes in the document and cover them with high z-index
1187  * transparent divs.
1188  */
1189 Dygraph.IFrameTarp.prototype.cover = function() {
1190   var iframes = document.getElementsByTagName("iframe");
1191   for (var i = 0; i < iframes.length; i++) {
1192     var iframe = iframes[i];
1193     var x = Dygraph.findPosX(iframe),
1194         y = Dygraph.findPosY(iframe),
1195         width = iframe.offsetWidth,
1196         height = iframe.offsetHeight;
1197
1198     var div = document.createElement("div");
1199     div.style.position = "absolute";
1200     div.style.left = x + 'px';
1201     div.style.top = y + 'px';
1202     div.style.width = width + 'px';
1203     div.style.height = height + 'px';
1204     div.style.zIndex = 999;
1205     document.body.appendChild(div);
1206     this.tarps.push(div);
1207   }
1208 };
1209
1210 /**
1211  * Remove all the iframe covers. You should call this in a mouseup handler.
1212  */
1213 Dygraph.IFrameTarp.prototype.uncover = function() {
1214   for (var i = 0; i < this.tarps.length; i++) {
1215     this.tarps[i].parentNode.removeChild(this.tarps[i]);
1216   }
1217   this.tarps = [];
1218 };
1219
1220 /**
1221  * Determine whether |data| is delimited by CR, CRLF, LF, LFCR.
1222  * @param {string} data
1223  * @return {?string} the delimiter that was detected (or null on failure).
1224  */
1225 Dygraph.detectLineDelimiter = function(data) {
1226   for (var i = 0; i < data.length; i++) {
1227     var code = data.charAt(i);
1228     if (code === '\r') {
1229       // Might actually be "\r\n".
1230       if (((i + 1) < data.length) && (data.charAt(i + 1) === '\n')) {
1231         return '\r\n';
1232       }
1233       return code;
1234     }
1235     if (code === '\n') {
1236       // Might actually be "\n\r".
1237       if (((i + 1) < data.length) && (data.charAt(i + 1) === '\r')) {
1238         return '\n\r';
1239       }
1240       return code;
1241     }
1242   }
1243
1244   return null;
1245 };
1246
1247 /**
1248  * Is one node contained by another?
1249  * @param {Node} containee The contained node.
1250  * @param {Node} container The container node.
1251  * @return {boolean} Whether containee is inside (or equal to) container.
1252  * @private
1253  */
1254 Dygraph.isNodeContainedBy = function(containee, container) {
1255   if (container === null || containee === null) {
1256     return false;
1257   }
1258   var containeeNode = /** @type {Node} */ (containee);
1259   while (containeeNode && containeeNode !== container) {
1260     containeeNode = containeeNode.parentNode;
1261   }
1262   return (containeeNode === container);
1263 };
1264
1265
1266 // This masks some numeric issues in older versions of Firefox,
1267 // where 1.0/Math.pow(10,2) != Math.pow(10,-2).
1268 /** @type {function(number,number):number} */
1269 Dygraph.pow = function(base, exp) {
1270   if (exp < 0) {
1271     return 1.0 / Math.pow(base, -exp);
1272   }
1273   return Math.pow(base, exp);
1274 };
1275
1276 // For Dygraph.setDateSameTZ, below.
1277 Dygraph.dateSetters = {
1278   ms: Date.prototype.setMilliseconds,
1279   s: Date.prototype.setSeconds,
1280   m: Date.prototype.setMinutes,
1281   h: Date.prototype.setHours
1282 };
1283
1284 /**
1285  * This is like calling d.setSeconds(), d.setMinutes(), etc, except that it
1286  * adjusts for time zone changes to keep the date/time parts consistent.
1287  *
1288  * For example, d.getSeconds(), d.getMinutes() and d.getHours() will all be
1289  * the same before/after you call setDateSameTZ(d, {ms: 0}). The same is not
1290  * true if you call d.setMilliseconds(0).
1291  *
1292  * @type {function(!Date, Object.<number>)}
1293  */
1294 Dygraph.setDateSameTZ = function(d, parts) {
1295   var tz = d.getTimezoneOffset();
1296   for (var k in parts) {
1297     if (!parts.hasOwnProperty(k)) continue;
1298     var setter = Dygraph.dateSetters[k];
1299     if (!setter) throw "Invalid setter: " + k;
1300     setter.call(d, parts[k]);
1301     if (d.getTimezoneOffset() != tz) {
1302       d.setTime(d.getTime() + (tz - d.getTimezoneOffset()) * 60 * 1000);
1303     }
1304   }
1305 };