3.5 KiB
3.5 KiB
README
Table of Contents
1. Expr
Expr is a GO package capable of analysing, interpreting and calculating expressions.
A few examples to get started.
Examples taken from parser_test.go
`1.0 / 2` // 0.5
`435 + 105 * 2 - 1` // 644
`4 == (3-1)*(10/5)` // true
`"uno" * (2+1)` // `unounouno`
`2+3 but 5*2` // 10 (1)
`add(add(1+4),3+2,5*(3-2))` // 15 (2)
`a=5; b=2; add(a, b*3)` // 11 (3)
`two=func(){2}; two()` // 2 (4)
`double=func(x){2*x}; a=4+1; two=func() {2}; (double(3+a) + 1) * two()` // 34
`import("./test-funcs.expr"); (double(3+a) + 1) * two()` // 34 (5)
`[1,2,"hello"]` // Mixed types list
`[1,2]+[3]` // append list, result: [1,2,3]
`add([1,[2,2],3,2])` // Deep list sum, result: 10 (2)
`[a=1,b=2,c=3] but a+b+c` // 6
1 | but operator. |
2 | The add() function definition may be changed in the future. |
3 | Multiple expression. Only the last expression value will returned. |
4 | Simple function definition: two() returns 2. |
5 | import() function imports expressions from the specified files. See file test-funcs.expr. |
1.1. Usage
package main
import (
"fmt"
"strings"
"git.portale-stac.it/go-pkg/expr"
)
func main() {
ctx := expr.NewSimpleVarStore()
ctx.SetVar("var", 4)
source := `(3-1)*(10/5) == var`
r := strings.NewReader(source)
scanner := expr.NewScanner(r, expr.DefaultTranslations())
parser := expr.NewParser(ctx)
if ast, err := parser.Parse(scanner); err == nil {
if result, err := ast.Eval(ctx); err == nil {
fmt.Printf("%q -> %v [%T]\n", source, result, result)
} else {
fmt.Println("Error calculating the expression:", err)
}
} else {
fmt.Println("Error parsing the expression:", err)
}
}
The above program is equivalent to the following one.
package main
import (
"fmt"
"git.portale-stac.it/go-pkg/expr"
)
func main() {
ctx := expr.NewSimpleVarStore()
ctx.SetVar("var", 4)
source := `(3-1)*(10/5) == var`
if result, err := expr.EvalString(ctx, source); err == nil {
fmt.Printf("%q -> %v [%T]\n", source, result, result)
} else {
fmt.Println("Error calculating the expression:", err)
}
}
Here is another equivalent version.
package main
import (
"fmt"
"git.portale-stac.it/go-pkg/expr"
)
func main() {
source := `(3-1)*(10/5) == var`
if result, err := expr.EvalStringA(source, expr.Arg{"var", 4}); err == nil {
fmt.Printf("%q -> %v [%T]\n", source, result, result)
} else {
fmt.Println("Error calculating the expression:", err)
}
}
2. Context of evaluation
Unless helpers functions like expr.EvalStringA() are used, a context is required to compute an expession.
A context is an object that implements the expr.ExprContext interface. This interface specifies a set of function to handle variables and functions.
Variables and functions can be added to a context both programmatically and ad an effect of the expression computation.
3. Expressions syntax
See TODO link to doc/Expr.html