1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-06 19:29:15 +08:00

50 lines
997 B
Go
Raw Normal View History

2020-05-07 09:34:09 +02:00
// Copyright (c) Mainflux
// SPDX-License-Identifier: Apache-2.0
package mqtt
import (
"errors"
"time"
mqtt "github.com/eclipse/paho.mqtt.golang"
"github.com/mainflux/mainflux/pkg/messaging"
2020-05-07 09:34:09 +02:00
)
var errPublishTimeout = errors.New("failed to publish due to timeout reached")
var _ messaging.Publisher = (*publisher)(nil)
2020-05-07 09:34:09 +02:00
type publisher struct {
client mqtt.Client
timeout time.Duration
}
// NewPublisher returns a new MQTT message publisher.
func NewPublisher(address string, timeout time.Duration) (messaging.Publisher, error) {
client, err := newClient(address, timeout)
if err != nil {
return nil, err
}
ret := publisher{
client: client,
timeout: timeout,
}
return ret, nil
}
func (pub publisher) Publish(topic string, msg messaging.Message) error {
token := pub.client.Publish(topic, qos, false, msg.Payload)
if token.Error() != nil {
return token.Error()
}
ok := token.WaitTimeout(pub.timeout)
if !ok {
return errPublishTimeout
}
return token.Error()
2020-05-07 09:34:09 +02:00
}