mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
8293f546af
This implementation is similar to AMQP notifications: * Notifications are published on a single topic as a JSON feed * Topic is configurable, as is the QoS. Uses the paho.mqtt.golang library for the mqtt connection, and supports connections over tcp and websockets, with optional secure tls support. * Additionally the minio server configuration has been bumped up so mqtt configuration can be added. * Configuration migration code is added with tests. MQTT is an ISO standard M2M/IoT messaging protocol and was originally designed for applications for limited bandwidth networks. Today it's use is growing in the IoT space.
103 lines
2.4 KiB
Go
103 lines
2.4 KiB
Go
/*
|
|
* Copyright (c) 2013 IBM Corp.
|
|
*
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
* which accompanies this distribution, and is available at
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
*
|
|
* Contributors:
|
|
* Seth Hoenig
|
|
* Allan Stockdill-Mander
|
|
* Mike Robertson
|
|
*/
|
|
|
|
package mqtt
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
"github.com/eclipse/paho.mqtt.golang/packets"
|
|
)
|
|
|
|
func keepalive(c *client) {
|
|
DEBUG.Println(PNG, "keepalive starting")
|
|
|
|
receiveInterval := c.options.KeepAlive + (1 * time.Second)
|
|
pingTimer := timer{Timer: time.NewTimer(c.options.KeepAlive)}
|
|
receiveTimer := timer{Timer: time.NewTimer(receiveInterval)}
|
|
pingRespTimer := timer{Timer: time.NewTimer(c.options.PingTimeout)}
|
|
|
|
pingRespTimer.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-c.stop:
|
|
DEBUG.Println(PNG, "keepalive stopped")
|
|
c.workers.Done()
|
|
return
|
|
case <-pingTimer.C:
|
|
sendPing(&pingTimer, &pingRespTimer, c)
|
|
case <-c.keepaliveReset:
|
|
DEBUG.Println(NET, "resetting ping timer")
|
|
pingTimer.Reset(c.options.KeepAlive)
|
|
case <-c.pingResp:
|
|
DEBUG.Println(NET, "resetting ping timeout timer")
|
|
pingRespTimer.Stop()
|
|
pingTimer.Reset(c.options.KeepAlive)
|
|
receiveTimer.Reset(receiveInterval)
|
|
case <-c.packetResp:
|
|
DEBUG.Println(NET, "resetting receive timer")
|
|
receiveTimer.Reset(receiveInterval)
|
|
case <-receiveTimer.C:
|
|
receiveTimer.SetRead(true)
|
|
receiveTimer.Reset(receiveInterval)
|
|
sendPing(&pingTimer, &pingRespTimer, c)
|
|
case <-pingRespTimer.C:
|
|
pingRespTimer.SetRead(true)
|
|
CRITICAL.Println(PNG, "pingresp not received, disconnecting")
|
|
c.workers.Done()
|
|
c.internalConnLost(errors.New("pingresp not received, disconnecting"))
|
|
pingTimer.Stop()
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
type timer struct {
|
|
*time.Timer
|
|
readFrom bool
|
|
}
|
|
|
|
func (t *timer) SetRead(v bool) {
|
|
t.readFrom = v
|
|
}
|
|
|
|
func (t *timer) Stop() bool {
|
|
defer t.SetRead(true)
|
|
|
|
if !t.Timer.Stop() && !t.readFrom {
|
|
<-t.C
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (t *timer) Reset(d time.Duration) bool {
|
|
defer t.SetRead(false)
|
|
t.Stop()
|
|
return t.Timer.Reset(d)
|
|
}
|
|
|
|
func sendPing(pt *timer, rt *timer, c *client) {
|
|
pt.SetRead(true)
|
|
DEBUG.Println(PNG, "keepalive sending ping")
|
|
ping := packets.NewControlPacket(packets.Pingreq).(*packets.PingreqPacket)
|
|
//We don't want to wait behind large messages being sent, the Write call
|
|
//will block until it it able to send the packet.
|
|
ping.Write(c.conn)
|
|
|
|
rt.Reset(c.options.PingTimeout)
|
|
}
|