ServerOptions:
Filter:
Classes | Server

ServerOptions : Object

Encapsulates commandline and other options for a Server
Source: Server.sc
Subclasses: BelaServerOptions

Description

ServerOptions encapsulates various options for a server app within an object. This makes it convenient to launch multiple servers with the same options, or to archive different sets of options, etc. Every Server has an instance of ServerOptions created for it if one is not passed as the options argument when the Server object is created. (This is the case for example with the local and internal Servers which are created at startup.)

A Server's instance of ServerOptions is stored in its options instance variable, which can be accessed through corresponding getter and setter methods.

N.B. A ServerOptions' instance variables are translated into commandline arguments when a server app is booted. Thus a running Server must be rebooted before changes will take effect. There are also a few commandline options which are not currently encapsulated in ServerOptions. See Server Architecture for more details.

Class Methods

ServerOptions.new

Create and return a new instance of ServerOptions.

ServerOptions.devices

Return an Array of Strings listing the audio devices currently available on the system.

ServerOptions.inDevices

Return an Array of Strings listing the audio devices currently available on the system which have input channels.

ServerOptions.outDevices

Return an Array of Strings listing the audio devices currently available on the system which have output channels.

NOTE: The above three methods are not available if SuperCollider is built with JACK backend (by default on Linux). Also see Audio device selection for more information on selecting audio device.

Inherited class methods

Undocumented class methods

ServerOptions.defaultValues

Instance Methods

The Options

.blockSize

.blockSize = value

The number of samples in one control period. The default is 64.

.device

.device = dev

A String that allows you to choose a sound device to use as input and output. The default, nil, will use the system's default input and output device(s). See Audio device selection for more details.

.inDevice

.inDevice = value

A String that allows you to choose an input sound device. The default, nil, will use the system's default input device. See Audio device selection for more details.

.outDevice

.outDevice = value

A String that allows you to choose an output sound device. The default, nil, will use the system's default output device. See Audio device selection for more details.

.hardwareBufferSize

.hardwareBufferSize = value

The preferred hardware buffer size. If non-nil the server app will attempt to set the hardware buffer frame size. Not all sizes are valid. See the documentation of your audio hardware for details. Default value is nil.

.initialNodeID

.initialNodeID = value

By default, the Server object in the client begins allocating node IDs at 1000, reserving 0-999 for "permanent" nodes. You may change this default here.

.inputStreamsEnabled

.inputStreamsEnabled = value

A String which allows turning off input streams that you are not interested in on the audio device. If the string is "01100", for example, then only the second and third input streams on the device will be enabled. Turning off streams can reduce CPU load. The default value is nil.

.loadDefs

.loadDefs = value

A Boolean indicating whether or not to load the synth definitions in synthdefs/ (or anywhere set in the environment variable SC_SYNTHDEF_PATH) at startup. The default is true.

.maxNodes

.maxNodes = value

The maximum number of nodes. The default is 1024.

.maxSynthDefs

.maxSynthDefs = value

The maximum number of synthdefs. The default is 1024.

.memSize

.memSize = value

The number of kilobytes of real time memory allocated to the server. This memory is used to allocate synths and any memory that unit generators themselves allocate (for instance in the case of delay ugens which do not use buffers, such as CombN), and is separate from the memory used for buffers. Setting this too low is a common cause of 'exception in real time: alloc failed' errors. The default is 8192.

.numAudioBusChannels

.numAudioBusChannels = numChannels: 1024

The number of audio rate busses, which includes input and output busses. The default is 1024.

.numBuffers

.numBuffers = value

The number of global sample buffers available. (See Buffer.) The default is 1024.

.numControlBusChannels

.numControlBusChannels = value

The number of internal control rate busses. The default is 16384.

.numInputBusChannels

.numInputBusChannels = numChannels: 2

The number of audio input bus channels. This need not correspond to the number of hardware inputs. The default is 2.

.numOutputBusChannels

.numOutputBusChannels = numChannels: 2

The number of audio output bus channels. This need not correspond to the number of hardware outputs (this can be useful for instance in the case of recording). The default is 2.

.numRGens

.numRGens = value

The number of seedable random number generators. The default is 64.

.numWireBufs

.numWireBufs = value

The maximum number of buffers that are allocated to interconnect unit generators. (Not to be confused with the global sample buffers represented by Buffer.) This sets the limit of complexity of SynthDefs that can be loaded at runtime. This value will be automatically increased if a more complex def is loaded at startup, but it cannot be increased thereafter without rebooting. The default is 64.

.outputStreamsEnabled

.outputStreamsEnabled = value

A String which allows turning off output streams that you are not interested in on the audio device. If the string is "11000", for example, then only the first two output streams on the device will be enabled. Turning off streams can reduce CPU load.

.protocol

.protocol = value

A Symbol representing the communications protocol. Either \udp or \tcp. The default is \udp.

.bindAddress

.bindAddress = value

The IP address that the server's TCP or UDP socket is listening on. The default value is "127.0.0.1", meaning only listen to OSC messages on the host.

WARNING: Until SuperCollider 3.10.3, this was set to "0.0.0.0" (listen on all network interfaces). However, this is a dangerous default configuration — for most users working on laptops connected to WiFi, this means that anyone on your local network can send OSC messages to the server. "0.0.0.0" is only useful if you are running networked server/client, and only safe if your networking is properly configured.

Before SuperCollider 3.12 supernova listened to all network interfaces and ignored the bindAddress option. In later versions the behavior is identical to scsynth.

.remoteControlVolume

.remoteControlVolume = value

A Boolean indicating whether this server should allow its volume to be set remotely. The default value is false.

.sampleRate

.sampleRate = value

The preferred sample rate. If non-nil the server app will attempt to set the sample rate of the hardware. The hardware has to support the sample rate that you choose.

NOTE: On Windows, leaving the sampleRate as nil for an ASIO device will likely result in setting the hardware to run at 44100 Hz.

.verbosity

.verbosity = value

Controls the verbosity of server messages. A value of 0 is normal behaviour. -1 suppresses informational messages. -2 suppresses informational and many error messages, as well as messages from Poll. The default is 0.

.zeroConf

.zeroConf = value

A Boolean indication whether or not the server should publish its port using zero configuration networking, to facilitate network interaction. This is true by default; if you find unacceptable delays (beachballing) upon server boot, you can try setting this to false.

.ugenPluginsPath

.ugenPluginsPath = value

A path or an Array of paths. If non-nil, the standard paths are NOT searched for plugins. This corresponds with the option "-U".

.restrictedPath

.restrictedPath = value

Allows you to restrict the system paths in which the server is allowed to read/write files during running. A nil value (the default) means no restriction. Otherwise, set it as a string representing a single path.

.threads

.threads = value

Number of audio threads that are spawned by supernova. For scsynth this value is ignored. If it is nilor 0, it uses the one thread per CPU. Default is nil.

.useSystemClock

.useSystemClock = value

Tells supernova whether to sync to the driver's sample clock, or to the system clock.

NOTE: scsynth always uses system clock and this value is ignored.

.memoryLocking

.memoryLocking = value

A Boolean indicating whether the server should try to lock its memory into physical RAM. Default is false.

.maxLogins

.maxLogins = value

An Integer indicating the maximum number of clients which can simultaneously receive notifications from the server. When using TCP this is also the maximum number of simultaneous connections. This is also used by the language to split ranges of Nodes, Buffers, or Busses. In multi-client situations you will need to set this to at least the number of clients you wish to allow. This must be the same in the Server instances on every client. The default is 1.

.safetyClipThreshold

.safetyClipThreshold = value

NOTE: MacOS only

A Float indicating a safety threshold for output values to be clipped to. This is necessary on macOS because setting a low system volume doesn't prevent output values greater than +/- 1 from sounding extremely loud, which can happen by mistake, e.g. when sending a negative coefficient to a filter. With this threshold, values are clipped just before being written to hardware output busses, which does not affect the recording. However, the signal will be affected if it's above the threshold and the sound is routed to other apps using 3rd-party software. Defaults to a threshold of 1.26 (ca. 2 dB), to save some ears and still allow some headroom. Setting safetyClipThreshold to inf, 0, or a negative value, disables clipping altogether.

Other Instance Methods

.asOptionsString(port: 57110)

Arguments:

port

The port number for the resulting server app. Default value is 57110.

Returns:

a String specifying the options in the format required by the command-line server app (scsynth or supernova).

.firstPrivateBus

Returns:

the index of the first audio bus on this server which is not used by the input and output hardware.

.pingsBeforeConsideredDead

.pingsBeforeConsideredDead = value

Number of failed pings (attempts to contact server process) before server is considered dead. Default value is 5.

Inherited instance methods

Undocumented instance methods

.bootInProcess

.numPrivateAudioBusChannels

.numPrivateAudioBusChannels = numChannels: 1020

.recBufSize

.recBufSize = value

.recChannels

.recChannels = value

.recHeaderFormat

.recHeaderFormat = value

.recSampleFormat

.recSampleFormat = value

.recalcChannels

.reservedNumAudioBusChannels

.reservedNumAudioBusChannels = value

.reservedNumBuffers

.reservedNumBuffers = value

.reservedNumControlBusChannels

.reservedNumControlBusChannels = value

Examples