This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconnect.go
236 lines (215 loc) · 5.95 KB
/
connect.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
233
234
235
236
//
// Copyright © 2011-2019 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 stompws
import (
"bufio"
"github.com/gorilla/websocket"
"log"
"os"
// "fmt"
"net"
"time"
"github.com/drawdy/stomp-ws-go/senv"
)
/*
Wrapper for primary STOMP Connect function that returns an interface.
*/
func NewConnector(n net.Conn, h Headers) (STOMPConnector, error) {
return Connect(n, h)
}
func NewConnectorOverWS(n *websocket.Conn, h Headers) (STOMPConnector, error) {
return ConnectOverWS(n, h)
}
/*
Primary STOMP Connect.
For STOMP 1.1+ the Headers parameter MUST contain the headers required
by the specification. Those headers are not magically inferred.
Example:
// Obtain a network connection
n, e := net.Dial(NetProtoTCP, "localhost:61613")
if e != nil {
// Do something sane ...
}
h := stompngo.Headers{} // A STOMP 1.0 connection request
c, e := stompngo.Connect(n, h)
if e != nil {
// Do something sane ...
}
// Use c
Example:
// Obtain a network connection
n, e := net.Dial(NetProtoTCP, "localhost:61613")
if e != nil {
// Do something sane ...
}
h := stompngo.Headers{HK_ACCEPT_VERSION, "1.1",
HK_HOST, "localhost"} // A STOMP 1.1 connection
c, e := stompngo.Connect(n, h)
if e != nil {
// Do something sane ...
}
// Use c
*/
func Connect(n net.Conn, h Headers) (*Connection, error) {
if h == nil {
return nil, EHDRNIL
}
if e := h.Validate(); e != nil {
return nil, e
}
if _, ok := h.Contains(HK_RECEIPT); ok {
return nil, ENORECPT
}
ch := h.Clone()
//fmt.Printf("CONDB01\n")
c := &Connection{netconn: n,
input: make(chan MessageData, 1),
output: make(chan wiredata),
connected: false,
session: "",
protocol: SPL_10,
subs: make(map[string]*subscription),
DisconnectReceipt: MessageData{},
ssdc: make(chan struct{}),
wtrsdc: make(chan struct{}),
scc: 1,
dld: &deadlineData{}}
// Basic metric data
c.mets = &metrics{st: time.Now()}
// Assumed for now
c.MessageData = c.input
// Check that the client wants a version we support
if e := c.checkClientVersions(h); e != nil {
return c, e
}
// Optional logging from connection start
ln := senv.WantLogger()
if ln != "" {
c.SetLogger(log.New(os.Stdout, ln+" ",
log.Ldate|log.Lmicroseconds|log.Lshortfile))
}
// OK, put a CONNECT on the wire
c.wtr = bufio.NewWriter(n) // Create the writer
go c.writer() // Start it
var f Frame
if senv.UseStomp() {
if ch.Value("accept-version") == SPL_11 || ch.Value("accept-version") == SPL_12 {
f = Frame{STOMP, ch, NULLBUFF} // Create actual STOMP frame
} else {
f = Frame{CONNECT, ch, NULLBUFF} // Create actual STOMP frame
}
// fmt.Printf("Frame: %q\n", f)
} else {
f = Frame{CONNECT, ch, NULLBUFF} // Create actual CONNECT frame
// fmt.Printf("Frame: %q\n", f)
}
r := make(chan error) // Make the error channel for a write
if e := c.writeWireData(wiredata{f, r}); e != nil { // Send the CONNECT frame
return c, e
}
e := <-r // Retrieve any error
//
if e != nil {
c.sysAbort() // Shutdown, we are done with errors
return c, e
}
//fmt.Printf("CONDB03\n")
//
e = c.connectHandler(ch)
if e != nil {
c.sysAbort() // Shutdown , we are done with errors
return c, e
}
//fmt.Printf("CONDB04\n")
// We are connected
go c.reader()
//
return c, e
}
func ConnectOverWS(n *websocket.Conn, h Headers) (STOMPConnector, error) {
if h == nil {
return nil, EHDRNIL
}
if e := h.Validate(); e != nil {
return nil, e
}
if _, ok := h.Contains(HK_RECEIPT); ok {
return nil, ENORECPT
}
ch := h.Clone()
//fmt.Printf("CONDB01\n")
c := &Connection{wsConn: n,
input: make(chan MessageData, 1),
output: make(chan wiredata),
connected: false,
session: "",
protocol: SPL_10,
subs: make(map[string]*subscription),
DisconnectReceipt: MessageData{},
ssdc: make(chan struct{}),
wtrsdc: make(chan struct{}),
scc: 1,
dld: &deadlineData{}}
// Basic metric data
c.mets = &metrics{st: time.Now()}
// Assumed for now
c.MessageData = c.input
// Validate that the client wants a version we support
if e := c.checkClientVersions(h); e != nil {
return c, e
}
// Optional logging from connection start
ln := senv.WantLogger()
if ln != "" {
c.SetLogger(log.New(os.Stdout, ln+" ",
log.Ldate|log.Lmicroseconds|log.Lshortfile))
}
// OK, put a CONNECT on the wire
go c.writerOverWS()
var f Frame
if senv.UseStomp() {
if ch.Value("accept-version") == SPL_11 || ch.Value("accept-version") == SPL_12 {
f = Frame{STOMP, ch, NULLBUFF} // Create actual STOMP frame
} else {
f = Frame{CONNECT, ch, NULLBUFF} // Create actual STOMP frame
}
// fmt.Printf("Frame: %q\n", f)
} else {
f = Frame{CONNECT, ch, NULLBUFF} // Create actual CONNECT frame
// fmt.Printf("Frame: %q\n", f)
}
r := make(chan error) // Make the error channel for a write
if e := c.writeWireData(wiredata{f, r}); e != nil { // Send the CONNECT frame
return c, e
}
e := <-r // Retrieve any error
//
if e != nil {
c.sysAbort() // Shutdown, we are done with errors
return c, e
}
//fmt.Printf("CONDB03\n")
//
e = c.connectHandlerOverWS(ch)
if e != nil {
c.sysAbort() // Shutdown , we are done with errors
return c, e
}
// We are connected
go c.readerOverWS()
//
return c, e
}