2017-01-03 21:16:48 +00:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2014-11-22 15:59:48 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-12-18 12:43:53 +00:00
|
|
|
const {
|
|
|
|
Timer: TimerWrap,
|
2018-02-05 19:29:32 +00:00
|
|
|
setupTimers,
|
2017-12-18 12:43:53 +00:00
|
|
|
} = process.binding('timer_wrap');
|
2015-09-26 21:27:36 +00:00
|
|
|
const L = require('internal/linkedlist');
|
2018-02-11 21:35:59 +00:00
|
|
|
const {
|
|
|
|
async_id_symbol,
|
|
|
|
trigger_async_id_symbol,
|
|
|
|
Timeout,
|
2018-02-12 00:20:42 +00:00
|
|
|
initAsyncResource,
|
2018-02-11 21:35:59 +00:00
|
|
|
validateTimerDuration
|
|
|
|
} = require('internal/timers');
|
2017-04-14 19:42:47 +00:00
|
|
|
const internalUtil = require('internal/util');
|
|
|
|
const { createPromise, promiseResolve } = process.binding('util');
|
2016-02-26 19:18:52 +00:00
|
|
|
const assert = require('assert');
|
2014-12-16 22:17:28 +00:00
|
|
|
const util = require('util');
|
2018-02-27 13:55:32 +00:00
|
|
|
const { ERR_INVALID_CALLBACK } = require('internal/errors').codes;
|
2014-12-16 22:17:28 +00:00
|
|
|
const debug = util.debuglog('timer');
|
2017-10-07 14:50:42 +00:00
|
|
|
const {
|
2018-02-11 21:35:59 +00:00
|
|
|
destroyHooksExist,
|
2017-10-07 14:50:42 +00:00
|
|
|
// The needed emit*() functions.
|
|
|
|
emitBefore,
|
|
|
|
emitAfter,
|
|
|
|
emitDestroy
|
2017-11-12 17:46:55 +00:00
|
|
|
} = require('internal/async_hooks');
|
2013-08-15 17:23:36 +00:00
|
|
|
|
2017-12-26 19:17:37 +00:00
|
|
|
// *Must* match Environment::ImmediateInfo::Fields in src/env.h.
|
|
|
|
const kCount = 0;
|
2018-01-13 21:51:28 +00:00
|
|
|
const kRefCount = 1;
|
|
|
|
const kHasOutstanding = 2;
|
2017-12-26 19:17:37 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
const [immediateInfo, toggleImmediateRef] =
|
2018-02-05 19:29:32 +00:00
|
|
|
setupTimers(processImmediate, processTimers);
|
2017-11-15 23:43:12 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
const kRefed = Symbol('refed');
|
|
|
|
|
2016-02-26 19:19:51 +00:00
|
|
|
// HOW and WHY the timers implementation works the way it does.
|
|
|
|
//
|
|
|
|
// Timers are crucial to Node.js. Internally, any TCP I/O connection creates a
|
|
|
|
// timer so that we can time out of connections. Additionally, many user
|
2017-02-12 13:16:52 +00:00
|
|
|
// libraries and applications also use timers. As such there may be a
|
2016-02-26 19:19:51 +00:00
|
|
|
// significantly large amount of timeouts scheduled at any given time.
|
|
|
|
// Therefore, it is very important that the timers implementation is performant
|
|
|
|
// and efficient.
|
|
|
|
//
|
2018-03-29 01:38:17 +00:00
|
|
|
// Note: It is suggested you first read through the lib/internal/linkedlist.js
|
2016-02-26 19:19:51 +00:00
|
|
|
// linked list implementation, since timers depend on it extensively. It can be
|
|
|
|
// somewhat counter-intuitive at first, as it is not actually a class. Instead,
|
|
|
|
// it is a set of helpers that operate on an existing object.
|
|
|
|
//
|
|
|
|
// In order to be as performant as possible, the architecture and data
|
|
|
|
// structures are designed so that they are optimized to handle the following
|
|
|
|
// use cases as efficiently as possible:
|
|
|
|
|
|
|
|
// - Adding a new timer. (insert)
|
|
|
|
// - Removing an existing timer. (remove)
|
|
|
|
// - Handling a timer timing out. (timeout)
|
|
|
|
//
|
|
|
|
// Whenever possible, the implementation tries to make the complexity of these
|
|
|
|
// operations as close to constant-time as possible.
|
|
|
|
// (So that performance is not impacted by the number of scheduled timers.)
|
|
|
|
//
|
|
|
|
// Object maps are kept which contain linked lists keyed by their duration in
|
|
|
|
// milliseconds.
|
|
|
|
// The linked lists within also have some meta-properties, one of which is a
|
|
|
|
// TimerWrap C++ handle, which makes the call after the duration to process the
|
|
|
|
// list it is attached to.
|
|
|
|
//
|
2018-02-04 19:38:18 +00:00
|
|
|
/* eslint-disable node-core/non-ascii-character */
|
2016-02-26 19:19:51 +00:00
|
|
|
//
|
|
|
|
// ╔════ > Object Map
|
|
|
|
// ║
|
|
|
|
// ╠══
|
|
|
|
// ║ refedLists: { '40': { }, '320': { etc } } (keys of millisecond duration)
|
|
|
|
// ╚══ ┌─────────┘
|
|
|
|
// │
|
|
|
|
// ╔══ │
|
|
|
|
// ║ TimersList { _idleNext: { }, _idlePrev: (self), _timer: (TimerWrap) }
|
|
|
|
// ║ ┌────────────────┘
|
|
|
|
// ║ ╔══ │ ^
|
|
|
|
// ║ ║ { _idleNext: { }, _idlePrev: { }, _onTimeout: (callback) }
|
|
|
|
// ║ ║ ┌───────────┘
|
|
|
|
// ║ ║ │ ^
|
|
|
|
// ║ ║ { _idleNext: { etc }, _idlePrev: { }, _onTimeout: (callback) }
|
|
|
|
// ╠══ ╠══
|
|
|
|
// ║ ║
|
|
|
|
// ║ ╚════ > Actual JavaScript timeouts
|
|
|
|
// ║
|
|
|
|
// ╚════ > Linked List
|
|
|
|
//
|
2018-02-04 19:38:18 +00:00
|
|
|
/* eslint-enable node-core/non-ascii-character */
|
2016-02-26 19:19:51 +00:00
|
|
|
//
|
|
|
|
// With this, virtually constant-time insertion (append), removal, and timeout
|
|
|
|
// is possible in the JavaScript layer. Any one list of timers is able to be
|
|
|
|
// sorted by just appending to it because all timers within share the same
|
|
|
|
// duration. Therefore, any timer added later will always have been scheduled to
|
|
|
|
// timeout later, thus only needing to be appended.
|
|
|
|
// Removal from an object-property linked list is also virtually constant-time
|
|
|
|
// as can be seen in the lib/internal/linkedlist.js implementation.
|
2017-01-26 19:29:39 +00:00
|
|
|
// Timeouts only need to process any timers currently due to expire, which will
|
2016-02-26 19:19:51 +00:00
|
|
|
// always be at the beginning of the list for reasons stated above. Any timers
|
|
|
|
// after the first one encountered that does not yet need to timeout will also
|
|
|
|
// always be due to timeout at a later time.
|
|
|
|
//
|
|
|
|
// Less-than constant time operations are thus contained in two places:
|
|
|
|
// TimerWrap's backing libuv timers implementation (a performant heap-based
|
|
|
|
// queue), and the object map lookup of a specific list by the duration of
|
|
|
|
// timers within (or creation of a new list).
|
|
|
|
// However, these operations combined have shown to be trivial in comparison to
|
|
|
|
// other alternative timers architectures.
|
|
|
|
|
|
|
|
|
2016-02-26 19:18:52 +00:00
|
|
|
// Object maps containing linked lists of timers, keyed and sorted by their
|
|
|
|
// duration in milliseconds.
|
2011-01-13 10:09:03 +00:00
|
|
|
//
|
2016-02-26 19:19:51 +00:00
|
|
|
// The difference between these two objects is that the former contains timers
|
|
|
|
// that will keep the process open if they are the only thing left, while the
|
|
|
|
// latter will not.
|
|
|
|
//
|
|
|
|
// - key = time in milliseconds
|
|
|
|
// - value = linked list
|
2016-09-20 06:10:50 +00:00
|
|
|
const refedLists = Object.create(null);
|
|
|
|
const unrefedLists = Object.create(null);
|
2010-10-26 18:56:32 +00:00
|
|
|
|
2015-10-01 05:18:36 +00:00
|
|
|
|
2016-02-26 19:18:52 +00:00
|
|
|
// Schedule or re-schedule a timer.
|
|
|
|
// The item must have been enroll()'d first.
|
2015-08-22 18:46:36 +00:00
|
|
|
const active = exports.active = function(item) {
|
2016-02-26 19:18:52 +00:00
|
|
|
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.
|
2016-02-26 19:19:51 +00:00
|
|
|
//
|
|
|
|
// Appends a timer onto the end of an existing timers list, or creates a new
|
|
|
|
// TimerWrap backed list if one does not already exist for the specified timeout
|
|
|
|
// duration.
|
2017-08-14 01:59:15 +00:00
|
|
|
function insert(item, unrefed, start) {
|
2015-10-01 05:18:36 +00:00
|
|
|
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
|
|
|
|
2017-08-14 01:59:15 +00:00
|
|
|
if (typeof start === 'number') {
|
|
|
|
item._idleStart = start;
|
|
|
|
} else {
|
|
|
|
item._idleStart = TimerWrap.now();
|
|
|
|
}
|
2015-10-01 05:18:36 +00:00
|
|
|
|
2016-02-26 19:18:52 +00:00
|
|
|
const lists = unrefed === true ? unrefedLists : refedLists;
|
2011-06-08 02:35:50 +00:00
|
|
|
|
2016-02-26 19:19:51 +00:00
|
|
|
// Use an existing list if there is one, otherwise we need to make a new one.
|
2016-02-26 19:18:52 +00:00
|
|
|
var list = lists[msecs];
|
2017-11-29 17:46:13 +00:00
|
|
|
if (list === undefined) {
|
2016-02-26 19:18:52 +00:00
|
|
|
debug('no %d list was found in insert, creating a new one', msecs);
|
2017-11-29 17:46:13 +00:00
|
|
|
lists[msecs] = list = new TimersList(msecs, unrefed);
|
2012-12-27 19:40:42 +00:00
|
|
|
}
|
|
|
|
|
2017-03-10 13:17:42 +00:00
|
|
|
if (!item[async_id_symbol] || item._destroyed) {
|
|
|
|
item._destroyed = false;
|
2018-02-12 00:20:42 +00:00
|
|
|
initAsyncResource(item, 'Timeout');
|
2017-03-10 13:17:42 +00:00
|
|
|
}
|
|
|
|
|
2012-12-27 19:40:42 +00:00
|
|
|
L.append(list, item);
|
|
|
|
assert(!L.isEmpty(list)); // list is not empty
|
2016-02-26 19:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function TimersList(msecs, unrefed) {
|
2017-11-29 17:46:13 +00:00
|
|
|
this._idleNext = this; // Create the list with the linkedlist properties to
|
|
|
|
this._idlePrev = this; // prevent any unnecessary hidden class changes.
|
2016-02-26 19:18:52 +00:00
|
|
|
this._unrefed = unrefed;
|
|
|
|
this.msecs = msecs;
|
2017-11-29 17:46:13 +00:00
|
|
|
|
|
|
|
const timer = this._timer = new TimerWrap();
|
|
|
|
timer._list = this;
|
|
|
|
|
|
|
|
if (unrefed === true)
|
|
|
|
timer.unref();
|
|
|
|
timer.start(msecs);
|
2016-02-26 19:18:52 +00:00
|
|
|
}
|
2012-12-27 19:40:42 +00:00
|
|
|
|
2018-02-05 19:29:32 +00:00
|
|
|
function processTimers(now) {
|
|
|
|
if (this.owner)
|
|
|
|
return unrefdHandle(this.owner, now);
|
|
|
|
return listOnTimeout(this, now);
|
|
|
|
}
|
|
|
|
|
|
|
|
function listOnTimeout(handle, now) {
|
|
|
|
const list = handle._list;
|
2018-01-31 15:36:32 +00:00
|
|
|
const msecs = list.msecs;
|
2010-10-26 18:56:32 +00:00
|
|
|
|
2013-05-21 22:22:05 +00:00
|
|
|
debug('timeout callback %d', msecs);
|
2015-07-24 00:09:21 +00:00
|
|
|
debug('now: %d', now);
|
2012-12-27 19:40:42 +00:00
|
|
|
|
2016-02-26 19:18:52 +00:00
|
|
|
var diff, timer;
|
|
|
|
while (timer = L.peek(list)) {
|
|
|
|
diff = now - timer._idleStart;
|
|
|
|
|
2016-02-26 19:19:51 +00:00
|
|
|
// Check if this loop iteration is too early for the next timer.
|
|
|
|
// This happens if there are more timers scheduled for later in the list.
|
2012-10-26 05:49:22 +00:00
|
|
|
if (diff < msecs) {
|
2015-07-24 00:09:21 +00:00
|
|
|
var timeRemaining = msecs - (TimerWrap.now() - timer._idleStart);
|
2018-01-31 18:37:01 +00:00
|
|
|
if (timeRemaining <= 0) {
|
2017-08-29 09:35:56 +00:00
|
|
|
timeRemaining = 1;
|
2015-07-24 00:09:21 +00:00
|
|
|
}
|
2018-02-05 19:29:32 +00:00
|
|
|
handle.start(timeRemaining);
|
2013-05-21 22:22:05 +00:00
|
|
|
debug('%d list wait because diff is %d', msecs, diff);
|
2018-01-29 23:22:12 +00:00
|
|
|
return true;
|
2016-02-26 19:18:52 +00:00
|
|
|
}
|
|
|
|
|
2016-02-26 19:19:51 +00:00
|
|
|
// The actual logic for when a timeout happens.
|
2012-12-27 19:40:42 +00:00
|
|
|
|
2016-02-26 19:18:52 +00:00
|
|
|
L.remove(timer);
|
|
|
|
assert(timer !== L.peek(list));
|
2012-12-27 19:40:42 +00:00
|
|
|
|
2017-03-10 13:17:42 +00:00
|
|
|
if (!timer._onTimeout) {
|
2018-02-11 21:35:59 +00:00
|
|
|
if (destroyHooksExist() && !timer._destroyed &&
|
2017-03-10 13:17:42 +00:00
|
|
|
typeof timer[async_id_symbol] === 'number') {
|
|
|
|
emitDestroy(timer[async_id_symbol]);
|
|
|
|
timer._destroyed = true;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2016-02-26 19:18:52 +00:00
|
|
|
|
2018-02-05 14:47:01 +00:00
|
|
|
tryOnTimeout(timer);
|
2010-10-26 18:56:32 +00:00
|
|
|
}
|
|
|
|
|
2016-02-26 19:19:51 +00:00
|
|
|
// If `L.peek(list)` returned nothing, the list was either empty or we have
|
|
|
|
// called all of the timer timeouts.
|
|
|
|
// As such, we can remove the list and clean up the TimerWrap C++ handle.
|
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));
|
2016-07-21 18:50:25 +00:00
|
|
|
|
|
|
|
// Either refedLists[msecs] or unrefedLists[msecs] may have been removed and
|
|
|
|
// recreated since the reference to `list` was created. Make sure they're
|
|
|
|
// the same instance of the list before destroying.
|
|
|
|
if (list._unrefed === true && list === unrefedLists[msecs]) {
|
2016-02-26 19:18:52 +00:00
|
|
|
delete unrefedLists[msecs];
|
2016-07-21 18:50:25 +00:00
|
|
|
} else if (list === refedLists[msecs]) {
|
2016-02-26 19:18:52 +00:00
|
|
|
delete refedLists[msecs];
|
|
|
|
}
|
2017-02-20 05:31:15 +00:00
|
|
|
|
|
|
|
// Do not close the underlying handle if its ownership has changed
|
|
|
|
// (e.g it was unrefed in its callback).
|
2018-02-05 19:29:32 +00:00
|
|
|
if (!handle.owner)
|
|
|
|
handle.close();
|
2017-02-20 05:31:15 +00:00
|
|
|
|
2018-01-29 23:22:12 +00:00
|
|
|
return true;
|
2018-02-05 19:29:32 +00:00
|
|
|
}
|
2016-02-26 19:18:52 +00:00
|
|
|
|
|
|
|
|
2015-12-06 06:35:52 +00:00
|
|
|
// An optimization so that the try/finally only de-optimizes (since at least v8
|
|
|
|
// 4.7) what is in this smaller function.
|
2018-02-05 16:19:11 +00:00
|
|
|
function tryOnTimeout(timer, start) {
|
2016-02-26 19:18:52 +00:00
|
|
|
timer._called = true;
|
2017-03-10 13:17:42 +00:00
|
|
|
const timerAsyncId = (typeof timer[async_id_symbol] === 'number') ?
|
2017-07-05 16:21:40 +00:00
|
|
|
timer[async_id_symbol] : null;
|
2016-02-26 19:18:52 +00:00
|
|
|
var threw = true;
|
2017-03-10 13:17:42 +00:00
|
|
|
if (timerAsyncId !== null)
|
2017-09-26 13:50:10 +00:00
|
|
|
emitBefore(timerAsyncId, timer[trigger_async_id_symbol]);
|
2018-04-11 09:04:56 +00:00
|
|
|
if (start === undefined && timer._repeat)
|
|
|
|
start = TimerWrap.now();
|
2016-02-26 19:18:52 +00:00
|
|
|
try {
|
2018-04-11 09:04:56 +00:00
|
|
|
ontimeout(timer);
|
2016-02-26 19:18:52 +00:00
|
|
|
threw = false;
|
|
|
|
} finally {
|
2017-03-10 13:17:42 +00:00
|
|
|
if (timerAsyncId !== null) {
|
|
|
|
if (!threw)
|
2017-07-02 13:59:23 +00:00
|
|
|
emitAfter(timerAsyncId);
|
2018-04-11 09:04:56 +00:00
|
|
|
if (timer._repeat) {
|
|
|
|
rearm(timer, start);
|
|
|
|
} else if (destroyHooksExist() && !timer._destroyed) {
|
2017-03-10 13:17:42 +00:00
|
|
|
emitDestroy(timerAsyncId);
|
|
|
|
timer._destroyed = true;
|
|
|
|
}
|
|
|
|
}
|
2016-02-26 19:18:52 +00:00
|
|
|
}
|
2010-10-26 18:56:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-26 19:19:51 +00:00
|
|
|
// A convenience function for re-using TimerWrap handles more easily.
|
|
|
|
//
|
|
|
|
// This mostly exists to fix https://github.com/nodejs/node/issues/1264.
|
|
|
|
// Handles in libuv take at least one `uv_run` to be registered as unreferenced.
|
|
|
|
// Re-using an existing handle allows us to skip that, so that a second `uv_run`
|
|
|
|
// will return no active handles, even when running `setTimeout(fn).unref()`.
|
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
|
|
|
|
2018-01-31 15:36:32 +00:00
|
|
|
const list = refedLists[item._idleTimeout];
|
2015-10-16 19:34:15 +00:00
|
|
|
// if empty - reuse the watcher
|
2017-11-29 17:46:13 +00:00
|
|
|
if (list !== undefined && L.isEmpty(list)) {
|
2015-10-16 19:34:15 +00:00
|
|
|
debug('reuse hit');
|
2016-02-26 19:18:52 +00:00
|
|
|
list._timer.stop();
|
|
|
|
delete refedLists[item._idleTimeout];
|
|
|
|
return list._timer;
|
2015-10-16 19:34:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-26 19:19:51 +00:00
|
|
|
// Remove a timer. Cancels the timeout and resets the relevant timer properties.
|
2018-01-09 18:25:20 +00:00
|
|
|
function unenroll(item) {
|
2017-03-10 13:17:42 +00:00
|
|
|
// Fewer checks may be possible, but these cover everything.
|
2018-02-11 21:35:59 +00:00
|
|
|
if (destroyHooksExist() &&
|
2017-03-10 13:17:42 +00:00
|
|
|
typeof item[async_id_symbol] === 'number' &&
|
|
|
|
!item._destroyed) {
|
|
|
|
emitDestroy(item[async_id_symbol]);
|
|
|
|
item._destroyed = true;
|
|
|
|
}
|
|
|
|
|
2018-01-31 15:36:32 +00:00
|
|
|
const handle = reuse(item);
|
2017-11-29 17:46:13 +00:00
|
|
|
if (handle !== null) {
|
2011-01-13 10:22:09 +00:00
|
|
|
debug('unenroll: list empty');
|
2016-02-26 19:18:52 +00:00
|
|
|
handle.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;
|
2018-01-09 18:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exports.unenroll = util.deprecate(unenroll,
|
|
|
|
'timers.unenroll() is deprecated. ' +
|
|
|
|
'Please use clearTimeout instead.',
|
2018-02-04 18:59:53 +00:00
|
|
|
'DEP0096');
|
2010-10-26 18:56:32 +00:00
|
|
|
|
|
|
|
|
2016-02-26 19:19:51 +00:00
|
|
|
// Make a regular object able to act as a timer by setting some properties.
|
|
|
|
// This function does not start the timer, see `active()`.
|
|
|
|
// Using existing objects as timers slightly reduces object overhead.
|
2018-01-09 18:25:20 +00:00
|
|
|
function enroll(item, msecs) {
|
2018-04-11 08:43:21 +00:00
|
|
|
msecs = validateTimerDuration(msecs);
|
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
|
|
|
|
2011-01-18 22:26:32 +00:00
|
|
|
L.init(item);
|
2018-04-11 08:43:21 +00:00
|
|
|
item._idleTimeout = msecs;
|
2018-01-09 18:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exports.enroll = util.deprecate(enroll,
|
2018-02-04 18:59:53 +00:00
|
|
|
'timers.enroll() is deprecated. ' +
|
2018-02-10 21:13:46 +00:00
|
|
|
'Please use setTimeout instead.',
|
2018-02-04 18:59:53 +00:00
|
|
|
'DEP0095');
|
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
|
|
|
|
|
|
|
|
2017-04-14 19:42:47 +00:00
|
|
|
function setTimeout(callback, after, arg1, arg2, arg3) {
|
2015-12-20 11:30:04 +00:00
|
|
|
if (typeof callback !== 'function') {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_CALLBACK();
|
2015-12-20 11:30:04 +00:00
|
|
|
}
|
|
|
|
|
2017-11-25 13:07:26 +00:00
|
|
|
var i, args;
|
|
|
|
switch (arguments.length) {
|
|
|
|
// fast cases
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
args = [arg1];
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
args = [arg1, arg2];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
args = [arg1, arg2, arg3];
|
|
|
|
for (i = 5; i < arguments.length; i++) {
|
|
|
|
// extend array dynamically, makes .apply run much faster in v6.0.0
|
|
|
|
args[i - 2] = arguments[i];
|
|
|
|
}
|
|
|
|
break;
|
2011-07-11 22:30:24 +00:00
|
|
|
}
|
2011-06-08 02:35:50 +00:00
|
|
|
|
2018-01-09 18:12:06 +00:00
|
|
|
const timeout = new Timeout(callback, after, args, false, false);
|
2017-02-03 21:05:59 +00:00
|
|
|
active(timeout);
|
|
|
|
|
|
|
|
return timeout;
|
2017-04-14 19:42:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout[internalUtil.promisify.custom] = function(after, value) {
|
|
|
|
const promise = createPromise();
|
2018-01-09 18:12:06 +00:00
|
|
|
const timeout = new Timeout(promise, after, [value], false, false);
|
2017-02-03 21:05:59 +00:00
|
|
|
active(timeout);
|
|
|
|
|
2017-04-14 19:42:47 +00:00
|
|
|
return promise;
|
2016-09-20 06:10:50 +00:00
|
|
|
};
|
|
|
|
|
2017-04-14 19:42:47 +00:00
|
|
|
exports.setTimeout = setTimeout;
|
|
|
|
|
2016-09-20 06:10:50 +00:00
|
|
|
|
2018-04-11 09:04:56 +00:00
|
|
|
function ontimeout(timer) {
|
2018-01-31 15:36:32 +00:00
|
|
|
const args = timer._timerArgs;
|
2017-11-25 13:07:26 +00:00
|
|
|
if (typeof timer._onTimeout !== 'function')
|
|
|
|
return promiseResolve(timer._onTimeout, args[0]);
|
2016-09-20 06:10:50 +00:00
|
|
|
if (!args)
|
2017-05-11 03:59:04 +00:00
|
|
|
timer._onTimeout();
|
2017-11-25 13:07:26 +00:00
|
|
|
else
|
|
|
|
Reflect.apply(timer._onTimeout, timer, args);
|
2016-09-20 06:10:50 +00:00
|
|
|
}
|
|
|
|
|
2018-02-05 14:50:18 +00:00
|
|
|
function rearm(timer, start = TimerWrap.now()) {
|
2016-11-18 20:47:15 +00:00
|
|
|
// // Do not re-arm unenroll'd or closed timers.
|
|
|
|
if (timer._idleTimeout === -1) return;
|
|
|
|
|
2016-09-20 06:10:50 +00:00
|
|
|
// If timer is unref'd (or was - it's permanently removed from the list.)
|
|
|
|
if (timer._handle && timer instanceof Timeout) {
|
|
|
|
timer._handle.start(timer._repeat);
|
|
|
|
} else {
|
|
|
|
timer._idleTimeout = timer._repeat;
|
2017-08-14 01:59:15 +00:00
|
|
|
|
|
|
|
const duration = TimerWrap.now() - start;
|
|
|
|
if (duration >= timer._repeat) {
|
|
|
|
// If callback duration >= timer._repeat,
|
|
|
|
// add 1 ms to avoid blocking eventloop
|
|
|
|
insert(timer, false, start + duration - timer._repeat + 1);
|
|
|
|
} else {
|
|
|
|
insert(timer, false, start);
|
|
|
|
}
|
2016-09-20 06:10:50 +00:00
|
|
|
}
|
|
|
|
}
|
2010-10-26 19:14:17 +00:00
|
|
|
|
2010-10-26 19:52:31 +00:00
|
|
|
|
2018-04-29 08:49:06 +00:00
|
|
|
const clearTimeout = exports.clearTimeout = function clearTimeout(timer) {
|
2018-02-05 18:09:08 +00:00
|
|
|
if (timer && timer._onTimeout) {
|
|
|
|
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 {
|
2015-08-22 18:46:36 +00:00
|
|
|
unenroll(timer);
|
2011-06-08 02:35:50 +00:00
|
|
|
}
|
2010-10-29 07:00:43 +00:00
|
|
|
}
|
2010-10-26 19:52:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-04-29 08:49:06 +00:00
|
|
|
exports.setInterval = function setInterval(callback, repeat, arg1, arg2, arg3) {
|
2015-12-20 11:30:04 +00:00
|
|
|
if (typeof callback !== 'function') {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_CALLBACK();
|
2015-12-20 11:30:04 +00:00
|
|
|
}
|
|
|
|
|
2017-11-25 13:07:26 +00:00
|
|
|
var i, args;
|
|
|
|
switch (arguments.length) {
|
|
|
|
// fast cases
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
args = [arg1];
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
args = [arg1, arg2];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
args = [arg1, arg2, arg3];
|
|
|
|
for (i = 5; i < arguments.length; i++) {
|
|
|
|
// extend array dynamically, makes .apply run much faster in v6.0.0
|
|
|
|
args[i - 2] = arguments[i];
|
|
|
|
}
|
|
|
|
break;
|
2016-09-20 06:10:50 +00:00
|
|
|
}
|
2012-07-01 20:58:22 +00:00
|
|
|
|
2018-01-09 18:12:06 +00:00
|
|
|
const timeout = new Timeout(callback, repeat, args, true, false);
|
2017-02-03 21:05:59 +00:00
|
|
|
active(timeout);
|
|
|
|
|
|
|
|
return timeout;
|
2016-09-20 06:10:50 +00:00
|
|
|
};
|
|
|
|
|
2018-04-11 15:49:07 +00:00
|
|
|
exports.clearInterval = function clearInterval(timer) {
|
|
|
|
// clearTimeout and clearInterval can be used to clear timers created from
|
|
|
|
// both setTimeout and setInterval, as specified by HTML Living Standard:
|
|
|
|
// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-setinterval
|
|
|
|
clearTimeout(timer);
|
2010-10-26 19:14:17 +00:00
|
|
|
};
|
2012-07-13 02:19:01 +00:00
|
|
|
|
2018-02-05 19:29:32 +00:00
|
|
|
function unrefdHandle(timer, now) {
|
2018-01-29 23:22:12 +00:00
|
|
|
try {
|
|
|
|
// Don't attempt to call the callback if it is not a function.
|
2018-02-05 19:29:32 +00:00
|
|
|
if (typeof timer._onTimeout === 'function') {
|
|
|
|
tryOnTimeout(timer, now);
|
2018-01-29 23:22:12 +00:00
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
// Make sure we clean up if the callback is no longer a function
|
|
|
|
// even if the timer is an interval.
|
2018-02-05 19:29:32 +00:00
|
|
|
if (!timer._repeat || typeof timer._onTimeout !== 'function') {
|
|
|
|
timer.close();
|
2018-01-29 23:22:12 +00:00
|
|
|
}
|
2016-11-18 20:47:15 +00:00
|
|
|
}
|
|
|
|
|
2018-01-29 23:22:12 +00:00
|
|
|
return true;
|
2014-11-26 20:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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();
|
2016-02-03 20:27:40 +00:00
|
|
|
} else if (typeof this._onTimeout === 'function') {
|
2018-01-31 15:36:32 +00:00
|
|
|
const now = TimerWrap.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) {
|
2015-08-22 18:46:36 +00:00
|
|
|
unenroll(this);
|
2015-10-16 19:34:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-31 15:36:32 +00:00
|
|
|
const handle = reuse(this);
|
2017-11-29 17:46:13 +00:00
|
|
|
if (handle !== null) {
|
2016-09-06 15:49:19 +00:00
|
|
|
handle._list = undefined;
|
|
|
|
}
|
2015-03-21 16:39:35 +00:00
|
|
|
|
2016-02-26 19:18:52 +00:00
|
|
|
this._handle = handle || new TimerWrap();
|
2014-11-26 20:27:57 +00:00
|
|
|
this._handle.owner = this;
|
2016-08-06 12:29:50 +00:00
|
|
|
this._handle.start(delay);
|
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) {
|
2018-02-11 21:35:59 +00:00
|
|
|
if (destroyHooksExist() &&
|
2017-03-10 13:17:42 +00:00
|
|
|
typeof this[async_id_symbol] === 'number' &&
|
|
|
|
!this._destroyed) {
|
|
|
|
emitDestroy(this[async_id_symbol]);
|
|
|
|
this._destroyed = true;
|
|
|
|
}
|
|
|
|
|
2016-11-18 20:47:15 +00:00
|
|
|
this._idleTimeout = -1;
|
2012-07-13 02:19:01 +00:00
|
|
|
this._handle.close();
|
|
|
|
} else {
|
2015-08-22 18:46:36 +00:00
|
|
|
unenroll(this);
|
2012-07-13 02:19:01 +00:00
|
|
|
}
|
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
|
|
|
|
|
|
|
|
2016-09-18 01:28:20 +00:00
|
|
|
// A linked list for storing `setImmediate()` requests
|
|
|
|
function ImmediateList() {
|
|
|
|
this.head = null;
|
|
|
|
this.tail = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Appends an item to the end of the linked list, adjusting the current tail's
|
|
|
|
// previous and next pointers where applicable
|
|
|
|
ImmediateList.prototype.append = function(item) {
|
2017-11-29 17:46:13 +00:00
|
|
|
if (this.tail !== null) {
|
2016-09-18 01:28:20 +00:00
|
|
|
this.tail._idleNext = item;
|
|
|
|
item._idlePrev = this.tail;
|
|
|
|
} else {
|
|
|
|
this.head = item;
|
|
|
|
}
|
|
|
|
this.tail = item;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Removes an item from the linked list, adjusting the pointers of adjacent
|
|
|
|
// items and the linked list's head or tail pointers as necessary
|
|
|
|
ImmediateList.prototype.remove = function(item) {
|
2017-11-29 17:46:13 +00:00
|
|
|
if (item._idleNext !== null) {
|
2016-09-18 01:28:20 +00:00
|
|
|
item._idleNext._idlePrev = item._idlePrev;
|
|
|
|
}
|
|
|
|
|
2017-11-29 17:46:13 +00:00
|
|
|
if (item._idlePrev !== null) {
|
2016-09-18 01:28:20 +00:00
|
|
|
item._idlePrev._idleNext = item._idleNext;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item === this.head)
|
|
|
|
this.head = item._idleNext;
|
|
|
|
if (item === this.tail)
|
|
|
|
this.tail = item._idlePrev;
|
|
|
|
|
|
|
|
item._idleNext = null;
|
|
|
|
item._idlePrev = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Create a single linked list instance only once at startup
|
2017-12-26 19:17:37 +00:00
|
|
|
const immediateQueue = new ImmediateList();
|
|
|
|
|
|
|
|
// If an uncaught exception was thrown during execution of immediateQueue,
|
|
|
|
// this queue will store all remaining Immediates that need to run upon
|
|
|
|
// resolution of all error handling (if process is still alive).
|
|
|
|
const outstandingQueue = new ImmediateList();
|
2012-08-08 02:12:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
function processImmediate() {
|
2017-12-26 19:17:37 +00:00
|
|
|
const queue = outstandingQueue.head !== null ?
|
|
|
|
outstandingQueue : immediateQueue;
|
|
|
|
var immediate = queue.head;
|
2018-01-13 21:51:28 +00:00
|
|
|
const tail = queue.tail;
|
2013-02-06 02:13:02 +00:00
|
|
|
|
2016-09-18 01:28:20 +00:00
|
|
|
// Clear the linked list early in case new `setImmediate()` calls occur while
|
|
|
|
// immediate callbacks are executed
|
2017-12-26 19:17:37 +00:00
|
|
|
queue.head = queue.tail = null;
|
2012-08-08 02:12:01 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
let count = 0;
|
|
|
|
let refCount = 0;
|
2016-04-28 00:31:59 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
while (immediate !== null) {
|
|
|
|
immediate._destroyed = true;
|
2017-12-26 19:17:37 +00:00
|
|
|
|
|
|
|
const asyncId = immediate[async_id_symbol];
|
|
|
|
emitBefore(asyncId, immediate[trigger_async_id_symbol]);
|
2016-10-13 22:02:52 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
count++;
|
|
|
|
if (immediate[kRefed])
|
|
|
|
refCount++;
|
|
|
|
immediate[kRefed] = undefined;
|
|
|
|
|
|
|
|
tryOnImmediate(immediate, tail, count, refCount);
|
2017-12-26 19:17:37 +00:00
|
|
|
|
|
|
|
emitAfter(asyncId);
|
2013-09-24 21:12:11 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
immediate = immediate._idleNext;
|
2013-07-11 22:58:11 +00:00
|
|
|
}
|
2017-12-26 19:17:37 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
immediateInfo[kCount] -= count;
|
|
|
|
immediateInfo[kRefCount] -= refCount;
|
2017-12-26 19:17:37 +00:00
|
|
|
immediateInfo[kHasOutstanding] = 0;
|
2012-08-27 19:51:25 +00:00
|
|
|
}
|
2012-08-08 02:12:01 +00:00
|
|
|
|
2015-12-06 06:35:52 +00:00
|
|
|
// An optimization so that the try/finally only de-optimizes (since at least v8
|
|
|
|
// 4.7) what is in this smaller function.
|
2018-01-13 21:51:28 +00:00
|
|
|
function tryOnImmediate(immediate, oldTail, count, refCount) {
|
2015-12-06 06:35:52 +00:00
|
|
|
var threw = true;
|
|
|
|
try {
|
2017-07-16 21:32:39 +00:00
|
|
|
// make the actual call outside the try/finally to allow it to be optimized
|
2016-04-28 00:31:59 +00:00
|
|
|
runCallback(immediate);
|
2015-12-06 06:35:52 +00:00
|
|
|
threw = false;
|
|
|
|
} finally {
|
2016-12-09 20:37:32 +00:00
|
|
|
immediate._onImmediate = null;
|
2017-11-15 23:43:12 +00:00
|
|
|
|
2018-02-11 21:35:59 +00:00
|
|
|
if (destroyHooksExist()) {
|
2018-01-13 21:51:28 +00:00
|
|
|
emitDestroy(immediate[async_id_symbol]);
|
2017-03-10 13:17:42 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
if (threw) {
|
|
|
|
immediateInfo[kCount] -= count;
|
|
|
|
immediateInfo[kRefCount] -= refCount;
|
|
|
|
|
|
|
|
if (immediate._idleNext !== null) {
|
|
|
|
// Handle any remaining Immediates after error handling has resolved,
|
|
|
|
// assuming we're still alive to do so.
|
|
|
|
outstandingQueue.head = immediate._idleNext;
|
|
|
|
outstandingQueue.tail = oldTail;
|
|
|
|
immediateInfo[kHasOutstanding] = 1;
|
|
|
|
}
|
2015-12-06 06:35:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-28 00:31:59 +00:00
|
|
|
function runCallback(timer) {
|
|
|
|
const argv = timer._argv;
|
2016-12-09 20:37:32 +00:00
|
|
|
if (typeof timer._onImmediate !== 'function')
|
|
|
|
return promiseResolve(timer._onImmediate, argv[0]);
|
2017-11-25 13:07:26 +00:00
|
|
|
if (!argv)
|
|
|
|
return timer._onImmediate();
|
|
|
|
Reflect.apply(timer._onImmediate, timer, argv);
|
2016-04-28 00:31:59 +00:00
|
|
|
}
|
2015-12-06 06:35:52 +00:00
|
|
|
|
2013-10-07 19:39:52 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
const Immediate = class Immediate {
|
|
|
|
constructor(callback, args) {
|
|
|
|
this._idleNext = null;
|
|
|
|
this._idlePrev = null;
|
|
|
|
// this must be set to null first to avoid function tracking
|
|
|
|
// on the hidden class, revisit in V8 versions after 6.2
|
|
|
|
this._onImmediate = null;
|
|
|
|
this._onImmediate = callback;
|
|
|
|
this._argv = args;
|
|
|
|
this._destroyed = false;
|
|
|
|
this[kRefed] = false;
|
|
|
|
|
2018-02-12 00:20:42 +00:00
|
|
|
initAsyncResource(this, 'Immediate');
|
2018-01-13 21:51:28 +00:00
|
|
|
|
|
|
|
this.ref();
|
|
|
|
immediateInfo[kCount]++;
|
2017-11-25 13:07:26 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
immediateQueue.append(this);
|
2017-11-25 13:07:26 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
ref() {
|
|
|
|
if (this[kRefed] === false) {
|
|
|
|
this[kRefed] = true;
|
|
|
|
if (immediateInfo[kRefCount]++ === 0)
|
|
|
|
toggleImmediateRef(true);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
2017-11-25 13:07:26 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
unref() {
|
|
|
|
if (this[kRefed] === true) {
|
|
|
|
this[kRefed] = false;
|
|
|
|
if (--immediateInfo[kRefCount] === 0)
|
|
|
|
toggleImmediateRef(false);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
};
|
2013-10-07 19:39:52 +00:00
|
|
|
|
2017-04-14 19:42:47 +00:00
|
|
|
function setImmediate(callback, arg1, arg2, arg3) {
|
2015-12-20 11:30:04 +00:00
|
|
|
if (typeof callback !== 'function') {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_CALLBACK();
|
2015-12-20 11:30:04 +00:00
|
|
|
}
|
|
|
|
|
2015-01-10 15:49:21 +00:00
|
|
|
var i, args;
|
2016-04-28 00:31:59 +00:00
|
|
|
switch (arguments.length) {
|
2015-01-10 15:49:21 +00:00
|
|
|
// fast cases
|
|
|
|
case 1:
|
|
|
|
break;
|
|
|
|
case 2:
|
2016-04-28 00:31:59 +00:00
|
|
|
args = [arg1];
|
2015-01-10 15:49:21 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2016-04-28 00:31:59 +00:00
|
|
|
args = [arg1, arg2];
|
2015-01-10 15:49:21 +00:00
|
|
|
break;
|
|
|
|
default:
|
2016-04-28 00:31:59 +00:00
|
|
|
args = [arg1, arg2, arg3];
|
2017-11-25 13:07:26 +00:00
|
|
|
for (i = 4; i < arguments.length; i++) {
|
2016-04-28 00:31:59 +00:00
|
|
|
// extend array dynamically, makes .apply run much faster in v6.0.0
|
2015-01-10 15:49:21 +00:00
|
|
|
args[i - 1] = arguments[i];
|
2017-11-25 13:07:26 +00:00
|
|
|
}
|
2015-01-10 15:49:21 +00:00
|
|
|
break;
|
2012-08-08 02:12:01 +00:00
|
|
|
}
|
2017-11-25 13:07:26 +00:00
|
|
|
|
|
|
|
return new Immediate(callback, args);
|
2017-04-14 19:42:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setImmediate[internalUtil.promisify.custom] = function(value) {
|
|
|
|
const promise = createPromise();
|
2017-11-25 13:07:26 +00:00
|
|
|
new Immediate(promise, [value]);
|
2017-04-14 19:42:47 +00:00
|
|
|
return promise;
|
2016-09-18 01:28:20 +00:00
|
|
|
};
|
|
|
|
|
2017-04-14 19:42:47 +00:00
|
|
|
exports.setImmediate = setImmediate;
|
|
|
|
|
2012-08-08 02:12:01 +00:00
|
|
|
|
2018-04-29 08:49:06 +00:00
|
|
|
exports.clearImmediate = function clearImmediate(immediate) {
|
2018-01-13 21:51:28 +00:00
|
|
|
if (!immediate || immediate._destroyed)
|
|
|
|
return;
|
2012-08-08 02:12:01 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
immediateInfo[kCount]--;
|
|
|
|
immediate._destroyed = true;
|
2017-11-15 23:43:12 +00:00
|
|
|
|
2018-01-13 21:51:28 +00:00
|
|
|
if (immediate[kRefed] && --immediateInfo[kRefCount] === 0)
|
|
|
|
toggleImmediateRef(false);
|
|
|
|
immediate[kRefed] = undefined;
|
|
|
|
|
2018-02-11 21:35:59 +00:00
|
|
|
if (destroyHooksExist()) {
|
2018-01-13 21:51:28 +00:00
|
|
|
emitDestroy(immediate[async_id_symbol]);
|
2017-03-10 13:17:42 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:28:20 +00:00
|
|
|
immediate._onImmediate = null;
|
2012-08-08 02:12:01 +00:00
|
|
|
|
2016-09-18 01:28:20 +00:00
|
|
|
immediateQueue.remove(immediate);
|
2012-08-08 02:12:01 +00:00
|
|
|
};
|