socket

package
v0.0.0-...-2824937 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 2, 2020 License: MIT, BSD-3-Clause Imports: 20 Imported by: 0

Documentation

Overview

Package socket implements an WebSocket-based playground backend. Clients connect to a websocket handler and send run/kill commands, and the server sends the output and exit status of the running processes. Multiple clients running multiple processes may be served concurrently. The wire format is JSON and is described by the Message type.

This will not run on App Engine as WebSockets are not supported there.

Index

Constants

This section is empty.

Variables

View Source
var Environ func() []string = os.Environ

Environ provides an environment when a binary, such as the go tool, is invoked.

View Source
var RunScripts = true

RunScripts specifies whether the socket handler should execute shell scripts (snippets that start with a shebang).

Functions

func NewHandler

func NewHandler(origin *url.URL) websocket.Server

NewHandler returns a websocket server which checks the origin of requests.

Types

type Message

type Message struct {
	Id      string // client-provided unique id for the process
	Kind    string // in: "run", "kill" out: "stdout", "stderr", "end"
	Body    string
	Options *Options `json:",omitempty"`
}

Message is the wire format for the websocket connection to the browser. It is used for both sending output messages and receiving commands, as distinguished by the Kind field.

type Options

type Options struct {
	Race bool // use -race flag when building code (for "run" only)
}

Options specify additional message options.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL