-
Notifications
You must be signed in to change notification settings - Fork 310
/
downlink_token.go
88 lines (76 loc) · 2.62 KB
/
downlink_token.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
// Copyright © 2019 The Things Network Foundation, The Things Industries B.V.
//
// 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 io
import (
"fmt"
"regexp"
"strconv"
"sync/atomic"
"time"
"go.thethings.network/lorawan-stack/v3/pkg/ttnpb"
)
const downlinkTokenItems = 1 << 4
type downlinkToken struct {
key uint16
msg *ttnpb.DownlinkMessage
time time.Time
}
// DownlinkTokens stores a set of downlink tokens and can be used to track roundtrip time.
// The number of downlink tokens stored is fixed to 16. New issued tokens with `Next` overwrite the oldest token.
type DownlinkTokens struct {
last uint32
items [downlinkTokenItems]downlinkToken
}
// Next returns a new downlink token for a downlink message.
func (t *DownlinkTokens) Next(msg *ttnpb.DownlinkMessage, time time.Time) uint16 {
key := uint16(atomic.AddUint32(&t.last, 1))
pos := key % downlinkTokenItems
t.items[pos] = downlinkToken{
key: key,
msg: msg,
time: time,
}
return key
}
// Get returns the correlation IDs and time difference between the time given to `Next` and the given time by the token.
// If the token could not be found, this method returns false.
func (t DownlinkTokens) Get(token uint16, time time.Time) (*ttnpb.DownlinkMessage, time.Duration, bool) {
pos := token % downlinkTokenItems
item := t.items[pos]
if item.key != token || item.msg == nil || item.time.IsZero() {
return nil, 0, false
}
downMsg := *item.msg
return &downMsg, time.Sub(item.time), true
}
var parseTokenRegex = regexp.MustCompile(`^gs:down:token:(\d+)$`)
// FormatCorrelationID formats a correlation ID for a downlink token.
func (t DownlinkTokens) FormatCorrelationID(token uint16) string {
return fmt.Sprintf("gs:down:token:%d", token)
}
// ParseTokenFromCorrelationIDs parses the correlation ID
func (t DownlinkTokens) ParseTokenFromCorrelationIDs(cids []string) (uint16, bool) {
for _, cid := range cids {
matches := parseTokenRegex.FindStringSubmatch(cid)
if len(matches) != 2 || matches[1] == "" {
continue
}
token, err := strconv.ParseUint(matches[1], 10, 16)
if err != nil {
return 0, false
}
return uint16(token), true
}
return 0, false
}