A Server object is a representation of a server application. It is used to control scsynth (or supernova) from the SuperCollider language. (See Server Guide, as well as Client vs Server for more details on the distinction.) It forwards OSC messages and has a number of allocators that keep track of IDs for nodes, buses, and buffers.
The server application represented by a Server object might be running on the same machine as the sclang, or it may be running on a remote machine.
Most of a Server's options are controlled through its instance of ServerOptions. See the ServerOptions helpfile for more detail.
A server also holds an instance of a Recorder (for recording output into a file) and a Volume (main output level).
s.boot
The server application may be in three different states: running, not running, or unresponsive (for example while loading large files from disk).
Some insights about common Server issues can be found on the FAQ Server Issues
Create a new Server instance.
name |
a symbol; each Server object is stored in one global classvariable under its name. |
addr |
an optional instance of NetAddr, providing host and port. The default is the localhost address using port 57110; the same as the local server. |
options |
an optional instance of ServerOptions. If |
clientID |
an integer. In multi-client situations, every client can be given separate ranges for Nodes, Buffers, or Busses. In normal usage, the server will supply an ID automatically when a client registers for the notifications so you should not need to supply one here. N.B. In multi-client situations, you will need to set the ServerOptions: -maxLogins to at least the number of clients you wish to allow. This must be the same in the Server instances on every client. |
Create a new Server instance corresponding to a server app running on a separate machine. This method assumes the remote app has been booted and starts listening immediately. You should not call -boot on an instance created using this method. Server Guide and Multi-client Setups contain further information on this and multiclient usage.
name |
a symbol; each Server object is stored in one global classvariable under its name. |
addr |
an optional instance of NetAddr, providing IP address of the remote machine and port the app is listening on. |
options |
an optional instance of ServerOptions. If NOTE: To enable remote connections you will need to change the option ServerOptions: -bindAddress as the default value only allows connections from the local machine. s.options.bindAddress = "0.0.0.0" will allow connections from any address. |
clientID |
an integer. In multi-client situations, every client can be given separate ranges for Nodes, Buffers, or Busses. In normal usage, the server will supply an ID automatically when a client registers for the notifications so you should not need to supply one here. N.B. In multi-client situations, you will need to set the ServerOptions: -maxLogins to at least the number of clients you wish to allow. This must be the same in the Server instances on every client. |
get/set the local server, stored in classvar local
(created already on initClass)
get/set the internal server, stored in classvar internal
(created already on initClass) See: Server Guide
Get or set the default server. By default this is the local server (see above).
Setting this will also assign it to the Interpreter variable 's'.
a Set containing all servers.
a Set containing all running servers, according to the definition of -serverRunning.
a Set containing all booted servers, according to the definition of -hasBooted.
An IdentityDictionary of all servers listed by their name
quit all registered servers
kill all the processes called "scsynth" and "supernova" in the system
free all nodes in all registered servers
try to free all nodes in all registered servers, even if the server seems not to be running
If kept true (default), when the default server is changed, also the interpreter variable s is changed.
Switches the server program to supernova. Check ParGroup how to make use of multicore hardware with the supernova server.
Switches the server program to scsynth. This is the default server.
send an OSC-message to the server.
send an OSC-bundle to the server.
Since the network may have irregular performance, time allows for the bundle to be evaluated at a specified point in the future. Thus all messages are synchronous relative to each other, but delayed by a constant offset. If such a bundle arrives late, the server replies with a late message but still evaluates it.
as sendMsg, but takes an array as argument.
as sendBundle, but takes an array as argument.
This allows you to collect messages in an array and then send them.
send a synthDef to the server that was written in a local directory
load a synthDef that resides in the remote directory
load all the SynthDefs in the directory dir.
dir |
a String which is a valid path. |
completionMsg |
get a unique nodeID.
get a permanent node ID. This node ID is in a reserved range and will be held until you explicitly free it.
free a permanent node ID for later reuse.
this can be used within a Routine to wait for a server reply
Evaluate "onComplete" as soon as the server has booted. This method will boot the server for you if it is not already running or booting. If the server is already running, "onComplete" is executed immediately.
onComplete |
A function to evaluate after the server has booted successfully. |
limit |
The number of times to check for a successful boot. (5 times/sec) |
onFailure |
A function to evaluate after the server fails to boot. If onFailure is not given, an error message is posted. Providing a function suppresses the error message. If you want to supply a function and print the normal error message, make sure that your function returns "false," e.g. |
Evaluate "onComplete" as soon as the server has booted. This method assumes the server is being booted explicitly through a separate boot
call. If the server is already running, "onComplete" is executed immediately.
onComplete |
A function to evaluate after the server has booted successfully. |
limit |
The number of times to check for a successful boot. |
onFailure |
A function to evaluate after the server fails to boot. If onFailure is not given, an error message is posted. Providing a function suppresses the error message. If you want to supply a function and print the normal error message, make sure that your function returns "false," e.g. |
boot the remote server, create new allocators.
startAliveThread |
If true, start a Routine to send a /status message to the server every so often. The interval between the messages is set by |
recover |
If true, create a new node ID allocator for the server, but use the old buffer and bus allocators. This is useful if the server process did not actually stop. In normal use, the default value "false" should be used. |
onFailure |
In this method, the onFailure argument is for internal use only. If you wish to take specific actions when the server boots or fails to boot, it is recommended to use -waitForBoot or -doWhenBooted. |
You cannot boot a server app on a remote machine, but you can initialize the allocators by calling this message.
quit the server application
onComplete |
A function that is called when quit has completed. |
onFailure |
A function that is called when quit has failed. |
watchShutDown |
a boolean to tell the server whether to watch status during shutdown. |
quit and restart the server application
func |
a function that is called between quit and (re-)boot. |
onFailure |
A function that is called when quit has failed. |
free all nodes in this server
query the server status
The server sends notifications, for example, if a node was created, a 'tr' message from a SendTrig, or a /done action. If flag
is set to false, these messages will not be sent to this client. The default is true. If true the server will respond with a clientID (scsynth only) which can be useful in multi-client situations. If this is different from any previously received ID new allocators will be created. See Local vs. Remote Servers, Multi-client Configurations for more information.
measure the time between server and client, which may vary. the func
is evaluated after n
number of times and is passed the resulting maximum.
Get or set this Server's ServerOptions object. Changes to options only take effect when the server is rebooted.
Return the default group on this Server for this client ID. This will be the same object as server.defaultGroups[server.clientID]
.
Return an array mapping client IDs to their associated default groups as Group objects.
Get an instance of Volume that runs after the default group, or sets the Volume of the Server's output to level. Level is in db.
mute the server's output. This can also be toggled from the Server window with the 'm' key.
unmute the server. This can also be toggled from the Server window with the 'm' key.
Move the nodes in nodeList
to the location specified by target
and addAction
, placing them there in the order indicated by nodeList.
Any nodes which have already been freed will be skipped. Passing nil for target and addAction will result in the location being the head of the default group.
Return a Bus object that represents the input audio bus.
Return a Bus object that represents the output audio bus.
code |
NOTE: /status messages won't be posted, when dumping is enabled |
Post a representation of this Server's current node tree to the post window. See -plotTree for a graphical variant.
Very helpful for debugging. For local servers, this uses g_dumpTree and for remote g_queryTree. See Group and Server Command Reference for more info.
Get peak and average CPU usage.
The current latency of the server. See Scheduling and Server timing for details.
An integer representing the nominal sample rate of the server; in other words, the sample rate that was requested of the server when it was booted.
A floating-point number representing the current hardware sample rate, which may drift.
Get number of running Synths.
Get the number of Groups.
Get the number of running UGens.
Get number of loaded SynthDefinitions.
Get process ID of the running server (if not internal).
The network address of the server as a NetAddr.
If known, the maximum number of clients allowed on the server. Otherwise, the value of ServerOptions: -maxLogins, which is what will be requested after the server boots. This number is not guaranteed to be correct until -serverRunning is true
.
The getter returns the client ID of this client on the remote process. nil
until the server is running.
The setter attempts to set the client ID of this client for the remote server process. Fails on invalid input or if the server is running. Valid inputs are in the range [0..(this.maxNumClients-1)]
.
Returns true if a ServerShmInterface is available. See also Bus: Synchronous control bus methods. The shared memory interface is initialized after first server boot.
true
if the server is booting, false
otherwise.
true
if the server has booted. The server is not guaranteed to have a correct clientID, nor is it guaranteed that actions in ServerTree will have run yet.
true
only if the server is fully ready. A server is fully ready once it has booted, received a reply to a /notify
command, been given a client ID, and after the ServerTree has run.
true
if the server is unresponsive (specifically, if it has failed to respond after ServerOptions: -pingsBeforeConsideredDead ping attempts); false
otherwise.
true
if the server is running on the same machine as sclang, false
otherwise.
true
if the server is not being controlled by the machine on which it is running, false
otherwise. This value is the same as isLocal
unless explicitly set.
Deprecated in 3.9. Returns false
. Server:clientID can now be set while a server is off, and is locked while the server is running. Thus, userSpecifiedClientID is no longer needed internally, and meaningless.
The server provides support for automatically bundling messages. This is quite convenient in object style and ensures synchronous execution. See also Bundled Server Messages
The Function func
is evaluated, and all OSC messages generated by it are deferred and added to a bundle.
time |
If set to nil or a number the bundle will be automatically sent and executed after the corresponding delay in seconds. If |
func |
The function to evaluate. |
bundle |
allows you to pass in a preexisting bundle and continue adding to it. |
The bundle so that it can be further used if needed.
Calling sync
inside func will split the bundle and wait for asynchronous actions to complete before continuing.
If an error is encountered while evaluating func
this method will throw an Error and stop message deferral.
Just as in makeBundle
, the Function func
is evaluated, and all OSC messages generated by it are deferred and added to a bundle, which is sent to the server, using the server default latency.
The internal server has a number of shared control buses. Their values can be set or polled using the methods below.
get the current value of a shared control bus. num is the index of the bus to poll. This command is synchronous and only works with the internal server.
set the current value of a shared control bus to value. num is the index of the bus to set. This command is synchronous and only works with the internal server.
set the number of shared control buses. Must be done before the internal server is booted. The default is 1024.
The class ServerTree can be used to store functions which will be evaluated after the server is booted, after all nodes are freed, and after cmd-. is pressed. This allows, for example, for one to create a persistent basic node structure. ServerTree is evaluated in the method initTree after the default group is created, so its existence can be relied upon.
This method initializes the Default Group and runs ServerTree.
This method is called automatically when you boot a Server from the language. N.B. If you started a server app from the command line you will have to call initTree manually if you need this functionality.
ServerBoot and ServerQuit provide similar functionality at boot and quit times.
Create and show the server window. The window responds to a number of keyboard shortcuts:
key | action |
n | Post a representation of this Server's current node tree to the post window. (See -queryAllNodes) |
N | As 'n' above but include controls. |
l | Show input/output level meters. (See -meter) |
p | Show graphical view of the node tree. (See -plotTree) |
(space) | Boot server if not already booted. (See -boot) |
s | Show scope window. (See -scope) |
f | Show frequency analyzer window. (See -freqscope) |
d | Toggle dumping of OSC messages. |
m | Toggle mute. |
0 | Reset volume to 0 db. |
On most platforms, this is equivalent to makeGui
. If you are running SuperCollider on Emacs, it makes a server view composed of Emacs widgets.
Open a scope window showing the output of the Server. see Stethoscope for further details.
numChannels |
the number of channels to be scoped out. The default is this server's options' numOutputBusChannels. |
index |
the first channel to be output. The default is 0. |
bufsize |
the size of the buffer for the ScopeView. The default is 4096. |
zoom |
a zoom value for the scope's X-axis. Larger values show more. The default is 1. |
rate |
whether to display audio or control rate buses (either \audio or \control) |
Show frequency analyzer window.
Show input/output level meters.
Plot the node/group tree graphically on a given view.
interval |
Polling interval. |
parent |
Parent view. |
actionIfFail |
Function to be evaluated in case communication with the server cannot be established. |
Function to be evaluated in order to clean up all actions performed inside the method. To be called for instance by the onClose method of the enclosing window.
The following methods are for convenience use. For recording with sample-accurate start and stop times you should make your own nodes. See the DiskOut helpfile for more info. For non-realtime recording, see the Non-Realtime Synthesis (NRT) helpfile.
This functionality is also available through the recording button on the server windows. Pressing it once calls record, and pressing it again calls stopRecording (see below). When doing so the file created will be in your recordings folder and be named for the current date and time. The default location of the recordings folder varies from platform to platform but is always stored in thisProcess.platform.recordingsDir
. Setting this variable allows you to change the default.
For more detail on this subject see Order of execution, Default Group, and Node Messaging.
See SoundFile for information on the various sample and header formats. Not all sample and header formats are compatible. Note that the sampling rate of the output file will be the same as that of the server app. This can be set using the Server's ServerOptions.
Example:
The recording is done via an of Recorder - a server holds one instance implicitly.
Allocates the necessary buffer, etc. for recording the server's output. (See record
below.)
path |
a String representing the path and name of the output file. If the directory does not exist, it will be created for you. (Note, however, that if this fails for any reason, the recording will also fail.) |
numChannels |
a String the number of output channels to record. |
If you do not specify a path than a file will be created in your recordings folder (see the note above on this) called SC_thisDateAndTime. Changes to the header or sample format, or to the number of channels must be made before calling this.
Starts or resumes recording the output.
path |
this is optional, and is passed to |
bus |
the bus to record - defaults to 0 |
numChannels |
the number of channels to record - defaults to server numChannels |
node |
the node to record - defaults to server rootnode |
duration |
duration to record - defaults to inf |
If you have not called prepareForRecord first (see above) then it will be invoked for you (but that adds a slight delay before recording starts for real).
Pauses recording. Can be resumed by executing record again.
Stops recording, closes the file, and frees the associated resources.
You must call this when finished recording or the output file will be unusable. Cmd-. while recording has the same effect.
Get/set the number of channels (int) to record. By default this is set to 2 (stereo) but can be increased to record soundfiles with many more channels. Must be called before prepareForRecord.
Get/set the header format (string) of the output file. The default is "aiff". Must be called before prepareForRecord.
Get/set the sample format (string) of the output file. The default is "float". Must be called before prepareForRecord.
Get/set the size of the Buffer to use with the DiskOut UGen. This must be a power of two. The default is the sampleRate.nextPowerOfTwo
or the first power of two number of samples longer than one second. Must be called before prepareForRecord.
The server provides support for waiting on the completion of asynchronous OSC-commands such as reading or writing sound files. N.B. The following methods must be called from within a running Routine. Explicitly passing in a Condition allows multiple elements to depend on different conditions. The examples below should make clear how all this works.
Boot the Server and wait until it has completed before resuming the thread.
condition |
an optional instance of Condition used for evaluating this. |
Send the following message to the wait until it has completed before resuming the thread.
condition |
an optional instance of Condition used for evaluating this. |
... args |
one or more valid OSC messages. |
Send a /sync
message to the server, which will reply with the message /synced
when all pending asynchronous commands have been completed.
condition |
an optional instance of Condition used for evaluating this. |
bundles |
one or more OSC messages which will be bundled before the sync message (thus ensuring that they will arrive before the /sync message). |
latency |
allows for the message to be evaluated at a specific point in the future. |
This may be slightly less safe then sendMsgSync under UDP on a wide area network, as packets may arrive out of order, but on a local network should be okay. Under TCP this should always be safe.
Scope a number of channels from a Bus on this Server, to Bela's Oscilloscope (see BelaScope for required setup). It is required that this Server is running on a Bela, and that it is thus capable of using BelaScope.
scopeChannel |
Bela's oscilloscope channel to start scoping on. This has to be a non-negative number, and can't be changed after scoping starts. |
index |
This server's bus index to scope. Defaults to 0. |
numChannels |
Number of channels to send to BelaScope, starting from the index supplied. Defaults to 2, or to ServerOptions: -numOutputBusChannels if index is 0. |
A Synth, linking this Server's desired bus channels to BelaScope's bus.