forked from TheThingsNetwork/lorawan-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstate.go
More file actions
129 lines (117 loc) · 3.39 KB
/
state.go
File metadata and controls
129 lines (117 loc) · 3.39 KB
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
// Copyright © 2021 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 semtechws
import (
"context"
"time"
)
// state represents the LBS session state.
type state struct {
ID *int32
TimeSync *bool
// Uplink timing for LNS-initiated time transfers.
// Updated on each jreq/updf so the periodic time transfer ticker
// can include a recent xtime+gpstime pair.
LastUplinkXTime int64
LastUplinkGPSTime int64
LastUplinkReceivedAt time.Time
}
// updateState updates the session state.
func updateState(ctx context.Context, f func(*state)) {
session := SessionFromContext(ctx)
session.DataMu.Lock()
defer session.DataMu.Unlock()
st, ok := session.Data.(*state)
if !ok {
st = &state{}
session.Data = st
}
f(st)
}
// GetState returns the session state.
func getState(ctx context.Context, f func(*state) any) any {
session := SessionFromContext(ctx)
session.DataMu.RLock()
defer session.DataMu.RUnlock()
st, ok := session.Data.(*state)
if !ok {
return nil
}
return f(st)
}
// UpdateSessionID updates the session ID.
func UpdateSessionID(ctx context.Context, id int32) {
updateState(ctx, func(st *state) {
st.ID = &id
})
}
// UpdateSessionTimeSync updates the session time sync.
func UpdateSessionTimeSync(ctx context.Context, b bool) {
updateState(ctx, func(st *state) {
st.TimeSync = &b
})
}
// GetSessionID returns the session ID.
func GetSessionID(ctx context.Context) (int32, bool) {
i, ok := getState(ctx, func(st *state) any {
if st.ID != nil {
return *st.ID
}
return nil
}).(int32)
return i, ok
}
// GetSessionTimeSync returns the session time sync.
func GetSessionTimeSync(ctx context.Context) (enabled bool, ok bool) {
d, ok := getState(ctx, func(st *state) any {
if st.TimeSync != nil {
return *st.TimeSync
}
return nil
}).(bool)
return d, ok
}
// UpdateLastUplink stores the timing info from the most recent uplink
// for use in LNS-initiated time transfers.
func UpdateLastUplink(ctx context.Context, xtime, gpstime int64, receivedAt time.Time) {
updateState(ctx, func(st *state) {
st.LastUplinkXTime = xtime
st.LastUplinkGPSTime = gpstime
st.LastUplinkReceivedAt = receivedAt
})
}
// GetLastUplink returns the most recent uplink timing info.
// Returns xtime, gpstime, receivedAt, and ok (true if data is available).
func GetLastUplink(ctx context.Context) (xtime int64, gpstime int64, receivedAt time.Time, ok bool) {
result := getState(ctx, func(st *state) any {
if st.LastUplinkXTime != 0 {
return &lastUplinkInfo{
xtime: st.LastUplinkXTime,
gpstime: st.LastUplinkGPSTime,
receivedAt: st.LastUplinkReceivedAt,
}
}
return nil
})
if result == nil {
return 0, 0, time.Time{}, false
}
info := result.(*lastUplinkInfo)
return info.xtime, info.gpstime, info.receivedAt, true
}
type lastUplinkInfo struct {
xtime int64
gpstime int64
receivedAt time.Time
}