mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-20 10:22:22 +08:00
97 lines
2.6 KiB
Go
97 lines
2.6 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// 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 priorities
|
|
|
|
import (
|
|
"yunion.io/x/onecloud/pkg/scheduler/core"
|
|
"yunion.io/x/onecloud/pkg/scheduler/core/score"
|
|
)
|
|
|
|
// PriorityHelper is a struct that as a base interface for all priorities.
|
|
type PriorityHelper struct {
|
|
priority core.Priority
|
|
unit *core.Unit
|
|
Candidate core.Candidater
|
|
score score.SScore
|
|
err error
|
|
}
|
|
|
|
func NewPriorityHelper(p core.Priority, u *core.Unit, c core.Candidater) *PriorityHelper {
|
|
return &PriorityHelper{
|
|
priority: p,
|
|
unit: u,
|
|
Candidate: c,
|
|
}
|
|
}
|
|
|
|
func (h *PriorityHelper) setRawScore(val int) score.SScore {
|
|
h.score = score.NewScore(
|
|
score.TScore(val),
|
|
h.priority.Name())
|
|
return h.score
|
|
}
|
|
|
|
func (h *PriorityHelper) SetScore(val int) {
|
|
h.setRawScore(val)
|
|
h.unit.SetScore(h.Candidate.IndexKey(), h.score)
|
|
}
|
|
|
|
func (h *PriorityHelper) SetPreferScore(val int) {
|
|
h.setRawScore(val)
|
|
h.unit.SetPreferScore(h.Candidate.IndexKey(), h.score)
|
|
}
|
|
|
|
func (h *PriorityHelper) SetAvoidScore(val int) {
|
|
h.setRawScore(val)
|
|
h.unit.SetAvoidScore(h.Candidate.IndexKey(), h.score)
|
|
}
|
|
|
|
func (h *PriorityHelper) SetError(err error) {
|
|
h.err = err
|
|
}
|
|
|
|
func (h *PriorityHelper) GetResult() (core.HostPriority, error) {
|
|
return core.HostPriority{
|
|
Host: h.Candidate.IndexKey(),
|
|
Candidate: h.Candidate,
|
|
}, h.err
|
|
}
|
|
|
|
// BasePriority is a default struct for priority that all the priorities
|
|
// will contain it and implement its PreExecute(),Map(),Reduce() and
|
|
// Name() methods.
|
|
type BasePriority struct {
|
|
}
|
|
|
|
func (b *BasePriority) PreExecute(u *core.Unit, cs []core.Candidater) (bool, []core.PredicateFailureReason, error) {
|
|
return true, nil, nil
|
|
}
|
|
|
|
func (b *BasePriority) Map(u *core.Unit, c core.Candidater) (core.HostPriority, error) {
|
|
return core.HostPriority{}, nil
|
|
}
|
|
|
|
func (b *BasePriority) Reduce(u *core.Unit, cs []core.Candidater, result core.HostPriorityList) error {
|
|
return nil
|
|
}
|
|
|
|
func (b *BasePriority) Name() string {
|
|
return "base_priorites_should_not_be_called"
|
|
}
|
|
|
|
func (b *BasePriority) ScoreIntervals() score.Intervals {
|
|
return score.NewIntervals(0, 1, 2)
|
|
}
|