forked from TrueCloudLab/frostfs-api-go
524280a5e8
Refactor v2-compatible reference types to be wrappers over corresponding types from v2. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
36 lines
937 B
Go
36 lines
937 B
Go
package object
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/v2/refs"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// Address represents v2-compatible object address.
|
|
type Address refs.Address
|
|
|
|
// NewAddressFromV2 converts v2 Address message to Address.
|
|
func NewAddressFromV2(aV2 *refs.Address) *Address {
|
|
return (*Address)(aV2)
|
|
}
|
|
|
|
// NewAddress creates and initializes blank Address.
|
|
//
|
|
// Works similar as NewAddressFromV2(new(Address)).
|
|
func NewAddress() *Address {
|
|
return NewAddressFromV2(new(refs.Address))
|
|
}
|
|
|
|
// ToV2 converts Address to v2 Address message.
|
|
func (a *Address) ToV2() *refs.Address {
|
|
return (*refs.Address)(a)
|
|
}
|
|
|
|
// AddressFromBytes restores Address from a binary representation.
|
|
func AddressFromBytes(data []byte) (*Address, error) {
|
|
addrV2 := new(refs.Address)
|
|
if err := addrV2.StableUnmarshal(data); err != nil {
|
|
return nil, errors.Wrap(err, "could not unmarshal object address")
|
|
}
|
|
|
|
return NewAddressFromV2(addrV2), nil
|
|
}
|