websocket/examples/chat/client.go

138 lines
3.3 KiB
Go
Raw Permalink Normal View History

// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved.
2013-10-16 20:41:47 +04:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"bytes"
2013-10-16 20:41:47 +04:00
"log"
"net/http"
"time"
"github.com/gorilla/websocket"
2013-10-16 20:41:47 +04:00
)
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.
maxMessageSize = 512
)
var (
newline = []byte{'\n'}
space = []byte{' '}
)
var upgrader = websocket.Upgrader{
ReadBufferSize: 1024,
WriteBufferSize: 1024,
}
// Client is a middleman between the websocket connection and the hub.
type Client struct {
hub *Hub
2013-10-16 20:41:47 +04:00
// The websocket connection.
conn *websocket.Conn
2013-10-16 20:41:47 +04:00
// Buffered channel of outbound messages.
send chan []byte
}
// readPump pumps messages from the websocket connection to the hub.
//
// The application runs readPump in a per-connection goroutine. The application
// ensures that there is at most one reader on a connection by executing all
// reads from this goroutine.
func (c *Client) readPump() {
2013-10-16 20:41:47 +04:00
defer func() {
c.hub.unregister <- c
c.conn.Close()
2013-10-16 20:41:47 +04:00
}()
c.conn.SetReadLimit(maxMessageSize)
c.conn.SetReadDeadline(time.Now().Add(pongWait))
c.conn.SetPongHandler(func(string) error { c.conn.SetReadDeadline(time.Now().Add(pongWait)); return nil })
2013-10-16 20:41:47 +04:00
for {
_, message, err := c.conn.ReadMessage()
2013-10-16 20:41:47 +04:00
if err != nil {
if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway, websocket.CloseAbnormalClosure) {
log.Printf("error: %v", err)
}
2013-10-16 20:41:47 +04:00
break
}
message = bytes.TrimSpace(bytes.Replace(message, newline, space, -1))
c.hub.broadcast <- message
2013-10-16 20:41:47 +04:00
}
}
// writePump pumps messages from the hub to the websocket connection.
//
// A goroutine running writePump is started for each connection. The
// application ensures that there is at most one writer to a connection by
// executing all writes from this goroutine.
func (c *Client) writePump() {
2013-10-16 20:41:47 +04:00
ticker := time.NewTicker(pingPeriod)
defer func() {
ticker.Stop()
c.conn.Close()
2013-10-16 20:41:47 +04:00
}()
for {
select {
case message, ok := <-c.send:
c.conn.SetWriteDeadline(time.Now().Add(writeWait))
2013-10-16 20:41:47 +04:00
if !ok {
// The hub closed the channel.
c.conn.WriteMessage(websocket.CloseMessage, []byte{})
2013-10-16 20:41:47 +04:00
return
}
w, err := c.conn.NextWriter(websocket.TextMessage)
if err != nil {
return
}
w.Write(message)
// Add queued chat messages to the current websocket message.
n := len(c.send)
for i := 0; i < n; i++ {
w.Write(newline)
w.Write(<-c.send)
}
if err := w.Close(); err != nil {
2013-10-16 20:41:47 +04:00
return
}
case <-ticker.C:
c.conn.SetWriteDeadline(time.Now().Add(writeWait))
if err := c.conn.WriteMessage(websocket.PingMessage, nil); err != nil {
2013-10-16 20:41:47 +04:00
return
}
}
}
}
2015-10-06 21:40:04 +03:00
// serveWs handles websocket requests from the peer.
func serveWs(hub *Hub, w http.ResponseWriter, r *http.Request) {
conn, err := upgrader.Upgrade(w, r, nil)
2014-04-16 19:42:15 +04:00
if err != nil {
log.Println(err)
2013-10-16 20:41:47 +04:00
return
}
client := &Client{hub: hub, conn: conn, send: make(chan []byte, 256)}
client.hub.register <- client
2017-06-20 22:01:03 +03:00
// Allow collection of memory referenced by the caller by doing all work in
// new goroutines.
go client.writePump()
2017-06-20 22:01:03 +03:00
go client.readPump()
2013-10-16 20:41:47 +04:00
}