forked from TrueCloudLab/frostfs-sdk-go
[#64] object: move package from neofs-api-go
Also, remove deprecated method. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
bdb99877f6
commit
39d3317ef6
28 changed files with 3268 additions and 0 deletions
80
object/splitid.go
Normal file
80
object/splitid.go
Normal file
|
@ -0,0 +1,80 @@
|
|||
package object
|
||||
|
||||
import (
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
// SplitID is a UUIDv4 used as attribute in split objects.
|
||||
type SplitID struct {
|
||||
uuid uuid.UUID
|
||||
}
|
||||
|
||||
// NewSplitID returns UUID representation of splitID attribute.
|
||||
//
|
||||
// Defaults:
|
||||
// - id: random UUID.
|
||||
func NewSplitID() *SplitID {
|
||||
return &SplitID{
|
||||
uuid: uuid.New(),
|
||||
}
|
||||
}
|
||||
|
||||
// NewSplitIDFromV2 returns parsed UUID from bytes.
|
||||
// If v is invalid UUIDv4 byte sequence, then function returns nil.
|
||||
//
|
||||
// Nil converts to nil.
|
||||
func NewSplitIDFromV2(v []byte) *SplitID {
|
||||
if v == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
id := uuid.New()
|
||||
|
||||
err := id.UnmarshalBinary(v)
|
||||
if err != nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
return &SplitID{
|
||||
uuid: id,
|
||||
}
|
||||
}
|
||||
|
||||
// Parse converts UUIDv4 string representation into SplitID.
|
||||
func (id *SplitID) Parse(s string) (err error) {
|
||||
id.uuid, err = uuid.Parse(s)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// String returns UUIDv4 string representation of SplitID.
|
||||
func (id *SplitID) String() string {
|
||||
if id == nil {
|
||||
return ""
|
||||
}
|
||||
|
||||
return id.uuid.String()
|
||||
}
|
||||
|
||||
// SetUUID sets pre created UUID structure as SplitID.
|
||||
func (id *SplitID) SetUUID(v uuid.UUID) {
|
||||
if id != nil {
|
||||
id.uuid = v
|
||||
}
|
||||
}
|
||||
|
||||
// ToV2 converts SplitID to a representation of SplitID in neofs-api v2.
|
||||
//
|
||||
// Nil SplitID converts to nil.
|
||||
func (id *SplitID) ToV2() []byte {
|
||||
if id == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
data, _ := id.uuid.MarshalBinary() // err is always nil
|
||||
|
||||
return data
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue