123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- // 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 (
- "io"
- "sync"
- "time"
- "golang.org/x/net/context"
- )
- // TODO(mcgreevy): make this more dynamic.
- const batchPullSize = 100
- type Iterator struct {
- // The name of the subscription that the Iterator is pulling messages from.
- sub string
- // The context to use for acking messages and extending message deadlines.
- ctx context.Context
- c *Client
- // Controls how often we send an ack deadline extension request.
- kaTicker *time.Ticker
- // Controls how often we acknowledge a batch of messages.
- ackTicker *time.Ticker
- ka keepAlive
- acker acker
- puller puller
- mu sync.Mutex
- closed bool
- }
- // newIterator starts a new Iterator. Close must be called on the Iterator
- // when it is no longer needed.
- // subName is the full name of the subscription to pull messages from.
- // ackDeadline is the default ack deadline for the subscription
- // maxExtension is the maximum period for which the iterator should automatically extend
- // the ack deadline for each message.
- func (c *Client) newIterator(ctx context.Context, subName string, ackDeadline, maxExtension time.Duration) *Iterator {
- it := &Iterator{
- sub: subName,
- ctx: ctx,
- c: c,
- }
- // TODO: make kaTicker frequency more configurable.
- // (ackDeadline - 5s) is a reasonable default for now, because the minimum ack period is 10s. This gives us 5s grace.
- keepAlivePeriod := ackDeadline - 5*time.Second
- it.kaTicker = time.NewTicker(keepAlivePeriod) // Stopped in it.Close
- it.ka = keepAlive{
- Client: it.c,
- Ctx: it.ctx,
- Sub: it.sub,
- ExtensionTick: it.kaTicker.C,
- Deadline: ackDeadline,
- MaxExtension: maxExtension,
- }
- // TODO: make ackTicker more configurable. Something less than
- // kaTicker is a reasonable default (there's no point extending
- // messages when they could be acked instead).
- it.ackTicker = time.NewTicker(keepAlivePeriod / 2) // Stopped in it.Close
- it.acker = acker{
- Client: it.c,
- Ctx: it.ctx,
- Sub: it.sub,
- AckTick: it.ackTicker.C,
- Notify: it.ka.Remove,
- }
- it.puller = puller{
- Client: it.c,
- Sub: it.sub,
- BatchSize: batchPullSize,
- Notify: it.ka.Add,
- }
- it.ka.Start()
- it.acker.Start()
- return it
- }
- // Next returns the next Message to be processed. The caller must call Done on
- // the returned Message once it is finished with it.
- // Once Close has been called, subsequent calls to Next will return io.EOF.
- func (it *Iterator) Next(ctx context.Context) (*Message, error) {
- // TODO: decide whether to use it.ctx instead of ctx.
- it.mu.Lock()
- defer it.mu.Unlock()
- if it.closed {
- return nil, io.EOF
- }
- select {
- case <-ctx.Done():
- return nil, ctx.Err()
- default:
- }
- // Note: this is the only place where messages are added to keepAlive,
- // and this code is protected by mu. This means once an iterator starts
- // being closed down, no more messages will be added to keepalive.
- m, err := it.puller.Next(ctx)
- if err != nil {
- return nil, err
- }
- m.it = it
- return m, nil
- }
- // Client code must call Close on an Iterator when finished with it.
- // Close will block until Done has been called on all Messages that have been
- // returned by Next.
- // Close need only be called once, but may be called multiple times from multiple goroutines.
- func (it *Iterator) Close() error {
- // TODO: test calling from multiple goroutines.
- it.mu.Lock()
- defer it.mu.Unlock()
- if it.closed {
- return nil
- }
- it.closed = true
- // Remove messages that are being kept alive, but have not been
- // supplied to the caller yet. Then the only messages being kept alive
- // will be those that have been supplied to the caller but have not yet
- // had their Done method called.
- for _, m := range it.puller.Pending() {
- it.ka.Remove(m.AckID)
- }
- // This will block until all messages have been removed from keepAlive.
- // This will happen once all outstanding messages have been either
- // ACKed or NACKed.
- it.ka.Stop()
- it.acker.Stop()
- it.kaTicker.Stop()
- it.ackTicker.Stop()
- return nil
- }
- func (it *Iterator) done(ackID string, ack bool) {
- // NOTE: this method does not lock mu, because it's fine for done to be
- // called while the iterator is in the process of being closed. In
- // fact, this is the only way to drain oustanding messages.
- if ack {
- it.acker.Ack(ackID)
- // There's no need to call it.ka.Remove here, as acker will
- // call it via its Notify function.
- } else {
- it.ka.Remove(ackID)
- }
- }
|