talent-plan-tinykv/scheduler/server/core/test_util.go
Connor 5e089a2cd1 init course framework
Signed-off-by: Connor <zbk602423539@gmail.com>
Co-authored-by: Nick Cameron <nrc@ncameron.org>
Co-authored-by: linning <linningde25@gmail.com>
Co-authored-by: YangKeao <keao.yang@yahoo.com>
Co-authored-by: andylokandy <andylokandy@hotmail.com>
Co-authored-by: Iosmanthus Teng <myosmanthustree@gmail.com>
2020-04-30 15:25:07 +08:00

115 lines
3.3 KiB
Go

// Copyright 2016 PingCAP, Inc.
//
// 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,
// See the License for the specific language governing permissions and
// limitations under the License.
package core
import (
"math"
"github.com/pingcap-incubator/tinykv/proto/pkg/metapb"
"github.com/pingcap-incubator/tinykv/proto/pkg/schedulerpb"
)
// SplitRegions split a set of RegionInfo by the middle of regionKey
func SplitRegions(regions []*RegionInfo) []*RegionInfo {
results := make([]*RegionInfo, 0, len(regions)*2)
for _, region := range regions {
start, end := byte(0), byte(math.MaxUint8)
if len(region.GetStartKey()) > 0 {
start = region.GetStartKey()[0]
}
if len(region.GetEndKey()) > 0 {
end = region.GetEndKey()[0]
}
middle := []byte{start/2 + end/2}
left := region.Clone()
left.meta.Id = region.GetID() + uint64(len(regions))
left.meta.EndKey = middle
left.meta.RegionEpoch.Version++
right := region.Clone()
right.meta.Id = region.GetID() + uint64(len(regions)*2)
right.meta.StartKey = middle
right.meta.RegionEpoch.Version++
results = append(results, left, right)
}
return results
}
// MergeRegions merge a set of RegionInfo by regionKey
func MergeRegions(regions []*RegionInfo) []*RegionInfo {
results := make([]*RegionInfo, 0, len(regions)/2)
for i := 0; i < len(regions); i += 2 {
left := regions[i]
right := regions[i]
if i+1 < len(regions) {
right = regions[i+1]
}
region := &RegionInfo{meta: &metapb.Region{
Id: left.GetID() + uint64(len(regions)),
StartKey: left.GetStartKey(),
EndKey: right.GetEndKey(),
}}
if left.GetRegionEpoch().GetVersion() > right.GetRegionEpoch().GetVersion() {
region.meta.RegionEpoch = left.GetRegionEpoch()
} else {
region.meta.RegionEpoch = right.GetRegionEpoch()
}
region.meta.RegionEpoch.Version++
results = append(results, region)
}
return results
}
// NewTestRegionInfo creates a RegionInfo for test.
func NewTestRegionInfo(start, end []byte) *RegionInfo {
return &RegionInfo{meta: &metapb.Region{
StartKey: start,
EndKey: end,
RegionEpoch: &metapb.RegionEpoch{},
}}
}
// NewStoreInfoWithIdAndCount is create a store with specified id and regionCount.
func NewStoreInfoWithIdAndCount(id uint64, regionCount int) *StoreInfo {
stats := &schedulerpb.StoreStats{}
stats.Capacity = uint64(1024)
stats.Available = uint64(1024)
store := NewStoreInfo(
&metapb.Store{
Id: id,
},
SetStoreStats(stats),
SetRegionCount(regionCount),
SetRegionSize(int64(regionCount)*10),
)
return store
}
// NewStoreInfoWithSizeCount is create a store with size and count.
func NewStoreInfoWithSizeCount(id uint64, regionCount, leaderCount int, regionSize, leaderSize int64) *StoreInfo {
stats := &schedulerpb.StoreStats{}
stats.Capacity = uint64(1024)
stats.Available = uint64(1024)
store := NewStoreInfo(
&metapb.Store{
Id: id,
},
SetStoreStats(stats),
SetRegionCount(regionCount),
SetRegionSize(regionSize),
SetLeaderCount(leaderCount),
SetLeaderSize(leaderSize),
)
return store
}