Hacked up a shutdown to call the failure continuation.
This commit is contained in:
parent
c39e5e7b0d
commit
0e379fe831
|
@ -123,12 +123,7 @@ var adaptWorldFunction = function(worldFunction) {
|
||||||
success(v);
|
success(v);
|
||||||
},
|
},
|
||||||
function(err) {
|
function(err) {
|
||||||
// FIXME: do error trapping
|
return rawJsworld.shutdown({errorShutdown: err});
|
||||||
if (window.console && window.console.log) {
|
|
||||||
window.console.log(err);
|
|
||||||
} else {
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
}].concat([].slice.call(arguments, 0, arguments.length - 1)));
|
}].concat([].slice.call(arguments, 0, arguments.length - 1)));
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -38,11 +38,10 @@ var rawJsworld = {};
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
return f(a[i], function() { return forEachHelp(i+1); });
|
return f(a[i], function() { return forEachHelp(i+1); });
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
f_error(e);
|
return Jsworld.shutdown({errorShutdown: e});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return forEachHelp(0);
|
return forEachHelp(0);
|
||||||
|
@ -84,10 +83,16 @@ var rawJsworld = {};
|
||||||
|
|
||||||
|
|
||||||
// Close all world computations.
|
// Close all world computations.
|
||||||
Jsworld.shutdown = function() {
|
Jsworld.shutdown = function(options) {
|
||||||
while(runningBigBangs.length > 0) {
|
while(runningBigBangs.length > 0) {
|
||||||
var currentRecord = runningBigBangs.pop();
|
var currentRecord = runningBigBangs.pop();
|
||||||
if (currentRecord) { currentRecord.pause(); }
|
if (currentRecord) { currentRecord.pause(); }
|
||||||
|
if (options.cleanShutdown) {
|
||||||
|
currentRecord.success(world);
|
||||||
|
}
|
||||||
|
if (options.errorShutdown) {
|
||||||
|
currentRecord.fail(options.errorShutdown);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
clear_running_state();
|
clear_running_state();
|
||||||
};
|
};
|
||||||
|
@ -117,8 +122,6 @@ var rawJsworld = {};
|
||||||
var DELAY_BEFORE_RETRY = 10;
|
var DELAY_BEFORE_RETRY = 10;
|
||||||
|
|
||||||
|
|
||||||
var WrappedWorldWithEffects;
|
|
||||||
|
|
||||||
// change_world: CPS( CPS(world -> world) -> void )
|
// change_world: CPS( CPS(world -> world) -> void )
|
||||||
// Adjust the world, and notify all listeners.
|
// Adjust the world, and notify all listeners.
|
||||||
var change_world = function(updater, k) {
|
var change_world = function(updater, k) {
|
||||||
|
@ -139,55 +142,32 @@ var rawJsworld = {};
|
||||||
changingWorld = true;
|
changingWorld = true;
|
||||||
var originalWorld = world;
|
var originalWorld = world;
|
||||||
|
|
||||||
var changeWorldHelp, changeWorldHelp2;
|
var changeWorldHelp;
|
||||||
changeWorldHelp = function() {
|
changeWorldHelp = function() {
|
||||||
if (world instanceof WrappedWorldWithEffects) {
|
forEachK(worldListeners,
|
||||||
var effects = world.getEffects();
|
function(listener, k2) {
|
||||||
forEachK(effects,
|
listener(world, originalWorld, k2);
|
||||||
function(anEffect, k2) {
|
},
|
||||||
anEffect.invokeEffect(change_world, k2);
|
function(e) {
|
||||||
},
|
changingWorld = false;
|
||||||
function (e) {
|
world = originalWorld;
|
||||||
changingWorld = false;
|
throw e;
|
||||||
throw e;
|
},
|
||||||
},
|
function() {
|
||||||
function() {
|
changingWorld = false;
|
||||||
world = world.getWorld();
|
k();
|
||||||
changeWorldHelp2();
|
});
|
||||||
});
|
|
||||||
} else {
|
|
||||||
changeWorldHelp2();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
changeWorldHelp2 = function() {
|
|
||||||
forEachK(worldListeners,
|
|
||||||
function(listener, k2) {
|
|
||||||
listener(world, originalWorld, k2);
|
|
||||||
},
|
|
||||||
function(e) {
|
|
||||||
changingWorld = false;
|
|
||||||
world = originalWorld;
|
|
||||||
throw e; },
|
|
||||||
function() {
|
|
||||||
changingWorld = false;
|
|
||||||
k();
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
updater(world, function(newWorld) {
|
updater(world, function(newWorld) {
|
||||||
world = newWorld;
|
world = newWorld;
|
||||||
changeWorldHelp();
|
changeWorldHelp();
|
||||||
});
|
});
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
changingWorld = false;
|
changingWorld = false;
|
||||||
world = originalWorld;
|
world = originalWorld;
|
||||||
|
return Jsworld.shutdown({errorShutdown: e});
|
||||||
if (typeof(window.console) !== 'undefined' && window.console.log && e.stack) {
|
|
||||||
window.console.log(e.stack);
|
|
||||||
}
|
|
||||||
throw e;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Jsworld.change_world = change_world;
|
Jsworld.change_world = change_world;
|
||||||
|
@ -611,12 +591,15 @@ var rawJsworld = {};
|
||||||
|
|
||||||
var bigBang, StopWhenHandler;
|
var bigBang, StopWhenHandler;
|
||||||
|
|
||||||
function BigBangRecord(top, world, handlerCreators, handlers, attribs) {
|
function BigBangRecord(top, world, handlerCreators, handlers, attribs,
|
||||||
|
success, fail) {
|
||||||
this.top = top;
|
this.top = top;
|
||||||
this.world = world;
|
this.world = world;
|
||||||
this.handlers = handlers;
|
this.handlers = handlers;
|
||||||
this.handlerCreators = handlerCreators;
|
this.handlerCreators = handlerCreators;
|
||||||
this.attribs = attribs;
|
this.attribs = attribs;
|
||||||
|
this.success = success;
|
||||||
|
this.fail = fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
BigBangRecord.prototype.restart = function() {
|
BigBangRecord.prototype.restart = function() {
|
||||||
|
@ -655,7 +638,8 @@ var rawJsworld = {};
|
||||||
|
|
||||||
// Create an activation record for this big-bang.
|
// Create an activation record for this big-bang.
|
||||||
var activationRecord =
|
var activationRecord =
|
||||||
new BigBangRecord(top, init_world, handlerCreators, handlers, attribs);
|
new BigBangRecord(top, init_world, handlerCreators, handlers, attribs,
|
||||||
|
succ, fail);
|
||||||
runningBigBangs.push(activationRecord);
|
runningBigBangs.push(activationRecord);
|
||||||
function keepRecordUpToDate(w, oldW, k2) {
|
function keepRecordUpToDate(w, oldW, k2) {
|
||||||
activationRecord.world = w;
|
activationRecord.world = w;
|
||||||
|
@ -677,13 +661,12 @@ var rawJsworld = {};
|
||||||
}
|
}
|
||||||
var watchForTermination = function(w, oldW, k2) {
|
var watchForTermination = function(w, oldW, k2) {
|
||||||
stopWhen.test(w,
|
stopWhen.test(w,
|
||||||
function(stop) {
|
function(stop) {
|
||||||
if (stop) {
|
if (stop) {
|
||||||
Jsworld.shutdown();
|
Jsworld.shutdown({cleanShutdown: true});
|
||||||
succ(w);
|
}
|
||||||
}
|
else { k2(); }
|
||||||
else { k2(); }
|
});
|
||||||
});
|
|
||||||
};
|
};
|
||||||
add_world_listener(watchForTermination);
|
add_world_listener(watchForTermination);
|
||||||
|
|
||||||
|
@ -1273,45 +1256,4 @@ var rawJsworld = {};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// Effects
|
|
||||||
|
|
||||||
// An effect is an object with an invokeEffect() method.
|
|
||||||
WrappedWorldWithEffects = function(w, effects) {
|
|
||||||
if (w instanceof WrappedWorldWithEffects) {
|
|
||||||
this.w = w.w;
|
|
||||||
this.e = w.e.concat(effects);
|
|
||||||
} else {
|
|
||||||
this.w = w;
|
|
||||||
this.e = effects;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
WrappedWorldWithEffects.prototype.getWorld = function() {
|
|
||||||
return this.w;
|
|
||||||
};
|
|
||||||
|
|
||||||
WrappedWorldWithEffects.prototype.getEffects = function() {
|
|
||||||
return this.e;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
Jsworld.with_effect = function(w, e) {
|
|
||||||
return new WrappedWorldWithEffects(w, [e]);
|
|
||||||
};
|
|
||||||
|
|
||||||
Jsworld.with_multiple_effects = function(w, effects) {
|
|
||||||
return new WrappedWorldWithEffects(w, effects);
|
|
||||||
};
|
|
||||||
|
|
||||||
Jsworld.has_effects = function(w) {
|
|
||||||
return w instanceof WrappedWorldWithEffects;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
}());
|
}());
|
||||||
|
|
Loading…
Reference in New Issue
Block a user