1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/runtime/values/binary.go

87 lines
1.3 KiB
Go
Raw Normal View History

2018-09-18 22:42:38 +02:00
package values
import (
"encoding/json"
2018-10-05 21:17:22 +02:00
"hash/fnv"
2018-09-18 22:42:38 +02:00
"io"
"io/ioutil"
"github.com/MontFerret/ferret/pkg/runtime/core"
2018-09-18 22:42:38 +02:00
)
type Binary struct {
values []byte
}
func NewBinary(values []byte) *Binary {
return &Binary{values}
}
func NewBinaryFrom(stream io.Reader) (*Binary, error) {
values, err := ioutil.ReadAll(stream)
if err != nil {
return nil, err
}
return &Binary{values}, nil
}
func (b *Binary) MarshalJSON() ([]byte, error) {
return json.Marshal(b.values)
}
func (b *Binary) Type() core.Type {
return core.BinaryType
}
func (b *Binary) String() string {
return string(b.values)
}
func (b *Binary) Compare(other core.Value) int {
// TODO: Lame comparison, need to think more about it
switch other.Type() {
case core.BooleanType:
b2 := other.(*Binary)
if b2.Length() == b.Length() {
return 0
}
if b.Length() > b2.Length() {
return 1
}
return -1
default:
return 1
}
}
func (b *Binary) Unwrap() interface{} {
return b.values
}
2018-10-05 21:17:22 +02:00
func (b *Binary) Hash() uint64 {
h := fnv.New64a()
2018-09-18 22:42:38 +02:00
2018-10-05 21:17:22 +02:00
h.Write([]byte(b.Type().String()))
h.Write([]byte(":"))
h.Write(b.values)
2018-09-18 22:42:38 +02:00
2018-10-05 21:17:22 +02:00
return h.Sum64()
2018-09-18 22:42:38 +02:00
}
func (b *Binary) Copy() core.Value {
2018-09-27 17:53:26 +02:00
c := make([]byte, len(b.values))
copy(c, b.values)
return NewBinary(c)
}
2018-09-18 22:42:38 +02:00
func (b *Binary) Length() Int {
return NewInt(len(b.values))
}