node/lib/timers.js

534 lines
12 KiB
JavaScript
Raw Normal View History

'use strict';
const TimerWrap = process.binding('timer_wrap').Timer;
const L = require('internal/linkedlist');
const assert = require('assert');
const util = require('util');
const debug = util.debuglog('timer');
const kOnTimeout = TimerWrap.kOnTimeout | 0;
// Timeout values > TIMEOUT_MAX are set to 1.
const TIMEOUT_MAX = 2147483647; // 2^31-1
// IDLE TIMEOUTS
// Object maps containing linked lists of timers, keyed and sorted by their
// duration in milliseconds.
//
// 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
const refedLists = {};
const unrefedLists = {};
2010-10-26 18:56:32 +00:00
// Schedule or re-schedule a timer.
// The item must have been enroll()'d first.
exports.active = function(item) {
insert(item, false);
};
// Internal APIs that need timeouts should use `_unrefActive()` instead of
// `active()` so that they do not unnecessarily keep the process open.
exports._unrefActive = function(item) {
insert(item, true);
};
// The underlying logic for scheduling or re-scheduling a timer.
function insert(item, unrefed) {
const msecs = item._idleTimeout;
if (msecs < 0 || msecs === undefined) return;
2010-10-26 18:56:32 +00:00
item._idleStart = TimerWrap.now();
const lists = unrefed === true ? unrefedLists : refedLists;
var list = lists[msecs];
if (!list) {
debug('no %d list was found in insert, creating a new one', msecs);
list = new TimersList(msecs, unrefed);
2011-01-18 22:26:32 +00:00
L.init(list);
list._timer._list = list;
if (unrefed === true) list._timer.unref();
list._timer.start(msecs, 0);
2010-10-26 18:56:32 +00:00
lists[msecs] = list;
list._timer[kOnTimeout] = listOnTimeout;
}
L.append(list, item);
assert(!L.isEmpty(list)); // list is not empty
}
function TimersList(msecs, unrefed) {
this._idleNext = null; // Create the list with the linkedlist properties to
this._idlePrev = null; // prevent any unnecessary hidden class changes.
this._timer = new TimerWrap();
this._unrefed = unrefed;
this.msecs = msecs;
}
function listOnTimeout() {
var list = this._list;
var msecs = list.msecs;
2010-10-26 18:56:32 +00:00
debug('timeout callback %d', msecs);
var now = TimerWrap.now();
debug('now: %s', now);
var diff, timer;
while (timer = L.peek(list)) {
diff = now - timer._idleStart;
if (diff < msecs) {
this.start(msecs - diff, 0);
debug('%d list wait because diff is %d', msecs, diff);
return;
}
L.remove(timer);
assert(timer !== L.peek(list));
if (!timer._onTimeout) continue;
var domain = timer.domain;
if (domain) {
// 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/nodejs/node-v0.x-archive/issues/2631
if (domain._disposed)
continue;
domain.enter();
}
tryOnTimeout(timer, list);
if (domain)
domain.exit();
2010-10-26 18:56:32 +00:00
}
debug('%d list empty', msecs);
assert(L.isEmpty(list));
this.close();
if (list._unrefed === true) {
delete unrefedLists[msecs];
} else {
delete refedLists[msecs];
}
}
// An optimization so that the try/finally only de-optimizes what is in this
// smaller function.
function tryOnTimeout(timer, list) {
timer._called = true;
var threw = true;
try {
timer._onTimeout();
threw = false;
} finally {
if (!threw) return;
// 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.
const domain = process.domain;
process.domain = null;
process.nextTick(listOnTimeoutNT, list);
process.domain = domain;
}
2010-10-26 18:56:32 +00:00
}
function listOnTimeoutNT(list) {
list._timer[kOnTimeout]();
}
function reuse(item) {
2011-01-18 22:26:32 +00:00
L.remove(item);
2010-10-26 18:56:32 +00:00
var list = refedLists[item._idleTimeout];
// if empty - reuse the watcher
2011-01-18 22:26:32 +00:00
if (list && L.isEmpty(list)) {
debug('reuse hit');
list._timer.stop();
delete refedLists[item._idleTimeout];
return list._timer;
}
return null;
}
const unenroll = exports.unenroll = function(item) {
var handle = reuse(item);
if (handle) {
2011-01-13 10:22:09 +00:00
debug('unenroll: list empty');
handle.close();
2010-10-26 18:56:32 +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) {
if (typeof msecs !== 'number') {
throw new TypeError('"msecs" argument must be a number');
}
if (msecs < 0 || !isFinite(msecs)) {
throw new RangeError('"msecs" argument must be ' +
'a non-negative finite number');
}
// if this item was already in a list somewhere
2010-10-26 18:56:32 +00:00
// then we should unenroll it from that
if (item._idleNext) unenroll(item);
2010-10-26 18:56:32 +00:00
// Ensure that msecs fits into signed int32
if (msecs > TIMEOUT_MAX) {
msecs = TIMEOUT_MAX;
}
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
*/
exports.setTimeout = function(callback, after) {
if (typeof callback !== 'function') {
throw new TypeError('"callback" argument must be a function');
}
after *= 1; // coalesce to number or NaN
if (!(after >= 1 && after <= TIMEOUT_MAX)) {
after = 1; // schedule on next tick, follows browser behaviour
}
var timer = new Timeout(after);
var length = arguments.length;
var ontimeout = callback;
switch (length) {
// fast cases
case 0:
case 1:
case 2:
break;
case 3:
ontimeout = () => callback.call(timer, arguments[2]);
break;
case 4:
ontimeout = () => callback.call(timer, arguments[2], arguments[3]);
break;
case 5:
ontimeout =
() => callback.call(timer, arguments[2], arguments[3], arguments[4]);
break;
// slow case
default:
var args = new Array(length - 2);
for (var i = 2; i < length; i++)
args[i - 2] = arguments[i];
ontimeout = () => callback.apply(timer, args);
break;
2010-10-26 19:52:31 +00:00
}
timer._onTimeout = ontimeout;
Domain feature This is a squashed commit of the main work done on the domains-wip branch. The original commit messages are preserved for posterity: * Implicitly add EventEmitters to active domain * Implicitly add timers to active domain * domain: add members, remove ctor cb * Don't hijack bound callbacks for Domain error events * Add dispose method * Add domain.remove(ee) method * A test of multiple domains in process at once * Put the active domain on the process object * Only intercept error arg if explicitly requested * Typo * Don't auto-add new domains to the current domain While an automatic parent/child relationship is sort of neat, and leads to some nice error-bubbling characteristics, it also results in keeping a reference to every EE and timer created, unless domains are explicitly disposed of. * Explicitly adding one domain to another is still fine, of course. * Don't allow circular domain->domain memberships * Disposing of a domain removes it from its parent * Domain disposal turns functions into no-ops * More documentation of domains * More thorough dispose() semantics * An example using domains in an HTTP server * Don't handle errors on a disposed domain * Need to push, even if the same domain is entered multiple times * Array.push is too slow for the EE Ctor * lint domain * domain: docs * Also call abort and destroySoon to clean up event emitters * domain: Wrap destroy methods in a try/catch * Attach tick callbacks to active domain * domain: Only implicitly bind timers, not explicitly * domain: Don't fire timers when disposed. * domain: Simplify naming so that MakeCallback works on Timers * Add setInterval and nextTick to domain test * domain: Make stack private
2012-04-06 23:26:18 +00:00
if (process.domain) timer.domain = process.domain;
exports.active(timer);
return timer;
};
2010-10-26 19:52:31 +00:00
2010-12-02 04:59:06 +00:00
exports.clearTimeout = function(timer) {
if (timer && (timer[kOnTimeout] || timer._onTimeout)) {
timer[kOnTimeout] = timer._onTimeout = null;
if (timer instanceof Timeout) {
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
};
exports.setInterval = function(callback, repeat) {
if (typeof callback !== 'function') {
throw new TypeError('"callback" argument must be a function');
}
repeat *= 1; // coalesce to number or NaN
if (!(repeat >= 1 && repeat <= TIMEOUT_MAX)) {
repeat = 1; // schedule on next tick, follows browser behaviour
}
var timer = new Timeout(repeat);
var length = arguments.length;
var ontimeout = callback;
switch (length) {
case 0:
case 1:
case 2:
break;
case 3:
ontimeout = () => callback.call(timer, arguments[2]);
break;
case 4:
ontimeout = () => callback.call(timer, arguments[2], arguments[3]);
break;
case 5:
ontimeout =
() => callback.call(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(timer, args);
break;
}
timer._onTimeout = wrapper;
timer._repeat = ontimeout;
if (process.domain) timer.domain = process.domain;
exports.active(timer);
2010-10-26 19:52:31 +00:00
return timer;
function wrapper() {
timer._repeat();
// Timer might be closed - no point in restarting it
if (!timer._repeat)
return;
// 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:52:31 +00:00
2010-12-02 04:59:06 +00:00
exports.clearInterval = function(timer) {
if (timer && timer._repeat) {
timer._repeat = null;
clearTimeout(timer);
}
};
2012-07-13 02:19:01 +00:00
const Timeout = function(after) {
this._called = false;
2012-07-13 02:19:01 +00:00
this._idleTimeout = after;
this._idlePrev = this;
this._idleNext = this;
this._idleStart = null;
this._onTimeout = null;
this._repeat = null;
2012-07-13 02:19:01 +00:00
};
function unrefdHandle() {
this.owner._onTimeout();
if (!this.owner._repeat)
this.owner.close();
}
2012-07-13 02:19:01 +00:00
Timeout.prototype.unref = function() {
if (this._handle) {
this._handle.unref();
} else if (typeof this._onTimeout === 'function') {
var now = TimerWrap.now();
if (!this._idleStart) this._idleStart = now;
var delay = this._idleStart + this._idleTimeout - now;
if (delay < 0) delay = 0;
// Prevent running cb again when unref() is called during the same cb
if (this._called && !this._repeat) {
exports.unenroll(this);
return;
}
var handle = reuse(this);
this._handle = handle || new TimerWrap();
this._handle.owner = this;
this._handle[kOnTimeout] = unrefdHandle;
this._handle.start(delay, 0);
this._handle.domain = this.domain;
2012-07-13 02:19:01 +00:00
this._handle.unref();
}
return this;
2012-07-13 02:19:01 +00:00
};
Timeout.prototype.ref = function() {
if (this._handle)
this._handle.ref();
return this;
2012-07-13 02:19:01 +00:00
};
Timeout.prototype.close = function() {
this._onTimeout = null;
if (this._handle) {
this._handle[kOnTimeout] = null;
2012-07-13 02:19:01 +00:00
this._handle.close();
} else {
exports.unenroll(this);
}
return this;
2012-07-13 02:19:01 +00:00
};
2012-08-08 02:12:01 +00:00
var immediateQueue = {};
2012-08-08 02:12:01 +00:00
L.init(immediateQueue);
function processImmediate() {
var queue = immediateQueue;
var domain, immediate;
immediateQueue = {};
L.init(immediateQueue);
2012-08-08 02:12:01 +00:00
while (L.isEmpty(queue) === false) {
immediate = L.shift(queue);
domain = immediate.domain;
if (domain)
domain.enter();
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);
}
}
}
if (domain)
domain.exit();
}
2012-08-08 02:12:01 +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
function Immediate() { }
Immediate.prototype.domain = undefined;
Immediate.prototype._onImmediate = undefined;
Immediate.prototype._idleNext = undefined;
Immediate.prototype._idlePrev = undefined;
exports.setImmediate = function(callback, arg1, arg2, arg3) {
if (typeof callback !== 'function') {
throw new TypeError('"callback" argument must be a function');
}
var i, args;
var len = arguments.length;
var immediate = new Immediate();
2012-08-08 02:12:01 +00:00
L.init(immediate);
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
}
if (!process._needImmediateCallback) {
process._needImmediateCallback = true;
process._immediateCallback = processImmediate;
2012-08-08 02:12:01 +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;
immediate._onImmediate = undefined;
2012-08-08 02:12:01 +00:00
L.remove(immediate);
if (L.isEmpty(immediateQueue)) {
process._needImmediateCallback = false;
2012-08-08 02:12:01 +00:00
}
};