frostfs-sdk-go/object/type.go
Pavel Pogodaev 6ce73790ea
All checks were successful
DCO / DCO (pull_request) Successful in 38s
Tests and linters / Tests (pull_request) Successful in 1m13s
Tests and linters / Lint (pull_request) Successful in 2m36s
[#276] Merge repo with frostfs-api-go
Signed-off-by: Pavel Pogodaev <p.pogodaev@yadro.com>
2024-10-22 14:05:12 +00:00

48 lines
796 B
Go

package object
import (
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/api/object"
)
type Type object.Type
const (
TypeRegular Type = iota
TypeTombstone
_
TypeLock
)
func (t Type) ToV2() object.Type {
return object.Type(t)
}
func TypeFromV2(t object.Type) Type {
return Type(t)
}
// String returns string representation of Type.
//
// String mapping:
// - TypeTombstone: TOMBSTONE;
// - TypeLock: LOCK;
// - TypeRegular, default: REGULAR.
func (t Type) String() string {
return t.ToV2().String()
}
// FromString parses Type from a string representation.
// It is a reverse action to String().
//
// Returns true if s was parsed successfully.
func (t *Type) FromString(s string) bool {
var g object.Type
ok := g.FromString(s)
if ok {
*t = TypeFromV2(g)
}
return ok
}