-
Notifications
You must be signed in to change notification settings - Fork 0
/
task.go
229 lines (180 loc) · 4.88 KB
/
task.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package task
import (
"errors"
"fmt"
"github.com/team-ide/go-tool/metric"
"github.com/team-ide/go-tool/util"
"go.uber.org/zap"
"sync"
"time"
)
func New(options *Options) (task *Task, err error) {
if options == nil {
err = errors.New("options 配置项不能为空")
return
}
if options.Key == "" {
err = errors.New("任务 Key 不能为空")
return
}
if options.Executor == nil {
err = errors.New("任务 执行器 不能为空")
return
}
if options.Worker <= 0 {
err = errors.New("任务 工作线程 必须大于 0")
return
}
if options.Frequency <= 0 && options.Duration <= 0 {
err = errors.New("任务 必须配置 执行时长 或 执行次数")
return
}
if options.Duration > 0 {
options.durationMilli = int64(options.Duration * 60 * 1000)
}
task = &Task{
Options: options,
nextLocker: &sync.Mutex{},
counterLocker: &sync.Mutex{},
waitGroup: &sync.WaitGroup{},
Metric: &metric.Metric{},
}
return
}
type Task struct {
*Options
StartTime time.Time `json:"startTime"`
EndTime time.Time `json:"endTime"`
Errors []error `json:"errors"`
OnStart func() `json:"-"` // DoStart 执行开始
OnEnd func() `json:"-"` // DoEnd 执行结束
OnStop func() `json:"-"`
isStop bool // isStop 是否需要停止
IsStart bool `json:"isStart"` // IsStart 是否启动
IsEnd bool `json:"isEnd"` // IsEnd 是否结束
getNextCount int // 调用 getNext 次数
nextLocker sync.Locker
counterLocker sync.Locker
ExecutorBeforeCount int `json:"executorBeforeCount"`
ExecutorExecuteCount int `json:"executorExecuteCount"`
ExecutorAfterCount int `json:"executorAfterCount"`
ExecutorSuccessCount int `json:"executorSuccessCount"`
ExecutorErrorCount int `json:"executorErrorCount"`
waitGroup *sync.WaitGroup
workerList []*Worker
Metric *metric.Metric
}
func (this_ *Task) Run() {
if this_.IsStart {
return
}
util.Logger.Info("任务执行 [Start]", zap.Any("Key", this_.Key))
this_.IsStart = true
this_.IsEnd = false
this_.StartTime = time.Now()
defer func() {
this_.runAfter()
this_.EndTime = time.Now()
this_.IsEnd = true
}()
if !this_.runBefore() {
return
}
this_.runDo()
}
func (this_ *Task) runBefore() bool {
defer func() {
if e := recover(); e != nil {
err := errors.New(fmt.Sprintf("任务执行 [runBefore] 异常:%s", e))
this_.Errors = append(this_.Errors, err)
util.Logger.Error("runBefore error", zap.Error(err))
}
}()
if this_.IsStopped() {
return false
}
util.Logger.Info("任务执行 [runBefore]", zap.Any("Key", this_.Key))
if this_.OnStart != nil {
this_.OnStart()
}
return true
}
func (this_ *Task) runDo() {
defer func() {
if e := recover(); e != nil {
err := errors.New(fmt.Sprintf("任务执行 [runDo] 异常:%s", e))
this_.Errors = append(this_.Errors, err)
util.Logger.Error("runDo error", zap.Error(err))
}
}()
util.Logger.Info("任务执行 [runDo]", zap.Any("Key", this_.Key))
this_.waitGroup.Add(this_.Worker)
// 主工作线程 如果配置单线程执行 则无需开启其它线程
rootWorker := NewWorker(0, this_)
this_.workerList = append(this_.workerList, rootWorker)
for i := len(this_.workerList); i < this_.Worker; i++ {
worker := NewWorker(i, this_)
this_.workerList = append(this_.workerList, worker)
go func() {
worker.work()
}()
}
rootWorker.work()
this_.waitGroup.Wait()
}
func (this_ *Task) getNext() (index int) {
this_.nextLocker.Lock()
defer this_.nextLocker.Unlock()
index = -1 // 返回 -1 表示结束
// 如果已经停止
if this_.IsStopped() {
return
}
// 如果 设置 执行次数 则 判断
if this_.Frequency > 0 {
// getNext 计数 大于等于 总次数 则 不在执行
if this_.getNextCount >= this_.Frequency {
return
}
} else if this_.Duration > 0 { // 如果设置 执行时长 则判断
nowMilli := time.Now().UnixMilli()
startMilli := this_.StartTime.UnixMilli()
// 执行 毫秒 大于等于 总时长 则 不在执行
if nowMilli-startMilli > this_.durationMilli {
return
}
}
this_.getNextCount++
index = this_.getNextCount - 1
return
}
func (this_ *Task) runAfter() {
defer func() {
if e := recover(); e != nil {
err := errors.New(fmt.Sprintf("任务执行 [runAfter] 异常:%s", e))
this_.Errors = append(this_.Errors, err)
util.Logger.Error("runAfter error", zap.Error(err))
}
}()
util.Logger.Info("任务执行 [runAfter]", zap.Any("Key", this_.Key))
if this_.OnEnd != nil {
this_.OnEnd()
}
}
func (this_ *Task) Stop() {
defer func() {
if e := recover(); e != nil {
err := errors.New(fmt.Sprintf("任务执行 [Stop] 异常:%s", e))
this_.Errors = append(this_.Errors, err)
util.Logger.Error("Stop error", zap.Error(err))
}
}()
this_.isStop = true
util.Logger.Info("任务执行 [Stop]", zap.Any("Key", this_.Key))
if this_.OnStop != nil {
this_.OnStop()
}
}
func (this_ *Task) IsStopped() bool {
return this_.isStop
}