12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109 |
- import { Store } from './store/store';
- import { StoreObject } from './store/storeObject';
- import { StoreObjectArray } from './store/storeObjectArray';
- import { StoreObjectRef } from './store/storeObjectRef';
- import { Modes } from './modes';
- import { Context } from './context';
- import { Types } from './../typeSystem/types';
- import { Operators } from './../ast/operators';
- import { LanguageDefinedFunction } from './definedFunctions';
- import { resultTypeAfterInfixOp, resultTypeAfterUnaryOp } from './compatibilityTable';
- import * as Commands from './../ast/commands/';
- import * as Expressions from './../ast/expressions/';
- import { StoreObjectArrayAddress } from './store/storeObjectArrayAddress';
- import { StoreObjectArrayAddressRef } from './store/storeObjectArrayAddressRef';
- import { ArrayType } from './../typeSystem/array_type';
- import { convertToString } from '../typeSystem/parsers';
- import { Config } from '../util/config';
- import { ProcessorErrorFactory } from './error/processorErrorFactory';
- import { RuntimeError } from './error/runtimeError';
- import { Location } from '../memory/location';
- export class IVProgProcessor {
- static get LOOP_TIMEOUT () {
- return Config.loopTimeout;
- }
- static set LOOP_TIMEOUT (ms) {
- Config.setConfig({loopTimeout: ms});
- }
- static get MAIN_INTERNAL_ID () {
- return "$main";
- }
- constructor (ast) {
- this.ast = ast;
- this.globalStore = new Store("$global");
- this.stores = [this.globalStore];
- this.context = [Context.BASE];
- this.input = null;
- this.forceKill = false;
- this.loopTimers = [];
- this.output = null;
- }
- registerInput (input) {
- if(this.input !== null)
- this.input = null;
- this.input = input;
- }
- registerOutput (output) {
- if(this.output !== null)
- this.output = null;
- this.output = output;
- }
- checkContext(context) {
- return this.context[this.context.length - 1] === context;
- }
- ignoreSwitchCases (store) {
- if (store.mode === Modes.RETURN) {
- return true;
- } else if (store.mode === Modes.BREAK) {
- return true;
- } else {
- return false;
- }
- }
- prepareState () {
- if(this.stores !== null) {
- for (let i = 0; i < this.stores.length; i++) {
- delete this.stores[i];
- }
- this.stores = null;
- }
- if(this.globalStore !== null)
- this.globalStore = null;
- this.globalStore = new Store("$global");
- this.stores = [this.globalStore];
- this.context = [Context.BASE];
- }
- interpretAST () {
- this.prepareState();
- Location.clear();
- return this.initGlobal().then( _ => {
- const mainFunc = this.findMainFunction();
- if(mainFunc === null) {
- throw ProcessorErrorFactory.main_missing();
- }
- return this.runFunction(mainFunc, [], this.globalStore);
- });
- }
- initGlobal () {
- if(!this.checkContext(Context.BASE)) {
- throw ProcessorErrorFactory.invalid_global_var();
- }
- return this.executeCommands(this.globalStore, this.ast.global);
- }
- findMainFunction () {
- return this.ast.functions.find(v => v.isMain);
- }
- findFunction (name) {
- if(name.match(/^\$.+$/)) {
- const fun = LanguageDefinedFunction.getFunction(name);
- if(!fun) {
- throw ProcessorErrorFactory.not_implemented(name);
- }
- return fun;
- } else {
- const val = this.ast.functions.find( v => v.name === name);
- if (!val) {
- throw ProcessorErrorFactory.function_missing(name);
- }
- return val;
- }
- }
- runFunction (func, actualParameters, store) {
- const funcName = func.isMain ? IVProgProcessor.MAIN_INTERNAL_ID : func.name;
- let funcStore = new Store(funcName);
- funcStore.extendStore(this.globalStore);
- let returnStoreObject = null;
- if(func.returnType instanceof ArrayType) {
- if(func.returnType.dimensions > 1) {
- returnStoreObject = new StoreObjectArray(func.returnType,-1,-1,[[]]);
- } else {
- returnStoreObject = new StoreObjectArray(func.returnType,-1,null,[]);
- }
- } else {
- returnStoreObject = new StoreObject(func.returnType, Location.allocate(null));
- }
- funcStore.insertStore('$', returnStoreObject);
- const newFuncStore$ = this.associateParameters(func.formalParameters, actualParameters, store, funcStore);
- const outerRef = this;
- return newFuncStore$.then(sto => {
- this.context.push(Context.FUNCTION);
- this.stores.push(sto);
- return this.executeCommands(sto, func.variablesDeclarations)
- .then(stoWithVars => outerRef.executeCommands(stoWithVars, func.commands)).then(finalSto => {
- outerRef.stores.pop();
- outerRef.context.pop();
- return finalSto;
- });
- });
- }
- associateParameters (formalList, actualList, callerStore, calleeStore) {
- const funcName = calleeStore.name === IVProgProcessor.MAIN_INTERNAL_ID ?
- LanguageDefinedFunction.getMainFunctionName() : calleeStore.name;
- if (formalList.length != actualList.length) {
- throw ProcessorErrorFactory.invalid_parameters_size(funcName, formalList.length, actualList.length);
- }
- const promises$ = actualList.map(actualParameter => this.evaluateExpression(callerStore, actualParameter));
- return Promise.all(promises$).then(values => {
- for (let i = 0; i < values.length; i++) {
- const stoObj = values[i];
- // console.log(calleeStore.name);
- // console.log(stoObj);
- const exp = actualList[i];
- let shouldTypeCast = false;
- const formalParameter = formalList[i];
- if(!formalParameter.type.isCompatible(stoObj.type)) {
- if (Config.enable_type_casting && !formalParameter.byRef
- && Store.canImplicitTypeCast(formalParameter.type, stoObj.type)) {
- shouldTypeCast = true;
- } else {
- throw ProcessorErrorFactory.invalid_parameter_type(funcName, exp.toString());
- }
- }
- if(formalParameter.byRef && !stoObj.inStore) {
- throw ProcessorErrorFactory.invalid_ref(funcName, exp.toString());
- }
- if(formalParameter.byRef) {
- let ref = null;
- if (stoObj instanceof StoreObjectArrayAddress) {
- ref = new StoreObjectArrayAddressRef(stoObj);
- } else {
- ref = new StoreObjectRef(stoObj);
- }
- calleeStore.insertStore(formalParameter.id, ref);
- } else {
- let realValue = this.parseStoreObjectValue(stoObj);
- if (shouldTypeCast) {
- realValue = Store.doImplicitCasting(formalParameter.type, realValue);
- }
- calleeStore.insertStore(formalParameter.id, realValue.copy());
- }
- }
- return calleeStore;
- });
- }
- executeCommands (store, cmds) {
- // helper to partially apply a function, in this case executeCommand
- const outerRef = this;
- const partial = (fun, cmd) => (sto) => fun(sto, cmd);
- return cmds.reduce((lastCommand, next) => {
- const nextCommand = partial(outerRef.executeCommand.bind(outerRef), next);
- return lastCommand.then(nextCommand);
- }, Promise.resolve(store));
- }
- executeCommand (store, cmd) {
- if(this.forceKill) {
- return Promise.reject("FORCED_KILL!");
- } else if (store.mode === Modes.PAUSE) {
- return Promise.resolve(this.executeCommand(store, cmd));
- } else if(store.mode === Modes.RETURN) {
- return Promise.resolve(store);
- } else if(this.checkContext(Context.BREAKABLE) && store.mode === Modes.BREAK) {
- return Promise.resolve(store);
- }
- if (Location.size() % 100 == 0) {
- Location.gc();
- }
- if (cmd instanceof Commands.Declaration) {
- return this.executeDeclaration(store, cmd);
- } else if (cmd instanceof Commands.ArrayIndexAssign) {
- return this.executeArrayIndexAssign(store, cmd);
- } else if (cmd instanceof Commands.Assign) {
- return this.executeAssign(store, cmd);
- } else if (cmd instanceof Commands.Break) {
- return this.executeBreak(store, cmd);
- } else if (cmd instanceof Commands.Return) {
- return this.executeReturn(store, cmd);
- } else if (cmd instanceof Commands.IfThenElse) {
- return this.executeIfThenElse(store, cmd);
- } else if (cmd instanceof Commands.DoWhile) {
- return this.executeDoWhile(store, cmd);
- } else if (cmd instanceof Commands.While) {
- return this.executeWhile(store, cmd);
- } else if (cmd instanceof Commands.For) {
- return this.executeFor(store, cmd);
- } else if (cmd instanceof Commands.Switch) {
- return this.executeSwitch(store, cmd);
- } else if (cmd instanceof Expressions.FunctionCall) {
- return this.executeFunctionCall(store, cmd);
- } else if (cmd instanceof Commands.SysCall) {
- return this.executeSysCall(store, cmd);
- } else {
- throw ProcessorErrorFactory.unknown_command(cmd.sourceInfo);
- }
- }
- executeSysCall (store, cmd) {
- const func = cmd.langFunc.bind(this);
- return func(store, cmd);
- }
- executeFunctionCall (store, cmd) {
- let func = null;
- if(cmd.isMainCall) {
- func = this.findMainFunction();
- } else {
- func = this.findFunction(cmd.id);
- }
- return this.runFunction(func, cmd.actualParameters, store)
- .then(sto => {
- for(let id in sto.store) {
- if (Object.prototype.hasOwnProperty.call(sto.store, id)) {
- sto.store[id].destroy();
- }
- }
- if(!Types.VOID.isCompatible(func.returnType) && sto.mode !== Modes.RETURN) {
- const funcName = func.name === IVProgProcessor.MAIN_INTERNAL_ID ?
- LanguageDefinedFunction.getMainFunctionName() : func.name;
- return Promise.reject(ProcessorErrorFactory.function_no_return(funcName));
- } else {
- return store;
- }
- })
- }
- executeSwitch (store, cmd) {
- this.context.push(Context.BREAKABLE);
- const outerRef = this;
- const caseSequence = cmd.cases.reduce( (prev,next) => {
- return prev.then( tuple => {
- if(outerRef.ignoreSwitchCases(tuple[1])) {
- return Promise.resolve(tuple);
- } else if(tuple[0] || next.isDefault) {
- return outerRef.executeCommands(tuple[1], next.commands)
- .then(nSto => Promise.resolve([true, nSto]));
- } else {
- const equalityInfixApp = new Expressions.InfixApp(Operators.EQ, cmd.expression, next.expression);
- equalityInfixApp.sourceInfo = next.sourceInfo;
- return outerRef.evaluateExpression(tuple[1],equalityInfixApp).then(stoObj => stoObj.value)
- .then(isEqual => {
- if (isEqual) {
- return this.executeCommands(tuple[1], next.commands)
- .then(nSto => Promise.resolve([true, nSto]));
- } else {
- return Promise.resolve(tuple);
- }
- });
- }
- });
- }, Promise.resolve([false, store]));
- return caseSequence.then(tuple => {
- outerRef.context.pop();
- const newStore = tuple[1];
- if (newStore.mode === Modes.BREAK) {
- newStore.mode = Modes.RUN;
- }
- return newStore;
- });
- }
- executeFor (store, cmd) {
- try {
- //BEGIN for -> while rewrite
- const initCmd = cmd.assignment;
- const condition = cmd.condition;
- const increment = cmd.increment;
- const whileBlock = new Commands.CommandBlock([],
- cmd.commands.concat(increment));
- const forAsWhile = new Commands.While(condition, whileBlock);
- forAsWhile.sourceInfo = cmd.sourceInfo;
- //END for -> while rewrite
- const newCmdList = [initCmd,forAsWhile];
- return this.executeCommands(store, newCmdList);
- } catch (error) {
- return Promise.reject(error);
- }
- }
- executeDoWhile (store, cmd) {
- const outerRef = this;
- try {
- outerRef.loopTimers.push(Date.now());
- outerRef.context.push(Context.BREAKABLE);
- const $newStore = outerRef.executeCommands(store, cmd.commands);
- return $newStore.then(sto => {
- if(sto.mode === Modes.BREAK) {
- outerRef.context.pop();
- sto.mode = Modes.RUN;
- outerRef.loopTimers.pop();
- return sto;
- }
- const $value = outerRef.evaluateExpression(sto, cmd.expression);
- return $value.then(vl => {
- if (!vl.type.isCompatible(Types.BOOLEAN)) {
- return Promise.reject(ProcessorErrorFactory.loop_condition_type_full(cmd.sourceInfo));
- }
- if (vl.value) {
- outerRef.context.pop();
- for (let i = 0; i < outerRef.loopTimers.length; i++) {
- const time = outerRef.loopTimers[i];
- if(Date.now() - time >= IVProgProcessor.LOOP_TIMEOUT) {
- outerRef.forceKill = true;
- return Promise.reject(ProcessorErrorFactory.endless_loop_full(cmd.sourceInfo));
- }
- }
- return outerRef.executeCommand(sto, cmd);
- } else {
- outerRef.context.pop();
- outerRef.loopTimers.pop();
- return sto;
- }
- })
- })
- } catch (error) {
- return Promise.reject(error);
- }
- }
- executeWhile (store, cmd) {
- const outerRef = this;
- try {
- outerRef.loopTimers.push(Date.now());
- outerRef.context.push(Context.BREAKABLE);
- const $value = outerRef.evaluateExpression(store, cmd.expression);
- return $value.then(vl => {
- if(vl.type.isCompatible(Types.BOOLEAN)) {
- if(vl.value) {
- const $newStore = outerRef.executeCommands(store, cmd.commands);
- return $newStore.then(sto => {
- outerRef.context.pop();
- if (sto.mode === Modes.BREAK) {
- outerRef.loopTimers.pop();
- sto.mode = Modes.RUN;
- return sto;
- }
- for (let i = 0; i < outerRef.loopTimers.length; i++) {
- const time = outerRef.loopTimers[i];
- if(Date.now() - time >= IVProgProcessor.LOOP_TIMEOUT) {
- outerRef.forceKill = true;
- return Promise.reject(ProcessorErrorFactory.endless_loop_full(cmd.sourceInfo));
- }
- }
- return outerRef.executeCommand(sto, cmd);
- });
- } else {
- outerRef.context.pop();
- outerRef.loopTimers.pop();
- return store;
- }
- } else {
- return Promise.reject(ProcessorErrorFactory.loop_condition_type_full(cmd.expression.toString(), cmd.sourceInfo));
- }
- })
-
- } catch (error) {
- return Promise.reject(error);
- }
- }
- executeIfThenElse (store, cmd) {
- try {
- const $value = this.evaluateExpression(store, cmd.condition);
- return $value.then(vl => {
- if(vl.type.isCompatible(Types.BOOLEAN)) {
- if(vl.value) {
- return this.executeCommands(store, cmd.ifTrue.commands);
- } else if( cmd.ifFalse !== null){
- if(cmd.ifFalse instanceof Commands.IfThenElse) {
- return this.executeCommand(store, cmd.ifFalse);
- } else {
- return this.executeCommands(store, cmd.ifFalse.commands);
- }
- } else {
- return Promise.resolve(store);
- }
- } else {
- return Promise.reject(ProcessorErrorFactory.if_condition_type_full(cmd.condition.toString(), cmd.sourceInfo));
- }
- });
- } catch (error) {
- return Promise.reject(error);
- }
- }
- executeReturn (store, cmd) {
- try {
- const funcType = store.applyStore('$').type;
- const $value = this.evaluateExpression(store, cmd.expression);
- const funcName = store.name === IVProgProcessor.MAIN_INTERNAL_ID ?
- LanguageDefinedFunction.getMainFunctionName() : store.name;
- return $value.then(vl => {
- if(vl === null && funcType.isCompatible(Types.VOID)) {
- store.mode = Modes.RETURN;
- return Promise.resolve(store);
- }
- if (vl === null || !funcType.isCompatible(vl.type)) {
- const stringInfo = funcType.stringInfo();
- const info = stringInfo[0];
- return Promise.reject(ProcessorErrorFactory.invalid_return_type_full(funcName, info.type, info.dim, cmd.sourceInfo));
- } else {
- let realValue = this.parseStoreObjectValue(vl);
- store.updateStore('$', realValue);
- store.mode = Modes.RETURN;
- return Promise.resolve(store);
- }
- });
- } catch (error) {
- return Promise.reject(error);
- }
- }
- executeBreak (store, cmd) {
- if(this.checkContext(Context.BREAKABLE)) {
- store.mode = Modes.BREAK;
- return Promise.resolve(store);
- } else {
- return Promise.reject(ProcessorErrorFactory.unexpected_break_command_full(cmd.sourceInfo));
- }
- }
- executeAssign (store, cmd) {
- try {
- const inStore = store.applyStore(cmd.id);
- const $value = this.evaluateExpression(store, cmd.expression);
- return $value.then( vl => {
- let realValue = this.parseStoreObjectValue(vl);
- if(!inStore.type.isCompatible(realValue.type)) {
- if(Config.enable_type_casting && Store.canImplicitTypeCast(inStore.type, vl.type)) {
- realValue = Store.doImplicitCasting(inStore.type, realValue);
- } else {
- const stringInfo = inStore.type.stringInfo()
- const info = stringInfo[0]
- return Promise.reject(ProcessorErrorFactory.incompatible_types_full(info.type, info.dim, cmd.sourceInfo));
- }
- }
-
- store.updateStore(cmd.id, realValue)
- return store;
- });
- } catch (error) {
- return Promise.reject(error);
- }
- }
- executeArrayIndexAssign (store, cmd) {
- const mustBeArray = store.applyStore(cmd.id);
- if(!(mustBeArray.type instanceof ArrayType)) {
- return Promise.reject(ProcessorErrorFactory.invalid_array_access_full(cmd.id, cmd.sourceInfo));
- }
- const line$ = this.evaluateExpression(store, cmd.line);
- const column$ = this.evaluateExpression(store, cmd.column);
- const value$ = this.evaluateExpression(store, cmd.expression);
- return Promise.all([line$, column$, value$]).then(results => {
- const lineSO = results[0];
- if(!Types.INTEGER.isCompatible(lineSO.type)) {
- return Promise.reject(ProcessorErrorFactory.array_dimension_not_int_full(cmd.sourceInfo));
- }
- const line = lineSO.number;
- const columnSO = results[1];
- let column = null
- if (columnSO !== null) {
- if(!Types.INTEGER.isCompatible(columnSO.type)) {
- return Promise.reject(ProcessorErrorFactory.array_dimension_not_int_full(cmd.sourceInfo));
- }
- column = columnSO.number;
- }
- const value = this.parseStoreObjectValue(results[2]);
- let actualValue = value;
- if (line >= mustBeArray.lines) {
- if(mustBeArray.isVector) {
- return Promise.reject(ProcessorErrorFactory.vector_line_outbounds_full(cmd.id, line, mustBeArray.lines, cmd.sourceInfo));
- } else {
- return Promise.reject(ProcessorErrorFactory.matrix_line_outbounds_full(cmd.id, line, mustBeArray.lines, cmd.sourceInfo));
- }
- } else if (line < 0) {
- throw ProcessorErrorFactory.array_dimension_not_positive_full(cmd.sourceInfo);
- }
- if (column !== null && mustBeArray.columns === null ){
- return Promise.reject(ProcessorErrorFactory.vector_not_matrix_full(cmd.id, cmd.sourceInfo));
- }
- if(column !== null ) {
- if (column >= mustBeArray.columns) {
- return Promise.reject(ProcessorErrorFactory.matrix_column_outbounds_full(cmd.id, column,mustBeArray.columns, cmd.sourceInfo));
- } else if (column < 0) {
- throw ProcessorErrorFactory.array_dimension_not_positive_full(cmd.sourceInfo);
- }
- }
- const newArray = Object.assign(new StoreObjectArray(null,null,null), mustBeArray);
- if (column !== null) {
- if (!newArray.type.canAccept(value.type)) {
- if(!Config.enable_type_casting || !Store.canImplicitTypeCast(mustBeArray.type.innerType, value.type)) {
- const type = mustBeArray.type.innerType;
- const stringInfo = type.stringInfo();
- const info = stringInfo[0];
- const exp = cmd.expression.toString();
- return Promise.reject(ProcessorErrorFactory.incompatible_types_full(info.type, info.dim, cmd.sourceInfo));
- }
- actualValue = Store.doImplicitCasting(mustBeArray.type.innerType, value);
- }
- newArray.value[line].value[column] = actualValue;
- store.updateStore(cmd.id, newArray);
- } else {
- if(!newArray.type.canAccept(value.type)) {
- if(!Config.enable_type_casting || !Store.canImplicitTypeCast(mustBeArray.type.innerType, value.type)) {
- const type = mustBeArray.type;
- const stringInfo = type.stringInfo();
- const info = stringInfo[0];
- const exp = cmd.expression.toString();
- return Promise.reject(ProcessorErrorFactory.incompatible_types_array_full(exp,info.type, info.dim-1, cmd.sourceInfo));
- }
- actualValue = Store.doImplicitCasting(mustBeArray.type.innerType, value);
- }
- newArray.value[line] = actualValue;
- store.updateStore(cmd.id, newArray);
- }
- return store;
- });
- }
- /**
- *
- * @param {Store} store
- * @param {Commands.Declaration} cmd
- */
- executeDeclaration (store, cmd) {
- try {
- let $value = Promise.resolve(null);
- if(cmd instanceof Commands.ArrayDeclaration) {
- if(cmd.initial !== null) {
- // array can only be initialized by a literal....
- $value = this.evaluateArrayLiteral(store, cmd.initial, cmd.type);
- }
- const $lines = this.evaluateExpression(store, cmd.lines);
- const $columns = cmd.columns === null ? null: this.evaluateExpression(store, cmd.columns);
- return Promise.all([$lines, $columns, $value]).then(values => {
- const lineSO = values[0];
- if(!Types.INTEGER.isCompatible(lineSO.type)) {
- return Promise.reject(ProcessorErrorFactory.array_dimension_not_int_full(cmd.sourceInfo));
- }
- const line = lineSO.number;
- if(line < 0) {
- throw ProcessorErrorFactory.array_dimension_not_positive_full(cmd.sourceInfo);
- }
- const columnSO = values[1];
- let column = null
- if (columnSO !== null) {
- if(!Types.INTEGER.isCompatible(columnSO.type)) {
- return Promise.reject(ProcessorErrorFactory.array_dimension_not_int_full(cmd.sourceInfo));
- }
- column = columnSO.number;
- if(column < 0) {
- throw ProcessorErrorFactory.array_dimension_not_positive_full(cmd.sourceInfo);
- }
- }
- const value = values[2];
- const temp = new StoreObjectArray(cmd.type, line, column, null);
- store.insertStore(cmd.id, temp);
- let realValue = value;
- if (value !== null) {
- if(value instanceof StoreObjectArrayAddress) {
- if(value.type instanceof ArrayType) {
- realValue = Object.assign(new StoreObjectArray(null,null,null), value.refValue);
- } else {
- // TODO - update StoObj
- realValue = Object.assign(new StoreObject(null,null), value.refValue);
- }
- }
- } else {
- realValue = new StoreObjectArray(cmd.type, line, column, [])
- if(column !== null) {
- for (let i = 0; i < line; i++) {
- realValue.value.push(new StoreObjectArray(new ArrayType(cmd.type.innerType, 1), column, null, []));
- }
- }
- }
- realValue.readOnly = cmd.isConst;
- store.updateStore(cmd.id, realValue);
- return store;
- });
-
- } else {
- if(cmd.initial !== null) {
- $value = this.evaluateExpression(store, cmd.initial);
- }
- const temp = new StoreObject(cmd.type, Location.allocate(null));
- store.insertStore(cmd.id, temp);
- return $value.then(vl => {
- let realValue = vl;
- if (vl !== null) {
- if(!vl.type.isCompatible(cmd.type)) {
- if(Config.enable_type_casting && Store.canImplicitTypeCast(cmd.type, vl.type)) {
- realValue = Store.doImplicitCasting(cmd.type, realValue);
- } else {
- const stringInfo = vl.type.stringInfo();
- const info = stringInfo[0];
- return Promise.reject(ProcessorErrorFactory.incompatible_types_full(info.type, info.dim, cmd.sourceInfo));
- }
- }
- if(vl instanceof StoreObjectArrayAddress) {
- if(vl.type instanceof ArrayType) {
- return Promise.reject(new Error("!!!Critical Error: Compatibility check failed, a Type accepts a ArrayType"))
- } else {
- // TODO - update StoObj
- realValue = Object.assign(new StoreObject(null,null), vl.refValue);
- }
- }
- } else {
- realValue = new StoreObject(cmd.type, Location.allocate(0));
- }
- realValue.readOnly = cmd.isConst;
- store.updateStore(cmd.id, realValue);
- return store;
- });
- }
- } catch (e) {
- return Promise.reject(e);
- }
- }
- evaluateExpression (store, exp) {
- if (exp instanceof Expressions.UnaryApp) {
- return this.evaluateUnaryApp(store, exp);
- } else if (exp instanceof Expressions.InfixApp) {
- return this.evaluateInfixApp(store, exp);
- } else if (exp instanceof Expressions.ArrayAccess) {
- return this.evaluateArrayAccess(store, exp);
- } else if (exp instanceof Expressions.VariableLiteral) {
- return this.evaluateVariableLiteral(store, exp);
- } else if (exp instanceof Expressions.IntLiteral) {
- return this.evaluateLiteral(store, exp);
- } else if (exp instanceof Expressions.RealLiteral) {
- return this.evaluateLiteral(store, exp);
- } else if (exp instanceof Expressions.BoolLiteral) {
- return this.evaluateLiteral(store, exp);
- } else if (exp instanceof Expressions.StringLiteral) {
- return this.evaluateLiteral(store, exp);
- } else if (exp instanceof Expressions.ArrayLiteral) {
- return Promise.reject(new Error("Internal Error: The system should not eval an array literal."))
- } else if (exp instanceof Expressions.FunctionCall) {
- return this.evaluateFunctionCall(store, exp);
- }
- return Promise.resolve(null);
- }
- evaluateFunctionCall (store, exp) {
- if(exp.isMainCall) {
- return Promise.reject(ProcessorErrorFactory.void_in_expression_full(LanguageDefinedFunction.getMainFunctionName(), exp.sourceInfo));
- }
- const func = this.findFunction(exp.id);
- if(Types.VOID.isCompatible(func.returnType)) {
- return Promise.reject(ProcessorErrorFactory.void_in_expression_full(exp.id, exp.sourceInfo));
- }
- const $newStore = this.runFunction(func, exp.actualParameters, store);
- return $newStore.then( sto => {
- if(sto.mode !== Modes.RETURN) {
- return Promise.reject(new Error("The function that was called did not had a return command: "+exp.id));
- }
- const val = sto.applyStore('$');
- for(let id in sto.store) {
- if (Object.prototype.hasOwnProperty.call(sto.store, id)) {
- sto.store[id].destroy();
- }
- }
- if (val instanceof StoreObjectArray) {
- return Promise.resolve(Object.assign(new StoreObjectArray(null,null,null,null,null), val));
- } else {
- return val;
- }
- });
- }
- /**
- *
- * @param {Store} store
- * @param {Expressions.ArrayLiteral} exp
- * @param {ArrayType} type
- */
- evaluateArrayLiteral (store, exp, type) {
- const errorHelperFunction = (validationResult, exp) => {
- const errorCode = validationResult[0];
- let expectedColumns = null;
- let actualColumns = null;
- switch(errorCode) {
- case StoreObjectArray.WRONG_COLUMN_NUMBER: {
- expectedColumns = validationResult[1];
- actualColumns = validationResult[2];
- return Promise.reject(ProcessorErrorFactory.invalid_array_literal_column_full(expectedColumns, actualColumns, exp.sourceInfo));
- }
- case StoreObjectArray.WRONG_LINE_NUMBER: {
- const lineValue = validationResult[1];
- return Promise.reject(ProcessorErrorFactory.invalid_array_literal_line_full(arr.lines, lineValue, exp.sourceInfo));
- }
- case StoreObjectArray.WRONG_TYPE: {
- let line = null;
- let strExp = null;
- if (validationResult.length > 2) {
- line = validationResult[1];
- const column = validationResult[2];
- strExp = exp.value[line].value[column].toString()
- } else {
- line = validationResult[1];
- strExp = exp.value[line].toString()
- }
- // TODO - fix error message
- return Promise.reject(ProcessorErrorFactory.invalid_array_literal_type_full(strExp, exp.sourceInfo)); }
- }
- };
- if(!exp.isVector) {
- const $matrix = this.evaluateMatrix(store, exp.value, type);
- return $matrix.then(list => {
- const arr = new StoreObjectArray(type, list.length, list[0].lines, list);
- const checkResult = arr.isValid;
- if(checkResult.length == 0)
- return Promise.resolve(arr);
- else {
- return errorHelperFunction(checkResult, exp);
- }
- });
- } else {
- return this.evaluateVector(store, exp.value, type).then(list => {
- const type = new ArrayType(list[0].type, 1);
- const stoArray = new StoreObjectArray(type, list.length, null, list);
- const checkResult = stoArray.isValid;
- if(checkResult.length == 0)
- return Promise.resolve(stoArray);
- else {
- return errorHelperFunction(checkResult, exp);
- }
- });
- }
- }
- /**
- * Evalautes a list of literals and expression composing the vector
- * @param {Store} store
- * @param {Literal[]} exps
- * @param {ArrayType} type
- * @returns {Promise<StoreObject[]>} store object list
- */
- evaluateVector (store, exps, type) {
- const actual_values = Promise.all(exps.map( exp => this.evaluateExpression(store, exp)));
- return actual_values.then( values => {
- return values.map((v, index) => {
- if(!type.canAccept(v.type)) {
- if (!Config.enable_type_casting || !Store.canImplicitTypeCast(type.innerType, v.type)) {
- const stringInfo = v.type.stringInfo();
- const info = stringInfo[0];
- const exp_str = exps[index].toString();
- // TODO - fix error message
- throw ProcessorErrorFactory.invalid_array_literal_type_full(exp_str, exps[index].sourceInfo);
- }
- const new_value = Store.doImplicitCasting(type.innerType, v);
- return new_value;
- }
- return v;
- });
- });
- }
- /**
- * Evaluates a list of array literals composing the matrix
- * @param {Store} store
- * @param {Expressions.ArrayLiteral[]} exps
- * @param {ArrayType} type
- */
- evaluateMatrix (store, exps, type) {
- return Promise.all(exps.map( vector => {
- const vec_type = new ArrayType(type.innerType, 1);
- const $vector = this.evaluateVector(store, vector.value, vec_type);
- return $vector.then(list => {
- return new StoreObjectArray(vec_type, list.length, null, list)
- });
- } ));
- }
- evaluateLiteral (_, exp) {
- return Promise.resolve(new StoreObject(exp.type, Location.allocate(exp.value)));
- }
- evaluateVariableLiteral (store, exp) {
- try {
- const val = store.applyStore(exp.id);
- if (val instanceof StoreObjectArray) {
- return Promise.resolve(Object.assign(new StoreObjectArray(null,null,null,null), val));
- } else {
- return Promise.resolve(val);
- }
- } catch (error) {
- return Promise.reject(error);
- }
- }
- evaluateArrayAccess (store, exp) {
- const mustBeArray = store.applyStore(exp.id);
- if (!(mustBeArray.type instanceof ArrayType)) {
- return Promise.reject(ProcessorErrorFactory.invalid_array_access_full(exp.id, exp.sourceInfo));
- }
- const $line = this.evaluateExpression(store, exp.line);
- const $column = this.evaluateExpression(store, exp.column);
- return Promise.all([$line, $column]).then(values => {
- const lineSO = values[0];
- const columnSO = values[1];
- if(!Types.INTEGER.isCompatible(lineSO.type)) {
- return Promise.reject(ProcessorErrorFactory.array_dimension_not_int_full(exp.sourceInfo));
- }
- const line = lineSO.number;
- let column = null;
- if(columnSO !== null) {
- if(!Types.INTEGER.isCompatible(columnSO.type)) {
- return Promise.reject(ProcessorErrorFactory.array_dimension_not_int_full(exp.sourceInfo));
- }
- column = columnSO.number;
- }
- if (line >= mustBeArray.lines) {
- if(mustBeArray.isVector) {
- return Promise.reject(ProcessorErrorFactory.vector_line_outbounds_full(exp.id, line, mustBeArray.lines, exp.sourceInfo));
- } else {
- return Promise.reject(ProcessorErrorFactory.matrix_line_outbounds_full(exp.id, line, mustBeArray.lines, exp.sourceInfo));
- }
- } else if (line < 0) {
- throw ProcessorErrorFactory.array_dimension_not_positive_full(exp.sourceInfo);
- }
- if (column !== null && mustBeArray.columns === null ){
- return Promise.reject(ProcessorErrorFactory.vector_not_matrix_full(exp.id, exp.sourceInfo));
- }
- if(column !== null ) {
- if (column >= mustBeArray.columns) {
- return Promise.reject(ProcessorErrorFactory.matrix_column_outbounds_full(exp.id, column,mustBeArray.columns, exp.sourceInfo));
- } else if (column < 0) {
- throw ProcessorErrorFactory.array_dimension_not_positive_full(exp.sourceInfo);
- }
-
- }
- return Promise.resolve(new StoreObjectArrayAddress(mustBeArray.id, line, column, store));
- });
- }
- evaluateUnaryApp (store, unaryApp) {
- const $left = this.evaluateExpression(store, unaryApp.left);
- return $left.then( left => {
- const resultType = resultTypeAfterUnaryOp(unaryApp.op, left.type);
- if (Types.UNDEFINED.isCompatible(resultType)) {
- const stringInfo = left.type.stringInfo();
- const info = stringInfo[0];
- return Promise.reject(ProcessorErrorFactory.invalid_unary_op_full(unaryApp.op, info.type, info.dim, unaryApp.sourceInfo));
- }
- switch (unaryApp.op.ord) {
- case Operators.ADD.ord:
- return new StoreObject(resultType, Location.allocate(left.value));
- case Operators.SUB.ord:
- return new StoreObject(resultType, Location.allocate(left.value.negated()));
- case Operators.NOT.ord:
- return new StoreObject(resultType, Location.allocate(!left.value));
- default:
- return Promise.reject(new RuntimeError('!!!Critical Invalid UnaryApp '+ unaryApp.op));
- }
- });
- }
- evaluateInfixApp (store, infixApp) {
- const $left = this.evaluateExpression(store, infixApp.left);
- const $right = this.evaluateExpression(store, infixApp.right);
- return Promise.all([$left, $right]).then(values => {
- let shouldImplicitCast = false;
- const left = values[0];
- const right = values[1];
- let resultType = resultTypeAfterInfixOp(infixApp.op, left.type, right.type);
- if (Types.UNDEFINED.isCompatible(resultType)) {
- if (Config.enable_type_casting && Store.canImplicitTypeCast(left.type, right.type)) {
- shouldImplicitCast = true;
- } else {
- const stringInfoLeft = left.type.stringInfo();
- const infoLeft = stringInfoLeft[0];
- const stringInfoRight = right.type.stringInfo();
- const infoRight = stringInfoRight[0];
- return Promise.reject(ProcessorErrorFactory.invalid_infix_op_full(infixApp.op, infoLeft.type, infoLeft.dim,
- infoRight.type,infoRight.dim,infixApp.sourceInfo));
- }
- }
- let result = null;
- switch (infixApp.op.ord) {
- case Operators.ADD.ord: {
- if(Types.STRING.isCompatible(left.type)) {
- const rightStr = convertToString(right.value, right.type);
- return new StoreObject(resultType, Location.allocate(left.value + rightStr));
- } else if (Types.STRING.isCompatible(right.type)) {
- const leftStr = convertToString(left.value, left.type);
- return new StoreObject(resultType, Location.allocate(leftStr + right.value));
- } else {
- return new StoreObject(resultType, Location.allocate(left.value.plus(right.value)));
- }
- }
- case Operators.SUB.ord:
- return new StoreObject(resultType, Location.allocate(left.value.minus(right.value)));
- case Operators.MULT.ord: {
- result = left.value.times(right.value);
- // if(result.dp() > Config.decimalPlaces) {
- // result = new Decimal(result.toFixed(Config.decimalPlaces));
- // }
- return new StoreObject(resultType, Location.allocate(result));
- }
- case Operators.DIV.ord: {
- if (Types.INTEGER.isCompatible(resultType))
- result = left.value.divToInt(right.value);
- else
- result = left.value.div(right.value);
- // if(result.dp() > Config.decimalPlaces) {
- // result = new Decimal(result.toFixed(Config.decimalPlaces));
- // }
- return new StoreObject(resultType, Location.allocate(result));
- }
- case Operators.MOD.ord: {
- let leftValue = left.value;
- let rightValue = right.value;
- if(shouldImplicitCast) {
- resultType = Types.INTEGER;
- leftValue = leftValue.trunc();
- rightValue = rightValue.trunc();
- }
- result = leftValue.modulo(rightValue);
- // if(result.dp() > Config.decimalPlaces) {
- // result = new Decimal(result.toFixed(Config.decimalPlaces));
- // }
- return new StoreObject(resultType, Location.allocate(result));
- }
- case Operators.GT.ord: {
- let leftValue = left.value;
- let rightValue = right.value;
- if (Types.STRING.isCompatible(left.type)) {
- result = left.value.length > right.value.length;
- } else {
- if (shouldImplicitCast) {
- resultType = Types.BOOLEAN;
- leftValue = leftValue.trunc();
- rightValue = rightValue.trunc();
- }
- result = leftValue.gt(rightValue);
- }
- return new StoreObject(resultType, Location.allocate(result));
- }
- case Operators.GE.ord: {
- let leftValue = left.value;
- let rightValue = right.value;
- if (Types.STRING.isCompatible(left.type)) {
- result = left.value.length >= right.value.length;
- } else {
- if (shouldImplicitCast) {
- resultType = Types.BOOLEAN;
- leftValue = leftValue.trunc();
- rightValue = rightValue.trunc();
- }
- result = leftValue.gte(rightValue);
- }
- return new StoreObject(resultType, Location.allocate(result));
- }
- case Operators.LT.ord: {
- let leftValue = left.value;
- let rightValue = right.value;
- if (Types.STRING.isCompatible(left.type)) {
- result = left.value.length < right.value.length;
- } else {
- if (shouldImplicitCast) {
- resultType = Types.BOOLEAN;
- leftValue = leftValue.trunc();
- rightValue = rightValue.trunc();
- }
- result = leftValue.lt(rightValue);
- }
- return new StoreObject(resultType, Location.allocate(result));
- }
- case Operators.LE.ord: {
- let leftValue = left.value;
- let rightValue = right.value;
- if (Types.STRING.isCompatible(left.type)) {
- result = left.value.length <= right.value.length;
- } else {
- if (shouldImplicitCast) {
- resultType = Types.BOOLEAN;
- leftValue = leftValue.trunc();
- rightValue = rightValue.trunc();
- }
- result = leftValue.lte(rightValue);
- }
- return new StoreObject(resultType, Location.allocate(result));
- }
- case Operators.EQ.ord: {
- let leftValue = left.value;
- let rightValue = right.value;
- if (Types.INTEGER.isCompatible(left.type) || Types.REAL.isCompatible(left.type)) {
- if (shouldImplicitCast) {
- resultType = Types.BOOLEAN;
- leftValue = leftValue.trunc();
- rightValue = rightValue.trunc();
- }
- result = leftValue.eq(rightValue);
- } else {
- result = left.value === right.value;
- }
- return new StoreObject(resultType, Location.allocate(result));
- }
- case Operators.NEQ.ord: {
- let leftValue = left.value;
- let rightValue = right.value;
- if (Types.INTEGER.isCompatible(left.type) || Types.REAL.isCompatible(left.type)) {
- if (shouldImplicitCast) {
- resultType = Types.BOOLEAN;
- leftValue = leftValue.trunc();
- rightValue = rightValue.trunc();
- }
- result = !leftValue.eq(rightValue);
- } else {
- result = left.value !== right.value;
- }
- return new StoreObject(resultType, Location.allocate(result));
- }
- case Operators.AND.ord:
- return new StoreObject(resultType, Location.allocate(left.value && right.value));
- case Operators.OR.ord:
- return new StoreObject(resultType, Location.allocate(left.value || right.value));
- default:
- return Promise.reject(new RuntimeError('!!!Critical Invalid InfixApp '+ infixApp.op));
- }
- });
- }
- parseStoreObjectValue (vl) {
- let realValue = vl;
- if(vl instanceof StoreObjectArrayAddress) {
- if(vl.type instanceof ArrayType) {
- switch(vl.type.dimensions) {
- case 1: {
- realValue = new StoreObjectArray(vl.type, vl.value.length, null, vl.value);
- break;
- }
- default: {
- throw new RuntimeError("Three dimensional array address...");
- }
- }
- } else {
- realValue = new StoreObject(vl.type, vl.value);
- }
- }
- return realValue;
- }
- }
|