MailHog/vendor/github.com/mailhog/MailHog-Server/websockets/connection.go

74 lines
1.6 KiB
Go
Raw Normal View History

2016-08-10 06:56:48 +00:00
package websockets
import (
"time"
"github.com/gorilla/websocket"
)
const (
// Time allowed to write a message to the peer.
writeWait = 10 * time.Second
// Time allowed to read the next pong message from the peer.
pongWait = 60 * time.Second
// Send pings to peer with this period. Must be less than pongWait.
pingPeriod = (pongWait * 9) / 10
// Maximum message size allowed from peer. Set to minimum allowed value as we don't expect the client to send non-control messages.
maxMessageSize = 1
)
type connection struct {
hub *Hub
ws *websocket.Conn
send chan interface{}
}
func (c *connection) readLoop() {
defer func() {
c.hub.unregisterChan <- c
c.ws.Close()
}()
c.ws.SetReadLimit(maxMessageSize)
c.ws.SetReadDeadline(time.Now().Add(pongWait))
c.ws.SetPongHandler(func(string) error { c.ws.SetReadDeadline(time.Now().Add(pongWait)); return nil })
for {
if _, _, err := c.ws.NextReader(); err != nil {
return
}
}
}
func (c *connection) writeLoop() {
ticker := time.NewTicker(pingPeriod)
defer func() {
ticker.Stop()
c.ws.Close()
}()
for {
select {
case message, ok := <-c.send:
if !ok {
c.writeControl(websocket.CloseMessage)
return
}
if err := c.writeJSON(message); err != nil {
return
}
case <-ticker.C:
if err := c.writeControl(websocket.PingMessage); err != nil {
return
}
}
}
}
func (c *connection) writeJSON(message interface{}) error {
c.ws.SetWriteDeadline(time.Now().Add(writeWait))
return c.ws.WriteJSON(message)
}
func (c *connection) writeControl(messageType int) error {
c.ws.SetWriteDeadline(time.Now().Add(writeWait))
return c.ws.WriteMessage(messageType, []byte{})
}