2019-11-19 13:23:49 +08:00
|
|
|
package asynq
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type poller struct {
|
2019-11-20 11:44:41 +08:00
|
|
|
rdb *rdb
|
2019-11-19 13:23:49 +08:00
|
|
|
|
2019-11-19 23:38:09 +08:00
|
|
|
// channel to communicate back to the long running "poller" goroutine.
|
2019-11-19 13:23:49 +08:00
|
|
|
done chan struct{}
|
|
|
|
|
|
|
|
// poll interval on average
|
|
|
|
avgInterval time.Duration
|
|
|
|
|
|
|
|
// redis ZSETs to poll
|
|
|
|
zsets []string
|
|
|
|
}
|
|
|
|
|
2019-11-20 11:44:41 +08:00
|
|
|
func newPoller(rdb *rdb, avgInterval time.Duration, zsets []string) *poller {
|
|
|
|
return &poller{
|
|
|
|
rdb: rdb,
|
|
|
|
done: make(chan struct{}),
|
|
|
|
avgInterval: avgInterval,
|
|
|
|
zsets: zsets,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-19 13:23:49 +08:00
|
|
|
func (p *poller) terminate() {
|
2019-11-21 12:27:01 +08:00
|
|
|
// Signal the poller goroutine to stop polling.
|
2019-11-19 13:23:49 +08:00
|
|
|
p.done <- struct{}{}
|
|
|
|
}
|
|
|
|
|
2019-11-22 12:22:55 +08:00
|
|
|
// start starts the "poller" goroutine.
|
2019-11-19 13:23:49 +08:00
|
|
|
func (p *poller) start() {
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-p.done:
|
2019-11-19 23:38:09 +08:00
|
|
|
fmt.Println("-------------[Poller]---------------")
|
|
|
|
fmt.Println("Poller shutting down...")
|
|
|
|
fmt.Println("------------------------------------")
|
|
|
|
return
|
2019-11-19 22:20:59 +08:00
|
|
|
default:
|
2019-11-21 12:27:01 +08:00
|
|
|
p.exec()
|
2019-11-19 22:20:59 +08:00
|
|
|
time.Sleep(p.avgInterval)
|
2019-11-19 13:23:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2019-11-21 12:27:01 +08:00
|
|
|
func (p *poller) exec() {
|
2019-11-19 13:23:49 +08:00
|
|
|
for _, zset := range p.zsets {
|
2019-11-26 22:52:58 +08:00
|
|
|
if err := p.rdb.forward(zset); err != nil {
|
|
|
|
log.Printf("[ERROR] could not forward scheduled tasks from %q: %v", zset, err)
|
2019-11-19 13:23:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|