-
Notifications
You must be signed in to change notification settings - Fork 4
/
example_test.go
201 lines (186 loc) · 5.18 KB
/
example_test.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
package mqtt_test
import (
"bytes"
"context"
"errors"
"fmt"
"io"
"log"
"math/rand"
"net"
"time"
mqtt "github.com/soypat/natiu-mqtt"
)
func ExampleClient_concurrent() {
// Create new client.
received := make(chan []byte, 10)
client := mqtt.NewClient(mqtt.ClientConfig{
Decoder: mqtt.DecoderNoAlloc{make([]byte, 1500)},
OnPub: func(_ mqtt.Header, _ mqtt.VariablesPublish, r io.Reader) error {
message, _ := io.ReadAll(r)
if len(message) > 0 {
select {
case received <- message:
default:
// If channel is full we ignore message.
}
}
log.Println("received message:", string(message))
return nil
},
})
const TOPICNAME = "/mqttnerds"
// Set the connection parameters and set the Client ID to "salamanca".
var varConn mqtt.VariablesConnect
varConn.SetDefaultMQTT([]byte("salamanca"))
rng := rand.New(rand.NewSource(1))
// Define an inline function that connects the MQTT client automatically.
// Is inline so it is contained within example.
tryConnect := func() error {
// Get a transport for MQTT packets using the local host and default MQTT port (1883).
conn, err := net.Dial("tcp", "127.0.0.1:1883")
if err != nil {
return err
}
ctx, cancel := context.WithTimeout(context.Background(), 4*time.Second)
defer cancel()
err = client.Connect(ctx, conn, &varConn) // Connect to server.
if err != nil {
return err
}
// On succesful connection subscribe to topic.
ctx, cancel = context.WithTimeout(context.Background(), 4*time.Second)
defer cancel()
vsub := mqtt.VariablesSubscribe{
TopicFilters: []mqtt.SubscribeRequest{
{TopicFilter: []byte(TOPICNAME), QoS: mqtt.QoS0}, // Only support QoS0 for now.
},
PacketIdentifier: uint16(rng.Int31()),
}
return client.Subscribe(ctx, vsub)
}
// Attempt first connection and fail immediately if that does not work.
err := tryConnect()
if err != nil {
log.Println(err)
return
}
// Call read goroutine. Read goroutine will also handle reconnection
// when client disconnects.
go func() {
for {
if !client.IsConnected() {
time.Sleep(time.Second)
tryConnect()
continue
}
err = client.HandleNext()
if err != nil {
log.Println("HandleNext failed:", err)
}
}
}()
// Call Write goroutine and create a channel to serialize messages
// that we want to send out.
pubFlags, _ := mqtt.NewPublishFlags(mqtt.QoS0, false, false)
varPub := mqtt.VariablesPublish{
TopicName: []byte(TOPICNAME),
}
txQueue := make(chan []byte, 10)
go func() {
for {
if !client.IsConnected() {
time.Sleep(time.Second)
continue
}
message := <-txQueue
varPub.PacketIdentifier = uint16(rng.Int())
// Loop until message is sent successfully. This guarantees
// all messages are sent, even in events of disconnect.
for {
err := client.PublishPayload(pubFlags, varPub, message)
if err == nil {
break
}
time.Sleep(time.Second)
}
}
}()
// Main program logic.
for {
message := <-received
// We transform the message and send it back out.
fields := bytes.Fields(message)
message = bytes.Join(fields, []byte(","))
txQueue <- message
}
}
func ExampleClient() {
// Create new client with default settings.
client := mqtt.NewClient(mqtt.ClientConfig{})
// Get a transport for MQTT packets.
const defaultMQTTPort = ":1883"
conn, err := net.Dial("tcp", "test.mosquitto.org"+defaultMQTTPort)
if err != nil {
fmt.Println(err)
return
}
// Prepare for CONNECT interaction with server.
var varConn mqtt.VariablesConnect
varConn.SetDefaultMQTT([]byte("salamanca"))
ctx, cancel := context.WithTimeout(context.Background(), 4*time.Second)
err = client.Connect(ctx, conn, &varConn) // Connect to server.
cancel()
if err != nil {
// Error or loop until connect success.
log.Fatalf("connect attempt failed: %v\n", err)
}
fmt.Println("connection success")
defer func() {
err := client.Disconnect(errors.New("end of test"))
if err != nil {
fmt.Println("disconnect failed:", err)
}
}()
// Ping forever until error.
ctx, cancel = context.WithTimeout(context.Background(), time.Second)
pingErr := client.Ping(ctx)
cancel()
if pingErr != nil {
log.Fatal("ping error: ", pingErr, " with disconnect reason:", client.Err())
}
fmt.Println("ping success!")
// Output:
// connection success
// ping success!
}
func ExampleRxTx() {
const defaultMQTTPort = ":1883"
conn, err := net.Dial("tcp", "127.0.0.1"+defaultMQTTPort)
if err != nil {
log.Fatal(err)
}
rxtx, err := mqtt.NewRxTx(conn, mqtt.DecoderNoAlloc{UserBuffer: make([]byte, 1500)})
if err != nil {
log.Fatal(err)
}
rxtx.RxCallbacks.OnConnack = func(rt *mqtt.Rx, vc mqtt.VariablesConnack) error {
log.Printf("%v received, SP=%v, rc=%v", rt.LastReceivedHeader.String(), vc.SessionPresent(), vc.ReturnCode.String())
return nil
}
// PacketFlags set automatically for all packets that are not PUBLISH. So set to 0.
varConnect := mqtt.VariablesConnect{
ClientID: []byte("salamanca"),
Protocol: []byte("MQTT"),
ProtocolLevel: 4,
KeepAlive: 60,
CleanSession: true,
WillMessage: []byte("MQTT is okay, I guess"),
WillTopic: []byte("mqttnerds"),
WillRetain: true,
}
err = rxtx.WriteConnect(&varConnect)
if err != nil {
log.Fatal(err)
}
}