2014-11-22 15:59:48 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-01-21 16:36:59 +00:00
|
|
|
const Timer = process.binding('timer_wrap').Timer;
|
2015-09-26 21:27:36 +00:00
|
|
|
const L = require('internal/linkedlist');
|
2015-01-21 16:36:59 +00:00
|
|
|
const assert = require('assert').ok;
|
2014-12-16 22:17:28 +00:00
|
|
|
const util = require('util');
|
|
|
|
const debug = util.debuglog('timer');
|
2015-01-21 16:36:59 +00:00
|
|
|
const kOnTimeout = Timer.kOnTimeout | 0;
|
2013-08-15 17:23:36 +00:00
|
|
|
|
2011-07-11 22:30:24 +00:00
|
|
|
// Timeout values > TIMEOUT_MAX are set to 1.
|
2015-01-21 16:36:59 +00:00
|
|
|
const TIMEOUT_MAX = 2147483647; // 2^31-1
|
2011-07-11 22:30:24 +00:00
|
|
|
|
2011-01-13 10:09:03 +00:00
|
|
|
// IDLE TIMEOUTS
|
|
|
|
//
|
|
|
|
// Because often many sockets will have the same idle timeout we will not
|
|
|
|
// use one timeout watcher per item. It is too much overhead. Instead
|
|
|
|
// we'll use a single watcher for all sockets with the same timeout value
|
|
|
|
// and a linked list. This technique is described in the libev manual:
|
|
|
|
// http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#Be_smart_about_timeouts
|
|
|
|
|
|
|
|
// Object containing all lists, timers
|
|
|
|
// key = time in milliseconds
|
|
|
|
// value = list
|
|
|
|
var lists = {};
|
2010-10-26 18:56:32 +00:00
|
|
|
|
2015-10-01 05:18:36 +00:00
|
|
|
|
|
|
|
// call this whenever the item is active (not idle)
|
|
|
|
// it will reset its timeout.
|
2010-10-26 18:56:32 +00:00
|
|
|
// the main function - creates lists on demand and the watchers associated
|
|
|
|
// with them.
|
2015-10-01 05:18:36 +00:00
|
|
|
exports.active = function(item) {
|
|
|
|
const msecs = item._idleTimeout;
|
2015-10-12 23:03:59 +00:00
|
|
|
if (msecs < 0 || msecs === undefined) return;
|
2010-10-26 18:56:32 +00:00
|
|
|
|
2015-10-01 05:18:36 +00:00
|
|
|
item._idleStart = Timer.now();
|
|
|
|
|
2010-10-26 18:56:32 +00:00
|
|
|
var list;
|
|
|
|
|
|
|
|
if (lists[msecs]) {
|
|
|
|
list = lists[msecs];
|
|
|
|
} else {
|
|
|
|
list = new Timer();
|
2011-06-08 02:35:50 +00:00
|
|
|
list.start(msecs, 0);
|
|
|
|
|
2011-01-18 22:26:32 +00:00
|
|
|
L.init(list);
|
2010-10-26 18:56:32 +00:00
|
|
|
|
|
|
|
lists[msecs] = list;
|
2012-12-27 19:40:42 +00:00
|
|
|
list.msecs = msecs;
|
2013-08-15 17:23:36 +00:00
|
|
|
list[kOnTimeout] = listOnTimeout;
|
2012-12-27 19:40:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
L.append(list, item);
|
|
|
|
assert(!L.isEmpty(list)); // list is not empty
|
2015-10-01 05:18:36 +00:00
|
|
|
};
|
2012-12-27 19:40:42 +00:00
|
|
|
|
|
|
|
function listOnTimeout() {
|
|
|
|
var msecs = this.msecs;
|
|
|
|
var list = this;
|
2010-10-26 18:56:32 +00:00
|
|
|
|
2013-05-21 22:22:05 +00:00
|
|
|
debug('timeout callback %d', msecs);
|
2012-12-27 19:40:42 +00:00
|
|
|
|
2013-05-22 18:32:54 +00:00
|
|
|
var now = Timer.now();
|
2013-05-21 22:22:05 +00:00
|
|
|
debug('now: %s', now);
|
2012-12-27 19:40:42 +00:00
|
|
|
|
2014-12-09 15:01:05 +00:00
|
|
|
var diff, first, threw;
|
2012-12-27 19:40:42 +00:00
|
|
|
while (first = L.peek(list)) {
|
2013-09-24 21:12:11 +00:00
|
|
|
diff = now - first._idleStart;
|
2012-10-26 05:49:22 +00:00
|
|
|
if (diff < msecs) {
|
2012-12-27 19:40:42 +00:00
|
|
|
list.start(msecs - diff, 0);
|
2013-05-21 22:22:05 +00:00
|
|
|
debug('%d list wait because diff is %d', msecs, diff);
|
2012-12-27 19:40:42 +00:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
L.remove(first);
|
|
|
|
assert(first !== L.peek(list));
|
|
|
|
|
|
|
|
if (!first._onTimeout) continue;
|
|
|
|
|
|
|
|
// v0.4 compatibility: if the timer callback throws and the
|
|
|
|
// domain or uncaughtException handler ignore the exception,
|
|
|
|
// other timers that expire on this tick should still run.
|
|
|
|
//
|
|
|
|
// https://github.com/joyent/node/issues/2631
|
2014-01-09 19:11:40 +00:00
|
|
|
var domain = first.domain;
|
|
|
|
if (domain && domain._disposed)
|
2013-09-24 21:12:11 +00:00
|
|
|
continue;
|
|
|
|
|
2012-12-27 19:40:42 +00:00
|
|
|
try {
|
2014-01-09 19:11:40 +00:00
|
|
|
if (domain)
|
|
|
|
domain.enter();
|
2013-09-24 21:12:11 +00:00
|
|
|
threw = true;
|
2015-03-21 16:39:35 +00:00
|
|
|
first._called = true;
|
2012-12-27 19:40:42 +00:00
|
|
|
first._onTimeout();
|
2014-01-09 19:11:40 +00:00
|
|
|
if (domain)
|
|
|
|
domain.exit();
|
2012-12-27 19:40:42 +00:00
|
|
|
threw = false;
|
|
|
|
} finally {
|
|
|
|
if (threw) {
|
2014-01-29 01:36:22 +00:00
|
|
|
// We need to continue processing after domain error handling
|
|
|
|
// is complete, but not by using whatever domain was left over
|
|
|
|
// when the timeout threw its exception.
|
|
|
|
var oldDomain = process.domain;
|
|
|
|
process.domain = null;
|
2015-05-04 18:40:25 +00:00
|
|
|
process.nextTick(listOnTimeoutNT, list);
|
2014-01-29 01:36:22 +00:00
|
|
|
process.domain = oldDomain;
|
2010-10-26 18:56:32 +00:00
|
|
|
}
|
|
|
|
}
|
2012-12-27 19:40:42 +00:00
|
|
|
}
|
2010-10-26 18:56:32 +00:00
|
|
|
}
|
|
|
|
|
2013-05-21 22:22:05 +00:00
|
|
|
debug('%d list empty', msecs);
|
2012-12-27 19:40:42 +00:00
|
|
|
assert(L.isEmpty(list));
|
|
|
|
list.close();
|
|
|
|
delete lists[msecs];
|
2010-10-26 18:56:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-04 18:40:25 +00:00
|
|
|
function listOnTimeoutNT(list) {
|
|
|
|
list[kOnTimeout]();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-16 19:34:15 +00:00
|
|
|
function reuse(item) {
|
2011-01-18 22:26:32 +00:00
|
|
|
L.remove(item);
|
2010-10-26 18:56:32 +00:00
|
|
|
|
2011-01-13 10:22:09 +00:00
|
|
|
var list = lists[item._idleTimeout];
|
2015-10-16 19:34:15 +00:00
|
|
|
// if empty - reuse the watcher
|
2011-01-18 22:26:32 +00:00
|
|
|
if (list && L.isEmpty(list)) {
|
2015-10-16 19:34:15 +00:00
|
|
|
debug('reuse hit');
|
|
|
|
list.stop();
|
|
|
|
delete lists[item._idleTimeout];
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const unenroll = exports.unenroll = function(item) {
|
|
|
|
var list = reuse(item);
|
|
|
|
if (list) {
|
2011-01-13 10:22:09 +00:00
|
|
|
debug('unenroll: list empty');
|
2011-06-08 02:35:50 +00:00
|
|
|
list.close();
|
2010-10-26 18:56:32 +00:00
|
|
|
}
|
2011-12-22 13:42:20 +00:00
|
|
|
// if active is called later, then we want to make sure not to insert again
|
|
|
|
item._idleTimeout = -1;
|
2010-10-26 18:56:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Does not start the time, just sets up the members needed.
|
2010-12-02 04:59:06 +00:00
|
|
|
exports.enroll = function(item, msecs) {
|
2014-12-16 22:17:28 +00:00
|
|
|
if (typeof msecs !== 'number') {
|
2015-10-14 21:10:25 +00:00
|
|
|
throw new TypeError('"msecs" argument must be a number');
|
2014-12-16 22:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (msecs < 0 || !isFinite(msecs)) {
|
2015-10-14 21:10:25 +00:00
|
|
|
throw new RangeError('"msecs" argument must be ' +
|
|
|
|
'a non-negative finite number');
|
2014-12-16 22:17:28 +00:00
|
|
|
}
|
|
|
|
|
2010-10-26 19:14:17 +00:00
|
|
|
// if this item was already in a list somewhere
|
2010-10-26 18:56:32 +00:00
|
|
|
// then we should unenroll it from that
|
2010-10-26 19:14:17 +00:00
|
|
|
if (item._idleNext) unenroll(item);
|
2010-10-26 18:56:32 +00:00
|
|
|
|
2013-03-21 17:38:30 +00:00
|
|
|
// Ensure that msecs fits into signed int32
|
2014-12-16 22:17:28 +00:00
|
|
|
if (msecs > TIMEOUT_MAX) {
|
|
|
|
msecs = TIMEOUT_MAX;
|
2013-03-21 17:38:30 +00:00
|
|
|
}
|
|
|
|
|
2010-10-26 19:14:17 +00:00
|
|
|
item._idleTimeout = msecs;
|
2011-01-18 22:26:32 +00:00
|
|
|
L.init(item);
|
2010-10-26 18:56:32 +00:00
|
|
|
};
|
|
|
|
|
2011-01-13 10:22:09 +00:00
|
|
|
|
2010-10-26 19:52:31 +00:00
|
|
|
/*
|
|
|
|
* DOM-style timers
|
|
|
|
*/
|
2010-10-26 19:14:17 +00:00
|
|
|
|
|
|
|
|
2015-03-20 15:55:19 +00:00
|
|
|
exports.setTimeout = function(callback, after) {
|
2012-07-01 20:58:22 +00:00
|
|
|
after *= 1; // coalesce to number or NaN
|
|
|
|
|
|
|
|
if (!(after >= 1 && after <= TIMEOUT_MAX)) {
|
2011-07-11 22:30:24 +00:00
|
|
|
after = 1; // schedule on next tick, follows browser behaviour
|
|
|
|
}
|
2011-06-08 02:35:50 +00:00
|
|
|
|
2015-03-20 15:55:19 +00:00
|
|
|
var timer = new Timeout(after);
|
|
|
|
var length = arguments.length;
|
|
|
|
var ontimeout = callback;
|
|
|
|
switch (length) {
|
2015-01-10 15:49:21 +00:00
|
|
|
// fast cases
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
case 3:
|
2015-03-20 15:55:19 +00:00
|
|
|
ontimeout = callback.bind(timer, arguments[2]);
|
2015-01-10 15:49:21 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2015-03-20 15:55:19 +00:00
|
|
|
ontimeout = callback.bind(timer, arguments[2], arguments[3]);
|
2015-01-10 15:49:21 +00:00
|
|
|
break;
|
|
|
|
case 5:
|
2015-03-20 15:55:19 +00:00
|
|
|
ontimeout =
|
|
|
|
callback.bind(timer, arguments[2], arguments[3], arguments[4]);
|
2015-01-10 15:49:21 +00:00
|
|
|
break;
|
|
|
|
// slow case
|
|
|
|
default:
|
2015-03-20 15:55:19 +00:00
|
|
|
var args = new Array(length - 2);
|
|
|
|
for (var i = 2; i < length; i++)
|
2015-01-10 15:49:21 +00:00
|
|
|
args[i - 2] = arguments[i];
|
2015-03-20 15:55:19 +00:00
|
|
|
ontimeout = callback.apply.bind(callback, timer, args);
|
2015-01-10 15:49:21 +00:00
|
|
|
break;
|
2010-10-26 19:52:31 +00:00
|
|
|
}
|
2015-03-20 15:55:19 +00:00
|
|
|
timer._onTimeout = ontimeout;
|
2010-10-26 19:14:17 +00:00
|
|
|
|
2012-04-06 23:26:18 +00:00
|
|
|
if (process.domain) timer.domain = process.domain;
|
|
|
|
|
2011-07-11 22:30:24 +00:00
|
|
|
exports.active(timer);
|
|
|
|
|
2010-10-26 19:14:17 +00:00
|
|
|
return timer;
|
|
|
|
};
|
|
|
|
|
2010-10-26 19:52:31 +00:00
|
|
|
|
2010-12-02 04:59:06 +00:00
|
|
|
exports.clearTimeout = function(timer) {
|
2013-08-15 17:23:36 +00:00
|
|
|
if (timer && (timer[kOnTimeout] || timer._onTimeout)) {
|
|
|
|
timer[kOnTimeout] = timer._onTimeout = null;
|
2013-03-21 11:19:03 +00:00
|
|
|
if (timer instanceof Timeout) {
|
2011-06-08 02:35:50 +00:00
|
|
|
timer.close(); // for after === 0
|
|
|
|
} else {
|
|
|
|
exports.unenroll(timer);
|
|
|
|
}
|
2010-10-29 07:00:43 +00:00
|
|
|
}
|
2010-10-26 19:52:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-03-20 16:20:43 +00:00
|
|
|
exports.setInterval = function(callback, repeat) {
|
2012-07-01 20:58:22 +00:00
|
|
|
repeat *= 1; // coalesce to number or NaN
|
|
|
|
|
|
|
|
if (!(repeat >= 1 && repeat <= TIMEOUT_MAX)) {
|
2011-07-11 22:30:24 +00:00
|
|
|
repeat = 1; // schedule on next tick, follows browser behaviour
|
|
|
|
}
|
|
|
|
|
2013-03-21 11:19:03 +00:00
|
|
|
var timer = new Timeout(repeat);
|
2015-03-20 16:20:43 +00:00
|
|
|
var length = arguments.length;
|
|
|
|
var ontimeout = callback;
|
|
|
|
switch (length) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
ontimeout = callback.bind(timer, arguments[2]);
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
ontimeout = callback.bind(timer, arguments[2], arguments[3]);
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
ontimeout =
|
|
|
|
callback.bind(timer, arguments[2], arguments[3], arguments[4]);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
var args = new Array(length - 2);
|
|
|
|
for (var i = 2; i < length; i += 1)
|
|
|
|
args[i - 2] = arguments[i];
|
|
|
|
ontimeout = callback.apply.bind(callback, timer, args);
|
|
|
|
break;
|
2015-01-10 15:49:21 +00:00
|
|
|
}
|
2015-03-20 16:20:43 +00:00
|
|
|
timer._onTimeout = wrapper;
|
|
|
|
timer._repeat = ontimeout;
|
2013-03-21 11:19:03 +00:00
|
|
|
|
|
|
|
if (process.domain) timer.domain = process.domain;
|
|
|
|
exports.active(timer);
|
2010-10-26 19:52:31 +00:00
|
|
|
|
2010-10-26 19:14:17 +00:00
|
|
|
return timer;
|
2013-03-21 11:19:03 +00:00
|
|
|
|
|
|
|
function wrapper() {
|
2015-03-20 16:20:43 +00:00
|
|
|
timer._repeat.call(this);
|
2015-04-02 22:14:08 +00:00
|
|
|
|
|
|
|
// Timer might be closed - no point in restarting it
|
|
|
|
if (!timer._repeat)
|
|
|
|
return;
|
|
|
|
|
2013-03-21 11:19:03 +00:00
|
|
|
// If timer is unref'd (or was - it's permanently removed from the list.)
|
|
|
|
if (this._handle) {
|
|
|
|
this._handle.start(repeat, 0);
|
|
|
|
} else {
|
|
|
|
timer._idleTimeout = repeat;
|
|
|
|
exports.active(timer);
|
|
|
|
}
|
|
|
|
}
|
2010-10-26 19:14:17 +00:00
|
|
|
};
|
|
|
|
|
2010-10-26 19:52:31 +00:00
|
|
|
|
2010-12-02 04:59:06 +00:00
|
|
|
exports.clearInterval = function(timer) {
|
2013-03-21 11:19:03 +00:00
|
|
|
if (timer && timer._repeat) {
|
2015-03-26 15:52:36 +00:00
|
|
|
timer._repeat = null;
|
2013-03-21 11:19:03 +00:00
|
|
|
clearTimeout(timer);
|
2010-10-26 19:14:17 +00:00
|
|
|
}
|
|
|
|
};
|
2012-07-13 02:19:01 +00:00
|
|
|
|
2013-03-21 11:19:03 +00:00
|
|
|
|
2015-01-21 16:36:59 +00:00
|
|
|
const Timeout = function(after) {
|
2015-03-21 16:39:35 +00:00
|
|
|
this._called = false;
|
2012-07-13 02:19:01 +00:00
|
|
|
this._idleTimeout = after;
|
|
|
|
this._idlePrev = this;
|
|
|
|
this._idleNext = this;
|
2012-10-25 04:53:35 +00:00
|
|
|
this._idleStart = null;
|
|
|
|
this._onTimeout = null;
|
2015-03-26 15:52:36 +00:00
|
|
|
this._repeat = null;
|
2012-07-13 02:19:01 +00:00
|
|
|
};
|
|
|
|
|
2014-11-26 20:27:57 +00:00
|
|
|
|
|
|
|
function unrefdHandle() {
|
|
|
|
this.owner._onTimeout();
|
2014-12-19 00:51:08 +00:00
|
|
|
if (!this.owner._repeat)
|
2014-11-26 20:27:57 +00:00
|
|
|
this.owner.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-13 02:19:01 +00:00
|
|
|
Timeout.prototype.unref = function() {
|
2014-12-15 16:25:31 +00:00
|
|
|
if (this._handle) {
|
|
|
|
this._handle.unref();
|
|
|
|
} else if (typeof(this._onTimeout) === 'function') {
|
2013-05-22 18:32:54 +00:00
|
|
|
var now = Timer.now();
|
2012-10-25 04:53:35 +00:00
|
|
|
if (!this._idleStart) this._idleStart = now;
|
|
|
|
var delay = this._idleStart + this._idleTimeout - now;
|
2012-08-17 12:11:33 +00:00
|
|
|
if (delay < 0) delay = 0;
|
2015-03-21 16:39:35 +00:00
|
|
|
|
|
|
|
// Prevent running cb again when unref() is called during the same cb
|
2015-10-16 19:34:15 +00:00
|
|
|
if (this._called && !this._repeat) {
|
|
|
|
exports.unenroll(this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var handle = reuse(this);
|
2015-03-21 16:39:35 +00:00
|
|
|
|
2015-10-16 19:34:15 +00:00
|
|
|
this._handle = handle || new Timer();
|
2014-11-26 20:27:57 +00:00
|
|
|
this._handle.owner = this;
|
|
|
|
this._handle[kOnTimeout] = unrefdHandle;
|
2012-08-17 12:11:33 +00:00
|
|
|
this._handle.start(delay, 0);
|
2012-08-11 22:31:44 +00:00
|
|
|
this._handle.domain = this.domain;
|
2012-07-13 02:19:01 +00:00
|
|
|
this._handle.unref();
|
|
|
|
}
|
2015-09-13 15:21:51 +00:00
|
|
|
return this;
|
2012-07-13 02:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Timeout.prototype.ref = function() {
|
|
|
|
if (this._handle)
|
|
|
|
this._handle.ref();
|
2015-09-13 15:21:51 +00:00
|
|
|
return this;
|
2012-07-13 02:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Timeout.prototype.close = function() {
|
|
|
|
this._onTimeout = null;
|
|
|
|
if (this._handle) {
|
2013-08-15 17:23:36 +00:00
|
|
|
this._handle[kOnTimeout] = null;
|
2012-07-13 02:19:01 +00:00
|
|
|
this._handle.close();
|
|
|
|
} else {
|
|
|
|
exports.unenroll(this);
|
|
|
|
}
|
2015-09-13 15:21:51 +00:00
|
|
|
return this;
|
2012-07-13 02:19:01 +00:00
|
|
|
};
|
2012-08-08 02:12:01 +00:00
|
|
|
|
|
|
|
|
2013-02-06 02:13:02 +00:00
|
|
|
var immediateQueue = {};
|
2012-08-08 02:12:01 +00:00
|
|
|
L.init(immediateQueue);
|
|
|
|
|
|
|
|
|
|
|
|
function processImmediate() {
|
2013-07-11 22:58:11 +00:00
|
|
|
var queue = immediateQueue;
|
2014-12-09 15:01:05 +00:00
|
|
|
var domain, immediate;
|
2013-02-06 02:13:02 +00:00
|
|
|
|
2013-07-11 22:58:11 +00:00
|
|
|
immediateQueue = {};
|
|
|
|
L.init(immediateQueue);
|
2012-08-08 02:12:01 +00:00
|
|
|
|
2013-07-11 22:58:11 +00:00
|
|
|
while (L.isEmpty(queue) === false) {
|
2013-09-24 21:12:11 +00:00
|
|
|
immediate = L.shift(queue);
|
2014-01-09 19:11:40 +00:00
|
|
|
domain = immediate.domain;
|
2013-09-24 21:12:11 +00:00
|
|
|
|
2014-01-09 19:11:40 +00:00
|
|
|
if (domain)
|
|
|
|
domain.enter();
|
2013-09-24 21:12:11 +00:00
|
|
|
|
|
|
|
var threw = true;
|
|
|
|
try {
|
|
|
|
immediate._onImmediate();
|
|
|
|
threw = false;
|
|
|
|
} finally {
|
|
|
|
if (threw) {
|
|
|
|
if (!L.isEmpty(queue)) {
|
|
|
|
// Handle any remaining on next tick, assuming we're still
|
|
|
|
// alive to do so.
|
|
|
|
while (!L.isEmpty(immediateQueue)) {
|
|
|
|
L.append(queue, L.shift(immediateQueue));
|
|
|
|
}
|
|
|
|
immediateQueue = queue;
|
|
|
|
process.nextTick(processImmediate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 19:11:40 +00:00
|
|
|
if (domain)
|
|
|
|
domain.exit();
|
2013-07-11 22:58:11 +00:00
|
|
|
}
|
2012-08-08 02:12:01 +00:00
|
|
|
|
2013-07-11 22:58:11 +00:00
|
|
|
// Only round-trip to C++ land if we have to. Calling clearImmediate() on an
|
|
|
|
// immediate that's in |queue| is okay. Worst case is we make a superfluous
|
|
|
|
// call to NeedImmediateCallbackSetter().
|
|
|
|
if (L.isEmpty(immediateQueue)) {
|
|
|
|
process._needImmediateCallback = false;
|
2012-08-08 02:12:01 +00:00
|
|
|
}
|
2012-08-27 19:51:25 +00:00
|
|
|
}
|
2012-08-08 02:12:01 +00:00
|
|
|
|
|
|
|
|
2013-10-07 19:39:52 +00:00
|
|
|
function Immediate() { }
|
|
|
|
|
|
|
|
Immediate.prototype.domain = undefined;
|
|
|
|
Immediate.prototype._onImmediate = undefined;
|
|
|
|
Immediate.prototype._idleNext = undefined;
|
|
|
|
Immediate.prototype._idlePrev = undefined;
|
|
|
|
|
|
|
|
|
2015-01-10 15:49:21 +00:00
|
|
|
exports.setImmediate = function(callback, arg1, arg2, arg3) {
|
|
|
|
var i, args;
|
|
|
|
var len = arguments.length;
|
2013-10-07 19:39:52 +00:00
|
|
|
var immediate = new Immediate();
|
2012-08-08 02:12:01 +00:00
|
|
|
|
|
|
|
L.init(immediate);
|
|
|
|
|
2015-01-10 15:49:21 +00:00
|
|
|
switch (len) {
|
|
|
|
// fast cases
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
immediate._onImmediate = callback;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
immediate._onImmediate = function() {
|
|
|
|
callback.call(immediate, arg1);
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
immediate._onImmediate = function() {
|
|
|
|
callback.call(immediate, arg1, arg2);
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
immediate._onImmediate = function() {
|
|
|
|
callback.call(immediate, arg1, arg2, arg3);
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
// slow case
|
|
|
|
default:
|
|
|
|
args = new Array(len - 1);
|
|
|
|
for (i = 1; i < len; i++)
|
|
|
|
args[i - 1] = arguments[i];
|
|
|
|
|
|
|
|
immediate._onImmediate = function() {
|
|
|
|
callback.apply(immediate, args);
|
|
|
|
};
|
|
|
|
break;
|
2012-08-08 02:12:01 +00:00
|
|
|
}
|
|
|
|
|
2013-02-06 02:13:02 +00:00
|
|
|
if (!process._needImmediateCallback) {
|
|
|
|
process._needImmediateCallback = true;
|
|
|
|
process._immediateCallback = processImmediate;
|
2012-08-08 02:12:01 +00:00
|
|
|
}
|
|
|
|
|
2013-09-24 21:12:11 +00:00
|
|
|
if (process.domain)
|
|
|
|
immediate.domain = process.domain;
|
2012-08-08 02:12:01 +00:00
|
|
|
|
|
|
|
L.append(immediateQueue, immediate);
|
|
|
|
|
|
|
|
return immediate;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
exports.clearImmediate = function(immediate) {
|
|
|
|
if (!immediate) return;
|
|
|
|
|
2013-02-06 02:13:02 +00:00
|
|
|
immediate._onImmediate = undefined;
|
2012-08-08 02:12:01 +00:00
|
|
|
|
|
|
|
L.remove(immediate);
|
|
|
|
|
|
|
|
if (L.isEmpty(immediateQueue)) {
|
2013-02-06 02:13:02 +00:00
|
|
|
process._needImmediateCallback = false;
|
2012-08-08 02:12:01 +00:00
|
|
|
}
|
|
|
|
};
|
2013-05-17 22:04:24 +00:00
|
|
|
|
|
|
|
|
2014-05-06 12:05:32 +00:00
|
|
|
// Internal APIs that need timeouts should use timers._unrefActive instead of
|
2013-05-17 22:04:24 +00:00
|
|
|
// timers.active as internal timeouts shouldn't hold the loop open
|
|
|
|
|
|
|
|
var unrefList, unrefTimer;
|
|
|
|
|
2014-12-18 23:36:21 +00:00
|
|
|
function _makeTimerTimeout(timer) {
|
|
|
|
var domain = timer.domain;
|
|
|
|
var msecs = timer._idleTimeout;
|
|
|
|
|
2015-08-27 19:56:46 +00:00
|
|
|
L.remove(timer);
|
|
|
|
|
2014-12-18 23:36:21 +00:00
|
|
|
// Timer has been unenrolled by another timer that fired at the same time,
|
|
|
|
// so don't make it timeout.
|
2015-08-27 19:56:46 +00:00
|
|
|
if (msecs <= 0)
|
2014-12-18 23:36:21 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!timer._onTimeout)
|
|
|
|
return;
|
|
|
|
|
2015-08-27 19:56:46 +00:00
|
|
|
if (domain) {
|
|
|
|
if (domain._disposed)
|
|
|
|
return;
|
2014-12-18 23:36:21 +00:00
|
|
|
|
2015-08-27 19:56:46 +00:00
|
|
|
domain.enter();
|
|
|
|
}
|
2014-12-18 23:36:21 +00:00
|
|
|
|
2015-08-27 19:56:46 +00:00
|
|
|
debug('unreftimer firing timeout');
|
|
|
|
timer._called = true;
|
|
|
|
_runOnTimeout(timer);
|
2014-12-18 23:36:21 +00:00
|
|
|
|
2015-08-27 19:56:46 +00:00
|
|
|
if (domain)
|
|
|
|
domain.exit();
|
|
|
|
}
|
2014-12-18 23:36:21 +00:00
|
|
|
|
2015-08-27 19:56:46 +00:00
|
|
|
function _runOnTimeout(timer) {
|
|
|
|
var threw = true;
|
|
|
|
try {
|
|
|
|
timer._onTimeout();
|
2014-12-18 23:36:21 +00:00
|
|
|
threw = false;
|
|
|
|
} finally {
|
|
|
|
if (threw) process.nextTick(unrefTimeout);
|
|
|
|
}
|
|
|
|
}
|
2013-05-17 22:04:24 +00:00
|
|
|
|
|
|
|
function unrefTimeout() {
|
2013-07-08 01:20:07 +00:00
|
|
|
var now = Timer.now();
|
2013-05-17 22:04:24 +00:00
|
|
|
|
|
|
|
debug('unrefTimer fired');
|
|
|
|
|
2014-08-20 07:08:32 +00:00
|
|
|
var timeSinceLastActive;
|
|
|
|
var nextTimeoutTime;
|
|
|
|
var nextTimeoutDuration;
|
2015-08-27 19:56:46 +00:00
|
|
|
var minNextTimeoutTime = TIMEOUT_MAX;
|
2014-12-18 23:36:21 +00:00
|
|
|
var timersToTimeout = [];
|
2014-08-20 07:08:32 +00:00
|
|
|
|
|
|
|
// The actual timer fired and has not yet been rearmed,
|
|
|
|
// let's consider its next firing time is invalid for now.
|
|
|
|
// It may be set to a relevant time in the future once
|
|
|
|
// we scanned through the whole list of timeouts and if
|
|
|
|
// we find a timeout that needs to expire.
|
|
|
|
unrefTimer.when = -1;
|
2013-05-17 22:04:24 +00:00
|
|
|
|
2014-08-20 07:08:32 +00:00
|
|
|
// Iterate over the list of timeouts,
|
|
|
|
// call the onTimeout callback for those expired,
|
|
|
|
// and rearm the actual timer if the next timeout to expire
|
|
|
|
// will expire before the current actual timer.
|
|
|
|
var cur = unrefList._idlePrev;
|
2015-08-27 19:56:46 +00:00
|
|
|
while (cur !== unrefList) {
|
2014-08-20 07:08:32 +00:00
|
|
|
timeSinceLastActive = now - cur._idleStart;
|
|
|
|
|
|
|
|
if (timeSinceLastActive < cur._idleTimeout) {
|
|
|
|
// This timer hasn't expired yet, but check if its expiring time is
|
|
|
|
// earlier than the actual timer's expiring time
|
|
|
|
|
|
|
|
nextTimeoutDuration = cur._idleTimeout - timeSinceLastActive;
|
|
|
|
nextTimeoutTime = now + nextTimeoutDuration;
|
2015-08-27 19:56:46 +00:00
|
|
|
if (minNextTimeoutTime === TIMEOUT_MAX ||
|
2014-08-20 07:08:32 +00:00
|
|
|
(nextTimeoutTime < minNextTimeoutTime)) {
|
|
|
|
// We found a timeout that will expire earlier,
|
|
|
|
// store its next timeout time now so that we
|
|
|
|
// can rearm the actual timer accordingly when
|
|
|
|
// we scanned through the whole list.
|
|
|
|
minNextTimeoutTime = nextTimeoutTime;
|
|
|
|
}
|
2014-12-18 23:36:21 +00:00
|
|
|
} else {
|
|
|
|
// We found a timer that expired. Do not call its _onTimeout callback
|
|
|
|
// right now, as it could mutate any item of the list (including itself).
|
|
|
|
// Instead, add it to another list that will be processed once the list
|
|
|
|
// of current timers has been fully traversed.
|
|
|
|
timersToTimeout.push(cur);
|
2013-05-17 22:04:24 +00:00
|
|
|
}
|
|
|
|
|
2014-12-18 23:36:21 +00:00
|
|
|
cur = cur._idlePrev;
|
|
|
|
}
|
2014-08-20 07:08:32 +00:00
|
|
|
|
2014-12-18 23:36:21 +00:00
|
|
|
var nbTimersToTimeout = timersToTimeout.length;
|
|
|
|
for (var timerIdx = 0; timerIdx < nbTimersToTimeout; ++timerIdx)
|
|
|
|
_makeTimerTimeout(timersToTimeout[timerIdx]);
|
2014-08-20 07:08:32 +00:00
|
|
|
|
2013-05-17 22:04:24 +00:00
|
|
|
|
2014-08-20 07:08:32 +00:00
|
|
|
// Rearm the actual timer with the timeout delay
|
|
|
|
// of the earliest timeout found.
|
2015-08-27 19:56:46 +00:00
|
|
|
if (minNextTimeoutTime !== TIMEOUT_MAX) {
|
2014-08-20 07:08:32 +00:00
|
|
|
unrefTimer.start(minNextTimeoutTime - now, 0);
|
|
|
|
unrefTimer.when = minNextTimeoutTime;
|
|
|
|
debug('unrefTimer rescheduled');
|
|
|
|
} else if (L.isEmpty(unrefList)) {
|
|
|
|
debug('unrefList is empty');
|
|
|
|
}
|
2013-05-17 22:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
exports._unrefActive = function(item) {
|
|
|
|
var msecs = item._idleTimeout;
|
|
|
|
if (!msecs || msecs < 0) return;
|
|
|
|
assert(msecs >= 0);
|
|
|
|
|
|
|
|
L.remove(item);
|
|
|
|
|
|
|
|
if (!unrefList) {
|
|
|
|
debug('unrefList initialized');
|
|
|
|
unrefList = {};
|
|
|
|
L.init(unrefList);
|
|
|
|
|
|
|
|
debug('unrefTimer initialized');
|
|
|
|
unrefTimer = new Timer();
|
|
|
|
unrefTimer.unref();
|
|
|
|
unrefTimer.when = -1;
|
2013-08-15 17:23:36 +00:00
|
|
|
unrefTimer[kOnTimeout] = unrefTimeout;
|
2013-05-17 22:04:24 +00:00
|
|
|
}
|
|
|
|
|
2013-07-08 01:20:07 +00:00
|
|
|
var now = Timer.now();
|
2013-05-17 22:04:24 +00:00
|
|
|
item._idleStart = now;
|
|
|
|
|
2014-08-20 07:08:32 +00:00
|
|
|
var when = now + msecs;
|
2013-05-17 22:04:24 +00:00
|
|
|
|
2014-08-20 07:08:32 +00:00
|
|
|
// If the actual timer is set to fire too late, or not set to fire at all,
|
|
|
|
// we need to make it fire earlier
|
|
|
|
if (unrefTimer.when === -1 || unrefTimer.when > when) {
|
2013-05-17 22:04:24 +00:00
|
|
|
unrefTimer.start(msecs, 0);
|
2014-08-20 07:08:32 +00:00
|
|
|
unrefTimer.when = when;
|
2013-05-17 22:04:24 +00:00
|
|
|
debug('unrefTimer scheduled');
|
|
|
|
}
|
|
|
|
|
|
|
|
debug('unrefList append to end');
|
|
|
|
L.append(unrefList, item);
|
|
|
|
};
|