-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.go
179 lines (140 loc) · 2.97 KB
/
tasks.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
package tasks
import (
"sync"
"time"
)
var (
data datumCollection
dataMutex sync.Mutex
)
const (
iterateConcurrencyMax = 1 << 15
)
func iterate(lockDatumMutex bool, f func(*datum)) {
var wg sync.WaitGroup
var i int
defer dataMutex.Unlock()
dataMutex.Lock()
for _, d := range data {
wg.Add(1)
go func(d *datum) {
defer wg.Done()
if lockDatumMutex {
defer d.mutex.Unlock()
d.mutex.Lock()
}
f(d)
}(d)
if i++; i%iterateConcurrencyMax == 0 {
wg.Wait()
}
}
if i%iterateConcurrencyMax != 0 {
wg.Wait()
}
}
func iterateWithConditionalRun() {
iterate(false, func(d *datum) {
var shouldRun bool
var task Handler
func() {
defer d.mutex.Unlock()
d.mutex.Lock()
if !d.hasStatus(statusIsStopped) && !d.hasStatus(statusIsNowRunning) && time.Since(d.lastRunTime) >= d.runInterval {
shouldRun = true
task = d.task
d.setStatus(statusIsNowRunning)
}
}()
if shouldRun {
go func() {
lastRunTime := time.Now()
defer func() {
defer d.mutex.Unlock()
d.mutex.Lock()
d.unsetStatus(statusIsNowRunning)
d.setStatus(statusHasRun)
d.lastRunTime = lastRunTime
}()
task(d.identifier)
}()
}
})
}
var (
sleepDurationCached *time.Duration
sleepChanCancellation = make(chan struct{}, 1)
)
const (
// SleepDurationMin is the minimum duration that the internal loop will pause before checking tasks.
SleepDurationMin = time.Millisecond * 2
// SleepDurationMax is the maximum duration that the internal loop will pause before checking tasks.
SleepDurationMax = time.Hour * 24 * 100
)
func sleepDuration() (s time.Duration) {
if sleepDurationCached != nil {
s = *sleepDurationCached
} else {
s = SleepDurationMax
iterate(true, func(d *datum) {
if !d.hasStatus(statusIsStopped) {
if i := d.sleepInterval; i < s {
s = i
}
}
})
if s < SleepDurationMin {
s = SleepDurationMin
}
sleepDurationCached = &s
}
return
}
func sleep() {
duration := sleepDuration()
select {
case <-time.After(duration):
case <-sleepChanCancellation:
sleepDurationCached = nil
}
}
func sleepCancel() {
select {
case sleepChanCancellation <- struct{}{}:
default:
// sleepChanCancellation is already full
}
}
const (
sleepIntervalDivisor = 100
)
// Set ensures a callback function will run continuously at a given interval.
func Set(interval time.Duration, runInitially bool, task Handler) *Identifier {
localDatum := datum{
task: task,
runInterval: interval,
sleepInterval: interval / sleepIntervalDivisor,
setTime: time.Now(),
}
if runInitially {
localDatum.lastRunTime = localDatum.setTime.Add(-interval)
} else {
localDatum.lastRunTime = localDatum.setTime
}
identifier := Identifier{&localDatum}
localDatum.identifier = &identifier
defer dataMutex.Unlock()
dataMutex.Lock()
data = append(data, &localDatum)
sleepCancel()
return &identifier
}
func run() {
for {
iterateWithConditionalRun()
sleep()
}
}
func init() {
go run()
}