-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhands.go
389 lines (320 loc) · 7.48 KB
/
hands.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
package hands
import (
"context"
"errors"
"log"
"sort"
"sync/atomic"
)
var (
errTaskPanic = errors.New("task panic")
)
type taskOptions struct {
name string
priority int32
}
type handOptions struct {
all bool
fastest bool
betweenFrom int32
betweenTo int32
in []int32
percentage float32
ctx context.Context
}
type task struct {
options *taskOptions
f func(ctx context.Context) error
}
type taskResult struct {
err error
name string
priority int32
}
// TaskOption sets some metadata for the task.
type TaskOption func(options *taskOptions)
// Name is the task's name.
func Name(name string) TaskOption {
return func(o *taskOptions) {
o.name = name
}
}
// Priority is the task's priority, high priority tasks will be
// executed first.
func Priority(priority int32) TaskOption {
return func(o *taskOptions) {
o.priority = priority
}
}
// P is an alias for `.Priority()`.
func P(priority int32) TaskOption {
return Priority(priority)
}
// HandOption configures decide on the execution strategy of the task.
type HandOption func(options *handOptions)
// Fastest option return result as fast as possible.
func Fastest() HandOption {
return func(o *handOptions) {
o.fastest = true
}
}
// Percentage option return resutls when a certain percentage of tasks
// are completed.
func Percentage(percentage float32) HandOption {
return func(o *handOptions) {
o.percentage = percentage
}
}
// Between option wait for the task in the priority interval to end.
func Between(l, r int32) HandOption {
return func(o *handOptions) {
o.betweenFrom = l
o.betweenTo = r
}
}
// In option wait for the task in the specified priority list.
func In(in []int32) HandOption {
return func(o *handOptions) {
o.in = in
}
}
// WithContext method will make the tasks use the specified context.
func WithContext(ctx context.Context) HandOption {
return func(o *handOptions) {
o.ctx = ctx
}
}
// HandController defines hand controller interface.
type HandController interface {
Do(f func(ctx context.Context) error, options ...TaskOption) HandController
Done(callback func())
Run(options ...HandOption) error
RunAll(options ...HandOption) error
}
type handImpl struct {
tasks []task
size int32
waiting int32
running bool
options *handOptions
callback func()
}
// New method create a new hands controller.
func New() HandController {
return &handImpl{
options: &handOptions{
betweenFrom: -1,
betweenTo: -1,
ctx: context.Background(),
},
}
}
// Do method create a new task into hands.
func (h *handImpl) Do(f func(ctx context.Context) error, options ...TaskOption) HandController {
t := task{f: f, options: &taskOptions{}}
for _, setter := range options {
setter(t.options)
}
// If `priority` < 0, return directly.
if t.options.priority < 0 {
return h
}
h.addTask(t)
return h
}
// Done method will be called when all tasks completed.
func (h *handImpl) Done(callback func()) {
if h.running {
log.Print("can not setting the `Done()` method after the `Run()` or `RunAll()`")
return
}
h.callback = callback
}
// Run method will start all tasks.
func (h *handImpl) Run(options ...HandOption) error {
h.running = true
if len(h.tasks) == 0 {
return nil
}
h.setOptions(options...)
h.size = int32(len(h.tasks))
h.waiting = h.size
// `.In()`
if len(h.options.in) > 0 {
sort.Slice(h.options.in, func(i, j int) bool {
return h.options.in[i] < h.options.in[j]
})
i, j, k := 0, 0, 0
for i < len(h.tasks) && j < len(h.options.in) {
if h.tasks[i].options.priority > h.options.in[j] {
j++
continue
}
if h.tasks[i].options.priority == h.options.in[j] {
if i > k {
h.tasks[i], h.tasks[k] = h.tasks[k], h.tasks[i]
}
k++
}
i++
}
h.updateWaitingCount(int32(k))
err := h.runTasks(h.options.ctx, h.tasks[:k])
if err != nil {
return err
}
if h.options.all {
go func() {
err := h.runTasks(context.Background(), h.tasks[k:])
if err != nil {
log.Fatalf("an error occurred in a non-essential task running asynchronously: %v", err)
}
}()
}
return nil
}
// `.Between()`
if h.options.betweenFrom > -1 && h.options.betweenTo > -1 {
if h.options.betweenFrom > h.options.betweenTo {
return errors.New("the left border cannot be larger than the right border")
}
l := search(h.tasks, h.options.betweenFrom)
r := search(h.tasks, h.options.betweenTo)
if l > 0 {
l = l - 1
}
h.updateWaitingCount(int32(r - l))
err := h.runTasks(h.options.ctx, h.tasks[l:r])
if err != nil {
return err
}
if h.options.all {
go func() {
err := h.runTasks(context.Background(), h.tasks[:l])
if err != nil {
log.Fatalf("an error occurred in a non-essential task running asynchronously: %v", err)
}
}()
go func() {
err := h.runTasks(context.Background(), h.tasks[r:])
if err != nil {
log.Fatalf("an error occurred in a non-essential task running asynchronously: %v", err)
}
}()
}
return nil
}
return h.runTasks(h.options.ctx, h.tasks)
}
// RunAll method will cause non-high priority tasks to be executed asynchronously.
func (h *handImpl) RunAll(options ...HandOption) error {
h.options.all = true
return h.Run(options...)
}
func (h *handImpl) addTask(t task) {
i := search(h.tasks, t.options.priority)
h.tasks = append(h.tasks, t)
copy(h.tasks[i+1:], h.tasks[i:])
h.tasks[i] = t
}
func (h *handImpl) runTasks(ctx context.Context, tasks []task) error {
c := len(tasks)
if c == 0 {
return nil
}
results := make(chan taskResult, c)
for i := range tasks {
t := tasks[c-i-1]
go func() {
defer func() {
if r := recover(); r != nil {
errFromPanic, ok := r.(error)
if !ok {
errFromPanic = errTaskPanic
}
results <- taskResult{
err: errFromPanic,
name: t.options.name,
priority: t.options.priority,
}
}
}()
err := t.f(ctx)
results <- taskResult{
err: err,
name: t.options.name,
priority: t.options.priority,
}
h.runTasksDone()
}()
}
switch {
case h.options.fastest:
return h.processFastest(results)
case h.options.percentage > 0:
return h.processPercentage(c, results)
default:
return h.process(c, results)
}
}
func (h *handImpl) runTasksDone() {
if atomic.AddInt32(&h.waiting, -1) <= 0 {
if h.callback != nil {
h.callback()
}
}
}
func (h *handImpl) setOptions(options ...HandOption) {
for _, setter := range options {
setter(h.options)
}
}
func (h *handImpl) updateWaitingCount(count int32) {
if !h.options.all {
h.waiting = count
}
}
func (h *handImpl) process(c int, results chan taskResult) error {
for i := 0; i < c; i++ {
select {
case <-h.options.ctx.Done():
return h.options.ctx.Err()
case r := <-results:
if r.err != nil {
return r.err
}
}
}
return nil
}
func (h *handImpl) processFastest(results chan taskResult) error {
select {
case <-h.options.ctx.Done():
return h.options.ctx.Err()
case r := <-results:
if r.err != nil {
return r.err
}
return nil
}
}
func (h *handImpl) processPercentage(c int, results chan taskResult) error {
cycles := int(float32(c) * h.options.percentage)
for i := 0; i < cycles; i++ {
select {
case <-h.options.ctx.Done():
return h.options.ctx.Err()
case r := <-results:
if r.err != nil {
return r.err
}
}
}
return nil
}
// Utility method.
func search(tasks []task, priority int32) int {
return sort.Search(len(tasks), func(i int) bool {
return tasks[i].options.priority > priority
})
}