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