mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
f87fe1e669
* sync with MontFerret/ferret * fix --param handling When params is converted to map it uses strings.Split, which slices a string into all substrings separated by :. * implement GetIn for values.Object * implement GetIn for values.Array * rewrite GetIn because values.Object and values.Array implement core.Getter now * fix bug when GetIn return nil instead of None * add tests for Object and Array .GetIn * add GetIn comment and remove 'len(byPath)' check * fix GetIn comment
288 lines
4.5 KiB
Go
288 lines
4.5 KiB
Go
package values
|
|
|
|
import (
|
|
"context"
|
|
"encoding/binary"
|
|
"encoding/json"
|
|
"hash/fnv"
|
|
"sort"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
type (
|
|
ArrayPredicate = func(value core.Value, idx int) bool
|
|
|
|
ArraySorter = func(first, second core.Value) bool
|
|
|
|
Array struct {
|
|
items []core.Value
|
|
}
|
|
)
|
|
|
|
func NewArray(size int) *Array {
|
|
return &Array{items: make([]core.Value, 0, size)}
|
|
}
|
|
|
|
func NewArrayWith(values ...core.Value) *Array {
|
|
return &Array{items: values}
|
|
}
|
|
|
|
func (t *Array) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(t.items)
|
|
}
|
|
|
|
func (t *Array) Type() core.Type {
|
|
return types.Array
|
|
}
|
|
|
|
func (t *Array) String() string {
|
|
marshaled, err := t.MarshalJSON()
|
|
|
|
if err != nil {
|
|
return "[]"
|
|
}
|
|
|
|
return string(marshaled)
|
|
}
|
|
|
|
func (t *Array) Compare(other core.Value) int64 {
|
|
if other.Type() == types.Array {
|
|
other := other.(*Array)
|
|
|
|
if t.Length() == 0 && other.Length() == 0 {
|
|
return 0
|
|
}
|
|
|
|
if t.Length() < other.Length() {
|
|
return -1
|
|
}
|
|
|
|
if t.Length() > other.Length() {
|
|
return 1
|
|
}
|
|
|
|
var res int64
|
|
var val core.Value
|
|
|
|
other.ForEach(func(otherVal core.Value, idx int) bool {
|
|
val = t.Get(NewInt(idx))
|
|
res = val.Compare(otherVal)
|
|
|
|
return res == 0
|
|
})
|
|
|
|
return res
|
|
}
|
|
|
|
return types.Compare(types.Array, other.Type())
|
|
}
|
|
|
|
func (t *Array) Unwrap() interface{} {
|
|
arr := make([]interface{}, t.Length())
|
|
|
|
for idx, val := range t.items {
|
|
arr[idx] = val.Unwrap()
|
|
}
|
|
|
|
return arr
|
|
}
|
|
|
|
func (t *Array) Hash() uint64 {
|
|
h := fnv.New64a()
|
|
|
|
h.Write([]byte(t.Type().String()))
|
|
h.Write([]byte(":"))
|
|
h.Write([]byte("["))
|
|
|
|
endIndex := len(t.items) - 1
|
|
|
|
for i, el := range t.items {
|
|
bytes := make([]byte, 8)
|
|
binary.LittleEndian.PutUint64(bytes, el.Hash())
|
|
|
|
h.Write(bytes)
|
|
|
|
if i != endIndex {
|
|
h.Write([]byte(","))
|
|
}
|
|
}
|
|
|
|
h.Write([]byte("]"))
|
|
|
|
return h.Sum64()
|
|
}
|
|
|
|
func (t *Array) Copy() core.Value {
|
|
c := NewArray(len(t.items))
|
|
|
|
for _, el := range t.items {
|
|
c.Push(el)
|
|
}
|
|
|
|
return c
|
|
}
|
|
|
|
func (t *Array) Length() Int {
|
|
return Int(len(t.items))
|
|
}
|
|
|
|
func (t *Array) ForEach(predicate ArrayPredicate) {
|
|
for idx, val := range t.items {
|
|
if !predicate(val, idx) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
func (t *Array) Find(predicate ArrayPredicate) (core.Value, Boolean) {
|
|
for idx, val := range t.items {
|
|
if predicate(val, idx) {
|
|
return val, True
|
|
}
|
|
}
|
|
|
|
return None, False
|
|
}
|
|
|
|
func (t *Array) Get(idx Int) core.Value {
|
|
l := len(t.items) - 1
|
|
|
|
if l < 0 {
|
|
return None
|
|
}
|
|
|
|
if int(idx) > l {
|
|
return None
|
|
}
|
|
|
|
return t.items[idx]
|
|
}
|
|
|
|
func (t *Array) Set(idx Int, value core.Value) error {
|
|
last := len(t.items) - 1
|
|
|
|
if last >= int(idx) {
|
|
t.items[idx] = value
|
|
|
|
return nil
|
|
}
|
|
|
|
return core.Error(core.ErrInvalidOperation, "out of bounds")
|
|
}
|
|
|
|
func (t *Array) Push(item core.Value) {
|
|
t.items = append(t.items, item)
|
|
}
|
|
|
|
func (t *Array) Slice(from, to Int) *Array {
|
|
length := t.Length()
|
|
|
|
if from >= length {
|
|
return NewArray(0)
|
|
}
|
|
|
|
if to > length {
|
|
to = length
|
|
}
|
|
|
|
result := new(Array)
|
|
result.items = t.items[from:to]
|
|
|
|
return result
|
|
}
|
|
|
|
func (t *Array) IndexOf(item core.Value) Int {
|
|
res := Int(-1)
|
|
|
|
for idx, el := range t.items {
|
|
if el.Compare(item) == 0 {
|
|
res = Int(idx)
|
|
break
|
|
}
|
|
}
|
|
|
|
return res
|
|
}
|
|
|
|
func (t *Array) Insert(idx Int, value core.Value) {
|
|
t.items = append(t.items[:idx], append([]core.Value{value}, t.items[idx:]...)...)
|
|
}
|
|
|
|
func (t *Array) RemoveAt(idx Int) {
|
|
i := int(idx)
|
|
max := len(t.items) - 1
|
|
|
|
if i > max {
|
|
return
|
|
}
|
|
|
|
t.items = append(t.items[:i], t.items[i+1:]...)
|
|
}
|
|
|
|
func (t *Array) Clone() core.Cloneable {
|
|
cloned := NewArray(0)
|
|
|
|
var value core.Value
|
|
for idx := NewInt(0); idx < t.Length(); idx++ {
|
|
value = t.Get(idx)
|
|
|
|
cloneable, ok := value.(core.Cloneable)
|
|
|
|
if ok {
|
|
value = cloneable.Clone()
|
|
}
|
|
|
|
cloned.Push(value)
|
|
}
|
|
|
|
return cloned
|
|
}
|
|
|
|
func (t *Array) Sort() *Array {
|
|
return t.SortWith(func(first, second core.Value) bool {
|
|
return first.Compare(second) == -1
|
|
})
|
|
}
|
|
|
|
func (t *Array) SortWith(sorter ArraySorter) *Array {
|
|
c := make([]core.Value, len(t.items))
|
|
copy(c, t.items)
|
|
|
|
sort.SliceStable(c, func(i, j int) bool {
|
|
return sorter(c[i], c[j])
|
|
})
|
|
|
|
res := new(Array)
|
|
res.items = c
|
|
|
|
return res
|
|
}
|
|
|
|
func (t *Array) GetIn(ctx context.Context, path []core.Value) (core.Value, error) {
|
|
if len(path) == 0 {
|
|
return None, nil
|
|
}
|
|
|
|
if typ := path[0].Type(); typ != types.Int {
|
|
return None, core.TypeError(typ, types.Int)
|
|
}
|
|
|
|
first := t.Get(path[0].(Int))
|
|
|
|
if len(path) == 1 {
|
|
return first, nil
|
|
}
|
|
|
|
getter, ok := first.(core.Getter)
|
|
if !ok {
|
|
return None, core.TypeError(
|
|
first.Type(),
|
|
core.NewType("Getter"),
|
|
)
|
|
}
|
|
|
|
return getter.GetIn(ctx, path[1:])
|
|
}
|