mirror of
https://github.com/cubefs/cubefs.git
synced 2026-08-02 02:00:56 +00:00
1. remove useless code. 2. fix compatiable bug abount dataMediatType. Signed-off-by: Victor1319 <zengxuewei@oppo.com>
98 lines
2.5 KiB
Go
98 lines
2.5 KiB
Go
// Copyright 2018 The CubeFS Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
// implied. See the License for the specific language governing
|
|
// permissions and limitations under the License.
|
|
|
|
package metanode
|
|
|
|
import (
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/cubefs/cubefs/proto"
|
|
"github.com/cubefs/cubefs/util/log"
|
|
)
|
|
|
|
// DataPartition defines the struct of data partition that will be used on the meta node.
|
|
type DataPartition struct {
|
|
PartitionID uint64
|
|
Status int8
|
|
ReplicaNum uint8
|
|
PartitionType string
|
|
Hosts []string
|
|
IsDiscard bool
|
|
}
|
|
|
|
// GetAllAddrs returns all addresses of the data partition.
|
|
func (dp *DataPartition) GetAllAddrs() (m string) {
|
|
return strings.Join(dp.Hosts[1:], proto.AddrSplit) + proto.AddrSplit
|
|
}
|
|
|
|
// DataPartitionsView defines the view of the data node.
|
|
type DataPartitionsView struct {
|
|
DataPartitions []*DataPartition
|
|
}
|
|
|
|
func NewDataPartitionsView() *DataPartitionsView {
|
|
return &DataPartitionsView{}
|
|
}
|
|
|
|
// Vol defines the view of the data partition with the read/write lock.
|
|
type Vol struct {
|
|
sync.RWMutex
|
|
dataPartitionView map[uint64]*DataPartition
|
|
volDeleteLockTime int64
|
|
info *proto.SimpleVolView
|
|
}
|
|
|
|
// NewVol returns a new volume instance.
|
|
func NewVol() *Vol {
|
|
return &Vol{
|
|
dataPartitionView: make(map[uint64]*DataPartition),
|
|
}
|
|
}
|
|
|
|
// GetPartition returns the data partition based on the given partition ID.
|
|
func (v *Vol) GetPartition(partitionID uint64) *DataPartition {
|
|
v.RLock()
|
|
defer v.RUnlock()
|
|
return v.dataPartitionView[partitionID]
|
|
}
|
|
|
|
// UpdatePartitions updates the data partition.
|
|
func (v *Vol) UpdatePartitions(partitions *DataPartitionsView) {
|
|
for _, dp := range partitions.DataPartitions {
|
|
log.LogDebugf("action[UpdatePartitions] dp (id:%v,status:%v)", dp.PartitionID, dp.Status)
|
|
v.replaceOrInsert(dp)
|
|
}
|
|
}
|
|
|
|
func (v *Vol) SetVolView(info *proto.SimpleVolView) {
|
|
v.Lock()
|
|
defer v.Unlock()
|
|
|
|
v.info = info
|
|
}
|
|
|
|
func (v *Vol) GetVolView() *proto.SimpleVolView {
|
|
v.Lock()
|
|
defer v.Unlock()
|
|
|
|
return v.info
|
|
}
|
|
|
|
func (v *Vol) replaceOrInsert(partition *DataPartition) {
|
|
v.Lock()
|
|
defer v.Unlock()
|
|
v.dataPartitionView[partition.PartitionID] = partition
|
|
}
|