forked from TrueCloudLab/frostfs-api-go
Alex Vanin
f69d2ad83c
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
79 lines
1.6 KiB
Go
79 lines
1.6 KiB
Go
package storagegroup
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/refs"
|
|
)
|
|
|
|
// StorageGroup is a unified structure of StorageGroup
|
|
// message from proto definition.
|
|
type StorageGroup struct {
|
|
size uint64
|
|
|
|
hash *refs.Checksum
|
|
|
|
exp uint64
|
|
|
|
members []refs.ObjectID
|
|
}
|
|
|
|
// GetValidationDataSize of unified storage group structure.
|
|
func (s *StorageGroup) GetValidationDataSize() uint64 {
|
|
if s != nil {
|
|
return s.size
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
// SetValidationDataSize into unified storage group structure.
|
|
func (s *StorageGroup) SetValidationDataSize(v uint64) {
|
|
s.size = v
|
|
}
|
|
|
|
// GetValidationHash of unified storage group structure.
|
|
func (s *StorageGroup) GetValidationHash() *refs.Checksum {
|
|
if s != nil {
|
|
return s.hash
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// SetValidationHash into unified storage group structure.
|
|
func (s *StorageGroup) SetValidationHash(v *refs.Checksum) {
|
|
s.hash = v
|
|
}
|
|
|
|
// GetExpirationEpoch of unified storage group structure.
|
|
//
|
|
// Deprecated: Do not use.
|
|
func (s *StorageGroup) GetExpirationEpoch() uint64 {
|
|
if s != nil {
|
|
return s.exp
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
// SetExpirationEpoch into unified storage group structure.
|
|
//
|
|
// Deprecated: Do not use.
|
|
func (s *StorageGroup) SetExpirationEpoch(v uint64) {
|
|
s.exp = v
|
|
}
|
|
|
|
// GetMembers of unified storage group structure. Members are objects of
|
|
// storage group.
|
|
func (s *StorageGroup) GetMembers() []refs.ObjectID {
|
|
if s != nil {
|
|
return s.members
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// SetMembers into unified storage group structure. Members are objects of
|
|
// storage group.
|
|
func (s *StorageGroup) SetMembers(v []refs.ObjectID) {
|
|
s.members = v
|
|
}
|