2018-01-11 04:55:33 +03:00
|
|
|
package servicebus
|
2018-01-22 22:30:27 +03:00
|
|
|
|
2018-05-11 20:27:30 +03:00
|
|
|
// MIT License
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE
|
|
|
|
|
2018-01-22 22:30:27 +03:00
|
|
|
import (
|
|
|
|
"context"
|
2018-02-07 21:29:09 +03:00
|
|
|
"fmt"
|
|
|
|
"time"
|
2018-02-18 21:20:45 +03:00
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
"github.com/Azure/azure-amqp-common-go"
|
|
|
|
"github.com/Azure/azure-amqp-common-go/log"
|
|
|
|
"github.com/opentracing/opentracing-go"
|
2018-09-29 02:39:47 +03:00
|
|
|
"pack.ag/amqp"
|
2018-01-22 22:30:27 +03:00
|
|
|
)
|
|
|
|
|
2018-01-30 04:37:40 +03:00
|
|
|
// receiver provides session and link handling for a receiving entity path
|
|
|
|
type (
|
|
|
|
receiver struct {
|
2018-02-07 21:29:09 +03:00
|
|
|
namespace *Namespace
|
|
|
|
connection *amqp.Client
|
|
|
|
session *session
|
|
|
|
receiver *amqp.Receiver
|
|
|
|
entityPath string
|
|
|
|
done func()
|
|
|
|
Name string
|
|
|
|
requiredSessionID *string
|
|
|
|
lastError error
|
2018-06-12 19:02:46 +03:00
|
|
|
mode ReceiveMode
|
2018-06-11 23:19:27 +03:00
|
|
|
prefetch uint32
|
2018-02-07 21:29:09 +03:00
|
|
|
}
|
|
|
|
|
2018-06-11 23:19:27 +03:00
|
|
|
// receiverOption provides a structure for configuring receivers
|
|
|
|
receiverOption func(receiver *receiver) error
|
2018-02-07 21:29:09 +03:00
|
|
|
|
|
|
|
// ListenerHandle provides the ability to close or listen to the close of a Receiver
|
2018-09-26 22:18:25 +03:00
|
|
|
listenerHandle struct {
|
2018-02-07 21:29:09 +03:00
|
|
|
r *receiver
|
|
|
|
ctx context.Context
|
2018-01-30 04:37:40 +03:00
|
|
|
}
|
|
|
|
)
|
2018-01-22 22:30:27 +03:00
|
|
|
|
2018-01-30 04:37:40 +03:00
|
|
|
// newReceiver creates a new Service Bus message listener given an AMQP client and an entity path
|
2018-06-11 23:19:27 +03:00
|
|
|
func (ns *Namespace) newReceiver(ctx context.Context, entityPath string, opts ...receiverOption) (*receiver, error) {
|
2018-05-11 20:27:30 +03:00
|
|
|
span, ctx := ns.startSpanFromContext(ctx, "sb.Hub.newReceiver")
|
2018-02-07 21:29:09 +03:00
|
|
|
defer span.Finish()
|
|
|
|
|
2018-01-30 04:37:40 +03:00
|
|
|
receiver := &receiver{
|
2018-02-07 21:29:09 +03:00
|
|
|
namespace: ns,
|
2018-01-22 22:30:27 +03:00
|
|
|
entityPath: entityPath,
|
2018-06-12 19:02:46 +03:00
|
|
|
mode: PeekLockMode,
|
2018-06-11 23:19:27 +03:00
|
|
|
prefetch: 1,
|
2018-01-22 22:30:27 +03:00
|
|
|
}
|
2018-02-07 21:29:09 +03:00
|
|
|
|
|
|
|
for _, opt := range opts {
|
|
|
|
if err := opt(receiver); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err := receiver.newSessionAndLink(ctx)
|
2018-02-18 23:40:22 +03:00
|
|
|
return receiver, err
|
2018-01-22 22:30:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Close will close the AMQP session and link of the receiver
|
2018-02-07 21:29:09 +03:00
|
|
|
func (r *receiver) Close(ctx context.Context) error {
|
2018-02-18 23:40:22 +03:00
|
|
|
if r.done != nil {
|
|
|
|
r.done()
|
|
|
|
}
|
2018-01-22 22:30:27 +03:00
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
return r.connection.Close()
|
2018-01-22 22:30:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Recover will attempt to close the current session and link, then rebuild them
|
2018-02-07 21:29:09 +03:00
|
|
|
func (r *receiver) Recover(ctx context.Context) error {
|
2018-08-08 21:32:30 +03:00
|
|
|
span, ctx := r.startConsumerSpanFromContext(ctx, "sb.receiver.Recover")
|
|
|
|
defer span.Finish()
|
|
|
|
|
|
|
|
// we expect the sender, session or client is in an error state, ignore errors
|
|
|
|
closeCtx, cancel := context.WithTimeout(ctx, 10*time.Second)
|
|
|
|
closeCtx = opentracing.ContextWithSpan(closeCtx, span)
|
|
|
|
defer cancel()
|
|
|
|
_ = r.receiver.Close(closeCtx)
|
|
|
|
_ = r.session.Close(closeCtx)
|
|
|
|
_ = r.connection.Close()
|
2018-02-07 21:29:09 +03:00
|
|
|
return r.newSessionAndLink(ctx)
|
2018-01-22 22:30:27 +03:00
|
|
|
}
|
|
|
|
|
2018-09-26 04:39:44 +03:00
|
|
|
func (r *receiver) ReceiveOne(ctx context.Context, handler Handler) error {
|
2018-06-15 20:20:30 +03:00
|
|
|
span, ctx := r.startConsumerSpanFromContext(ctx, "sb.receiver.ReceiveOne")
|
|
|
|
defer span.Finish()
|
|
|
|
|
|
|
|
amqpMsg, err := r.listenForMessage(ctx)
|
|
|
|
if err != nil {
|
|
|
|
log.For(ctx).Error(err)
|
2018-09-26 04:39:44 +03:00
|
|
|
return err
|
2018-06-15 20:20:30 +03:00
|
|
|
}
|
|
|
|
|
2018-09-26 04:39:44 +03:00
|
|
|
r.handleMessage(ctx, amqpMsg, handler)
|
2018-06-15 20:20:30 +03:00
|
|
|
|
2018-09-26 04:39:44 +03:00
|
|
|
return nil
|
2018-06-15 20:20:30 +03:00
|
|
|
}
|
|
|
|
|
2018-01-23 02:47:09 +03:00
|
|
|
// Listen start a listener for messages sent to the entity path
|
2018-09-26 22:18:25 +03:00
|
|
|
func (r *receiver) Listen(ctx context.Context, handler Handler) *listenerHandle {
|
2018-09-26 04:39:44 +03:00
|
|
|
ctx, done := context.WithCancel(ctx)
|
2018-02-18 23:40:22 +03:00
|
|
|
r.done = done
|
2018-02-07 21:29:09 +03:00
|
|
|
|
2018-05-11 20:27:30 +03:00
|
|
|
span, ctx := r.startConsumerSpanFromContext(ctx, "sb.receiver.Listen")
|
2018-02-07 21:29:09 +03:00
|
|
|
defer span.Finish()
|
|
|
|
|
2018-01-23 02:47:09 +03:00
|
|
|
messages := make(chan *amqp.Message)
|
2018-02-18 23:40:22 +03:00
|
|
|
go r.listenForMessages(ctx, messages)
|
|
|
|
go r.handleMessages(ctx, messages, handler)
|
2018-02-07 21:29:09 +03:00
|
|
|
|
2018-09-26 22:18:25 +03:00
|
|
|
return &listenerHandle{
|
2018-02-07 21:29:09 +03:00
|
|
|
r: r,
|
|
|
|
ctx: ctx,
|
|
|
|
}
|
2018-01-23 02:47:09 +03:00
|
|
|
}
|
|
|
|
|
2018-02-18 23:40:22 +03:00
|
|
|
func (r *receiver) handleMessages(ctx context.Context, messages chan *amqp.Message, handler Handler) {
|
2018-05-11 20:27:30 +03:00
|
|
|
span, ctx := r.startConsumerSpanFromContext(ctx, "sb.receiver.handleMessages")
|
2018-02-07 21:29:09 +03:00
|
|
|
defer span.Finish()
|
2018-01-23 02:47:09 +03:00
|
|
|
for {
|
|
|
|
select {
|
2018-02-18 23:40:22 +03:00
|
|
|
case <-ctx.Done():
|
2018-01-23 02:47:09 +03:00
|
|
|
return
|
|
|
|
case msg := <-messages:
|
2018-02-07 21:29:09 +03:00
|
|
|
r.handleMessage(ctx, msg, handler)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-18 23:40:22 +03:00
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
func (r *receiver) handleMessage(ctx context.Context, msg *amqp.Message, handler Handler) {
|
2018-06-15 20:20:30 +03:00
|
|
|
const optName = "sb.receiver.handleMessage"
|
|
|
|
event, err := messageFromAMQPMessage(msg)
|
|
|
|
if err != nil {
|
|
|
|
_, ctx := r.startConsumerSpanFromContext(ctx, optName)
|
|
|
|
log.For(ctx).Error(err)
|
|
|
|
}
|
2018-02-07 21:29:09 +03:00
|
|
|
var span opentracing.Span
|
2018-05-16 21:39:14 +03:00
|
|
|
wireContext, err := extractWireContext(event)
|
2018-02-07 21:29:09 +03:00
|
|
|
if err == nil {
|
2018-06-15 20:20:30 +03:00
|
|
|
span, ctx = r.startConsumerSpanFromWire(ctx, optName, wireContext)
|
2018-02-07 21:29:09 +03:00
|
|
|
} else {
|
2018-06-15 20:20:30 +03:00
|
|
|
span, ctx = r.startConsumerSpanFromContext(ctx, optName)
|
2018-02-07 21:29:09 +03:00
|
|
|
}
|
|
|
|
defer span.Finish()
|
2018-02-18 23:40:22 +03:00
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
id := messageID(msg)
|
|
|
|
span.SetTag("amqp.message-id", id)
|
|
|
|
|
2018-09-26 02:24:23 +03:00
|
|
|
dispositionAction := handler.Handle(ctx, event)
|
2018-06-15 20:20:30 +03:00
|
|
|
|
2018-06-12 19:02:46 +03:00
|
|
|
if r.mode == ReceiveAndDeleteMode {
|
2018-06-15 20:20:30 +03:00
|
|
|
return
|
2018-06-12 19:02:46 +03:00
|
|
|
}
|
|
|
|
|
2018-06-02 18:57:47 +03:00
|
|
|
if dispositionAction != nil {
|
|
|
|
dispositionAction(ctx)
|
|
|
|
} else {
|
|
|
|
log.For(ctx).Info(fmt.Sprintf("disposition action not provided auto accepted message id %q", id))
|
2018-06-11 23:19:27 +03:00
|
|
|
event.Complete()
|
2018-01-23 02:47:09 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-16 21:39:14 +03:00
|
|
|
func extractWireContext(reader opentracing.TextMapReader) (opentracing.SpanContext, error) {
|
|
|
|
return opentracing.GlobalTracer().Extract(opentracing.TextMap, reader)
|
|
|
|
}
|
|
|
|
|
2018-02-18 23:40:22 +03:00
|
|
|
func (r *receiver) listenForMessages(ctx context.Context, msgChan chan *amqp.Message) {
|
2018-05-11 20:27:30 +03:00
|
|
|
span, ctx := r.startConsumerSpanFromContext(ctx, "sb.receiver.listenForMessages")
|
2018-02-07 21:29:09 +03:00
|
|
|
defer span.Finish()
|
2018-02-18 23:40:22 +03:00
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
for {
|
|
|
|
msg, err := r.listenForMessage(ctx)
|
2018-08-08 21:32:30 +03:00
|
|
|
if err == nil {
|
|
|
|
msgChan <- msg
|
|
|
|
continue
|
2018-02-18 23:40:22 +03:00
|
|
|
}
|
|
|
|
|
2018-08-08 21:32:30 +03:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
log.For(ctx).Debug("context done")
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
_, retryErr := common.Retry(10, 10*time.Second, func() (interface{}, error) {
|
2018-05-11 20:27:30 +03:00
|
|
|
sp, ctx := r.startConsumerSpanFromContext(ctx, "sb.receiver.listenForMessages.tryRecover")
|
2018-02-07 21:29:09 +03:00
|
|
|
defer sp.Finish()
|
|
|
|
|
2018-08-08 21:32:30 +03:00
|
|
|
log.For(ctx).Debug("recovering connection")
|
2018-02-07 21:29:09 +03:00
|
|
|
err := r.Recover(ctx)
|
2018-08-08 21:32:30 +03:00
|
|
|
if err == nil {
|
|
|
|
log.For(ctx).Debug("recovered connection")
|
|
|
|
return nil, nil
|
2018-02-07 21:29:09 +03:00
|
|
|
}
|
|
|
|
|
2018-08-08 21:32:30 +03:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return nil, ctx.Err()
|
|
|
|
default:
|
2018-02-07 21:29:09 +03:00
|
|
|
return nil, common.Retryable(err.Error())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if retryErr != nil {
|
2018-08-08 21:32:30 +03:00
|
|
|
log.For(ctx).Debug("retried, but error was unrecoverable")
|
2018-02-07 21:29:09 +03:00
|
|
|
r.lastError = retryErr
|
|
|
|
r.Close(ctx)
|
|
|
|
return
|
|
|
|
}
|
2018-01-22 22:30:27 +03:00
|
|
|
}
|
2018-01-23 02:47:09 +03:00
|
|
|
}
|
2018-01-22 22:30:27 +03:00
|
|
|
}
|
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
func (r *receiver) listenForMessage(ctx context.Context) (*amqp.Message, error) {
|
2018-05-11 20:27:30 +03:00
|
|
|
span, ctx := r.startConsumerSpanFromContext(ctx, "sb.receiver.listenForMessage")
|
2018-02-07 21:29:09 +03:00
|
|
|
defer span.Finish()
|
|
|
|
|
|
|
|
msg, err := r.receiver.Receive(ctx)
|
|
|
|
if err != nil {
|
|
|
|
log.For(ctx).Debug(err.Error())
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
id := messageID(msg)
|
|
|
|
span.SetTag("amqp.message-id", id)
|
|
|
|
return msg, nil
|
|
|
|
}
|
|
|
|
|
2018-01-22 22:30:27 +03:00
|
|
|
// newSessionAndLink will replace the session and link on the receiver
|
2018-02-07 21:29:09 +03:00
|
|
|
func (r *receiver) newSessionAndLink(ctx context.Context) error {
|
|
|
|
connection, err := r.namespace.newConnection()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2018-02-02 04:20:37 +03:00
|
|
|
}
|
2018-02-07 21:29:09 +03:00
|
|
|
r.connection = connection
|
2018-02-02 04:20:37 +03:00
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
err = r.namespace.negotiateClaim(ctx, connection, r.entityPath)
|
2018-01-22 22:30:27 +03:00
|
|
|
if err != nil {
|
2018-02-07 21:29:09 +03:00
|
|
|
log.For(ctx).Error(err)
|
2018-01-22 22:30:27 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
amqpSession, err := connection.NewSession()
|
|
|
|
if err != nil {
|
|
|
|
log.For(ctx).Error(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
r.session, err = newSession(amqpSession)
|
|
|
|
if err != nil {
|
|
|
|
log.For(ctx).Error(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-06-15 20:20:30 +03:00
|
|
|
receiveMode := amqp.ModeSecond
|
|
|
|
sendMode := amqp.ModeUnsettled
|
|
|
|
if r.mode == ReceiveAndDeleteMode {
|
|
|
|
receiveMode = amqp.ModeFirst
|
|
|
|
sendMode = amqp.ModeSettled
|
|
|
|
}
|
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
opts := []amqp.LinkOption{
|
2018-02-02 05:26:25 +03:00
|
|
|
amqp.LinkSourceAddress(r.entityPath),
|
2018-06-15 20:20:30 +03:00
|
|
|
amqp.LinkSenderSettle(sendMode),
|
|
|
|
amqp.LinkReceiverSettle(receiveMode),
|
2018-06-11 23:19:27 +03:00
|
|
|
amqp.LinkCredit(r.prefetch),
|
2018-02-07 21:29:09 +03:00
|
|
|
}
|
|
|
|
|
2018-05-09 23:00:45 +03:00
|
|
|
if r.requiredSessionID != nil {
|
|
|
|
opts = append(opts, amqp.LinkSessionFilter(*r.requiredSessionID))
|
|
|
|
r.session.SessionID = *r.requiredSessionID
|
|
|
|
}
|
2018-02-07 21:29:09 +03:00
|
|
|
|
|
|
|
amqpReceiver, err := amqpSession.NewReceiver(opts...)
|
2018-01-22 22:30:27 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
r.receiver = amqpReceiver
|
|
|
|
return nil
|
|
|
|
}
|
2018-02-07 21:29:09 +03:00
|
|
|
|
2018-06-11 23:19:27 +03:00
|
|
|
// receiverWithSession configures a receiver to use a session
|
|
|
|
func receiverWithSession(sessionID string) receiverOption {
|
2018-02-07 21:29:09 +03:00
|
|
|
return func(r *receiver) error {
|
|
|
|
r.requiredSessionID = &sessionID
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-11 23:19:27 +03:00
|
|
|
func receiverWithReceiveMode(mode ReceiveMode) receiverOption {
|
2018-06-05 02:55:16 +03:00
|
|
|
return func(r *receiver) error {
|
2018-06-12 19:02:46 +03:00
|
|
|
r.mode = mode
|
|
|
|
return nil
|
2018-06-05 02:55:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-07 21:29:09 +03:00
|
|
|
func messageID(msg *amqp.Message) interface{} {
|
|
|
|
var id interface{} = "null"
|
|
|
|
if msg.Properties != nil {
|
|
|
|
id = msg.Properties.MessageID
|
|
|
|
}
|
|
|
|
return id
|
|
|
|
}
|
2018-05-05 02:26:03 +03:00
|
|
|
|
|
|
|
// Close will close the listener
|
2018-09-26 22:18:25 +03:00
|
|
|
func (lc *listenerHandle) Close(ctx context.Context) error {
|
2018-05-05 02:26:03 +03:00
|
|
|
return lc.r.Close(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Done will close the channel when the listener has stopped
|
2018-09-26 22:18:25 +03:00
|
|
|
func (lc *listenerHandle) Done() <-chan struct{} {
|
2018-05-05 02:26:03 +03:00
|
|
|
return lc.ctx.Done()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Err will return the last error encountered
|
2018-09-26 22:18:25 +03:00
|
|
|
func (lc *listenerHandle) Err() error {
|
2018-05-05 02:26:03 +03:00
|
|
|
if lc.r.lastError != nil {
|
|
|
|
return lc.r.lastError
|
|
|
|
}
|
|
|
|
return lc.ctx.Err()
|
|
|
|
}
|