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
|
//go:build !windows
package main
import (
"errors"
"fmt"
"strings"
)
func splitCFlagsFromArgs(in []string) (args, cflags []string) {
for i, arg := range in {
if arg == "--" {
return in[:i], in[i+1:]
}
}
return in, nil
}
func splitArguments(in string) ([]string, error) {
var (
result []string
builder strings.Builder
escaped bool
delim = ' '
)
for _, r := range strings.TrimSpace(in) {
if escaped {
builder.WriteRune(r)
escaped = false
continue
}
switch r {
case '\\':
escaped = true
case delim:
current := builder.String()
builder.Reset()
if current != "" || delim != ' ' {
// Only append empty words if they are not
// delimited by spaces
result = append(result, current)
}
delim = ' '
case '"', '\'', ' ':
if delim == ' ' {
delim = r
continue
}
fallthrough
default:
builder.WriteRune(r)
}
}
if delim != ' ' {
return nil, fmt.Errorf("missing `%c`", delim)
}
if escaped {
return nil, errors.New("unfinished escape")
}
// Add the last word
if builder.Len() > 0 {
result = append(result, builder.String())
}
return result, nil
}
|