mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-10-13 02:53:52 +08:00
69 lines
1.5 KiB
Go
69 lines
1.5 KiB
Go
package optimizer
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
. "github.com/expr-lang/expr/ast"
|
|
)
|
|
|
|
type inArray struct{}
|
|
|
|
func (*inArray) Visit(node *Node) {
|
|
switch n := (*node).(type) {
|
|
case *BinaryNode:
|
|
if n.Operator == "in" {
|
|
if array, ok := n.Right.(*ArrayNode); ok {
|
|
if len(array.Nodes) > 0 {
|
|
t := n.Left.Type()
|
|
if t == nil || t.Kind() != reflect.Int {
|
|
// This optimization can be only performed if left side is int type,
|
|
// as runtime.in func uses reflect.Map.MapIndex and keys of map must,
|
|
// be same as checked value type.
|
|
goto string
|
|
}
|
|
|
|
for _, a := range array.Nodes {
|
|
if _, ok := a.(*IntegerNode); !ok {
|
|
goto string
|
|
}
|
|
}
|
|
{
|
|
value := make(map[int]struct{})
|
|
for _, a := range array.Nodes {
|
|
value[a.(*IntegerNode).Value] = struct{}{}
|
|
}
|
|
m := &ConstantNode{Value: value}
|
|
m.SetType(reflect.TypeOf(value))
|
|
patchCopyType(node, &BinaryNode{
|
|
Operator: n.Operator,
|
|
Left: n.Left,
|
|
Right: m,
|
|
})
|
|
}
|
|
|
|
string:
|
|
for _, a := range array.Nodes {
|
|
if _, ok := a.(*StringNode); !ok {
|
|
return
|
|
}
|
|
}
|
|
{
|
|
value := make(map[string]struct{})
|
|
for _, a := range array.Nodes {
|
|
value[a.(*StringNode).Value] = struct{}{}
|
|
}
|
|
m := &ConstantNode{Value: value}
|
|
m.SetType(reflect.TypeOf(value))
|
|
patchCopyType(node, &BinaryNode{
|
|
Operator: n.Operator,
|
|
Left: n.Left,
|
|
Right: m,
|
|
})
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|