123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- // Copyright 2016 Google Inc. All Rights Reserved.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package pubsub
- import (
- "sync"
- "time"
- "golang.org/x/net/context"
- )
- // keepAlive keeps track of which Messages need to have their deadline extended, and
- // periodically extends them.
- // Messages are tracked by Ack ID.
- type keepAlive struct {
- Client *Client
- Ctx context.Context // The context to use when extending deadlines.
- Sub string // The full name of the subscription.
- ExtensionTick <-chan time.Time // ExtenstionTick supplies the frequency with which to make extension requests.
- Deadline time.Duration // How long to extend messages for each time they are extended. Should be greater than ExtensionTick frequency.
- MaxExtension time.Duration // How long to keep extending each message's ack deadline before automatically removing it.
- // key: ackID; value: time at which ack deadline extension should cease.
- items map[string]time.Time
- done chan struct{}
- wg sync.WaitGroup
- add, remove chan string
- }
- // Start initiates the deadline extension loop. Stop must be called once keepAlive is no longer needed.
- func (ka *keepAlive) Start() {
- ka.items = make(map[string]time.Time)
- ka.done = make(chan struct{})
- ka.add = make(chan string)
- ka.remove = make(chan string)
- ka.wg.Add(1)
- go func() {
- defer ka.wg.Done()
- done := false
- for {
- select {
- case ackID := <-ka.add:
- ka.addItem(ackID)
- case ackID := <-ka.remove:
- ka.removeItem(ackID)
- case <-ka.done:
- done = true
- case <-ka.ExtensionTick:
- live, expired := ka.getAckIDs()
- ka.wg.Add(1)
- go func() {
- defer ka.wg.Done()
- ka.extendDeadlines(live)
- }()
- for _, id := range expired {
- ka.removeItem(id)
- }
- }
- if done && len(ka.items) == 0 {
- return
- }
- }
- }()
- }
- // Add adds an ack id to be kept alive.
- func (ka *keepAlive) Add(ackID string) {
- ka.add <- ackID
- }
- // add adds ackID to the items map.
- func (ka *keepAlive) addItem(ackID string) {
- ka.items[ackID] = time.Now().Add(ka.MaxExtension)
- }
- // Remove removes ackID from the list to be kept alive.
- func (ka *keepAlive) Remove(ackID string) {
- ka.remove <- ackID
- }
- // remove removes ackID from the items map.
- func (ka *keepAlive) removeItem(ackID string) {
- delete(ka.items, ackID)
- }
- // Stop waits until all added ackIDs have been removed, and cleans up resources.
- func (ka *keepAlive) Stop() {
- close(ka.done)
- ka.wg.Wait()
- }
- // getAckIDs returns the set of ackIDs that are being kept alive.
- // The set is divided into two lists: one with IDs that should continue to be kept alive,
- // and the other with IDs that should be dropped.
- func (ka *keepAlive) getAckIDs() (live, expired []string) {
- now := time.Now()
- for id, expiry := range ka.items {
- if expiry.Before(now) {
- expired = append(expired, id)
- } else {
- live = append(live, id)
- }
- }
- return live, expired
- }
- func (ka *keepAlive) extendDeadlines(ackIDs []string) {
- // TODO: split into separate requests if there are too many ackIDs.
- if len(ackIDs) > 0 {
- _ = ka.Client.s.modifyAckDeadline(ka.Ctx, ka.Sub, ka.Deadline, ackIDs)
- }
- // TODO: retry on error. NOTE: if we ultimately fail to extend deadlines here, the messages will be redelivered, which is OK.
- }
|