123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- // SiYuan - Refactor your thinking
- // Copyright (c) 2020-present, b3log.org
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with this program. If not, see <https://www.gnu.org/licenses/>.
- package task
- import (
- "context"
- "reflect"
- "sync"
- "time"
- "github.com/88250/gulu"
- "github.com/siyuan-note/logging"
- "github.com/siyuan-note/siyuan/kernel/util"
- )
- var (
- taskQueue []*Task
- queueLock = sync.Mutex{}
- )
- type Task struct {
- Action string
- Handler reflect.Value
- Args []interface{}
- Created time.Time
- Timeout time.Duration
- }
- func AppendTask(action string, handler interface{}, args ...interface{}) {
- AppendTaskWithTimeout(action, 24*time.Hour, handler, args...)
- }
- func AppendTaskWithTimeout(action string, timeout time.Duration, handler interface{}, args ...interface{}) {
- if util.IsExiting.Load() {
- //logging.LogWarnf("task queue is paused, action [%s] will be ignored", action)
- return
- }
- currentActions := getCurrentActions()
- if gulu.Str.Contains(action, currentActions) && gulu.Str.Contains(action, uniqueActions) {
- //logging.LogWarnf("task [%s] is already in queue, will be ignored", action)
- return
- }
- queueLock.Lock()
- defer queueLock.Unlock()
- taskQueue = append(taskQueue, &Task{
- Action: action,
- Timeout: timeout,
- Handler: reflect.ValueOf(handler),
- Args: args,
- Created: time.Now(),
- })
- }
- func getCurrentActions() (ret []string) {
- queueLock.Lock()
- currentTaskActionLock.Lock()
- if "" != currentTaskAction {
- ret = append(ret, currentTaskAction)
- }
- currentTaskActionLock.Unlock()
- for _, task := range taskQueue {
- ret = append(ret, task.Action)
- }
- queueLock.Unlock()
- return
- }
- const (
- RepoCheckout = "task.repo.checkout" // 从快照中检出
- DatabaseIndexFull = "task.database.index.full" // 重建索引
- DatabaseIndex = "task.database.index" // 数据库索引
- DatabaseIndexCommit = "task.database.index.commit" // 数据库索引提交
- DatabaseIndexRef = "task.database.index.ref" // 数据库索引引用
- DatabaseIndexFix = "task.database.index.fix" // 数据库索引订正
- OCRImage = "task.ocr.image" // 图片 OCR 提取文本
- HistoryGenerateFile = "task.history.generateFile" // 生成文件历史
- HistoryDatabaseIndexFull = "task.history.database.index.full" // 历史数据库重建索引
- HistoryDatabaseIndexCommit = "task.history.database.index.commit" // 历史数据库索引提交
- DatabaseIndexEmbedBlock = "task.database.index.embedBlock" // 数据库索引嵌入块
- ReloadUI = "task.reload.ui" // 重载 UI
- AssetContentDatabaseIndexFull = "task.asset.database.index.full" // 资源文件数据库重建索引
- AssetContentDatabaseIndexCommit = "task.asset.database.index.commit" // 资源文件数据库索引提交
- CacheVirtualBlockRef = "task.cache.virtualBlockRef" // 缓存虚拟块引用
- )
- // uniqueActions 描述了唯一的任务,即队列中只能存在一个在执行的任务。
- var uniqueActions = []string{
- RepoCheckout,
- DatabaseIndexFull,
- DatabaseIndexCommit,
- OCRImage,
- HistoryGenerateFile,
- HistoryDatabaseIndexFull,
- HistoryDatabaseIndexCommit,
- AssetContentDatabaseIndexFull,
- AssetContentDatabaseIndexCommit,
- }
- func ContainIndexTask() bool {
- actions := getCurrentActions()
- for _, action := range actions {
- if gulu.Str.Contains(action, []string{DatabaseIndexFull, DatabaseIndex}) {
- return true
- }
- }
- return false
- }
- func StatusJob() {
- var items []map[string]interface{}
- count := map[string]int{}
- actionLangs := util.TaskActionLangs[util.Lang]
- queueLock.Lock()
- for _, task := range taskQueue {
- action := task.Action
- if c := count[action]; 2 < c {
- logging.LogWarnf("too many tasks [%s], ignore show its status", action)
- continue
- }
- count[action]++
- if nil != actionLangs {
- if label := actionLangs[task.Action]; nil != label {
- action = label.(string)
- }
- }
- item := map[string]interface{}{"action": action}
- items = append(items, item)
- }
- defer queueLock.Unlock()
- currentTaskActionLock.Lock()
- if "" != currentTaskAction {
- if nil != actionLangs {
- if label := actionLangs[currentTaskAction]; nil != label {
- items = append([]map[string]interface{}{{"action": label.(string)}}, items...)
- }
- }
- }
- currentTaskActionLock.Unlock()
- if 1 > len(items) {
- items = []map[string]interface{}{}
- }
- data := map[string]interface{}{}
- data["tasks"] = items
- util.PushBackgroundTask(data)
- }
- func ExecTaskJob() {
- task := popTask()
- if nil == task {
- return
- }
- if util.IsExiting.Load() {
- return
- }
- execTask(task)
- }
- func popTask() (ret *Task) {
- queueLock.Lock()
- defer queueLock.Unlock()
- if 0 == len(taskQueue) {
- return
- }
- ret = taskQueue[0]
- taskQueue = taskQueue[1:]
- return
- }
- var (
- currentTaskAction string
- currentTaskActionLock = sync.Mutex{}
- )
- func execTask(task *Task) {
- defer logging.Recover()
- args := make([]reflect.Value, len(task.Args))
- for i, v := range task.Args {
- if nil == v {
- args[i] = reflect.New(task.Handler.Type().In(i)).Elem()
- } else {
- args[i] = reflect.ValueOf(v)
- }
- }
- currentTaskActionLock.Lock()
- currentTaskAction = task.Action
- currentTaskActionLock.Unlock()
- ctx, cancel := context.WithTimeout(context.Background(), task.Timeout)
- defer cancel()
- ch := make(chan bool, 1)
- go func() {
- task.Handler.Call(args)
- ch <- true
- }()
- select {
- case <-ctx.Done():
- logging.LogWarnf("task [%s] timeout", task.Action)
- case <-ch:
- //logging.LogInfof("task [%s] done", task.Action)
- }
- currentTaskActionLock.Lock()
- currentTaskAction = ""
- currentTaskActionLock.Unlock()
- }
|