Scheduling break

This commit is contained in:
Danny Yoo 2013-03-04 16:39:43 -07:00
parent bb1a24f972
commit 01ac897975
4 changed files with 53 additions and 3 deletions

View File

@ -80,6 +80,16 @@
};
var raiseExnBreak = function(MACHINE, msg) {
var contMarks = MACHINE.captureContinuationMarks();
var k = false;
// FIXME: capture the current continuation and stuff it into
// k, to allow restart if possible.
raise(MACHINE, ExnBreak.constructor([msg, contMarks, k]));
};
var raiseFailure = function(MACHINE, msg) {
var contMarks = MACHINE.captureContinuationMarks();
raise(MACHINE, ExnFail.constructor([msg, contMarks]));
@ -208,7 +218,7 @@
exceptions.exnSetContMarks = function(exn, v) { Exn.mutator(exn, 1, v); };
exceptions.ExnBreak = ExnBreak;
exceptions.makeExnBreak = function(msg, marks) { return ExnBreak.constructor([msg, marks]); };
exceptions.makeExnBreak = function(msg, marks, k) { return ExnBreak.constructor([msg, marks, k]); };
exceptions.isExnBreak = ExnBreak.predicate;
exceptions.exnBreakContinuation =
function(exn) { return ExnBreak.accessor(exn, 0); };
@ -244,6 +254,7 @@
exceptions.raise = raise;
exceptions.raiseExnBreak = raiseExnBreak;
exceptions.raiseFailure = raiseFailure;
exceptions.raiseContractError = raiseContractError;
exceptions.raiseDivisionByZeroError = raiseDivisionByZeroError;

View File

@ -201,6 +201,16 @@
}
var i;
if (MACHINE.breakScheduled) {
MACHINE.breakScheduled = false;
return fail(baselib.exceptions.makeExnBreak("User break.",
MACHINE.captureContinuationMarks(),
// FIXME: capture the continuation as well,
// rather than just hold false.
false));
}
var oldArgcount, oldVal, oldProc, oldErrorHandler, oldControlLength, oldEnvLength;
if (! baselib.arity.isArityMatching(proc.racketArity, args.length - 4)) {
var msg = baselib.format.format("arity mismatch: ~s expected ~s arguments, but received ~s",

View File

@ -106,6 +106,7 @@
// Exceptions and error handling.
var raise = baselib.exceptions.raise;
var makeExnBreak = baselib.exceptions.makeExnBreak;
var raiseUnboundToplevelError = baselib.exceptions.raiseUnboundToplevelError;
var raiseArgumentTypeError = baselib.exceptions.raiseArgumentTypeError;
var raiseContextExpectedValuesError = baselib.exceptions.raiseContextExpectedValuesError;
@ -313,6 +314,13 @@
this.globals = {};
this.primitives = Primitives;
this.exclusiveLock = new ExclusiveLock();
this.breakScheduled = false;
};
// Schedule a break the next time the trampoline begins.
Machine.prototype.scheduleBreak = function() {
this.breakScheduled = true;
};
@ -461,9 +469,29 @@
//
var recomputeMaxNumBouncesBeforeYield;
// Checks to see if we need to handle break. If so, returns true.
// Otherwise, returns false.
var maybeHandleBreak = function(MACHINE) {
if (MACHINE.breakScheduled) {
MACHINE.breakScheduled = false;
MACHINE.running = false;
MACHINE.params.currentErrorHandler(
MACHINE,
makeExnBreak("User break.",
MACHINE.captureContinuationMarks(),
// FIXME: capture the continuation as well,
// rather than just hold false.
false));
return true;
}
return false;
};
var scheduleTrampoline = function(MACHINE, f, release) {
setTimeout(
function() {
if (maybeHandleBreak(MACHINE)) { release(); return; }
MACHINE._trampoline(f, false, release);
},
0);

View File

@ -93,6 +93,7 @@ $(document).ready(function() {
var interruptEvaluation = function() {
console.log('interrupt evaluation');
M.scheduleBreak();
};