2022-01-25 16:20:32 +00:00
|
|
|
package address
|
2021-11-08 10:04:45 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/refs"
|
|
|
|
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
2022-01-25 16:20:32 +00:00
|
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
2021-11-08 10:04:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Address represents v2-compatible object address.
|
|
|
|
type Address refs.Address
|
|
|
|
|
|
|
|
var errInvalidAddressString = errors.New("incorrect format of the string object address")
|
|
|
|
|
|
|
|
const (
|
|
|
|
addressParts = 2
|
|
|
|
addressSeparator = "/"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NewAddressFromV2 converts v2 Address message to Address.
|
|
|
|
//
|
|
|
|
// Nil refs.Address converts to nil.
|
|
|
|
func NewAddressFromV2(aV2 *refs.Address) *Address {
|
|
|
|
return (*Address)(aV2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewAddress creates and initializes blank Address.
|
|
|
|
//
|
|
|
|
// Works similar as NewAddressFromV2(new(Address)).
|
|
|
|
//
|
|
|
|
// Defaults:
|
|
|
|
// - cid: nil;
|
|
|
|
// - oid: nil.
|
|
|
|
func NewAddress() *Address {
|
|
|
|
return NewAddressFromV2(new(refs.Address))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToV2 converts Address to v2 Address message.
|
|
|
|
//
|
|
|
|
// Nil Address converts to nil.
|
|
|
|
func (a *Address) ToV2() *refs.Address {
|
|
|
|
return (*refs.Address)(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContainerID returns container identifier.
|
|
|
|
func (a *Address) ContainerID() *cid.ID {
|
|
|
|
return cid.NewFromV2(
|
|
|
|
(*refs.Address)(a).GetContainerID())
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetContainerID sets container identifier.
|
|
|
|
func (a *Address) SetContainerID(id *cid.ID) {
|
|
|
|
(*refs.Address)(a).SetContainerID(id.ToV2())
|
|
|
|
}
|
|
|
|
|
|
|
|
// ObjectID returns object identifier.
|
2022-01-25 16:20:32 +00:00
|
|
|
func (a *Address) ObjectID() *oid.ID {
|
|
|
|
return oid.NewIDFromV2(
|
2021-11-08 10:04:45 +00:00
|
|
|
(*refs.Address)(a).GetObjectID())
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetObjectID sets object identifier.
|
2022-01-25 16:20:32 +00:00
|
|
|
func (a *Address) SetObjectID(id *oid.ID) {
|
2021-11-08 10:04:45 +00:00
|
|
|
(*refs.Address)(a).SetObjectID(id.ToV2())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse converts base58 string representation into Address.
|
|
|
|
func (a *Address) Parse(s string) error {
|
|
|
|
var (
|
|
|
|
err error
|
2022-01-25 16:20:32 +00:00
|
|
|
oid = oid.NewID()
|
2021-11-08 10:04:45 +00:00
|
|
|
id = cid.New()
|
|
|
|
parts = strings.Split(s, addressSeparator)
|
|
|
|
)
|
|
|
|
|
|
|
|
if len(parts) != addressParts {
|
|
|
|
return errInvalidAddressString
|
|
|
|
} else if err = id.Parse(parts[0]); err != nil {
|
|
|
|
return err
|
|
|
|
} else if err = oid.Parse(parts[1]); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
a.SetObjectID(oid)
|
|
|
|
a.SetContainerID(id)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// String returns string representation of Object.Address.
|
|
|
|
func (a *Address) String() string {
|
|
|
|
return strings.Join([]string{
|
|
|
|
a.ContainerID().String(),
|
|
|
|
a.ObjectID().String(),
|
|
|
|
}, addressSeparator)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Marshal marshals Address into a protobuf binary form.
|
|
|
|
func (a *Address) Marshal() ([]byte, error) {
|
|
|
|
return (*refs.Address)(a).StableMarshal(nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unmarshal unmarshals protobuf binary representation of Address.
|
|
|
|
func (a *Address) Unmarshal(data []byte) error {
|
|
|
|
return (*refs.Address)(a).Unmarshal(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalJSON encodes Address to protobuf JSON format.
|
|
|
|
func (a *Address) MarshalJSON() ([]byte, error) {
|
|
|
|
return (*refs.Address)(a).MarshalJSON()
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalJSON decodes Address from protobuf JSON format.
|
|
|
|
func (a *Address) UnmarshalJSON(data []byte) error {
|
|
|
|
return (*refs.Address)(a).UnmarshalJSON(data)
|
|
|
|
}
|