mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-11-28 07:21:21 +08:00
109 lines
2.5 KiB
Go
109 lines
2.5 KiB
Go
package edit
|
|
|
|
import (
|
|
"errors"
|
|
"sort"
|
|
|
|
"src.elv.sh/pkg/eval"
|
|
"src.elv.sh/pkg/eval/vals"
|
|
"src.elv.sh/pkg/parse"
|
|
"src.elv.sh/pkg/persistent/hashmap"
|
|
"src.elv.sh/pkg/ui"
|
|
)
|
|
|
|
var errValueShouldBeFn = errors.New("value should be function")
|
|
|
|
// A special Map that converts its key to ui.Key and ensures that its values
|
|
// satisfy eval.CallableValue.
|
|
type bindingsMap struct {
|
|
hashmap.Map
|
|
}
|
|
|
|
var emptyBindingsMap = bindingsMap{vals.EmptyMap}
|
|
|
|
// Repr returns the representation of the binding table as if it were an
|
|
// ordinary map keyed by strings.
|
|
func (bt bindingsMap) Repr(indent int) string {
|
|
var keys ui.Keys
|
|
for it := bt.Map.Iterator(); it.HasElem(); it.Next() {
|
|
k, _ := it.Elem()
|
|
keys = append(keys, k.(ui.Key))
|
|
}
|
|
sort.Sort(keys)
|
|
|
|
builder := vals.NewMapReprBuilder(indent)
|
|
|
|
for _, k := range keys {
|
|
v, _ := bt.Map.Index(k)
|
|
builder.WritePair(parse.Quote(k.String()), indent+2, vals.Repr(v, indent+2))
|
|
}
|
|
|
|
return builder.String()
|
|
}
|
|
|
|
// Index converts the index to ui.Key and uses the Index of the inner Map.
|
|
func (bt bindingsMap) Index(index interface{}) (interface{}, error) {
|
|
key, err := toKey(index)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return vals.Index(bt.Map, key)
|
|
}
|
|
|
|
func (bt bindingsMap) HasKey(k interface{}) bool {
|
|
_, ok := bt.Map.Index(k)
|
|
return ok
|
|
}
|
|
|
|
func (bt bindingsMap) GetKey(k ui.Key) eval.Callable {
|
|
v, ok := bt.Map.Index(k)
|
|
if !ok {
|
|
panic("get called when key not present")
|
|
}
|
|
return v.(eval.Callable)
|
|
}
|
|
|
|
// Assoc converts the index to ui.Key, ensures that the value is CallableValue,
|
|
// uses the Assoc of the inner Map and converts the result to a BindingTable.
|
|
func (bt bindingsMap) Assoc(k, v interface{}) (interface{}, error) {
|
|
key, err := toKey(k)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
f, ok := v.(eval.Callable)
|
|
if !ok {
|
|
return nil, errValueShouldBeFn
|
|
}
|
|
map2 := bt.Map.Assoc(key, f)
|
|
return bindingsMap{map2}, nil
|
|
}
|
|
|
|
// Dissoc converts the key to ui.Key and calls the Dissoc method of the inner
|
|
// map.
|
|
func (bt bindingsMap) Dissoc(k interface{}) interface{} {
|
|
key, err := toKey(k)
|
|
if err != nil {
|
|
// Key is invalid; dissoc is no-op.
|
|
return bt
|
|
}
|
|
return bindingsMap{bt.Map.Dissoc(key)}
|
|
}
|
|
|
|
func makeBindingMap(raw hashmap.Map) (bindingsMap, error) {
|
|
converted := vals.EmptyMap
|
|
for it := raw.Iterator(); it.HasElem(); it.Next() {
|
|
k, v := it.Elem()
|
|
f, ok := v.(eval.Callable)
|
|
if !ok {
|
|
return emptyBindingsMap, errValueShouldBeFn
|
|
}
|
|
key, err := toKey(k)
|
|
if err != nil {
|
|
return bindingsMap{}, err
|
|
}
|
|
converted = converted.Assoc(key, f)
|
|
}
|
|
|
|
return bindingsMap{converted}, nil
|
|
}
|