Skip to content

Commit 2d4c354

Browse files
committed
Adds Ping and ReadMessageWithOpts functions
1 parent 0151d64 commit 2d4c354

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

websocket.go

+26-2
Original file line numberDiff line numberDiff line change
@@ -792,17 +792,36 @@ type StreamingConn struct {
792792
suite network.Suite
793793
}
794794

795+
// StreamingReadOpts contains options for the ReadMessageWithOpts. It allows us
796+
// to add new options in the future without making breaking changes.
797+
type StreamingReadOpts struct {
798+
Deadline time.Time
799+
}
800+
795801
// ReadMessage read more data from the connection, it will block if there are
796802
// no messages.
797803
func (c *StreamingConn) ReadMessage(ret interface{}) error {
798-
if err := c.conn.SetReadDeadline(time.Now().Add(5 * time.Minute)); err != nil {
804+
opts := StreamingReadOpts{
805+
Deadline: time.Now().Add(5 * time.Minute),
806+
}
807+
808+
return c.readMsg(ret, opts)
809+
}
810+
811+
// ReadMessageWithOpts does the same as ReadMessage and allows to pass options.
812+
func (c *StreamingConn) ReadMessageWithOpts(ret interface{}, opts StreamingReadOpts) error {
813+
return c.readMsg(ret, opts)
814+
}
815+
816+
func (c *StreamingConn) readMsg(ret interface{}, opts StreamingReadOpts) error {
817+
if err := c.conn.SetReadDeadline(opts.Deadline); err != nil {
799818
return xerrors.Errorf("read deadline: %v", err)
800819
}
801820
// No need to add bytes to counter here because this function is only
802821
// called by the client.
803822
_, buf, err := c.conn.ReadMessage()
804823
if err != nil {
805-
return xerrors.Errorf("connection read: %v", err)
824+
return xerrors.Errorf("connection read: %w", err)
806825
}
807826
err = protobuf.DecodeWithConstructors(buf, ret, network.DefaultConstructors(c.suite))
808827
if err != nil {
@@ -811,6 +830,11 @@ func (c *StreamingConn) ReadMessage(ret interface{}) error {
811830
return nil
812831
}
813832

833+
// Ping sends a ping message. Data can be nil.
834+
func (c *StreamingConn) Ping(data []byte, deadline time.Time) error {
835+
return c.conn.WriteControl(websocket.PingMessage, data, deadline)
836+
}
837+
814838
// Stream will send a request to start streaming, it returns a connection where
815839
// the client can continue to read values from it.
816840
func (c *Client) Stream(dst *network.ServerIdentity, msg interface{}) (StreamingConn, error) {

0 commit comments

Comments
 (0)