mirror of
https://github.com/Luzifer/mqttcli.git
synced 2024-11-08 14:50:11 +00:00
Add keepalive
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
e27424aa27
commit
58abbcc02c
2 changed files with 14 additions and 11 deletions
5
main.go
5
main.go
|
@ -68,8 +68,9 @@ func main() {
|
||||||
mqtt.NewClientOptions().
|
mqtt.NewClientOptions().
|
||||||
AddBroker(cfg.MQTTBroker).
|
AddBroker(cfg.MQTTBroker).
|
||||||
SetClientID(cfg.MQTTClientID).
|
SetClientID(cfg.MQTTClientID).
|
||||||
SetUsername(cfg.MQTTUser).
|
SetKeepAlive(cfg.MQTTTimeout).
|
||||||
SetPassword(cfg.MQTTPass),
|
SetPassword(cfg.MQTTPass).
|
||||||
|
SetUsername(cfg.MQTTUser),
|
||||||
)
|
)
|
||||||
|
|
||||||
tok := client.Connect()
|
tok := client.Connect()
|
||||||
|
|
20
mqtt.go
20
mqtt.go
|
@ -2,6 +2,7 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
|
@ -9,17 +10,19 @@ import (
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func mqttTokenToError(tok mqtt.Token) error {
|
||||||
|
if !tok.WaitTimeout(cfg.MQTTTimeout) {
|
||||||
|
return errors.New("token wait timed out")
|
||||||
|
}
|
||||||
|
|
||||||
|
return tok.Error()
|
||||||
|
}
|
||||||
|
|
||||||
func publish(client mqtt.Client) error {
|
func publish(client mqtt.Client) error {
|
||||||
for _, t := range cfg.Topics {
|
for _, t := range cfg.Topics {
|
||||||
tok := client.Publish(t, byte(cfg.QOS), cfg.Retain, cfg.Message)
|
|
||||||
|
|
||||||
logger := log.WithField("topic", t)
|
logger := log.WithField("topic", t)
|
||||||
|
|
||||||
if !tok.WaitTimeout(cfg.MQTTTimeout) {
|
if err := mqttTokenToError(client.Publish(t, byte(cfg.QOS), cfg.Retain, cfg.Message)); err != nil {
|
||||||
logger.Error("Unable to publish message within timeout")
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := tok.Error(); err != nil {
|
|
||||||
logger.WithError(err).Fatal("Unable to publish message")
|
logger.WithError(err).Fatal("Unable to publish message")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,8 +57,7 @@ func subscribe(client mqtt.Client) error {
|
||||||
log.WithField("format", cfg.OutputFormat).Fatal("Invalid output format specified")
|
log.WithField("format", cfg.OutputFormat).Fatal("Invalid output format specified")
|
||||||
}
|
}
|
||||||
|
|
||||||
tok := client.SubscribeMultiple(topics, callback)
|
if err := mqttTokenToError(client.SubscribeMultiple(topics, callback)); err != nil {
|
||||||
if err := tok.Error(); err != nil {
|
|
||||||
log.WithError(err).Fatal("Unable to subscribe topics")
|
log.WithError(err).Fatal("Unable to subscribe topics")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue