Documentation
¶
Overview ¶
Package glue - Robust Go and Javascript Socket Library. This library is thread-safe.
Index ¶
- Constants
- Variables
- type Channel
- type ClosedChan
- type HTTPSocketType
- type OnCloseFunc
- type OnNewSocketFunc
- type OnReadFunc
- type Options
- type Server
- func (s *Server) Block(b bool)
- func (s *Server) GetSocket(id string) *Socket
- func (s *Server) IsBlocked() bool
- func (s *Server) OnNewSocket(f OnNewSocketFunc)
- func (s *Server) Release()
- func (s *Server) Run() error
- func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request)
- func (s *Server) Sockets() []*Socket
- type Socket
- func (s *Socket) Channel(name string) *Channel
- func (s *Socket) Close()
- func (s *Socket) ClosedChan() ClosedChan
- func (s *Socket) DiscardRead()
- func (s *Socket) ID() string
- func (s *Socket) IsClosed() bool
- func (s *Socket) IsInitialized() bool
- func (s *Socket) OnClose(f OnCloseFunc)
- func (s *Socket) OnRead(f OnReadFunc)
- func (s *Socket) Read(timeout ...time.Duration) (string, error)
- func (s *Socket) RemoteAddr() string
- func (s *Socket) UserAgent() string
- func (s *Socket) Write(data string)
Constants ¶
const ( // Version holds the Glue Socket Protocol Version as string. // This project follows the Semantic Versioning (http://semver.org/). Version = "1.9.1" )
Public ######
Variables ¶
var ( ErrSocketClosed = errors.New("the socket connection is closed") ErrReadTimeout = errors.New("the read timeout was reached") )
Public errors:
Functions ¶
This section is empty.
Types ¶
type Channel ¶
type Channel struct {
// contains filtered or unexported fields
}
A Channel is a separate communication channel.
func (*Channel) DiscardRead ¶
func (c *Channel) DiscardRead()
DiscardRead ignores and discars the data received from this channel. Call this method during initialization, if you don't read any data from this channel. If received data is not discarded, then the read buffer will block as soon as it is full, which will also block the keep-alive mechanism of the socket. The result would be a closed socket...
func (*Channel) OnRead ¶
func (c *Channel) OnRead(f OnReadFunc)
OnRead sets the function which is triggered if new data is received on the channel. If this event function based method of reading data from the socket is used, then don't use the socket Read method. Either use the OnRead or the Read approach.
func (*Channel) Read ¶
Read the next message from the channel. This method is blocking. One variadic argument sets a timeout duration. If no timeout is specified, this method will block forever. ErrSocketClosed is returned, if the socket connection is closed. ErrReadTimeout is returned, if the timeout is reached.
type ClosedChan ¶
type ClosedChan <-chan struct{}
ClosedChan is a channel which doesn't block as soon as the socket is closed.
type HTTPSocketType ¶
type HTTPSocketType int
A HTTPSocketType defines which socket type to use for the HTTP glue server.
const ( // HTTPSocketTypeNone defines to not configure and run a HTTP server. HTTPSocketTypeNone HTTPSocketType = 1 << iota // HTTPSocketTypeTCP defines to use a TCP server. HTTPSocketTypeTCP HTTPSocketType = 1 << iota // HTTPSocketTypeUnix defines to use a Unix socket server. HTTPSocketTypeUnix HTTPSocketType = 1 << iota )
type Options ¶
type Options struct { // HTTPSocketType defines which socket type to use for the HTTP glue server. // Default: HTTPSocketTypeTCP HTTPSocketType HTTPSocketType // The HTTP address to listen on. // Default: ":80" HTTPListenAddress string // HTTPHandleURL defines the base url to handle glue HTTP socket requests. // This has to be set, even if the none socket type is used. // Default: "/glue/" HTTPHandleURL string // CheckOrigin returns true if the request Origin header is acceptable. If // CheckOrigin is nil, the host in the Origin header must not be set or // must match the host of the request. // This method is used by the backend sockets before establishing connections. CheckOrigin func(r *http.Request) bool // Enables the Cross-Origin Resource Sharing (CORS) mechanism. // This will set the Access-Control-Allow-Origin HTTP headers. // A resource makes a cross-origin HTTP request when it requests a resource // from a different domain than the one which served itself. EnableCORS bool }
Options holds the glue server options.
func (*Options) SetDefaults ¶
func (o *Options) SetDefaults()
SetDefaults sets unset option values to its default value.
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
A Server represents a glue server which handles incoming socket connections.
func NewServer ¶
NewServer creates a new glue server instance. One variadic arguments specifies the server options.
func (*Server) IsBlocked ¶
IsBlocked returns a boolean whenever new incoming connections should be blocked.
func (*Server) OnNewSocket ¶
func (s *Server) OnNewSocket(f OnNewSocketFunc)
OnNewSocket sets the event function which is triggered if a new socket connection was made. The event function must not block! As soon as the event function returns, the socket is added to the active sockets map.
func (*Server) Release ¶
func (s *Server) Release()
Release this package. This will block all new incomming socket connections and close all current connected sockets.
func (*Server) Run ¶
Run starts the server and listens for incoming socket connections. This is a blocking method.
type Socket ¶
type Socket struct { // A Value is a placeholder for custom data. // Use this to attach socket specific data. Value interface{} // contains filtered or unexported fields }
A Socket represents a single socket connections to a client.
func (*Socket) Channel ¶
Channel returns the corresponding channel value specified by the name. If no channel value exists for the given name, a new channel is created. Multiple calls to Channel with the same name, will always return the same channel value pointer.
func (*Socket) ClosedChan ¶
func (s *Socket) ClosedChan() ClosedChan
ClosedChan returns a channel which is non-blocking (closed) as soon as the socket is closed.
func (*Socket) DiscardRead ¶
func (s *Socket) DiscardRead()
DiscardRead ignores and discars the data received from the client. Call this method during initialization, if you don't read any data from the socket. If received data is not discarded, then the read buffer will block as soon as it is full, which will also block the keep-alive mechanism of the socket. The result would be a closed socket...
func (*Socket) ID ¶
ID returns the socket's unique ID. This is a cryptographically secure pseudorandom number.
func (*Socket) IsInitialized ¶
IsInitialized returns a boolean indicating if a socket is initialized and ready to be used. This flag is set to true after the OnNewSocket function has returned for this socket.
func (*Socket) OnClose ¶
func (s *Socket) OnClose(f OnCloseFunc)
OnClose sets the functions which is triggered if the socket connection is closed. This method can be called multiple times to bind multiple functions.
func (*Socket) OnRead ¶
func (s *Socket) OnRead(f OnReadFunc)
OnRead sets the function which is triggered if new data is received. If this event function based method of reading data from the socket is used, then don't use the socket Read method. Either use the OnRead or the Read approach.
func (*Socket) Read ¶
Read the next message from the socket. This method is blocking. One variadic argument sets a timeout duration. If no timeout is specified, this method will block forever. ErrSocketClosed is returned, if the socket connection is closed. ErrReadTimeout is returned, if the timeout is reached.
func (*Socket) RemoteAddr ¶
RemoteAddr returns the remote address of the client.
Directories
¶
Path | Synopsis |
---|---|
Package backend provides the server backend with various socket implementations.
|
Package backend provides the server backend with various socket implementations. |
closer
Emit a close function only once, also if called multiple times.
|
Emit a close function only once, also if called multiple times. |
global
Package global provides global types and constants for the backend packages.
|
Package global provides global types and constants for the backend packages. |
sockets/ajaxsocket
Package ajaxsocket provides the ajax socket implementation.
|
Package ajaxsocket provides the ajax socket implementation. |
Package log holds the log backend used by the socket library.
|
Package log holds the log backend used by the socket library. |
sample
|
|
Package utils provides utilities for the glue socket implementation.
|
Package utils provides utilities for the glue socket implementation. |