robocar-road/vendor/github.com/cyrilix/robocar-base/service/part.go

33 lines
779 B
Go
Raw Normal View History

2020-01-04 13:10:36 +00:00
package service
import (
"fmt"
mqtt "github.com/eclipse/paho.mqtt.golang"
2021-10-12 21:44:58 +00:00
"go.uber.org/zap"
2020-01-04 13:10:36 +00:00
)
func StopService(name string, client mqtt.Client, topics ...string) {
2021-10-12 21:44:58 +00:00
zap.S().Infof("Stop %s service", name)
2020-01-04 13:10:36 +00:00
token := client.Unsubscribe(topics...)
token.Wait()
if token.Error() != nil {
2021-10-12 21:44:58 +00:00
zap.S().Errorf("unable to unsubscribe service: %v", token.Error())
2020-01-04 13:10:36 +00:00
}
client.Disconnect(50)
}
func RegisterCallback(client mqtt.Client, topic string, callback mqtt.MessageHandler) error {
2021-10-12 21:44:58 +00:00
zap.S().Infof("Register callback on topic %v", topic)
2020-01-04 13:10:36 +00:00
token := client.Subscribe(topic, 0, callback)
token.Wait()
if token.Error() != nil {
return fmt.Errorf("unable to register callback on topic %s: %v", topic, token.Error())
}
return nil
}
type Part interface {
Start() error
Stop()
}