forked from gmallard/stompngo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisconnect.go
91 lines (84 loc) · 2.51 KB
/
disconnect.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
//
// 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
/*
Disconnect from a STOMP broker.
Shut down heart beats if necessary.
Set connection status to false to disable further actions with this
connection.
Obtain a receipt unless the client specifically indicates a receipt request
should be excluded. If the client actually asks for a receipt, use the
supplied receipt id. Otherwise generate a unique receipt id and add that
to the DISCONNECT headers.
Example:
h := stompngo.Headers{HK_RECEIPT, "receipt-id1"} // Ask for a receipt
e := c.Disconnect(h)
if e != nil {
// Do something sane ...
}
fmt.Printf("%q\n", c.DisconnectReceipt)
// Or:
h := stompngo.Headers{"noreceipt", "true"} // Ask for a receipt
e := c.Disconnect(h)
if e != nil {
// Do something sane ...
}
fmt.Printf("%q\n", c.DisconnectReceipt)
*/
func (c *Connection) Disconnect(h Headers) error {
c.discLock.Lock()
defer c.discLock.Unlock()
//
if !c.connected {
return ECONBAD
}
c.log(DISCONNECT, "start", h)
e := checkHeaders(h, c.Protocol())
if e != nil {
return e
}
ch := h.Clone()
// If the caller does not want a receipt do not ask for one. Otherwise,
// add a receipt request if caller did not specifically ask for one. This is
// in the spirit of the specification, and allows reasonable resource cleanup
// in both the client and the message broker.
_, cwr := ch.Contains("noreceipt")
if !cwr {
if _, ok := ch.Contains(HK_RECEIPT); !ok {
ch = append(ch, HK_RECEIPT, Uuid())
}
}
//
f := Frame{DISCONNECT, ch, NULLBUFF}
//
r := make(chan error)
if e = c.writeWireData(wiredata{f, r}); e != nil {
return e
}
e = <-r
// Drive shutdown logic
// Only set DisconnectReceipt if we sucessfully received one.
if !cwr && e == nil {
// Receipt
c.DisconnectReceipt = <-c.input
c.log(DISCONNECT, "dr", ch, c.DisconnectReceipt)
}
c.log(DISCONNECT, "ends", ch)
c.shutdown()
c.sysAbort()
c.log(DISCONNECT, "system shutdown cannel closed")
return e
}