-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathclient_handlers.go
49 lines (43 loc) · 1.52 KB
/
client_handlers.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
// Copyright (c) 2020 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0
//
// SPDX-License-Identifier: EPL-2.0
package ditto
import (
//import the Paho Go MQTT library
MQTT "github.com/eclipse/paho.mqtt.golang"
)
func (client *honoClient) defaultMessageHandler(mqttClient MQTT.Client, message MQTT.Message) {
DEBUG.Printf("unexpected message received: %v", message)
}
func (client *honoClient) honoMessageHandler(mqttClient MQTT.Client, message MQTT.Message) {
DEBUG.Printf("received message for client subscription: %v", message)
// wait for handlers added in the ConnectHandler
client.wgConnectHandler.Wait()
client.handlersLock.RLock()
defer client.handlersLock.RUnlock()
if len(client.handlers) == 0 {
WARN.Printf("message received, but no handlers were found")
return
}
dittoMsg, err := getEnvelope(message.Payload())
if err != nil {
ERROR.Printf("error getting Ditto message: %v", err)
return
}
requestID := extractHonoRequestID(message.Topic())
if requestID == "" {
DEBUG.Printf("no request ID is available in the received message with topic: %s", message.Topic())
} else {
DEBUG.Printf("received a command with request ID: %s", requestID)
}
for _, handler := range client.handlers {
go handler(requestID, dittoMsg)
}
}