2020-02-13 09:12:09 +08:00
|
|
|
// Copyright 2020 Kentaro Hibino. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package asynq
|
|
|
|
|
|
|
|
import (
|
2020-02-16 15:14:30 +08:00
|
|
|
"sync"
|
2020-04-16 23:58:44 +08:00
|
|
|
"time"
|
2020-02-16 15:14:30 +08:00
|
|
|
|
2020-04-16 23:58:44 +08:00
|
|
|
"github.com/go-redis/redis/v7"
|
2020-02-13 09:12:09 +08:00
|
|
|
"github.com/hibiken/asynq/internal/base"
|
|
|
|
)
|
|
|
|
|
|
|
|
type subscriber struct {
|
2020-03-12 22:31:10 +08:00
|
|
|
logger Logger
|
2020-04-17 21:56:44 +08:00
|
|
|
broker broker
|
2020-02-13 09:12:09 +08:00
|
|
|
|
|
|
|
// channel to communicate back to the long running "subscriber" goroutine.
|
|
|
|
done chan struct{}
|
|
|
|
|
|
|
|
// cancelations hold cancel functions for all in-progress tasks.
|
|
|
|
cancelations *base.Cancelations
|
2020-04-17 22:52:12 +08:00
|
|
|
|
|
|
|
// time to wait before retrying to connect to redis.
|
|
|
|
retryTimeout time.Duration
|
2020-02-13 09:12:09 +08:00
|
|
|
}
|
|
|
|
|
2020-04-17 21:56:44 +08:00
|
|
|
func newSubscriber(l Logger, b broker, cancelations *base.Cancelations) *subscriber {
|
2020-02-13 09:12:09 +08:00
|
|
|
return &subscriber{
|
2020-03-09 22:11:16 +08:00
|
|
|
logger: l,
|
2020-04-17 21:56:44 +08:00
|
|
|
broker: b,
|
2020-02-13 09:12:09 +08:00
|
|
|
done: make(chan struct{}),
|
|
|
|
cancelations: cancelations,
|
2020-04-17 22:52:12 +08:00
|
|
|
retryTimeout: 5 * time.Second,
|
2020-02-13 09:12:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *subscriber) terminate() {
|
2020-03-09 22:11:16 +08:00
|
|
|
s.logger.Info("Subscriber shutting down...")
|
2020-02-13 09:12:09 +08:00
|
|
|
// Signal the subscriber goroutine to stop.
|
|
|
|
s.done <- struct{}{}
|
|
|
|
}
|
|
|
|
|
2020-02-16 15:14:30 +08:00
|
|
|
func (s *subscriber) start(wg *sync.WaitGroup) {
|
|
|
|
wg.Add(1)
|
2020-02-13 09:12:09 +08:00
|
|
|
go func() {
|
2020-02-16 15:14:30 +08:00
|
|
|
defer wg.Done()
|
2020-04-16 23:58:44 +08:00
|
|
|
var (
|
|
|
|
pubsub *redis.PubSub
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
// Try until successfully connect to Redis.
|
|
|
|
for {
|
2020-04-17 21:56:44 +08:00
|
|
|
pubsub, err = s.broker.CancelationPubSub()
|
2020-04-16 23:58:44 +08:00
|
|
|
if err != nil {
|
|
|
|
s.logger.Error("cannot subscribe to cancelation channel: %v", err)
|
|
|
|
select {
|
2020-04-17 22:52:12 +08:00
|
|
|
case <-time.After(s.retryTimeout):
|
2020-04-16 23:58:44 +08:00
|
|
|
continue
|
|
|
|
case <-s.done:
|
|
|
|
s.logger.Info("Subscriber done")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
cancelCh := pubsub.Channel()
|
2020-02-13 09:12:09 +08:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-s.done:
|
|
|
|
pubsub.Close()
|
2020-03-09 22:11:16 +08:00
|
|
|
s.logger.Info("Subscriber done")
|
2020-02-13 09:12:09 +08:00
|
|
|
return
|
|
|
|
case msg := <-cancelCh:
|
2020-02-20 23:44:13 +08:00
|
|
|
cancel, ok := s.cancelations.Get(msg.Payload)
|
|
|
|
if ok {
|
2020-02-13 09:12:09 +08:00
|
|
|
cancel()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|