package mixins import ( "github.com/ipld/go-ipld-prime/datamodel" ) // Bool can be embedded in a struct to provide all the methods that // have fixed output for any int-kinded nodes. // (Mostly this includes all the methods which simply return ErrWrongKind.) // Other methods will still need to be implemented to finish conforming to Node. // // To conserve memory and get a TypeName in errors without embedding, // write methods on your type with a body that simply initializes this struct // and immediately uses the relevant method; // this is more verbose in source, but compiles to a tighter result: // in memory, there's no embed; and in runtime, the calls will be inlined // and thus have no cost in execution time. type Bool struct { TypeName string } func (Bool) Kind() datamodel.Kind { return datamodel.Kind_Bool } func (x Bool) LookupByString(string) (datamodel.Node, error) { return nil, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "LookupByString", AppropriateKind: datamodel.KindSet_JustMap, ActualKind: datamodel.Kind_Bool} } func (x Bool) LookupByNode(key datamodel.Node) (datamodel.Node, error) { return nil, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "LookupByNode", AppropriateKind: datamodel.KindSet_JustMap, ActualKind: datamodel.Kind_Bool} } func (x Bool) LookupByIndex(idx int64) (datamodel.Node, error) { return nil, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "LookupByIndex", AppropriateKind: datamodel.KindSet_JustList, ActualKind: datamodel.Kind_Bool} } func (x Bool) LookupBySegment(datamodel.PathSegment) (datamodel.Node, error) { return nil, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "LookupBySegment", AppropriateKind: datamodel.KindSet_Recursive, ActualKind: datamodel.Kind_Bool} } func (Bool) MapIterator() datamodel.MapIterator { return nil } func (Bool) ListIterator() datamodel.ListIterator { return nil } func (Bool) Length() int64 { return -1 } func (Bool) IsAbsent() bool { return false } func (Bool) IsNull() bool { return false } func (x Bool) AsInt() (int64, error) { return 0, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AsInt", AppropriateKind: datamodel.KindSet_JustInt, ActualKind: datamodel.Kind_Bool} } func (x Bool) AsFloat() (float64, error) { return 0, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AsFloat", AppropriateKind: datamodel.KindSet_JustFloat, ActualKind: datamodel.Kind_Bool} } func (x Bool) AsString() (string, error) { return "", datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AsString", AppropriateKind: datamodel.KindSet_JustString, ActualKind: datamodel.Kind_Bool} } func (x Bool) AsBytes() ([]byte, error) { return nil, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AsBytes", AppropriateKind: datamodel.KindSet_JustBytes, ActualKind: datamodel.Kind_Bool} } func (x Bool) AsLink() (datamodel.Link, error) { return nil, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AsLink", AppropriateKind: datamodel.KindSet_JustLink, ActualKind: datamodel.Kind_Bool} } // BoolAssembler has similar purpose as Bool, but for (you guessed it) // the NodeAssembler interface rather than the Node interface. type BoolAssembler struct { TypeName string } func (x BoolAssembler) BeginMap(sizeHint int64) (datamodel.MapAssembler, error) { return nil, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "BeginMap", AppropriateKind: datamodel.KindSet_JustMap, ActualKind: datamodel.Kind_Bool} } func (x BoolAssembler) BeginList(sizeHint int64) (datamodel.ListAssembler, error) { return nil, datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "BeginList", AppropriateKind: datamodel.KindSet_JustList, ActualKind: datamodel.Kind_Bool} } func (x BoolAssembler) AssignNull() error { return datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AssignNull", AppropriateKind: datamodel.KindSet_JustNull, ActualKind: datamodel.Kind_Bool} } func (x BoolAssembler) AssignInt(int64) error { return datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AssignInt", AppropriateKind: datamodel.KindSet_JustInt, ActualKind: datamodel.Kind_Bool} } func (x BoolAssembler) AssignFloat(float64) error { return datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AssignFloat", AppropriateKind: datamodel.KindSet_JustFloat, ActualKind: datamodel.Kind_Bool} } func (x BoolAssembler) AssignString(string) error { return datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AssignString", AppropriateKind: datamodel.KindSet_JustString, ActualKind: datamodel.Kind_Bool} } func (x BoolAssembler) AssignBytes([]byte) error { return datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AssignBytes", AppropriateKind: datamodel.KindSet_JustBytes, ActualKind: datamodel.Kind_Bool} } func (x BoolAssembler) AssignLink(datamodel.Link) error { return datamodel.ErrWrongKind{TypeName: x.TypeName, MethodName: "AssignLink", AppropriateKind: datamodel.KindSet_JustLink, ActualKind: datamodel.Kind_Bool} }