forked from gmallard/stompngo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
heartbeats.go
202 lines (186 loc) · 5.12 KB
/
heartbeats.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
//
// Copyright © 2011-2018 Guy M. Allard
//
// 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 stompngo
import (
"fmt"
"strconv"
"strings"
"time"
)
/*
Initialize heart beats if necessary and possible.
Return an error, possibly nil, to mainline if initialization can not
complete. Establish heartbeat send and receive goroutines as necessary.
*/
func (c *Connection) initializeHeartBeats(ch Headers) (e error) {
// Client wants Heartbeats ?
vc, ok := ch.Contains(HK_HEART_BEAT)
if !ok || vc == "0,0" {
return nil
}
// Server wants Heartbeats ?
vs, ok := c.ConnectResponse.Headers.Contains(HK_HEART_BEAT)
if !ok || vs == "0,0" {
return nil
}
// Work area, may or may not become connection heartbeat data
w := &heartBeatData{cx: 0, cy: 0, sx: 0, sy: 0,
hbs: true, hbr: true, // possible reset later
sti: 0, rti: 0,
ls: 0, lr: 0}
// Client specified values
cp := strings.Split(vc, ",")
if len(cp) != 2 { // S/B caught by the server first
return Error("invalid client heart-beat header: " + vc)
}
w.cx, e = strconv.ParseInt(cp[0], 10, 64)
if e != nil {
return Error("non-numeric cx heartbeat value: " + cp[0])
}
w.cy, e = strconv.ParseInt(cp[1], 10, 64)
if e != nil {
return Error("non-numeric cy heartbeat value: " + cp[1])
}
// Server specified values
sp := strings.Split(vs, ",")
if len(sp) != 2 {
return Error("invalid server heart-beat header: " + vs)
}
w.sx, e = strconv.ParseInt(sp[0], 10, 64)
if e != nil {
return Error("non-numeric sx heartbeat value: " + sp[0])
}
w.sy, e = strconv.ParseInt(sp[1], 10, 64)
if e != nil {
return Error("non-numeric sy heartbeat value: " + sp[1])
}
// Check for sending needed
if w.cx == 0 || w.sy == 0 {
w.hbs = false //
}
// Check for receiving needed
if w.sx == 0 || w.cy == 0 {
w.hbr = false //
}
// ========================================================================
if !w.hbs && !w.hbr {
return nil // none required
}
// ========================================================================
c.hbd = w // OK, we are doing some kind of heartbeating
ct := time.Now().UnixNano() // Prime current time
if w.hbs { // Finish sender parameters if required
sm := max(w.cx, w.sy) // ticker interval, ms
w.sti = 1000000 * sm // ticker interval, ns
w.ssd = make(chan struct{}) // add shutdown channel
w.ls = ct // Best guess at start
// fmt.Println("start send ticker")
go c.sendTicker()
}
if w.hbr { // Finish receiver parameters if required
rm := max(w.sx, w.cy) // ticker interval, ms
w.rti = 1000000 * rm // ticker interval, ns
w.rsd = make(chan struct{}) // add shutdown channel
w.lr = ct // Best guess at start
// fmt.Println("start receive ticker")
go c.receiveTicker()
}
return nil
}
/*
The heart beat send ticker.
*/
func (c *Connection) sendTicker() {
c.hbd.sc = 0
ticker := time.NewTicker(time.Duration(c.hbd.sti))
defer ticker.Stop()
hbSend:
for {
select {
case <-ticker.C:
c.log("HeartBeat Send data")
// Send a heartbeat
f := Frame{"\n", Headers{}, NULLBUFF} // Heartbeat frame
r := make(chan error)
if e := c.writeWireData(wiredata{f, r}); e != nil {
c.Hbsf = true
break hbSend
}
e := <-r
//
c.hbd.sdl.Lock()
if e != nil {
fmt.Printf("Heartbeat Send Failure: %v\n", e)
c.Hbsf = true
} else {
c.Hbsf = false
c.hbd.sc++
}
c.hbd.sdl.Unlock()
//
case _ = <-c.hbd.ssd:
break hbSend
case _ = <-c.ssdc:
break hbSend
} // End of select
} // End of for
c.log("Heartbeat Send Ends", time.Now())
return
}
/*
The heart beat receive ticker.
*/
func (c *Connection) receiveTicker() {
c.hbd.rc = 0
var first, last, nd int64
hbGet:
for {
nd = c.hbd.rti - (last - first)
// Check if receives are supposed to be "fast" *and* we spent a
// lot of time in the previous loop.
if nd <= 0 {
nd = c.hbd.rti
}
ticker := time.NewTicker(time.Duration(nd))
select {
case ct := <-ticker.C:
first = time.Now().UnixNano()
ticker.Stop()
c.hbd.rdl.Lock()
flr := c.hbd.lr
ld := ct.UnixNano() - flr
c.log("HeartBeat Receive TIC", "TickerVal", ct.UnixNano(),
"LastReceive", flr, "Diff", ld)
if ld > (c.hbd.rti + (c.hbd.rti / 5)) { // swag plus to be tolerant
c.log("HeartBeat Receive Read is dirty")
c.Hbrf = true // Flag possible dirty connection
} else {
c.Hbrf = false // Reset
c.hbd.rc++
}
c.hbd.rdl.Unlock()
last = time.Now().UnixNano()
case _ = <-c.hbd.rsd:
ticker.Stop()
break hbGet
case _ = <-c.ssdc:
ticker.Stop()
break hbGet
} // End of select
} // End of for
c.log("Heartbeat Receive Ends", time.Now())
return
}