mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
|
// Package websocket provides WebSocket transport support for JSON-RPC
|
||
|
// 2.0.
|
||
|
package websocket
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
|
||
|
"github.com/gorilla/websocket"
|
||
|
)
|
||
|
|
||
|
// A ObjectStream is a jsonrpc2.ObjectStream that uses a WebSocket to
|
||
|
// send and receive JSON-RPC 2.0 objects.
|
||
|
type ObjectStream struct {
|
||
|
conn *websocket.Conn
|
||
|
}
|
||
|
|
||
|
// NewObjectStream creates a new jsonrpc2.ObjectStream for sending and
|
||
|
// receiving JSON-RPC 2.0 objects over a WebSocket.
|
||
|
func NewObjectStream(conn *websocket.Conn) ObjectStream {
|
||
|
return ObjectStream{conn: conn}
|
||
|
}
|
||
|
|
||
|
// WriteObject implements jsonrpc2.ObjectStream.
|
||
|
func (t ObjectStream) WriteObject(obj interface{}) error {
|
||
|
return t.conn.WriteJSON(obj)
|
||
|
}
|
||
|
|
||
|
// ReadObject implements jsonrpc2.ObjectStream.
|
||
|
func (t ObjectStream) ReadObject(v interface{}) error {
|
||
|
err := t.conn.ReadJSON(v)
|
||
|
if e, ok := err.(*websocket.CloseError); ok {
|
||
|
if e.Code == websocket.CloseAbnormalClosure && e.Text == io.ErrUnexpectedEOF.Error() {
|
||
|
// Suppress a noisy (but harmless) log message by
|
||
|
// unwrapping this error.
|
||
|
err = io.ErrUnexpectedEOF
|
||
|
}
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
// Close implements jsonrpc2.ObjectStream.
|
||
|
func (t ObjectStream) Close() error {
|
||
|
return t.conn.Close()
|
||
|
}
|