added the PID controller so we yield to the browser every once in a while.
This commit is contained in:
parent
825e9bbea1
commit
299f825c72
|
@ -221,7 +221,7 @@ var comet = function() {
|
|||
pNode.style.whiteSpace = 'pre';
|
||||
pNode.appendChild(document.createTextNode(String(v)));
|
||||
document.body.appendChild(pNode);
|
||||
console.log(v);
|
||||
//console.log(v);
|
||||
output.push(String(v)); } };
|
||||
|
||||
var onSuccess = function(v) {
|
||||
|
|
55
runtime.js
55
runtime.js
|
@ -342,12 +342,52 @@ var MACHINE = { callsBeforeTrampoline: 100,
|
|||
running : false,
|
||||
params: { currentDisplayer: function(v) {},
|
||||
currentErrorHandler: function(e) {},
|
||||
currentNamespace: {}}};
|
||||
currentNamespace: {},
|
||||
|
||||
// These parameters control how often
|
||||
// control yields back to the browser
|
||||
// for response. The implementation is a
|
||||
// simple PID controller.
|
||||
//
|
||||
// To tune this, adjust desiredYieldsPerSecond.
|
||||
// Do no touch numBouncesBeforeYield or
|
||||
// maxNumBouncesBeforeYield, because those
|
||||
// are adjusted automatically by the
|
||||
// recomputeMaxNumBouncesBeforeYield
|
||||
// procedure.
|
||||
desiredYieldsPerSecond: 5,
|
||||
numBouncesBeforeYield: 2000, // self-adjusting
|
||||
maxNumBouncesBeforeYield: 2000 // self-adjusting
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
// recomputeGas: state number -> number
|
||||
var recomputeMaxNumBouncesBeforeYield = function(observedDelay) {
|
||||
// We'd like to see a delay of DESIRED_DELAY_BETWEEN_BOUNCES so
|
||||
// that we get MACHINE.params.desiredYieldsPerSecond bounces per
|
||||
// second.
|
||||
var DESIRED_DELAY_BETWEEN_BOUNCES =
|
||||
(1000 / MACHINE.params.desiredYieldsPerSecond);
|
||||
var ALPHA = 256;
|
||||
var delta = (ALPHA * ((DESIRED_DELAY_BETWEEN_BOUNCES -
|
||||
observedDelay) /
|
||||
DESIRED_DELAY_BETWEEN_BOUNCES));
|
||||
MACHINE.params.maxNumBouncesBeforeYield =
|
||||
Math.max(MACHINE.params.maxNumBouncesBeforeYield + delta,
|
||||
1);
|
||||
};
|
||||
|
||||
|
||||
var trampoline = function(initialJump, success, fail) {
|
||||
var thunk = initialJump;
|
||||
var startTime = (new Date()).valueOf();
|
||||
MACHINE.callsBeforeTrampoline = 100;
|
||||
MACHINE.params.numBouncesBeforeYield =
|
||||
MACHINE.params.maxNumBouncesBeforeYield;
|
||||
MACHINE.running = true;
|
||||
|
||||
while(thunk) {
|
||||
try {
|
||||
thunk();
|
||||
|
@ -356,10 +396,23 @@ var trampoline = function(initialJump, success, fail) {
|
|||
if (typeof(e) === 'function') {
|
||||
thunk = e;
|
||||
MACHINE.callsBeforeTrampoline = 100;
|
||||
|
||||
if (MACHINE.params.numBouncesBeforeYield-- < 0) {
|
||||
recomputeMaxNumBouncesBeforeYield(
|
||||
(new Date()).valueOf() - startTime);
|
||||
setTimeout(
|
||||
function() {
|
||||
trampoline(thunk, success, fail);
|
||||
},
|
||||
0);
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
MACHINE.running = false;
|
||||
return fail(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
MACHINE.running = false;
|
||||
return success();
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user