-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port from joyent/node: timers: fix timeout when added in timer's callback
#2232
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -453,3 +453,9 @@ exports.fileExists = function(pathname) { | |
return false; | ||
} | ||
}; | ||
|
||
exports.busyLoop = function busyLoop(time) { | ||
var startTime = Date.now(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah nice, true. |
||
var stopTime = startTime + time; | ||
while (Date.now() < stopTime); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am on mobile right now. I would like to check if this will be an infinite loop if There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Anything There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah cool then :) |
||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
'use strict'; | ||
|
||
/* | ||
* This is a regression test for https://github.com/joyent/node/issues/15447 | ||
* and https://github.com/joyent/node/issues/9333. | ||
* | ||
* When a timer is added in another timer's callback, its underlying timer | ||
* handle was started with a timeout that was actually incorrect. | ||
* | ||
* The reason was that the value that represents the current time was not | ||
* updated between the time the original callback was called and the time | ||
* the added timer was processed by timers.listOnTimeout. That lead the | ||
* logic in timers.listOnTimeout to do an incorrect computation that made | ||
* the added timer fire with a timeout of scheduledTimeout + | ||
* timeSpentInCallback. | ||
* | ||
* This test makes sure that a timer added by another timer's callback | ||
* fire with the expected timeout. | ||
* | ||
* It makes sure that it works when the timers list for a given timeout is | ||
* empty (see testAddingTimerToEmptyTimersList) and when the timers list | ||
* is not empty (see testAddingTimerToNonEmptyTimersList). | ||
*/ | ||
|
||
const assert = require('assert'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 'use strict'? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I knew it was missing something. |
||
const common = require('../common'); | ||
|
||
const TIMEOUT = 100; | ||
|
||
var nbBlockingCallbackCalls = 0; | ||
var latestDelay = 0; | ||
var timeCallbackScheduled = 0; | ||
|
||
function initTest() { | ||
nbBlockingCallbackCalls = 0; | ||
latestDelay = 0; | ||
timeCallbackScheduled = 0; | ||
} | ||
|
||
function blockingCallback(callback) { | ||
++nbBlockingCallbackCalls; | ||
|
||
if (nbBlockingCallbackCalls > 1) { | ||
latestDelay = Date.now() - timeCallbackScheduled; | ||
// Even if timers can fire later than when they've been scheduled | ||
// to fire, they should more than 50% later with a timeout of | ||
// 100ms. Firing later than that would mean that we hit the regression | ||
// highlighted in | ||
// https://github.com/joyent/node/issues/15447 and | ||
// https://github.com/joyent/node/issues/9333. | ||
assert(latestDelay < TIMEOUT * 1.5); | ||
if (callback) | ||
return callback(); | ||
} else { | ||
// block by busy-looping to trigger the issue | ||
common.busyLoop(TIMEOUT); | ||
|
||
timeCallbackScheduled = Date.now(); | ||
setTimeout(blockingCallback, TIMEOUT); | ||
} | ||
} | ||
|
||
function testAddingTimerToEmptyTimersList(callback) { | ||
initTest(); | ||
// Call setTimeout just once to make sure the timers list is | ||
// empty when blockingCallback is called. | ||
setTimeout(blockingCallback.bind(null, callback), TIMEOUT); | ||
} | ||
|
||
function testAddingTimerToNonEmptyTimersList() { | ||
initTest(); | ||
// Call setTimeout twice with the same timeout to make | ||
// sure the timers list is not empty when blockingCallback is called. | ||
setTimeout(blockingCallback, TIMEOUT); | ||
setTimeout(blockingCallback, TIMEOUT); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This call would change the value of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's that mean in practice? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @thefourtheye How so? |
||
} | ||
|
||
// Run the test for the empty timers list case, and then for the non-empty | ||
// timers list one | ||
testAddingTimerToEmptyTimersList(testAddingTimerToNonEmptyTimersList); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This catch block and the function is not finished, I think
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, that was a merge conflict mis-resolve.