Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
add ref/unref to setTimeout timers
Browse files Browse the repository at this point in the history
  • Loading branch information
tjfontaine authored and piscisaureus committed Jul 23, 2012
1 parent 2637b5c commit cd6122e
Showing 1 changed file with 37 additions and 5 deletions.
42 changes: 37 additions & 5 deletions lib/timers.js
Expand Up @@ -47,7 +47,6 @@ if (process.env.NODE_DEBUG && /timer/.test(process.env.NODE_DEBUG)) {
// value = list
var lists = {};


// the main function - creates lists on demand and the watchers associated
// with them.
function insert(item, msecs) {
Expand Down Expand Up @@ -151,6 +150,7 @@ exports.enroll = function(item, msecs) {
exports.active = function(item) {
var msecs = item._idleTimeout;
if (msecs >= 0) {

var list = lists[msecs];
if (!list || L.isEmpty(list)) {
insert(item, msecs);
Expand All @@ -176,9 +176,7 @@ exports.setTimeout = function(callback, after) {
after = 1; // schedule on next tick, follows browser behaviour
}

timer = { _idleTimeout: after };
timer._idlePrev = timer;
timer._idleNext = timer;
timer = new Timeout(after);

if (arguments.length <= 2) {
timer._onTimeout = callback;
Expand Down Expand Up @@ -209,7 +207,7 @@ exports.setTimeout = function(callback, after) {
exports.clearTimeout = function(timer) {
if (timer && (timer.ontimeout || timer._onTimeout)) {
timer.ontimeout = timer._onTimeout = null;
if (timer instanceof Timer) {
if (timer instanceof Timer || timer instanceof Timeout) {
timer.close(); // for after === 0
} else {
exports.unenroll(timer);
Expand Down Expand Up @@ -245,3 +243,37 @@ exports.clearInterval = function(timer) {
timer.close();
}
};

var Timeout = function(after) {
this._idleTimeout = after;
this._idlePrev = this;
this._idleNext = this;
this._when = Date.now() + after;
};

Timeout.prototype.unref = function() {
if (!this._handle) {
exports.unenroll(this);
this._handle = new Timer();
this._handle.ontimeout = this._onTimeout;
this._handle.start(this._when - Date.now(), 0);
this._handle.unref();
} else {
this._handle.unref();
}
};

Timeout.prototype.ref = function() {
if (this._handle)
this._handle.ref();
};

Timeout.prototype.close = function() {
this._onTimeout = null;
if (this._handle) {
this._handle.ontimeout = null;
this._handle.close();
} else {
exports.unenroll(this);
}
};

0 comments on commit cd6122e

Please sign in to comment.