seaweedfs/weed/storage/erasure_coding/ec_volume.go

91 lines
2.3 KiB
Go
Raw Normal View History

package erasure_coding
import (
"math"
"sort"
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"github.com/chrislusf/seaweedfs/weed/storage/needle"
2019-05-27 18:59:03 +00:00
"github.com/chrislusf/seaweedfs/weed/storage/types"
)
2019-05-28 04:40:51 +00:00
type EcVolume struct {
Shards []*EcVolumeShard
}
2019-05-28 04:40:51 +00:00
func (ev *EcVolume) AddEcVolumeShard(ecVolumeShard *EcVolumeShard) bool {
for _, s := range ev.Shards {
if s.ShardId == ecVolumeShard.ShardId {
return false
}
}
2019-05-28 04:40:51 +00:00
ev.Shards = append(ev.Shards, ecVolumeShard)
sort.Slice(ev, func(i, j int) bool {
return ev.Shards[i].VolumeId < ev.Shards[j].VolumeId ||
ev.Shards[i].VolumeId == ev.Shards[j].VolumeId && ev.Shards[i].ShardId < ev.Shards[j].ShardId
})
return true
}
2019-05-28 04:40:51 +00:00
func (ev *EcVolume) DeleteEcVolumeShard(shardId ShardId) bool {
foundPosition := -1
2019-05-28 04:40:51 +00:00
for i, s := range ev.Shards {
if s.ShardId == shardId {
foundPosition = i
}
}
if foundPosition < 0 {
return false
}
2019-05-28 04:40:51 +00:00
ev.Shards = append(ev.Shards[:foundPosition], ev.Shards[foundPosition+1:]...)
return true
}
2019-05-28 04:40:51 +00:00
func (ev *EcVolume) FindEcVolumeShard(shardId ShardId) (ecVolumeShard *EcVolumeShard, found bool) {
for _, s := range ev.Shards {
if s.ShardId == shardId {
return s, true
}
}
return nil, false
}
2019-05-28 04:40:51 +00:00
func (ev *EcVolume) Close() {
for _, s := range ev.Shards {
s.Close()
}
}
2019-05-28 04:40:51 +00:00
func (ev *EcVolume) ToVolumeEcShardInformationMessage() (messages []*master_pb.VolumeEcShardInformationMessage) {
prevVolumeId := needle.VolumeId(math.MaxUint32)
var m *master_pb.VolumeEcShardInformationMessage
2019-05-28 04:40:51 +00:00
for _, s := range ev.Shards {
if s.VolumeId != prevVolumeId {
m = &master_pb.VolumeEcShardInformationMessage{
Id: uint32(s.VolumeId),
Collection: s.Collection,
}
messages = append(messages, m)
}
prevVolumeId = s.VolumeId
m.EcIndexBits = uint32(ShardBits(m.EcIndexBits).AddShardId(s.ShardId))
}
return
}
2019-05-28 04:40:51 +00:00
func (ev *EcVolume) LocateEcShardNeedle(n *needle.Needle) (offset types.Offset, size uint32, intervals []Interval, err error) {
2019-05-28 04:40:51 +00:00
shard := ev.Shards[0]
// find the needle from ecx file
2019-05-27 18:59:03 +00:00
offset, size, err = shard.findNeedleFromEcx(n.Id)
if err != nil {
2019-05-27 18:59:03 +00:00
return types.Offset{}, 0, nil, err
}
// calculate the locations in the ec shards
2019-05-27 18:59:03 +00:00
intervals = LocateData(ErasureCodingLargeBlockSize, ErasureCodingSmallBlockSize, shard.ecxFileSize, offset.ToAcutalOffset(), size)
2019-05-27 18:59:03 +00:00
return
}