-
Notifications
You must be signed in to change notification settings - Fork 344
/
impl_message.go
232 lines (197 loc) · 5.05 KB
/
impl_message.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 pulsar
import (
"math/big"
"strings"
"sync"
"time"
"github.com/gogo/protobuf/proto"
pb "github.com/apache/pulsar-client-go/pulsar/internal/pulsar_proto"
)
type messageID struct {
ledgerID int64
entryID int64
batchIdx int
partitionIdx int
tracker *ackTracker
consumer acker
}
func (id *messageID) Ack() {
if id.consumer == nil {
return
}
if id.ack() {
id.consumer.AckID(id)
}
}
func (id *messageID) Nack() {
if id.consumer == nil {
return
}
id.consumer.NackID(id)
}
func (id *messageID) ack() bool {
if id.tracker != nil && id.batchIdx > -1 {
return id.tracker.ack(id.batchIdx)
}
return true
}
func (id *messageID) greater(other *messageID) bool {
if id.ledgerID != other.ledgerID {
return id.ledgerID > other.ledgerID
}
if id.entryID != other.entryID {
return id.entryID > other.entryID
}
return id.batchIdx > other.batchIdx
}
func (id *messageID) equal(other *messageID) bool {
return id.ledgerID == other.ledgerID &&
id.entryID == other.entryID &&
id.batchIdx == other.batchIdx
}
func (id *messageID) greaterEqual(other *messageID) bool {
return id.equal(other) || id.greater(other)
}
func (id *messageID) Serialize() []byte {
msgID := &pb.MessageIdData{
LedgerId: proto.Uint64(uint64(id.ledgerID)),
EntryId: proto.Uint64(uint64(id.entryID)),
BatchIndex: proto.Int(id.batchIdx),
Partition: proto.Int(id.partitionIdx),
}
data, _ := proto.Marshal(msgID)
return data
}
func deserializeMessageID(data []byte) (MessageID, error) {
msgID := &pb.MessageIdData{}
err := proto.Unmarshal(data, msgID)
if err != nil {
return nil, err
}
id := newMessageID(
int64(msgID.GetLedgerId()),
int64(msgID.GetEntryId()),
int(msgID.GetBatchIndex()),
int(msgID.GetPartition()),
)
return id, nil
}
func newMessageID(ledgerID int64, entryID int64, batchIdx int, partitionIdx int) MessageID {
return &messageID{
ledgerID: ledgerID,
entryID: entryID,
batchIdx: batchIdx,
partitionIdx: partitionIdx,
}
}
func newTrackingMessageID(ledgerID int64, entryID int64, batchIdx int, partitionIdx int,
tracker *ackTracker) *messageID {
return &messageID{
ledgerID: ledgerID,
entryID: entryID,
batchIdx: batchIdx,
partitionIdx: partitionIdx,
tracker: tracker,
}
}
func timeFromUnixTimestampMillis(timestamp uint64) time.Time {
ts := int64(timestamp) * int64(time.Millisecond)
seconds := ts / int64(time.Second)
nanos := ts - (seconds * int64(time.Second))
return time.Unix(seconds, nanos)
}
type message struct {
publishTime time.Time
eventTime time.Time
key string
producerName string
payLoad []byte
msgID MessageID
properties map[string]string
topic string
replicationClusters []string
replicatedFrom string
redeliveryCount uint32
}
func (msg *message) Topic() string {
return msg.topic
}
func (msg *message) Properties() map[string]string {
return msg.properties
}
func (msg *message) Payload() []byte {
return msg.payLoad
}
func (msg *message) ID() MessageID {
return msg.msgID
}
func (msg *message) PublishTime() time.Time {
return msg.publishTime
}
func (msg *message) EventTime() time.Time {
return msg.eventTime
}
func (msg *message) Key() string {
return msg.key
}
func (msg *message) RedeliveryCount() uint32 {
return msg.redeliveryCount
}
func (msg *message) IsReplicated() bool {
return msg.replicatedFrom != ""
}
func (msg *message) GetReplicatedFrom() string {
return msg.replicatedFrom
}
func (msg *message) ProducerName() string {
return msg.producerName
}
func newAckTracker(size int) *ackTracker {
var batchIDs *big.Int
if size <= 64 {
shift := uint32(64 - size)
setBits := ^uint64(0) >> shift
batchIDs = new(big.Int).SetUint64(setBits)
} else {
batchIDs, _ = new(big.Int).SetString(strings.Repeat("1", size), 2)
}
return &ackTracker{
size: size,
batchIDs: batchIDs,
}
}
type ackTracker struct {
sync.Mutex
size int
batchIDs *big.Int
}
func (t *ackTracker) ack(batchID int) bool {
if batchID < 0 {
return true
}
t.Lock()
defer t.Unlock()
t.batchIDs = t.batchIDs.SetBit(t.batchIDs, batchID, 0)
return len(t.batchIDs.Bits()) == 0
}
func (t *ackTracker) completed() bool {
t.Lock()
defer t.Unlock()
return len(t.batchIDs.Bits()) == 0
}