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
| package timewheel
import ( "container/list" "time" )
type Job func(TaskData)
// TaskData 回调函数参数类型 type TaskData map[interface{}]interface{}
type TimeWheel struct { interval time.Duration ticker *time.Ticker slots []*list.List timer map[interface{}]int currentPos int slotNum int job Job addTaskChannel chan Task removeTaskChannel chan interface{} stopChannel chan bool }
type Task struct { delay time.Duration circle int key interface{} data TaskData }
func New(interval time.Duration, slotNum int, job Job) *TimeWheel { if interval <= 0 || slotNum <= 0 || job == nil { return nil } tw := &TimeWheel{ interval: interval, slots: make([]*list.List, slotNum), timer: make(map[interface{}]int), currentPos: 0, job: job, slotNum: slotNum, addTaskChannel: make(chan Task), removeTaskChannel: make(chan interface{}), stopChannel: make(chan bool), }
for i := 0; i < tw.slotNum; i++ { tw.slots[i] = list.New() }
return tw }
func (tw *TimeWheel) Start() { tw.ticker = time.NewTicker(tw.interval) go tw.start() }
func (tw *TimeWheel) Stop() { tw.stopChannel <- true }
func (tw *TimeWheel) AddTimer(delay time.Duration, key interface{}, data TaskData) { if delay <= 0 || key == nil { return } tw.addTaskChannel <- Task{delay: delay, key: key, data: data} }
func (tw *TimeWheel) RemoveTimer(key interface{}) { if key == nil { return } tw.removeTaskChannel <- key }
func (tw *TimeWheel) start() { for { select { case <-tw.ticker.C: tw.tickHandler() case task := <-tw.addTaskChannel: tw.addTask(&task) case key := <-tw.removeTaskChannel: tw.removeTask(key) case <-tw.stopChannel: tw.ticker.Stop() return } } }
func (tw *TimeWheel) tickHandler() { l := tw.slots[tw.currentPos] tw.scanAndRunTask(l) if tw.currentPos == tw.slotNum-1 { tw.currentPos = 0 } else { tw.currentPos++ } }
func (tw *TimeWheel) scanAndRunTask(l *list.List) { for e := l.Front(); e != nil; { task := e.Value.(*Task) if task.circle > 0 { task.circle-- e = e.Next() continue }
go tw.job(task.data) next := e.Next() l.Remove(e) delete(tw.timer, task.key) e = next } }
func (tw *TimeWheel) addTask(task *Task) { pos, circle := tw.getPositionAndCircle(task.delay) task.circle = circle
tw.slots[pos].PushBack(task)
tw.timer[task.key] = pos }
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 }
func (tw *TimeWheel) removeTask(key interface{}) { position, ok := tw.timer[key] if !ok { return } l := tw.slots[position] for e := l.Front(); e != nil; { task := e.Value.(*Task) if task.key == key { delete(tw.timer, task.key) l.Remove(e) }
e = e.Next() } }
|