1 Star 1 Fork 0

Cinus/go-tagexpr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
spec_selector.go 3.05 KB
一键复制 编辑 原始数据 按行查看 历史
// Copyright 2019 Bytedance Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package tagexpr
import (
"regexp"
"strings"
)
type selectorExprNode struct {
exprBackground
field, name string
subExprs []ExprNode
boolOpposite *bool
floatOpposite bool
}
func (p *Expr) readSelectorExprNode(expr *string) ExprNode {
field, name, subSelector, boolOpposite, floatOpposite, found := findSelector(expr)
if !found {
return nil
}
operand := &selectorExprNode{
field: field,
name: name,
boolOpposite: boolOpposite,
floatOpposite: floatOpposite,
}
operand.subExprs = make([]ExprNode, 0, len(subSelector))
for _, s := range subSelector {
grp := newGroupExprNode()
_, err := p.parseExprNode(&s, grp)
if err != nil {
return nil
}
sortPriority(grp.RightOperand())
operand.subExprs = append(operand.subExprs, grp)
}
return operand
}
var selectorRegexp = regexp.MustCompile(`^([\!\+\-]*)(\([ \t]*[A-Za-z_]+[A-Za-z0-9_\.]*[ \t]*\))?(\$)([\)\[\],\+\-\*\/%><\|&!=\^ \t\\]|$)`)
func findSelector(expr *string) (field string, name string, subSelector []string, boolOpposite *bool, floatOpposite, found bool) {
raw := *expr
a := selectorRegexp.FindAllStringSubmatch(raw, -1)
if len(a) != 1 {
return
}
r := a[0]
if s0 := r[2]; len(s0) > 0 {
field = strings.TrimSpace(s0[1 : len(s0)-1])
}
name = r[3]
*expr = (*expr)[len(a[0][0])-len(r[4]):]
for {
sub := readPairedSymbol(expr, '[', ']')
if sub == nil {
break
}
if *sub == "" || (*sub)[0] == '[' {
*expr = raw
return "", "", nil, nil, false, false
}
subSelector = append(subSelector, strings.TrimSpace(*sub))
}
prefix := r[1]
if len(prefix) == 0 {
found = true
return
}
t := rune(prefix[0])
for _, u := range prefix {
if t != u {
return "", "", nil, nil, false, false
}
}
switch t {
case '!':
if n := len(prefix); n > 0 {
bol := n%2 == 1
boolOpposite = &bol
}
case '-':
if n := len(prefix); n > 0 {
floatOpposite = n%2 == 1
}
case '+':
default:
return "", "", nil, nil, false, false
}
found = true
return
}
func (ve *selectorExprNode) Run(currField string, tagExpr *TagExpr) interface{} {
var subFields []interface{}
if n := len(ve.subExprs); n > 0 {
subFields = make([]interface{}, n)
for i, e := range ve.subExprs {
subFields[i] = e.Run(currField, tagExpr)
}
}
field := ve.field
if field == "" {
field = currField
}
v := tagExpr.getValue(field, subFields)
if ve.floatOpposite {
if float, ok := v.(float64); ok {
return -float
}
return nil
}
return realValue(v, ve.boolOpposite)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/cinus/go-tagexpr.git
git@gitee.com:cinus/go-tagexpr.git
cinus
go-tagexpr
go-tagexpr
v1.3.0

搜索帮助