mirror of
https://github.com/go-task/task.git
synced 2024-12-16 10:59:23 +02:00
0513a21e25
also make sure the module that enables /dev/null path of the sh interpreter is enabled
221 lines
4.1 KiB
Go
221 lines
4.1 KiB
Go
// Copyright (c) 2017, Daniel Martí <mvdan@mvdan.cc>
|
|
// See LICENSE for licensing information
|
|
|
|
package interp
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
"unicode"
|
|
"unicode/utf8"
|
|
|
|
"mvdan.cc/sh/syntax"
|
|
)
|
|
|
|
func (r *Runner) quotedElems(pe *syntax.ParamExp) []string {
|
|
if pe == nil {
|
|
return nil
|
|
}
|
|
if pe.Param.Value == "@" {
|
|
return r.Params
|
|
}
|
|
w, _ := pe.Index.(*syntax.Word)
|
|
if w == nil || len(w.Parts) != 1 {
|
|
return nil
|
|
}
|
|
l, _ := w.Parts[0].(*syntax.Lit)
|
|
if l == nil || l.Value != "@" {
|
|
return nil
|
|
}
|
|
val, _ := r.lookupVar(pe.Param.Value)
|
|
switch x := val.(type) {
|
|
case []string:
|
|
return x
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (r *Runner) paramExp(pe *syntax.ParamExp) string {
|
|
name := pe.Param.Value
|
|
var val varValue
|
|
set := false
|
|
switch name {
|
|
case "#":
|
|
val = strconv.Itoa(len(r.Params))
|
|
case "*", "@":
|
|
val = strings.Join(r.Params, " ")
|
|
case "?":
|
|
val = strconv.Itoa(r.exit)
|
|
default:
|
|
if n, err := strconv.Atoi(name); err == nil {
|
|
if i := n - 1; i < len(r.Params) {
|
|
val, set = r.Params[i], true
|
|
}
|
|
} else {
|
|
val, set = r.lookupVar(name)
|
|
}
|
|
}
|
|
str := varStr(val)
|
|
if pe.Index != nil {
|
|
str = r.varInd(val, pe.Index)
|
|
}
|
|
switch {
|
|
case pe.Length:
|
|
str = strconv.Itoa(utf8.RuneCountInString(str))
|
|
case pe.Excl:
|
|
val, set = r.lookupVar(str)
|
|
str = varStr(val)
|
|
}
|
|
slicePos := func(expr syntax.ArithmExpr) int {
|
|
p := r.arithm(expr)
|
|
if p < 0 {
|
|
p = len(str) + p
|
|
if p < 0 {
|
|
p = len(str)
|
|
}
|
|
} else if p > len(str) {
|
|
p = len(str)
|
|
}
|
|
return p
|
|
}
|
|
if pe.Slice != nil {
|
|
if pe.Slice.Offset != nil {
|
|
offset := slicePos(pe.Slice.Offset)
|
|
str = str[offset:]
|
|
}
|
|
if pe.Slice.Length != nil {
|
|
length := slicePos(pe.Slice.Length)
|
|
str = str[:length]
|
|
}
|
|
}
|
|
if pe.Repl != nil {
|
|
orig := r.loneWord(pe.Repl.Orig)
|
|
with := r.loneWord(pe.Repl.With)
|
|
n := 1
|
|
if pe.Repl.All {
|
|
n = -1
|
|
}
|
|
str = strings.Replace(str, orig, with, n)
|
|
}
|
|
if pe.Exp != nil {
|
|
arg := r.loneWord(pe.Exp.Word)
|
|
switch pe.Exp.Op {
|
|
case syntax.SubstColPlus:
|
|
if str == "" {
|
|
break
|
|
}
|
|
fallthrough
|
|
case syntax.SubstPlus:
|
|
if set {
|
|
str = arg
|
|
}
|
|
case syntax.SubstMinus:
|
|
if set {
|
|
break
|
|
}
|
|
fallthrough
|
|
case syntax.SubstColMinus:
|
|
if str == "" {
|
|
str = arg
|
|
}
|
|
case syntax.SubstQuest:
|
|
if set {
|
|
break
|
|
}
|
|
fallthrough
|
|
case syntax.SubstColQuest:
|
|
if str == "" {
|
|
r.errf("%s", arg)
|
|
r.exit = 1
|
|
r.lastExit()
|
|
}
|
|
case syntax.SubstAssgn:
|
|
if set {
|
|
break
|
|
}
|
|
fallthrough
|
|
case syntax.SubstColAssgn:
|
|
if str == "" {
|
|
r.setVar(name, nil, arg)
|
|
str = arg
|
|
}
|
|
case syntax.RemSmallPrefix:
|
|
str = removePattern(str, arg, false, false)
|
|
case syntax.RemLargePrefix:
|
|
str = removePattern(str, arg, false, true)
|
|
case syntax.RemSmallSuffix:
|
|
str = removePattern(str, arg, true, false)
|
|
case syntax.RemLargeSuffix:
|
|
str = removePattern(str, arg, true, true)
|
|
case syntax.UpperFirst:
|
|
rs := []rune(str)
|
|
if len(rs) > 0 {
|
|
rs[0] = unicode.ToUpper(rs[0])
|
|
}
|
|
str = string(rs)
|
|
case syntax.UpperAll:
|
|
str = strings.ToUpper(str)
|
|
case syntax.LowerFirst:
|
|
rs := []rune(str)
|
|
if len(rs) > 0 {
|
|
rs[0] = unicode.ToLower(rs[0])
|
|
}
|
|
str = string(rs)
|
|
case syntax.LowerAll:
|
|
str = strings.ToLower(str)
|
|
case syntax.OtherParamOps:
|
|
switch arg {
|
|
case "Q":
|
|
str = strconv.Quote(str)
|
|
case "E":
|
|
tail := str
|
|
var rns []rune
|
|
for tail != "" {
|
|
var rn rune
|
|
rn, _, tail, _ = strconv.UnquoteChar(tail, 0)
|
|
rns = append(rns, rn)
|
|
}
|
|
str = string(rns)
|
|
case "P", "A", "a":
|
|
r.runErr(pe.Pos(), "unhandled @%s param expansion", arg)
|
|
default:
|
|
r.runErr(pe.Pos(), "unexpected @%s param expansion", arg)
|
|
}
|
|
}
|
|
}
|
|
return str
|
|
}
|
|
|
|
func removePattern(str, pattern string, fromEnd, longest bool) string {
|
|
// TODO: really slow to not re-implement path.Match.
|
|
last := str
|
|
s := str
|
|
i := len(str)
|
|
if fromEnd {
|
|
i = 0
|
|
}
|
|
for {
|
|
if match(pattern, s) {
|
|
last = str[i:]
|
|
if fromEnd {
|
|
last = str[:i]
|
|
}
|
|
if longest {
|
|
return last
|
|
}
|
|
}
|
|
if fromEnd {
|
|
if i++; i >= len(str) {
|
|
break
|
|
}
|
|
s = str[i:]
|
|
} else {
|
|
if i--; i < 1 {
|
|
break
|
|
}
|
|
s = str[:i]
|
|
}
|
|
}
|
|
return last
|
|
}
|