Documentation ¶
Overview ¶
Package wsstream contains utilities for streaming content over WebSockets. The Conn type allows callers to multiplex multiple read/write channels over a single websocket. The Reader type allows an io.Reader to be copied over a websocket channel as binary content.
Index ¶
- Constants
- func IgnoreReceives(ws *websocket.Conn, timeout time.Duration)
- func IsWebSocketRequest(req *http.Request) bool
- func NewDefaultChannelProtocols(channels []ChannelType) map[string]ChannelProtocolConfig
- func NewDefaultReaderProtocols() map[string]ReaderProtocolConfig
- type ChannelProtocolConfig
- type ChannelType
- type Conn
- type Reader
- type ReaderProtocolConfig
Constants ¶
const Base64ChannelWebSocketProtocol = "base64.channel.k8s.io"
The Websocket subprotocol "base64.channel.k8s.io" base64 encodes each message with a character indicating the channel number (zero indexed) the message was sent on. Messages in both directions should prefix their messages with this channel char. When used for remote execution, the channel numbers are by convention defined to match the POSIX file-descriptors assigned to STDIN, STDOUT, and STDERR ('0', '1', and '2'). The data received on the server is base64 decoded (and must be be valid) and data written by the server to the client is base64 encoded.
Example client session:
CONNECT http://server.com with subprotocol "base64.channel.k8s.io" WRITE []byte{48, 90, 109, 57, 118, 67, 103, 111, 61} # send "foo\n" (base64: "Zm9vCgo=") on channel '0' (STDIN) READ []byte{49, 67, 103, 61, 61} # receive "\n" (base64: "Cg==") on channel '1' (STDOUT) CLOSE
const ChannelWebSocketProtocol = "channel.k8s.io"
The Websocket subprotocol "channel.k8s.io" prepends each binary message with a byte indicating the channel number (zero indexed) the message was sent on. Messages in both directions should prefix their messages with this channel byte. When used for remote execution, the channel numbers are by convention defined to match the POSIX file-descriptors assigned to STDIN, STDOUT, and STDERR (0, 1, and 2). No other conversion is performed on the raw subprotocol - writes are sent as they are received by the server.
Example client session:
CONNECT http://server.com with subprotocol "channel.k8s.io" WRITE []byte{0, 102, 111, 111, 10} # send "foo\n" on channel 0 (STDIN) READ []byte{1, 10} # receive "\n" on channel 1 (STDOUT) CLOSE
Variables ¶
This section is empty.
Functions ¶
func IgnoreReceives ¶ added in v1.3.0
IgnoreReceives reads from a WebSocket until it is closed, then returns. If timeout is set, the read and write deadlines are pushed every time a new message is received.
func IsWebSocketRequest ¶
IsWebSocketRequest returns true if the incoming request contains connection upgrade headers for WebSockets.
func NewDefaultChannelProtocols ¶ added in v1.4.0
func NewDefaultChannelProtocols(channels []ChannelType) map[string]ChannelProtocolConfig
NewDefaultChannelProtocols returns a channel protocol map with the subprotocols "", "channel.k8s.io", "base64.channel.k8s.io" and the given channels.
func NewDefaultReaderProtocols ¶ added in v1.4.0
func NewDefaultReaderProtocols() map[string]ReaderProtocolConfig
NewDefaultReaderProtocols returns a stream protocol map with the subprotocols "", "channel.k8s.io", "base64.channel.k8s.io".
Types ¶
type ChannelProtocolConfig ¶ added in v1.4.0
type ChannelProtocolConfig struct { Binary bool Channels []ChannelType }
ChannelProtocolConfig describes a websocket subprotocol with channels.
type ChannelType ¶
type ChannelType int
const ( IgnoreChannel ChannelType = iota ReadChannel WriteChannel ReadWriteChannel )
type Conn ¶
type Conn struct {
// contains filtered or unexported fields
}
Conn supports sending multiple binary channels over a websocket connection.
func NewConn ¶
func NewConn(protocols map[string]ChannelProtocolConfig) *Conn
NewConn creates a WebSocket connection that supports a set of channels. Channels begin each web socket message with a single byte indicating the channel number (0-N). 255 is reserved for future use. The channel types for each channel are passed as an array, supporting the different duplex modes. Read and Write refer to whether the channel can be used as a Reader or Writer.
The protocols parameter maps subprotocol names to ChannelProtocols. The empty string subprotocol name is used if websocket.Config.Protocol is empty.
func (*Conn) Open ¶
func (conn *Conn) Open(w http.ResponseWriter, req *http.Request) (string, []io.ReadWriteCloser, error)
Open the connection and create channels for reading and writing. It returns the selected subprotocol, a slice of channels and an error.
func (*Conn) SetIdleTimeout ¶
SetIdleTimeout sets the interval for both reads and writes before timeout. If not specified, there is no timeout on the connection.
type Reader ¶
type Reader struct {
// contains filtered or unexported fields
}
Reader supports returning an arbitrary byte stream over a websocket channel.
func NewReader ¶
NewReader creates a WebSocket pipe that will copy the contents of r to a provided WebSocket connection. If ping is true, a zero length message will be sent to the client before the stream begins reading.
The protocols parameter maps subprotocol names to StreamProtocols. The empty string subprotocol name is used if websocket.Config.Protocol is empty.
func (*Reader) Copy ¶
Copy the reader to the response. The created WebSocket is closed after this method completes.
func (*Reader) SetIdleTimeout ¶
SetIdleTimeout sets the interval for both reads and writes before timeout. If not specified, there is no timeout on the reader.
type ReaderProtocolConfig ¶ added in v1.4.0
type ReaderProtocolConfig struct {
Binary bool
}
ReaderProtocolConfig describes a websocket subprotocol with one stream.