2020-01-09 05:24:45 +00:00
|
|
|
package wsutil
|
|
|
|
|
|
|
|
import (
|
2020-04-06 19:03:42 +00:00
|
|
|
"bytes"
|
2020-01-09 05:24:45 +00:00
|
|
|
"compress/zlib"
|
|
|
|
"context"
|
2020-01-29 03:54:22 +00:00
|
|
|
"io"
|
2020-01-09 05:24:45 +00:00
|
|
|
"net/http"
|
2020-10-30 20:54:26 +00:00
|
|
|
"strings"
|
2020-04-06 19:03:42 +00:00
|
|
|
"time"
|
2020-01-09 05:24:45 +00:00
|
|
|
|
2020-04-06 19:03:42 +00:00
|
|
|
"github.com/gorilla/websocket"
|
2020-01-09 05:24:45 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
// CopyBufferSize is used for the initial size of the internal WS' buffer. Its
|
|
|
|
// size is 4KB.
|
|
|
|
var CopyBufferSize = 4096
|
2020-04-06 19:03:42 +00:00
|
|
|
|
2020-08-20 21:15:52 +00:00
|
|
|
// MaxCapUntilReset determines the maximum capacity before the bytes buffer is
|
2020-10-28 17:19:22 +00:00
|
|
|
// re-allocated. It is roughly 16KB, quadruple CopyBufferSize.
|
|
|
|
var MaxCapUntilReset = CopyBufferSize * 4
|
2020-08-20 21:15:52 +00:00
|
|
|
|
2020-04-06 19:03:42 +00:00
|
|
|
// CloseDeadline controls the deadline to wait for sending the Close frame.
|
|
|
|
var CloseDeadline = time.Second
|
2020-01-09 05:24:45 +00:00
|
|
|
|
2020-04-11 19:34:40 +00:00
|
|
|
// ErrWebsocketClosed is returned if the websocket is already closed.
|
2020-05-16 21:14:49 +00:00
|
|
|
var ErrWebsocketClosed = errors.New("websocket is closed")
|
2020-04-11 19:34:40 +00:00
|
|
|
|
2020-01-09 05:24:45 +00:00
|
|
|
// Connection is an interface that abstracts around a generic Websocket driver.
|
2020-04-06 19:03:42 +00:00
|
|
|
// This connection expects the driver to handle compression by itself, including
|
2020-10-29 18:24:45 +00:00
|
|
|
// modifying the connection URL. The implementation doesn't have to be safe for
|
|
|
|
// concurrent use.
|
2020-01-09 05:24:45 +00:00
|
|
|
type Connection interface {
|
2020-01-15 04:43:34 +00:00
|
|
|
// Dial dials the address (string). Context needs to be passed in for
|
|
|
|
// timeout. This method should also be re-usable after Close is called.
|
|
|
|
Dial(context.Context, string) error
|
|
|
|
|
2020-10-29 18:24:45 +00:00
|
|
|
// Listen returns an event channel that sends over events constantly. It can
|
|
|
|
// return nil if there isn't an ongoing connection.
|
2020-01-09 05:24:45 +00:00
|
|
|
Listen() <-chan Event
|
|
|
|
|
2020-10-29 18:24:45 +00:00
|
|
|
// Send allows the caller to send bytes. It does not need to clean itself
|
|
|
|
// up on errors, as the Websocket wrapper will do that.
|
2020-04-24 06:34:08 +00:00
|
|
|
Send(context.Context, []byte) error
|
2020-01-09 05:24:45 +00:00
|
|
|
|
2020-10-29 18:24:45 +00:00
|
|
|
// Close should close the websocket connection. The underlying connection
|
|
|
|
// may be reused, but this Connection instance will be reused with Dial. The
|
|
|
|
// Connection must still be reusable even if Close returns an error.
|
2020-04-11 03:03:52 +00:00
|
|
|
Close() error
|
2020-01-09 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
2020-10-29 18:24:45 +00:00
|
|
|
// Conn is the default Websocket connection. It tries to compresses all payloads
|
|
|
|
// using zlib.
|
2020-01-09 05:24:45 +00:00
|
|
|
type Conn struct {
|
2020-10-30 18:02:37 +00:00
|
|
|
Dialer websocket.Dialer
|
|
|
|
Header http.Header
|
2020-10-29 18:24:45 +00:00
|
|
|
Conn *websocket.Conn
|
2020-01-09 05:24:45 +00:00
|
|
|
events chan Event
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ Connection = (*Conn)(nil)
|
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
// NewConn creates a new default websocket connection with a default dialer.
|
2020-04-24 06:34:08 +00:00
|
|
|
func NewConn() *Conn {
|
2020-10-30 18:02:37 +00:00
|
|
|
return NewConnWithDialer(websocket.Dialer{
|
2020-10-28 17:19:22 +00:00
|
|
|
Proxy: http.ProxyFromEnvironment,
|
|
|
|
HandshakeTimeout: WSTimeout,
|
|
|
|
ReadBufferSize: CopyBufferSize,
|
|
|
|
WriteBufferSize: CopyBufferSize,
|
|
|
|
EnableCompression: true,
|
|
|
|
})
|
2020-04-24 06:34:08 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
// NewConn creates a new default websocket connection with a custom dialer.
|
2020-10-30 18:02:37 +00:00
|
|
|
func NewConnWithDialer(dialer websocket.Dialer) *Conn {
|
|
|
|
return &Conn{
|
|
|
|
Dialer: dialer,
|
|
|
|
Header: http.Header{
|
|
|
|
"Accept-Encoding": {"zlib"},
|
|
|
|
},
|
|
|
|
}
|
2020-01-09 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
2020-10-29 18:24:45 +00:00
|
|
|
func (c *Conn) Dial(ctx context.Context, addr string) (err error) {
|
|
|
|
// BUG which prevents stream compression.
|
|
|
|
// See https://github.com/golang/go/issues/31514.
|
|
|
|
|
2020-10-30 18:02:37 +00:00
|
|
|
c.Conn, _, err = c.Dialer.DialContext(ctx, addr, c.Header)
|
2020-10-29 02:00:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to dial WS")
|
|
|
|
}
|
|
|
|
|
2020-10-31 22:52:55 +00:00
|
|
|
// Reset the deadline.
|
|
|
|
c.Conn.SetWriteDeadline(resetDeadline)
|
|
|
|
|
2020-10-29 02:00:59 +00:00
|
|
|
c.events = make(chan Event, WSBuffer)
|
|
|
|
go startReadLoop(c.Conn, c.events)
|
2020-04-06 21:03:08 +00:00
|
|
|
|
2020-01-09 05:24:45 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-10-29 18:24:45 +00:00
|
|
|
// Listen returns an event channel if there is a connection associated with it.
|
|
|
|
// It returns nil if there is none.
|
2020-01-09 05:24:45 +00:00
|
|
|
func (c *Conn) Listen() <-chan Event {
|
|
|
|
return c.events
|
|
|
|
}
|
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
// resetDeadline is used to reset the write deadline after using the context's.
|
|
|
|
var resetDeadline = time.Time{}
|
|
|
|
|
|
|
|
func (c *Conn) Send(ctx context.Context, b []byte) error {
|
|
|
|
d, ok := ctx.Deadline()
|
|
|
|
if ok {
|
|
|
|
c.Conn.SetWriteDeadline(d)
|
|
|
|
defer c.Conn.SetWriteDeadline(resetDeadline)
|
|
|
|
}
|
|
|
|
|
2020-10-29 18:24:45 +00:00
|
|
|
if err := c.Conn.WriteMessage(websocket.TextMessage, b); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2020-10-28 17:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) Close() error {
|
2020-10-31 22:52:55 +00:00
|
|
|
WSDebug("Conn: Close is called; shutting down the Websocket connection.")
|
|
|
|
|
2020-10-30 18:02:37 +00:00
|
|
|
// Have a deadline before closing.
|
|
|
|
var deadline = time.Now().Add(5 * time.Second)
|
|
|
|
c.Conn.SetWriteDeadline(deadline)
|
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
// Close the WS.
|
2020-10-29 18:24:45 +00:00
|
|
|
err := c.Conn.Close()
|
2020-10-28 17:19:22 +00:00
|
|
|
|
2020-10-31 22:52:55 +00:00
|
|
|
c.Conn.SetWriteDeadline(resetDeadline)
|
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
WSDebug("Conn: Websocket closed; error:", err)
|
|
|
|
WSDebug("Conn: Flusing events...")
|
|
|
|
|
|
|
|
// Flush all events before closing the channel. This will return as soon as
|
|
|
|
// c.events is closed, or after closed.
|
|
|
|
for range c.events {
|
|
|
|
}
|
|
|
|
|
|
|
|
WSDebug("Flushed events.")
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// loopState is a thread-unsafe disposable state container for the read loop.
|
|
|
|
// It's made to completely separate the read loop of any synchronization that
|
|
|
|
// doesn't involve the websocket connection itself.
|
|
|
|
type loopState struct {
|
|
|
|
conn *websocket.Conn
|
|
|
|
zlib io.ReadCloser
|
|
|
|
buf bytes.Buffer
|
|
|
|
}
|
|
|
|
|
|
|
|
func startReadLoop(conn *websocket.Conn, eventCh chan<- Event) {
|
2020-04-06 19:03:42 +00:00
|
|
|
// Clean up the events channel in the end.
|
2020-10-28 17:19:22 +00:00
|
|
|
defer close(eventCh)
|
|
|
|
|
|
|
|
// Allocate the read loop its own private resources.
|
|
|
|
state := loopState{conn: conn}
|
|
|
|
state.buf.Grow(CopyBufferSize)
|
2020-04-06 19:03:42 +00:00
|
|
|
|
|
|
|
for {
|
2020-10-28 17:19:22 +00:00
|
|
|
b, err := state.handle()
|
2020-04-06 19:03:42 +00:00
|
|
|
if err != nil {
|
2020-10-31 22:52:55 +00:00
|
|
|
WSDebug("Conn: Read error:", err)
|
|
|
|
|
2020-04-06 19:03:42 +00:00
|
|
|
// Is the error an EOF?
|
2020-04-09 23:19:52 +00:00
|
|
|
if errors.Is(err, io.EOF) {
|
2020-04-06 19:03:42 +00:00
|
|
|
// Yes it is, exit.
|
2020-02-02 22:12:54 +00:00
|
|
|
return
|
2020-01-09 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
2020-10-30 20:54:26 +00:00
|
|
|
// Is the error an intentional close call? Go 1.16 exposes
|
|
|
|
// ErrClosing, but we have to do this for now.
|
|
|
|
if strings.HasSuffix(err.Error(), "use of closed network connection") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-04-06 19:03:42 +00:00
|
|
|
// Unusual error; log and exit:
|
2020-10-28 17:19:22 +00:00
|
|
|
eventCh <- Event{nil, errors.Wrap(err, "WS error")}
|
2020-04-06 19:03:42 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-04-09 20:49:12 +00:00
|
|
|
// If the payload length is 0, skip it.
|
|
|
|
if len(b) == 0 {
|
2020-04-06 19:03:42 +00:00
|
|
|
continue
|
2020-01-09 05:24:45 +00:00
|
|
|
}
|
2020-04-06 19:03:42 +00:00
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
eventCh <- Event{b, nil}
|
2020-04-06 19:03:42 +00:00
|
|
|
}
|
2020-01-09 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
func (state *loopState) handle() ([]byte, error) {
|
2020-04-06 19:03:42 +00:00
|
|
|
// skip message type
|
2020-10-28 17:19:22 +00:00
|
|
|
t, r, err := state.conn.NextReader()
|
2020-01-09 05:24:45 +00:00
|
|
|
if err != nil {
|
2020-01-16 03:28:21 +00:00
|
|
|
return nil, err
|
2020-01-09 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
2020-04-06 19:03:42 +00:00
|
|
|
if t == websocket.BinaryMessage {
|
2020-10-29 18:24:45 +00:00
|
|
|
// Probably a zlib payload.
|
2020-04-11 19:34:40 +00:00
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
if state.zlib == nil {
|
2020-04-11 19:34:40 +00:00
|
|
|
z, err := zlib.NewReader(r)
|
|
|
|
if err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return nil, errors.Wrap(err, "failed to create a zlib reader")
|
2020-04-11 19:34:40 +00:00
|
|
|
}
|
2020-10-28 17:19:22 +00:00
|
|
|
state.zlib = z
|
2020-04-11 19:34:40 +00:00
|
|
|
} else {
|
2020-10-28 17:19:22 +00:00
|
|
|
if err := state.zlib.(zlib.Resetter).Reset(r, nil); err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return nil, errors.Wrap(err, "failed to reset zlib reader")
|
2020-04-11 19:34:40 +00:00
|
|
|
}
|
2020-01-09 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
defer state.zlib.Close()
|
|
|
|
r = state.zlib
|
2020-08-20 21:15:52 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
return state.readAll(r)
|
2020-08-20 21:15:52 +00:00
|
|
|
}
|
|
|
|
|
2020-04-06 19:03:42 +00:00
|
|
|
// readAll reads bytes into an existing buffer, copy it over, then wipe the old
|
|
|
|
// buffer.
|
2020-10-28 17:19:22 +00:00
|
|
|
func (state *loopState) readAll(r io.Reader) ([]byte, error) {
|
|
|
|
defer state.buf.Reset()
|
2020-08-20 21:15:52 +00:00
|
|
|
|
2020-10-28 17:19:22 +00:00
|
|
|
if _, err := state.buf.ReadFrom(r); err != nil {
|
2020-04-06 19:03:42 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the bytes so we could empty the buffer for reuse.
|
2020-10-28 17:19:22 +00:00
|
|
|
cpy := make([]byte, state.buf.Len())
|
|
|
|
copy(cpy, state.buf.Bytes())
|
2020-08-20 21:15:52 +00:00
|
|
|
|
|
|
|
// If the buffer's capacity is over the limit, then re-allocate a new one.
|
2020-10-28 17:19:22 +00:00
|
|
|
if state.buf.Cap() > MaxCapUntilReset {
|
|
|
|
state.buf = bytes.Buffer{}
|
|
|
|
state.buf.Grow(CopyBufferSize)
|
2020-08-20 21:15:52 +00:00
|
|
|
}
|
2020-04-06 19:03:42 +00:00
|
|
|
|
|
|
|
return cpy, nil
|
|
|
|
}
|