-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtimewheel.go
215 lines (181 loc) · 4.16 KB
/
timewheel.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
package timewheel
import (
"container/list"
"errors"
"sync"
"time"
)
// time wheel struct
type TimeWheel struct {
interval time.Duration
ticker *time.Ticker
slots []*list.List
currentPos int
slotNum int
addTaskChannel chan *task
stopChannel chan bool
taskRecord *sync.Map
}
// Job callback function
type Job func(TaskData)
// TaskData callback params
type TaskData map[interface{}]interface{}
// task struct
type task struct {
interval time.Duration
times int //-1:no limit >=1:run times
circle int
key interface{}
job Job
taskData TaskData
}
// New create a empty time wheel
func New(interval time.Duration, slotNum int) *TimeWheel {
if interval <= 0 || slotNum <= 0 {
return nil
}
tw := &TimeWheel{
interval: interval,
slots: make([]*list.List, slotNum),
currentPos: 0,
slotNum: slotNum,
addTaskChannel: make(chan *task),
stopChannel: make(chan bool),
taskRecord: &sync.Map{},
}
tw.init()
return tw
}
// Start start the time wheel
func (tw *TimeWheel) Start() {
tw.ticker = time.NewTicker(tw.interval)
go tw.start()
}
// Stop stop the time wheel
func (tw *TimeWheel) Stop() {
tw.stopChannel <- true
}
func (tw *TimeWheel) start() {
for {
select {
case <-tw.ticker.C:
tw.tickHandler()
case task := <-tw.addTaskChannel:
tw.addTask(task)
case <-tw.stopChannel:
tw.ticker.Stop()
return
}
}
}
// AddTask add new task to the time wheel
func (tw *TimeWheel) AddTask(interval time.Duration, times int, key interface{}, data TaskData, job Job) error {
if interval <= 0 || key == nil || job == nil || times < -1 || times == 0 {
return errors.New("illegal task params")
}
_, ok := tw.taskRecord.Load(key)
if ok {
return errors.New("duplicate task key")
}
tw.addTaskChannel <- &task{interval: interval, times: times, key: key, taskData: data, job: job}
return nil
}
// RemoveTask remove the task from time wheel
func (tw *TimeWheel) RemoveTask(key interface{}) error {
if key == nil {
return nil
}
value, ok := tw.taskRecord.Load(key)
if !ok {
return errors.New("task not exists, please check you task key")
} else {
// lazy remove task
task := value.(*task)
task.times = 0
tw.taskRecord.Delete(task.key)
}
return nil
}
// UpdateTask update task times and data
func (tw *TimeWheel) UpdateTask(key interface{}, interval time.Duration, taskData TaskData) error {
if key == nil {
return errors.New("illegal key, please try again")
}
value, ok := tw.taskRecord.Load(key)
if !ok {
return errors.New("task not exists, please check you task key")
}
task := value.(*task)
task.taskData = taskData
task.interval = interval
return nil
}
// time wheel initialize
func (tw *TimeWheel) init() {
for i := 0; i < tw.slotNum; i++ {
tw.slots[i] = list.New()
}
}
//
func (tw *TimeWheel) tickHandler() {
l := tw.slots[tw.currentPos]
tw.scanAddRunTask(l)
if tw.currentPos == tw.slotNum-1 {
tw.currentPos = 0
} else {
tw.currentPos++
}
}
// add task
func (tw *TimeWheel) addTask(task *task) {
if task.times == 0 {
return
}
pos, circle := tw.getPositionAndCircle(task.interval)
task.circle = circle
tw.slots[pos].PushBack(task)
//record the task
tw.taskRecord.Store(task.key, task)
}
// scan task list and run the task
func (tw *TimeWheel) scanAddRunTask(l *list.List) {
if l == nil {
return
}
for item := l.Front(); item != nil; {
task := item.Value.(*task)
if task.times == 0 {
next := item.Next()
l.Remove(item)
tw.taskRecord.Delete(task.key)
item = next
continue
}
if task.circle > 0 {
task.circle--
item = item.Next()
continue
}
go task.job(task.taskData)
next := item.Next()
l.Remove(item)
item = next
if task.times == 1 {
task.times = 0
tw.taskRecord.Delete(task.key)
} else {
if task.times > 0 {
task.times--
}
tw.addTask(task)
}
}
}
// get the task position
func (tw *TimeWheel) getPositionAndCircle(d time.Duration) (pos int, circle int) {
delaySeconds := int(d.Seconds())
intervalSeconds := int(tw.interval.Seconds())
circle = int(delaySeconds / intervalSeconds / tw.slotNum)
pos = int(tw.currentPos+delaySeconds/intervalSeconds) % tw.slotNum
return
}