123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /*
- * ECAL
- *
- * Copyright 2020 Matthias Ladkau. All rights reserved.
- *
- * This Source Code Form is subject to the terms of the MIT
- * License, If a copy of the MIT License was not distributed with this
- * file, You can obtain one at https://opensource.org/licenses/MIT.
- */
- package interpreter
- import (
- "fmt"
- "devt.de/krotik/ecal/parser"
- "devt.de/krotik/ecal/util"
- )
- /*
- assignmentRuntime is the runtime component for assignment of values.
- */
- type assignmentRuntime struct {
- *baseRuntime
- leftSide []*identifierRuntime
- }
- /*
- assignmentRuntimeInst returns a new runtime component instance.
- */
- func assignmentRuntimeInst(erp *ECALRuntimeProvider, node *parser.ASTNode) parser.Runtime {
- return &assignmentRuntime{newBaseRuntime(erp, node), nil}
- }
- /*
- Validate this node and all its child nodes.
- */
- func (rt *assignmentRuntime) Validate() error {
- err := rt.baseRuntime.Validate()
- if err == nil {
- leftVar := rt.node.Children[0]
- if leftRuntime, ok := leftVar.Runtime.(*identifierRuntime); ok {
- rt.leftSide = []*identifierRuntime{leftRuntime}
- } else if leftVar.Name == parser.NodeLIST {
- rt.leftSide = make([]*identifierRuntime, 0, len(leftVar.Children))
- for _, child := range leftVar.Children {
- childRuntime, ok := child.Runtime.(*identifierRuntime)
- if !ok {
- err = rt.erp.NewRuntimeError(util.ErrVarAccess,
- "Must have a list of variables on the left side of the assignment", rt.node)
- break
- }
- rt.leftSide = append(rt.leftSide, childRuntime)
- }
- } else {
- err = rt.erp.NewRuntimeError(util.ErrVarAccess,
- "Must have a variable or list of variables on the left side of the assignment", rt.node)
- }
- }
- return err
- }
- /*
- Eval evaluate this runtime component.
- */
- func (rt *assignmentRuntime) Eval(vs parser.Scope, is map[string]interface{}) (interface{}, error) {
- _, err := rt.baseRuntime.Eval(vs, is)
- if err == nil {
- var val interface{}
- val, err = rt.node.Children[1].Runtime.Eval(vs, is)
- if err == nil {
- if len(rt.leftSide) == 1 {
- err = rt.leftSide[0].Set(vs, is, val)
- } else if valList, ok := val.([]interface{}); ok {
- if len(rt.leftSide) != len(valList) {
- err = rt.erp.NewRuntimeError(util.ErrInvalidState,
- fmt.Sprintf("Assigned number of variables is different to "+
- "number of values (%v variables vs %v values)",
- len(rt.leftSide), len(valList)), rt.node)
- } else {
- for i, v := range rt.leftSide {
- if err = v.Set(vs, is, valList[i]); err != nil {
- err = rt.erp.NewRuntimeError(util.ErrVarAccess,
- err.Error(), rt.node)
- break
- }
- }
- }
- } else {
- err = rt.erp.NewRuntimeError(util.ErrInvalidState,
- fmt.Sprintf("Result is not a list (value is %v)", val),
- rt.node)
- }
- }
- }
- return nil, err
- }
|