elvish/eval/builtin_fn_str.go

150 lines
3.3 KiB
Go
Raw Normal View History

2017-12-17 13:20:03 +08:00
package eval
import (
"bytes"
"errors"
"regexp"
"strconv"
"strings"
"github.com/elves/elvish/eval/types"
2017-12-17 13:20:03 +08:00
"github.com/elves/elvish/util"
)
// String operations.
var ErrInput = errors.New("input error")
func init() {
2018-02-06 16:02:27 +08:00
addToBuiltinFns(map[string]interface{}{
"<s": func(a, b string) bool { return a < b },
"<=s": func(a, b string) bool { return a <= b },
"==s": func(a, b string) bool { return a == b },
"!=s": func(a, b string) bool { return a != b },
">s": func(a, b string) bool { return a > b },
">=s": func(a, b string) bool { return a >= b },
"to-string": toString,
"ord": ord,
"base": base,
"wcswidth": util.Wcswidth,
"-override-wcwidth": util.OverrideWcwidth,
"has-prefix": strings.HasPrefix,
"has-suffix": strings.HasSuffix,
2017-12-17 13:20:03 +08:00
2018-02-05 15:35:49 +08:00
"joins": joins,
"splits": splits,
"replaces": replaces,
2017-12-17 13:20:03 +08:00
2018-02-05 15:35:49 +08:00
"eawk": eawk,
2017-12-17 13:20:03 +08:00
})
}
// toString converts all arguments to strings.
func toString(fm *Frame, args ...interface{}) {
out := fm.OutputChan()
2017-12-17 13:20:03 +08:00
for _, a := range args {
out <- types.ToString(a)
2017-12-17 13:20:03 +08:00
}
}
// joins joins all input strings with a delimiter.
2018-02-05 15:35:49 +08:00
func joins(sep string, inputs Inputs) string {
2017-12-17 13:20:03 +08:00
var buf bytes.Buffer
2018-02-05 15:35:49 +08:00
inputs(func(v interface{}) {
if s, ok := v.(string); ok {
2017-12-17 13:20:03 +08:00
if buf.Len() > 0 {
buf.WriteString(sep)
}
buf.WriteString(s)
2017-12-17 13:20:03 +08:00
} else {
throwf("join wants string input, got %s", types.Kind(v))
2017-12-17 13:20:03 +08:00
}
})
2018-02-05 15:35:49 +08:00
return buf.String()
2017-12-17 13:20:03 +08:00
}
// splits splits an argument strings by a delimiter and writes all pieces.
2018-02-05 15:35:49 +08:00
func splits(fm *Frame, opts Options, sep, s string) {
var optMax int
opts.Scan(OptToScan{"max", &optMax, "-1"})
out := fm.ports[1].Chan
parts := strings.SplitN(s, sep, optMax)
2017-12-17 13:20:03 +08:00
for _, p := range parts {
out <- p
2017-12-17 13:20:03 +08:00
}
}
2018-02-05 15:35:49 +08:00
func replaces(opts Options, old, repl, s string) string {
var optMax int
opts.Scan(OptToScan{"max", &optMax, "-1"})
return strings.Replace(s, old, repl, optMax)
2017-12-17 13:20:03 +08:00
}
func ord(fm *Frame, s string) {
out := fm.ports[1].Chan
2017-12-17 13:20:03 +08:00
for _, r := range s {
out <- "0x" + strconv.FormatInt(int64(r), 16)
2017-12-17 13:20:03 +08:00
}
}
// ErrBadBase is thrown by the "base" builtin if the base is smaller than 2 or
// greater than 36.
var ErrBadBase = errors.New("bad base")
func base(fm *Frame, b int, nums ...int) error {
2017-12-17 13:20:03 +08:00
if b < 2 || b > 36 {
return ErrBadBase
2017-12-17 13:20:03 +08:00
}
out := fm.ports[1].Chan
2017-12-17 13:20:03 +08:00
for _, num := range nums {
out <- strconv.FormatInt(int64(num), b)
2017-12-17 13:20:03 +08:00
}
return nil
2017-12-17 13:20:03 +08:00
}
var eawkWordSep = regexp.MustCompile("[ \t]+")
// eawk takes a function. For each line in the input stream, it calls the
// function with the line and the words in the line. The words are found by
// stripping the line and splitting the line by whitespaces. The function may
// call break and continue. Overall this provides a similar functionality to
// awk, hence the name.
2018-02-05 15:35:49 +08:00
func eawk(fm *Frame, f Callable, inputs Inputs) {
2017-12-17 13:20:03 +08:00
broken := false
2018-02-05 15:35:49 +08:00
inputs(func(v interface{}) {
2017-12-17 13:20:03 +08:00
if broken {
return
}
line, ok := v.(string)
2017-12-17 13:20:03 +08:00
if !ok {
throw(ErrInput)
}
args := []interface{}{line}
for _, field := range eawkWordSep.Split(strings.Trim(line, " \t"), -1) {
args = append(args, field)
2017-12-17 13:20:03 +08:00
}
2018-02-05 15:35:49 +08:00
newec := fm.fork("fn of eawk")
2017-12-17 13:20:03 +08:00
// TODO: Close port 0 of newec.
ex := newec.PCall(f, args, NoOpts)
ClosePorts(newec.ports)
if ex != nil {
switch ex.(*Exception).Cause {
case nil, Continue:
// nop
case Break:
broken = true
default:
throw(ex)
}
}
})
}