e8eac3997c
This is done to prevent import cycles when `object` package needs any other that requires `object.ID` or `object.Address`. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
163 lines
3.9 KiB
Go
163 lines
3.9 KiB
Go
package object
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/v2/object"
|
|
"github.com/nspcc-dev/neofs-sdk-go/checksum"
|
|
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
"github.com/nspcc-dev/neofs-sdk-go/owner"
|
|
"github.com/nspcc-dev/neofs-sdk-go/session"
|
|
"github.com/nspcc-dev/neofs-sdk-go/signature"
|
|
"github.com/nspcc-dev/neofs-sdk-go/version"
|
|
)
|
|
|
|
// RawObject represents v2-compatible NeoFS object that provides
|
|
// a convenient interface to fill in the fields of
|
|
// an object in isolation from its internal structure.
|
|
type RawObject struct {
|
|
*rwObject
|
|
}
|
|
|
|
// NewRawFromV2 wraps v2 Object message to RawObject.
|
|
func NewRawFromV2(oV2 *object.Object) *RawObject {
|
|
return &RawObject{
|
|
rwObject: (*rwObject)(oV2),
|
|
}
|
|
}
|
|
|
|
// NewRawFrom wraps Object instance to RawObject.
|
|
func NewRawFrom(obj *Object) *RawObject {
|
|
return NewRawFromV2(obj.ToV2())
|
|
}
|
|
|
|
// NewRaw creates and initializes blank RawObject.
|
|
//
|
|
// Works similar as NewRawFromV2(new(Object)).
|
|
func NewRaw() *RawObject {
|
|
return NewRawFromV2(new(object.Object))
|
|
}
|
|
|
|
// Object returns read-only object instance.
|
|
func (o *RawObject) Object() *Object {
|
|
if o != nil {
|
|
return &Object{
|
|
rwObject: o.rwObject,
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// SetID sets object identifier.
|
|
func (o *RawObject) SetID(v *oid.ID) {
|
|
o.setID(v)
|
|
}
|
|
|
|
// SetSignature sets signature of the object identifier.
|
|
func (o *RawObject) SetSignature(v *signature.Signature) {
|
|
o.setSignature(v)
|
|
}
|
|
|
|
// SetPayload sets payload bytes.
|
|
func (o *RawObject) SetPayload(v []byte) {
|
|
o.setPayload(v)
|
|
}
|
|
|
|
// SetVersion sets version of the object.
|
|
func (o *RawObject) SetVersion(v *version.Version) {
|
|
o.setVersion(v)
|
|
}
|
|
|
|
// SetPayloadSize sets payload length of the object.
|
|
func (o *RawObject) SetPayloadSize(v uint64) {
|
|
o.setPayloadSize(v)
|
|
}
|
|
|
|
// SetContainerID sets identifier of the related container.
|
|
func (o *RawObject) SetContainerID(v *cid.ID) {
|
|
o.setContainerID(v)
|
|
}
|
|
|
|
// SetOwnerID sets identifier of the object owner.
|
|
func (o *RawObject) SetOwnerID(v *owner.ID) {
|
|
o.setOwnerID(v)
|
|
}
|
|
|
|
// SetCreationEpoch sets epoch number in which object was created.
|
|
func (o *RawObject) SetCreationEpoch(v uint64) {
|
|
o.setCreationEpoch(v)
|
|
}
|
|
|
|
// SetPayloadChecksum sets checksum of the object payload.
|
|
func (o *RawObject) SetPayloadChecksum(v *checksum.Checksum) {
|
|
o.setPayloadChecksum(v)
|
|
}
|
|
|
|
// SetPayloadHomomorphicHash sets homomorphic hash of the object payload.
|
|
func (o *RawObject) SetPayloadHomomorphicHash(v *checksum.Checksum) {
|
|
o.setPayloadHomomorphicHash(v)
|
|
}
|
|
|
|
// SetAttributes sets object attributes.
|
|
func (o *RawObject) SetAttributes(v ...*Attribute) {
|
|
o.setAttributes(v...)
|
|
}
|
|
|
|
// SetPreviousID sets identifier of the previous sibling object.
|
|
func (o *RawObject) SetPreviousID(v *oid.ID) {
|
|
o.setPreviousID(v)
|
|
}
|
|
|
|
// SetChildren sets list of the identifiers of the child objects.
|
|
func (o *RawObject) SetChildren(v ...*oid.ID) {
|
|
o.setChildren(v...)
|
|
}
|
|
|
|
// SetSplitID sets split identifier for the split object.
|
|
func (o *RawObject) SetSplitID(id *SplitID) {
|
|
o.setSplitID(id)
|
|
}
|
|
|
|
// SetParentID sets identifier of the parent object.
|
|
func (o *RawObject) SetParentID(v *oid.ID) {
|
|
o.setParentID(v)
|
|
}
|
|
|
|
// SetParent sets parent object w/o payload.
|
|
func (o *RawObject) SetParent(v *Object) {
|
|
o.setParent(v)
|
|
}
|
|
|
|
// SetSessionToken sets token of the session
|
|
// within which object was created.
|
|
func (o *RawObject) SetSessionToken(v *session.Token) {
|
|
o.setSessionToken(v)
|
|
}
|
|
|
|
// SetType sets type of the object.
|
|
func (o *RawObject) SetType(v Type) {
|
|
o.setType(v)
|
|
}
|
|
|
|
// CutPayload returns RawObject w/ empty payload.
|
|
//
|
|
// Changes of non-payload fields affect source object.
|
|
func (o *RawObject) CutPayload() *RawObject {
|
|
if o != nil {
|
|
return &RawObject{
|
|
rwObject: o.rwObject.cutPayload(),
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ResetRelations removes all fields of links with other objects.
|
|
func (o *RawObject) ResetRelations() {
|
|
o.resetRelations()
|
|
}
|
|
|
|
// InitRelations initializes relation field.
|
|
func (o *RawObject) InitRelations() {
|
|
o.initRelations()
|
|
}
|