forked from expr-lang/expr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
117 lines (107 loc) · 2.88 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package conf
import (
"fmt"
"reflect"
"github.com/antonmedv/expr/ast"
"github.com/antonmedv/expr/builtin"
"github.com/antonmedv/expr/vm/runtime"
)
type Config struct {
Env any
Types TypesTable
MapEnv bool
DefaultType reflect.Type
Operators OperatorsTable
Expect reflect.Kind
ExpectAny bool
Optimize bool
Strict bool
ConstFns map[string]reflect.Value
Visitors []ast.Visitor
Functions map[string]*ast.Function
Builtins map[string]*ast.Function
Disabled map[string]bool // disabled builtins
}
// CreateNew creates new config with default values.
func CreateNew() *Config {
c := &Config{
Optimize: true,
Operators: make(map[string][]string),
ConstFns: make(map[string]reflect.Value),
Functions: make(map[string]*ast.Function),
Builtins: make(map[string]*ast.Function),
Disabled: make(map[string]bool),
}
for _, f := range builtin.Builtins {
c.Builtins[f.Name] = f
}
return c
}
// New creates new config with environment.
func New(env any) *Config {
c := CreateNew()
c.WithEnv(env)
return c
}
func (c *Config) WithEnv(env any) {
var mapEnv bool
var mapValueType reflect.Type
if _, ok := env.(map[string]any); ok {
mapEnv = true
} else {
if reflect.ValueOf(env).Kind() == reflect.Map {
mapValueType = reflect.TypeOf(env).Elem()
}
}
c.Env = env
c.Types = CreateTypesTable(env)
c.MapEnv = mapEnv
c.DefaultType = mapValueType
c.Strict = true
}
func (c *Config) Operator(operator string, fns ...string) {
c.Operators[operator] = append(c.Operators[operator], fns...)
}
func (c *Config) ConstExpr(name string) {
if c.Env == nil {
panic("no environment is specified for ConstExpr()")
}
fn := reflect.ValueOf(runtime.Fetch(c.Env, name))
if fn.Kind() != reflect.Func {
panic(fmt.Errorf("const expression %q must be a function", name))
}
c.ConstFns[name] = fn
}
func (c *Config) Check() {
for operator, fns := range c.Operators {
for _, fn := range fns {
fnType, ok := c.Types[fn]
if !ok || fnType.Type.Kind() != reflect.Func {
panic(fmt.Errorf("function %s for %s operator does not exist in the environment", fn, operator))
}
requiredNumIn := 2
if fnType.Method {
requiredNumIn = 3 // As first argument of method is receiver.
}
if fnType.Type.NumIn() != requiredNumIn || fnType.Type.NumOut() != 1 {
panic(fmt.Errorf("function %s for %s operator does not have a correct signature", fn, operator))
}
}
}
for fnName, t := range c.Types {
if kind(t.Type) == reflect.Func {
for _, b := range c.Builtins {
if b.Name == fnName {
panic(fmt.Errorf(`cannot override builtin %s(): use expr.DisableBuiltin("%s") to override`, b.Name, b.Name))
}
}
}
}
for _, f := range c.Functions {
for _, b := range c.Builtins {
if b.Name == f.Name {
panic(fmt.Errorf(`cannot override builtin %s(); use expr.DisableBuiltin("%s") to override`, f.Name, f.Name))
}
}
}
}