Cloudreve/pkg/task/pool.go

69 lines
1.4 KiB
Go
Raw Normal View History

package task
2020-02-02 14:40:07 +08:00
import (
model "github.com/cloudreve/Cloudreve/v3/models"
Feat: aria2 download and transfer in slave node (#1040) * Feat: retrieve nodes from data table * Feat: master node ping slave node in REST API * Feat: master send scheduled ping request * Feat: inactive nodes recover loop * Modify: remove database operations from aria2 RPC caller implementation * Feat: init aria2 client in master node * Feat: Round Robin load balancer * Feat: create and monitor aria2 task in master node * Feat: salve receive and handle heartbeat * Fix: Node ID will be 0 in download record generated in older version * Feat: sign request headers with all `X-` prefix * Feat: API call to slave node will carry meta data in headers * Feat: call slave aria2 rpc method from master * Feat: get slave aria2 task status Feat: encode slave response data using gob * Feat: aria2 callback to master node / cancel or select task to slave node * Fix: use dummy aria2 client when caller initialize failed in master node * Feat: slave aria2 status event callback / salve RPC auth * Feat: prototype for slave driven filesystem * Feat: retry for init aria2 client in master node * Feat: init request client with global options * Feat: slave receive async task from master * Fix: competition write in request header * Refactor: dependency initialize order * Feat: generic message queue implementation * Feat: message queue implementation * Feat: master waiting slave transfer result * Feat: slave transfer file in stateless policy * Feat: slave transfer file in slave policy * Feat: slave transfer file in local policy * Feat: slave transfer file in OneDrive policy * Fix: failed to initialize update checker http client * Feat: list slave nodes for dashboard * Feat: test aria2 rpc connection in slave * Feat: add and save node * Feat: add and delete node in node pool * Fix: temp file cannot be removed when aria2 task fails * Fix: delete node in admin panel * Feat: edit node and get node info * Modify: delete unused settings
2021-10-31 09:41:56 +08:00
"github.com/cloudreve/Cloudreve/v3/pkg/conf"
"github.com/cloudreve/Cloudreve/v3/pkg/util"
2020-02-02 14:40:07 +08:00
)
2019-12-12 11:33:41 +08:00
2020-02-02 14:40:07 +08:00
// TaskPoll 要使用的任务池
2021-11-11 19:49:02 +08:00
var TaskPoll Pool
2020-02-02 14:40:07 +08:00
2021-11-11 19:49:02 +08:00
type Pool interface {
Add(num int)
Submit(job Job)
}
// AsyncPool 带有最大配额的任务池
type AsyncPool struct {
// 容量
2020-02-02 14:40:07 +08:00
idleWorker chan int
}
2020-02-02 14:40:07 +08:00
// Add 增加可用Worker数量
2021-11-11 19:49:02 +08:00
func (pool *AsyncPool) Add(num int) {
2020-02-02 14:40:07 +08:00
for i := 0; i < num; i++ {
pool.idleWorker <- 1
2019-12-12 11:33:41 +08:00
}
}
2020-02-02 14:40:07 +08:00
// ObtainWorker 阻塞直到获取新的Worker
2021-11-11 19:49:02 +08:00
func (pool *AsyncPool) obtainWorker() Worker {
2020-02-02 14:40:07 +08:00
select {
case <-pool.idleWorker:
// 有空闲Worker名额时返回新Worker
return &GeneralWorker{}
2019-12-12 11:33:41 +08:00
}
}
2020-02-02 14:40:07 +08:00
// FreeWorker 添加空闲Worker
2021-11-11 19:49:02 +08:00
func (pool *AsyncPool) freeWorker() {
2020-02-02 14:40:07 +08:00
pool.Add(1)
2019-12-12 11:33:41 +08:00
}
2020-02-02 14:40:07 +08:00
// Submit 开始提交任务
2021-11-11 19:49:02 +08:00
func (pool *AsyncPool) Submit(job Job) {
2020-02-02 14:40:07 +08:00
go func() {
util.Log().Debug("等待获取Worker")
2021-11-11 19:49:02 +08:00
worker := pool.obtainWorker()
2020-02-02 14:40:07 +08:00
util.Log().Debug("获取到Worker")
worker.Do(job)
util.Log().Debug("释放Worker")
2021-11-11 19:49:02 +08:00
pool.freeWorker()
2020-02-02 14:40:07 +08:00
}()
2019-12-12 11:33:41 +08:00
}
2020-02-02 14:40:07 +08:00
// Init 初始化任务池
func Init() {
maxWorker := model.GetIntSetting("max_worker_num", 10)
2021-11-11 19:49:02 +08:00
TaskPoll = &AsyncPool{
2020-02-02 14:40:07 +08:00
idleWorker: make(chan int, maxWorker),
}
2020-02-02 14:40:07 +08:00
TaskPoll.Add(maxWorker)
util.Log().Info("初始化任务队列WorkerNum = %d", maxWorker)
2019-12-12 11:33:41 +08:00
Feat: aria2 download and transfer in slave node (#1040) * Feat: retrieve nodes from data table * Feat: master node ping slave node in REST API * Feat: master send scheduled ping request * Feat: inactive nodes recover loop * Modify: remove database operations from aria2 RPC caller implementation * Feat: init aria2 client in master node * Feat: Round Robin load balancer * Feat: create and monitor aria2 task in master node * Feat: salve receive and handle heartbeat * Fix: Node ID will be 0 in download record generated in older version * Feat: sign request headers with all `X-` prefix * Feat: API call to slave node will carry meta data in headers * Feat: call slave aria2 rpc method from master * Feat: get slave aria2 task status Feat: encode slave response data using gob * Feat: aria2 callback to master node / cancel or select task to slave node * Fix: use dummy aria2 client when caller initialize failed in master node * Feat: slave aria2 status event callback / salve RPC auth * Feat: prototype for slave driven filesystem * Feat: retry for init aria2 client in master node * Feat: init request client with global options * Feat: slave receive async task from master * Fix: competition write in request header * Refactor: dependency initialize order * Feat: generic message queue implementation * Feat: message queue implementation * Feat: master waiting slave transfer result * Feat: slave transfer file in stateless policy * Feat: slave transfer file in slave policy * Feat: slave transfer file in local policy * Feat: slave transfer file in OneDrive policy * Fix: failed to initialize update checker http client * Feat: list slave nodes for dashboard * Feat: test aria2 rpc connection in slave * Feat: add and save node * Feat: add and delete node in node pool * Fix: temp file cannot be removed when aria2 task fails * Fix: delete node in admin panel * Feat: edit node and get node info * Modify: delete unused settings
2021-10-31 09:41:56 +08:00
if conf.SystemConfig.Mode == "master" {
Resume()
}
}