dragonfly/scheduler/resource/task_manager.go

125 lines
2.8 KiB
Go

/*
* Copyright 2020 The Dragonfly 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.
*/
//go:generate mockgen -destination task_manager_mock.go -source task_manager.go -package resource
package resource
import (
"sync"
pkggc "d7y.io/dragonfly/v2/pkg/gc"
"d7y.io/dragonfly/v2/scheduler/config"
)
const (
// GC task id.
GCTaskID = "task"
)
// TaskManager is the interface used for task manager.
type TaskManager interface {
// Load returns task for a key.
Load(string) (*Task, bool)
// Store sets task.
Store(*Task)
// LoadOrStore returns task the key if present.
// Otherwise, it stores and returns the given task.
// The loaded result is true if the task was loaded, false if stored.
LoadOrStore(*Task) (*Task, bool)
// Delete deletes task for a key.
Delete(string)
// Try to reclaim task.
RunGC() error
}
// taskManager contains content for task manager.
type taskManager struct {
// Task sync map.
*sync.Map
}
// New task manager interface.
func newTaskManager(cfg *config.GCConfig, gc pkggc.GC) (TaskManager, error) {
t := &taskManager{
Map: &sync.Map{},
}
if err := gc.Add(pkggc.Task{
ID: GCTaskID,
Interval: cfg.TaskGCInterval,
Timeout: cfg.TaskGCInterval,
Runner: t,
}); err != nil {
return nil, err
}
return t, nil
}
// Load returns task for a key.
func (t *taskManager) Load(key string) (*Task, bool) {
rawTask, loaded := t.Map.Load(key)
if !loaded {
return nil, false
}
return rawTask.(*Task), loaded
}
// Store sets task.
func (t *taskManager) Store(task *Task) {
t.Map.Store(task.ID, task)
}
// LoadOrStore returns task the key if present.
// Otherwise, it stores and returns the given task.
// The loaded result is true if the task was loaded, false if stored.
func (t *taskManager) LoadOrStore(task *Task) (*Task, bool) {
rawTask, loaded := t.Map.LoadOrStore(task.ID, task)
return rawTask.(*Task), loaded
}
// Delete deletes task for a key.
func (t *taskManager) Delete(key string) {
t.Map.Delete(key)
}
// Try to reclaim task.
func (t *taskManager) RunGC() error {
t.Map.Range(func(_, value any) bool {
task, ok := value.(*Task)
if !ok {
task.Log.Error("invalid task")
return true
}
// If there is no peer then task will be reclaimed.
if task.PeerCount() == 0 {
task.Log.Info("task has been reclaimed")
t.Delete(task.ID)
}
return true
})
return nil
}