1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- * 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 scope contains the block scope implementation for the event condition language ECAL.
- */
- package scope
- import (
- "fmt"
- "devt.de/krotik/common/stringutil"
- "devt.de/krotik/ecal/parser"
- )
- /*
- Default scope names
- */
- const (
- GlobalScope = "GlobalScope"
- FuncPrefix = "func:"
- )
- /*
- NameFromASTNode returns a scope name from a given ASTNode.
- */
- func NameFromASTNode(node *parser.ASTNode) string {
- return fmt.Sprintf("block: %v (Line:%d Pos:%d)", node.Name, node.Token.Lline, node.Token.Lpos)
- }
- /*
- EvalToString should be used if a value should be converted into a string.
- */
- func EvalToString(v interface{}) string {
- return stringutil.ConvertToString(v)
- }
- /*
- ToObject converts a Scope into an object.
- */
- func ToObject(vs parser.Scope) map[interface{}]interface{} {
- res := make(map[interface{}]interface{})
- for k, v := range vs.(*varsScope).storage {
- res[k] = v
- }
- return res
- }
- /*
- ToScope converts a given object into a Scope.
- */
- func ToScope(name string, o map[interface{}]interface{}) parser.Scope {
- vs := NewScope(name)
- for k, v := range o {
- vs.SetValue(fmt.Sprint(k), v)
- }
- return vs
- }
|