forked from TrueCloudLab/frostfs-node
1c30414a6c
Core changes: * avoid package-colliding variable naming * avoid using pointers to IDs where unnecessary * avoid using `idSDK` import alias pattern * use `EncodeToString` for protocol string calculation and `String` for printing Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
23 lines
380 B
Go
23 lines
380 B
Go
package object
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-sdk-go/object"
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
)
|
|
|
|
// AddressOf returns the address of the object.
|
|
func AddressOf(obj *object.Object) oid.Address {
|
|
var addr oid.Address
|
|
|
|
id, ok := obj.ID()
|
|
if ok {
|
|
addr.SetObject(id)
|
|
}
|
|
|
|
cnr, ok := obj.ContainerID()
|
|
if ok {
|
|
addr.SetContainer(cnr)
|
|
}
|
|
|
|
return addr
|
|
}
|