This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
/
amqphandler.go
104 lines (90 loc) · 3.43 KB
/
amqphandler.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package servicebus
// 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
import (
"context"
"github.com/Azure/go-amqp"
"github.com/devigned/tab"
)
type amqpHandler interface {
Handle(ctx context.Context, msg *amqp.Message, r *amqp.Receiver) error
}
// amqpAdapterHandler is a middleware handler that translates amqp messages into servicebus messages
type amqpAdapterHandler struct {
next Handler
receiver *Receiver
}
func newAmqpAdapterHandler(receiver *Receiver, next Handler) *amqpAdapterHandler {
return &amqpAdapterHandler{
next: next,
receiver: receiver,
}
}
func (h *amqpAdapterHandler) Handle(ctx context.Context, msg *amqp.Message, r *amqp.Receiver) error {
const optName = "sb.amqpHandler.Handle"
event, err := messageFromAMQPMessage(msg, r)
if err != nil {
_, span := h.receiver.startConsumerSpanFromContext(ctx, optName)
span.Logger().Error(err)
h.receiver.lastError = err
if h.receiver.doneListening != nil {
h.receiver.doneListening()
}
return err
}
ctx, span := tab.StartSpanWithRemoteParent(ctx, optName, event)
defer span.End()
id := messageID(msg)
if idStr, ok := id.(string); ok {
span.AddAttributes(tab.StringAttribute("amqp.message.id", idStr))
}
if err := h.next.Handle(ctx, event); err != nil {
// stop handling messages since the message consumer ran into an unexpected error
h.receiver.lastError = err
if h.receiver.doneListening != nil {
h.receiver.doneListening()
}
return err
}
// nothing more to be done. The message was settled when it was accepted by the Receiver
if h.receiver.mode == ReceiveAndDeleteMode {
return nil
}
// nothing more to be done. The Receiver has no default disposition, so the handler is solely responsible for
// disposition
if h.receiver.DefaultDisposition == nil {
return nil
}
// default disposition is set, so try to send the disposition. If the message disposition has already been set, the
// underlying AMQP library will ignore the second disposition respecting the disposition of the handler func.
if err := h.receiver.DefaultDisposition(ctx); err != nil {
// if an error is returned by the default disposition, then we must alert the message consumer as we can't
// be sure the final message disposition.
tab.For(ctx).Error(err)
h.receiver.lastError = err
if h.receiver.doneListening != nil {
h.receiver.doneListening()
}
return nil
}
return nil
}