-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathconnect.go
157 lines (143 loc) · 3.94 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
//
// 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 stompngo
import (
"bufio"
"log"
"os"
// "fmt"
"net"
"time"
"github.com/gmallard/stompngo/senv"
)
/*
Wrapper for primary STOMP Connect function that returns an interface.
*/
func NewConnector(n net.Conn, h Headers) (STOMPConnector, error) {
return Connect(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))
}
// Initialize elapsed time tracking data if needed
c.eltd = nil
if os.Getenv("STOMP_TRACKELT") != "" {
c.eltd = &eltmets{}
}
// OK, put a CONNECT on the wire
c.wtr = bufio.NewWriterSize(n, senv.WriteBufsz()) // Create the writer
// fmt.Println("TCDBG", c.wtr.Size())
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
}