mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
bca4c8062c
This makes the function easier to test.
86 lines
1.9 KiB
Go
86 lines
1.9 KiB
Go
package eval
|
|
|
|
import (
|
|
"errors"
|
|
"strings"
|
|
|
|
"github.com/elves/elvish/pkg/parse"
|
|
"github.com/elves/elvish/pkg/util"
|
|
)
|
|
|
|
var ErrImpure = errors.New("expression is impure")
|
|
|
|
func PurelyEvalCompound(cn *parse.Compound) (string, error) {
|
|
return (*Evaler)(nil).PurelyEvalCompound(cn)
|
|
}
|
|
|
|
func (ev *Evaler) PurelyEvalCompound(cn *parse.Compound) (string, error) {
|
|
return ev.PurelyEvalPartialCompound(cn, -1)
|
|
}
|
|
|
|
func (ev *Evaler) PurelyEvalPartialCompound(cn *parse.Compound, upto int) (string, error) {
|
|
tilde := false
|
|
head := ""
|
|
for _, in := range cn.Indexings {
|
|
if len(in.Indicies) > 0 {
|
|
return "", ErrImpure
|
|
}
|
|
if upto >= 0 && in.To > upto {
|
|
break
|
|
}
|
|
switch in.Head.Type {
|
|
case parse.Tilde:
|
|
tilde = true
|
|
case parse.Bareword, parse.SingleQuoted, parse.DoubleQuoted:
|
|
head += in.Head.Value
|
|
case parse.Variable:
|
|
if ev == nil {
|
|
return "", ErrImpure
|
|
}
|
|
v := ev.PurelyEvalPrimary(in.Head)
|
|
if s, ok := v.(string); ok {
|
|
head += s
|
|
} else {
|
|
return "", ErrImpure
|
|
}
|
|
default:
|
|
return "", ErrImpure
|
|
}
|
|
}
|
|
if tilde {
|
|
i := strings.Index(head, "/")
|
|
if i == -1 {
|
|
i = len(head)
|
|
}
|
|
uname := head[:i]
|
|
home, err := util.GetHome(uname)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
head = home + head[i:]
|
|
}
|
|
return head, nil
|
|
}
|
|
|
|
// PurelyEvalPrimary evaluates a primary node without causing any side effects.
|
|
// If this cannot be done, it returns nil.
|
|
//
|
|
// Currently, only string literals and variables with no @ can be evaluated.
|
|
func (ev *Evaler) PurelyEvalPrimary(pn *parse.Primary) interface{} {
|
|
switch pn.Type {
|
|
case parse.Bareword, parse.SingleQuoted, parse.DoubleQuoted:
|
|
return pn.Value
|
|
case parse.Variable:
|
|
sigil, qname := SplitVariableRef(pn.Value)
|
|
if sigil != "" {
|
|
return nil
|
|
}
|
|
ec := NewTopFrame(ev, NewInternalGoSource("[purely eval]"), nil)
|
|
variable := ec.ResolveVar(qname)
|
|
if variable != nil {
|
|
return variable.Get()
|
|
}
|
|
}
|
|
return nil
|
|
}
|