-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex_pool.go
91 lines (71 loc) · 1.48 KB
/
ex_pool.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
package main
import (
"log"
"os"
"os/signal"
"syscall"
"time"
"github.com/l4go/task"
"github.com/l4go/timer"
)
func init() {
log.SetFlags(log.Lmicroseconds)
}
const (
WORKERS = 5
TASKS_PER_STEP = 10
TASK_MSEC = 250
)
func main() {
top_m := task.NewMission()
defer top_m.Done()
signal_ch := make(chan os.Signal, 1)
signal.Notify(signal_ch, syscall.SIGINT, syscall.SIGTERM)
log.Println("START")
defer log.Println("END")
p := task.NewPool(top_m.New(), WORKERS)
defer p.Close()
step_m := top_m.New()
defer step_m.Done()
for i := 1; i <= TASKS_PER_STEP; i++ {
p.Do(must_work, step_m.New(), "must", i)
p.WeakDo(weak_work, "weak", i)
}
log.Println("CANCEL")
top_m.Cancel()
log.Println("WAIT")
select {
case <-step_m.Recv():
case <-signal_ch:
top_m.Cancel()
}
}
func must_work(m *task.Mission, args ...interface{}) {
defer m.Done()
s := args[0].(string)
i := args[1].(int)
if task.IsCanceled(m) {
log.Println("work", s, i, "canceled")
return
}
log.Println("work", s, i, "start")
tm := timer.NewTimer()
defer tm.Stop()
tm.Start(TASK_MSEC * time.Millisecond)
select {
case <-m.RecvCancel():
log.Println("work", s, i, "cancel")
case <-tm.Recv():
log.Println("work", s, i, "end")
}
}
func weak_work(args ...interface{}) {
s := args[0].(string)
i := args[1].(int)
log.Println("work", s, i, "start")
defer log.Println("work", s, i, "end")
tm := timer.NewTimer()
defer tm.Stop()
tm.Start(TASK_MSEC * time.Millisecond)
<-tm.Recv()
}