ThousandIsland (Thousand Island v0.4.5) View Source
Provides a high-level interface for starting and managing Thousand Island server
instances. Server instances exist as a process tree, which is usually started
by starting this module's child spec within an existing supervision tree,
or by calling start_link/1 directly.
Examples
A typical use of ThousandIsland might look like the following:
defmodule MyApp.Supervisor do
# ... other Supervisor boilerplate
def init(config) do
children = [
# ... other children as dictated by your app
{ThousandIsland, port: 1234, handler_module: MyApp.ConnectionHandler}
]
Supervisor.init(children, strategy: :one_for_one)
end
endYou can also start servers directly via the start_link/1 function:
{:ok, pid} = ThousandIsland.start_link(port: 1234, handler_module: MyApp.ConnectionHandler)Configuration
A number of options are defined when starting a server. The complete list is
defined by the t:options() type.
Logging & Telemetry
As a low-level library, Thousand Island purposely does not do any inline
logging of any kind. The ThousandIsland.Logging module defines a number of
functions to aid in tracing connections at various log levels, and such logging
can be dynamically enabled and disabled against an already running server. This
logging is backed by :telemetry events internally, and if desired these events
can also be hooked by your application for logging or metric purposes. The following is a complete list of events emitted by Thousand Island:
[:listener, :start]: Emitted when the server successfully listens on the configured port.[:listener, :error]: Emitted when the server encounters an error listening on the configured port.[:listener, :shutdown]: Emitted when the server shuts down.[:acceptor, :start]: Emitted when an acceptor process starts up.[:acceptor, :accept]: Emitted when an acceptor process accepts a new client connection.[:acceptor, :shutdown]: Emitted when an acceptor process shuts down.[:handler, :start]: Emitted whenever aThousandIsland.Handlerprocess is made ready[:handler, :async_recv]: Emitted whenever aThousandIsland.Handlerprocess receives data asynchronously[:handler, :shutdown]: Emitted whenever aThousandIsland.Handlerprocess terminates[:handler, :error]: Emitted whenever aThousandIsland.Handlerprocess shuts down due to error[:socket, :handshake]: Emitted whenever aThousandIsland.Socket.handshake/1call completes.[:socket, :handshake_error]: Emitted whenever aThousandIsland.Socket.handshake/1call errors.[:socket, :recv]: Emitted whenever aThousandIsland.Socket.recv/3call completes.[:socket, :send]: Emitted whenever aThousandIsland.Socket.send/2call completes.[:socket, :sendfile]: Emitted whenever aThousandIsland.Socket.sendfile/4call completes.[:socket, :shutdown]: Emitted whenever aThousandIsland.Socket.shutdown/2call completes.[:socket, :close]: Emitted whenever aThousandIsland.Socket.close/1call completes.
Where meaurements indicate a time duration they are are expressed in System
:native units for performance reasons. They can be conveted to any desired
time unit via System.convert_time_unit/3.
Link to this section Summary
Functions
Returns the local port number that the servrer is listening on.
Starts a ThousandIsland instance with the given options. Returns a pid
that can be used to further manipulate the server via other functions defined on
this module in the case of success, or an error tuple describing the reason the
server was unable to start in the case of failure.
Synchronously stops the given server, waiting up to the given number of milliseconds for existing connections to finish up. Immediately upon calling this function, the server stops listening for new connections, and then proceeds to wait until either all existing connections have completed or the specified timeout has elapsed.
Link to this section Types
Specs
options() :: [ handler_module: module(), handler_options: term(), port: :inet.port_number(), transport_module: module(), transport_options: keyword(), num_acceptors: pos_integer() ]
Possible options to configure a server. Valid option values are as follows:
handler_module: The name of the module used to handle connections to this server. The module is expected to implement theThousandIsland.Handlerbehaviour. Required.handler_options: A term which is passed as the initial state value toThousandIsland.Handler.handle_connection/2calls. Optional, defaulting to nil.port: The TCP port number to listen on. If not specified this defaults to 4000. If a port number of0is given, the server will dynamically assign a port number which can then be obtained vialocal_port/1.transport_module: The name of the module which provides basic socket functions. Thousand Island providesThousandIsland.Transports.TCPandThousandIsland.Transports.SSL, which provide clear and TLS encrypted TCP sockets respectively. If not specified this defaults toThousandIsland.Transports.TCP.transport_options: A keyword list of options to be passed to the transport module'sThousandIsland.Transport.listen/2function. Valid values depend on the transport module specified intransport_moduleand can be found in the documentation for theThousandIsland.Transports.TCPandThousandIsland.Transports.SSLmodules. Any options in terms of interfaces to listen to / certificates and keys to use for SSL connections will be passed in via this option.num_acceptors: The numbner of acceptor processes to run. Defaults to 10.
Link to this section Functions
Specs
local_port(pid()) :: {:ok, :inet.port_number()}
Returns the local port number that the servrer is listening on.
Specs
Starts a ThousandIsland instance with the given options. Returns a pid
that can be used to further manipulate the server via other functions defined on
this module in the case of success, or an error tuple describing the reason the
server was unable to start in the case of failure.
Specs
Synchronously stops the given server, waiting up to the given number of milliseconds for existing connections to finish up. Immediately upon calling this function, the server stops listening for new connections, and then proceeds to wait until either all existing connections have completed or the specified timeout has elapsed.