2016-06-17 15:10:12 -04:00
|
|
|
var Thread = require('./thread');
|
|
|
|
|
2016-08-23 18:12:32 -04:00
|
|
|
/**
|
|
|
|
* Utility function to determine if a value is a Promise.
|
|
|
|
* @param {*} value Value to check for a Promise.
|
|
|
|
* @return {Boolean} True if the value appears to be a Promise.
|
|
|
|
*/
|
|
|
|
var isPromise = function (value) {
|
|
|
|
return value && value.then && typeof value.then === 'function';
|
|
|
|
};
|
|
|
|
|
2016-06-17 15:10:12 -04:00
|
|
|
/**
|
|
|
|
* Execute a block.
|
|
|
|
* @param {!Sequencer} sequencer Which sequencer is executing.
|
|
|
|
* @param {!Thread} thread Thread which to read and execute.
|
|
|
|
*/
|
2016-06-17 15:53:58 -04:00
|
|
|
var execute = function (sequencer, thread) {
|
2016-06-09 13:27:30 -04:00
|
|
|
var runtime = sequencer.runtime;
|
2016-06-29 13:48:30 -04:00
|
|
|
var target = runtime.targetForThread(thread);
|
2016-06-09 13:27:30 -04:00
|
|
|
|
2016-06-09 17:08:30 -04:00
|
|
|
// Current block to execute is the one on the top of the stack.
|
|
|
|
var currentBlockId = thread.peekStack();
|
|
|
|
var currentStackFrame = thread.peekStackFrame();
|
|
|
|
|
2016-06-30 19:01:19 -04:00
|
|
|
var opcode = target.blocks.getOpcode(currentBlockId);
|
2016-06-09 13:27:30 -04:00
|
|
|
|
2016-06-17 17:18:44 -04:00
|
|
|
if (!opcode) {
|
|
|
|
console.warn('Could not get opcode for block: ' + currentBlockId);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var blockFunction = runtime.getOpcodeFunction(opcode);
|
2016-08-23 18:12:32 -04:00
|
|
|
var isHat = runtime.getIsHat(opcode);
|
|
|
|
|
|
|
|
// Hats are implemented slightly differently from regular blocks.
|
|
|
|
// If they have an associated block function, it's treated as a predicate;
|
|
|
|
// if not, execution will proceed right through it (as a no-op).
|
2016-08-24 11:04:23 -04:00
|
|
|
if (!blockFunction) {
|
|
|
|
if (!isHat) {
|
2016-08-23 18:12:32 -04:00
|
|
|
console.warn('Could not get implementation for opcode: ' + opcode);
|
|
|
|
}
|
2016-08-24 11:04:23 -04:00
|
|
|
// Skip through the block.
|
|
|
|
// (either hat with no predicate, or missing op).
|
|
|
|
return;
|
2016-06-17 17:18:44 -04:00
|
|
|
}
|
|
|
|
|
2016-06-09 13:28:50 -04:00
|
|
|
// Generate values for arguments (inputs).
|
2016-06-09 13:27:30 -04:00
|
|
|
var argValues = {};
|
|
|
|
|
2016-06-09 13:28:50 -04:00
|
|
|
// Add all fields on this block to the argValues.
|
2016-06-29 13:48:30 -04:00
|
|
|
var fields = target.blocks.getFields(currentBlockId);
|
2016-06-09 13:28:50 -04:00
|
|
|
for (var fieldName in fields) {
|
2016-06-09 14:27:11 -04:00
|
|
|
argValues[fieldName] = fields[fieldName].value;
|
2016-06-09 13:28:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Recursively evaluate input blocks.
|
2016-06-29 13:48:30 -04:00
|
|
|
var inputs = target.blocks.getInputs(currentBlockId);
|
2016-06-09 13:28:50 -04:00
|
|
|
for (var inputName in inputs) {
|
|
|
|
var input = inputs[inputName];
|
|
|
|
var inputBlockId = input.block;
|
2016-06-20 14:24:00 -04:00
|
|
|
// Is there no value for this input waiting in the stack frame?
|
2016-06-20 14:11:21 -04:00
|
|
|
if (typeof currentStackFrame.reported[inputName] === 'undefined') {
|
2016-06-20 14:24:00 -04:00
|
|
|
// If there's not, we need to evaluate the block.
|
2016-06-20 15:04:28 -04:00
|
|
|
var reporterYielded = (
|
|
|
|
sequencer.stepToReporter(thread, inputBlockId, inputName)
|
|
|
|
);
|
|
|
|
// If the reporter yielded, return immediately;
|
|
|
|
// it needs time to finish and report its value.
|
|
|
|
if (reporterYielded) {
|
2016-06-17 15:10:12 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-06-17 17:18:44 -04:00
|
|
|
argValues[inputName] = currentStackFrame.reported[inputName];
|
2016-06-09 13:27:30 -04:00
|
|
|
}
|
|
|
|
|
2016-06-20 14:29:47 -04:00
|
|
|
// If we've gotten this far, all of the input blocks are evaluated,
|
|
|
|
// and `argValues` is fully populated. So, execute the block primitive.
|
|
|
|
// First, clear `currentStackFrame.reported`, so any subsequent execution
|
2016-08-10 11:27:21 -04:00
|
|
|
// (e.g., on return from a branch) gets fresh inputs.
|
2016-06-20 14:29:47 -04:00
|
|
|
currentStackFrame.reported = {};
|
|
|
|
|
2016-06-20 14:31:48 -04:00
|
|
|
var primitiveReportedValue = null;
|
|
|
|
primitiveReportedValue = blockFunction(argValues, {
|
2016-08-23 18:12:32 -04:00
|
|
|
stackFrame: currentStackFrame.executionContext,
|
|
|
|
target: target,
|
2016-07-01 10:44:43 -04:00
|
|
|
yield: function() {
|
|
|
|
thread.setStatus(Thread.STATUS_YIELD);
|
|
|
|
},
|
|
|
|
yieldFrame: function() {
|
|
|
|
thread.setStatus(Thread.STATUS_YIELD_FRAME);
|
|
|
|
},
|
2016-06-13 11:23:39 -04:00
|
|
|
done: function() {
|
2016-07-01 10:44:43 -04:00
|
|
|
thread.setStatus(Thread.STATUS_RUNNING);
|
2016-06-13 11:23:39 -04:00
|
|
|
sequencer.proceedThread(thread);
|
|
|
|
},
|
2016-08-10 11:27:21 -04:00
|
|
|
startBranch: function (branchNum) {
|
|
|
|
sequencer.stepToBranch(thread, branchNum);
|
2016-06-29 20:56:55 -04:00
|
|
|
},
|
2016-08-29 10:26:26 -04:00
|
|
|
startHats: function(requestedHat, opt_matchFields, opt_target) {
|
2016-08-23 18:12:32 -04:00
|
|
|
return (
|
2016-08-29 10:26:26 -04:00
|
|
|
runtime.startHats(requestedHat, opt_matchFields, opt_target)
|
2016-08-23 18:12:32 -04:00
|
|
|
);
|
|
|
|
},
|
2016-08-15 21:37:36 -04:00
|
|
|
ioQuery: function (device, func, args) {
|
|
|
|
// Find the I/O device and execute the query/function call.
|
|
|
|
if (runtime.ioDevices[device] && runtime.ioDevices[device][func]) {
|
|
|
|
var devObject = runtime.ioDevices[device];
|
|
|
|
return devObject[func].call(devObject, args);
|
|
|
|
}
|
|
|
|
}
|
2016-06-13 11:23:39 -04:00
|
|
|
});
|
2016-06-24 11:14:22 -04:00
|
|
|
|
2016-08-23 18:12:32 -04:00
|
|
|
/**
|
|
|
|
* Handle any reported value from the primitive, either directly returned
|
|
|
|
* or after a promise resolves.
|
|
|
|
* @param {*} resolvedValue Value eventually returned from the primitive.
|
|
|
|
*/
|
|
|
|
var handleReport = function (resolvedValue) {
|
|
|
|
thread.pushReportedValue(resolvedValue);
|
|
|
|
if (isHat) {
|
|
|
|
// Hat predicate was evaluated.
|
2016-08-29 10:26:26 -04:00
|
|
|
if (runtime.getIsEdgeActivatedHat(opcode)) {
|
|
|
|
// If this is an edge-activated hat, only proceed if
|
2016-08-23 18:12:32 -04:00
|
|
|
// the value is true and used to be false.
|
2016-08-29 10:26:26 -04:00
|
|
|
var oldEdgeValue = runtime.updateEdgeActivatedValue(
|
2016-08-23 18:12:32 -04:00
|
|
|
currentBlockId,
|
|
|
|
resolvedValue
|
|
|
|
);
|
2016-08-29 10:26:26 -04:00
|
|
|
var edgeWasActivated = !oldEdgeValue && resolvedValue;
|
|
|
|
if (!edgeWasActivated) {
|
2016-08-23 18:12:32 -04:00
|
|
|
sequencer.retireThread(thread);
|
|
|
|
}
|
|
|
|
} else {
|
2016-08-29 10:26:26 -04:00
|
|
|
// Not an edge-activated hat: retire the thread
|
2016-08-23 18:12:32 -04:00
|
|
|
// if predicate was false.
|
|
|
|
if (!resolvedValue) {
|
|
|
|
sequencer.retireThread(thread);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// In a non-hat, report the value visually if necessary if
|
|
|
|
// at the top of the thread stack.
|
|
|
|
if (typeof resolvedValue !== 'undefined' && thread.atStackTop()) {
|
|
|
|
runtime.visualReport(currentBlockId, resolvedValue);
|
|
|
|
}
|
|
|
|
// Finished any yields.
|
|
|
|
thread.setStatus(Thread.STATUS_RUNNING);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-24 11:14:22 -04:00
|
|
|
// If it's a promise, wait until promise resolves.
|
2016-08-23 18:12:32 -04:00
|
|
|
if (isPromise(primitiveReportedValue)) {
|
2016-06-28 13:39:44 -04:00
|
|
|
if (thread.status === Thread.STATUS_RUNNING) {
|
|
|
|
// Primitive returned a promise; automatically yield thread.
|
2016-07-01 10:44:43 -04:00
|
|
|
thread.setStatus(Thread.STATUS_YIELD);
|
2016-06-28 13:39:44 -04:00
|
|
|
}
|
|
|
|
// Promise handlers
|
2016-06-24 11:14:22 -04:00
|
|
|
primitiveReportedValue.then(function(resolvedValue) {
|
2016-08-23 18:12:32 -04:00
|
|
|
handleReport(resolvedValue);
|
2016-06-24 11:14:22 -04:00
|
|
|
sequencer.proceedThread(thread);
|
2016-06-24 11:19:38 -04:00
|
|
|
}, function(rejectionReason) {
|
|
|
|
// Promise rejected: the primitive had some error.
|
|
|
|
// Log it and proceed.
|
2016-06-30 17:13:43 -04:00
|
|
|
console.warn('Primitive rejected promise: ', rejectionReason);
|
2016-07-01 10:44:43 -04:00
|
|
|
thread.setStatus(Thread.STATUS_RUNNING);
|
2016-06-24 11:19:38 -04:00
|
|
|
sequencer.proceedThread(thread);
|
2016-06-28 13:39:44 -04:00
|
|
|
});
|
2016-06-24 11:14:22 -04:00
|
|
|
} else if (thread.status === Thread.STATUS_RUNNING) {
|
2016-08-23 18:12:32 -04:00
|
|
|
handleReport(primitiveReportedValue);
|
2016-06-20 14:11:21 -04:00
|
|
|
}
|
2016-06-09 13:27:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = execute;
|