CheckBadValues should run on the first sample as well
[supercollider.git] / HelpSource / Guides / Sync-Async.schelp
blob28092603b91f83326c4da1848e3f649b2ccbaae6
1 title:: Synchronous and Asynchronous Execution
2 summary:: The problem of simultaneous synchronous and asynchronous execution
3 categories:: SC3 vs SC2
5 Using a program such as SuperCollider introduces a number of issues regarding timing and order of execution. Realtime audio synthesis requires that samples are calculated and played back at a certain rate and on a certain schedule, in order to avoid dropouts, glitches, etc. Other tasks, such as loading a sample into memory, might take arbitrary amounts of time, and may not be needed within a definite timeframe. This is the difference between synchronous and asynchronous tasks.
7 Problems can arise when synchronous tasks are dependent upon the completion of asynchronous ones. For instance trying to play a sample that may or may not have been completely loaded yet.
9 In SC2 this was relatively simple to handle. One scheduled synchronous tasks during synthesis, i.e. within the scope of a code::Synth.play::. Asynchronous tasks were executed in order, outside of synthesis. Thus one would first create buffers, load samples into them, and then start synthesis and play them back. The interpreter made sure that each step was only done when the necessary previous step had been completed.
11 In SC3 the separation of language and synth apps creates a problem: How does one side know that the other has completed necessary tasks, or in other words, how does the left hand know if the right is finished? The flexibility gained by the new architecture introduces another layer of complexity, and an additional demand on the user.
13 A simple way to deal with this is to execute code in blocks. In the following code, for instance, each block or line of code is dependent upon the previous one being completed.
15 code::
16 // Execute these one at a time
18 // Boot the local Server
20 s = Server.local;
21 s.boot;
24 // Compile a SynthDef and write it to disk
26 SynthDef("Help-SynthDef", { arg out = 0;
27          Out.ar(out, PinkNoise.ar(0.1))
28 }).writeDefFile;
31 // Load it into the server
32 s.loadSynthDef("Help-SynthDef");
33         
34 // Create a Synth with it
35 x = Synth.new("Help-SynthDef", s);
37 // Free the node on the server
38 x.free;
40 // Allow the client-side Synth object to be garbage collected
41 x = nil;
44 In the previous example it was necessary to use interpreter variables (the variables a-z, which are declared at compile time) in order to refer to previously created objects in later blocks or lines of code. If one had declared a variable within a block of code (i.e. code::var mySynth;::) than it would have only persisted within that scope. (See the helpfile link::Reference/Scope:: for more detail.)
46 This style of working, executing lines or blocks of code one at a time, can be very dynamic and flexible, and can be quite useful in a performance situation, especially when improvising. But it does raise the issues of scope and persistence. Another way around this that allows for more descriptive variable names is to use environment variables (i.e. names that begin with ~, so code::~mysynth;:: see the link::Classes/Environment:: helpfile for details). However, in both methods you become responsible for making sure that objects and nodes do not persist when you no longer need them.
48 code::
50 SynthDef("Help-SynthDef", { arg out = 0;
51         Out.ar(out, PinkNoise.ar(0.1))
52 }).send(s);
55 // make a Synth and assign it to an environment variable
56 ~mysynth = Synth.new("Help-SynthDef", s);
58 // free the synth
59 ~mysynth.free;
61 // but you've still got a Synth object
62 ~mysynth.postln;
64 // so remove it from the Environment so that the Synth will be garbage collected
65 currentEnvironment.removeAt(\mysynth);
68 But what if you want to have one block of code which contains a number of synchronous and asynchronous tasks. The following will cause an error, as the link::Classes/SynthDef:: that the server needs has not yet been received.
70 code::
71 // Doing this all at once produces the error "FAILURE /s_new SynthDef not found"
73 var name;
74 name = "Rand-SynthDef" ++ 400.0.rand; // use a random name to ensure it's not already loaded
76 SynthDef(name, { arg out=0;
77         Out.ar(out, PinkNoise.ar(0.1))
78 }).send(s);
80 Synth.new(name, s);
84 A crude solution would be to schedule the dependant code for execution after a seemingly sufficient delay using a clock.
86 code::
87 // This one works since the def gets to the server app first
89 var name;
90 name = "Rand-SynthDef" ++ 400.0.rand;
92 SynthDef(name, { arg out = 0;
93         Out.ar(out, PinkNoise.ar(0.1))
94 }).send(s);
96 SystemClock.sched(0.05, {Synth.new(name, s);}); // create a Synth after 0.05 seconds
100 Although this works, it's not very elegant or efficient. What would be better would be to have the next thing execute immediately upon the previous thing's completion. To explore this, we'll look at an example which is already implemented.
102 You may have realized that first example above was needlessly complex. SynthDef-play will do all of this compilation, sending, and Synth creation in one stroke of the enter key.
104 code::
105 // All at once
107 SynthDef("Help-SynthDef", { arg out = 0;
108         Out.ar(out, PinkNoise.ar(0.1))
109 }).play(s);
113 Let's take a look at the method definition for SynthDef-play and see what it does.
115 code::
116         play { arg target,args,addAction=\addToTail;
117                 var synth, msg;
118                 target = target.asTarget;
120                 synth = Synth.basicNew(name,target.server); // create a Synth, but not a synth node 
121                 msg = synth.newMsg(target, addAction, args);// make a message that will add a synth node 
122                 this.send(target.server, msg); // ** send the def, and the message as a completion message
123                 ^synth // return the Synth object
124         }
127 This might seem a little complicated if you're not used to mucking about in class definitions, but the important part is the second argument to code::this.send(target.server, msg);::. This argument is a completion message, it is a message that the server will execute when the send action is complete. In this case it says create a synth node on the server which corresponds to the link::Classes/Synth:: object I've already created, when and only when the def has been sent to the server app. (See the helpfile link::Reference/Server-Command-Reference:: for details on messaging.)
129 Many methods in SC have the option to include completion messages. Here we can use SynthDef-send to accomplish the same thing as SynthDef-play:
131 code::
132 // Compile, send, and start playing
134 SynthDef("Help-SynthDef", { arg out=0;
135         Out.ar(out, PinkNoise.ar(0.1))
136 }).send(s, ["s_new", "Help-SynthDef", x = s.nextNodeID]); 
137 // this is 'messaging' style, see below
139 s.sendMsg("n_free", x);
142 The completion message needs to be an OSC message, but it can also be some code which when evaluated returns one:
144 code::
145 // Interpret some code to return a completion message. The .value is needed.
146 // This and the preceding example are essentially the same as SynthDef.play
148 SynthDef("Help-SynthDef", { arg out=0;
149         Out.ar(out, PinkNoise.ar(0.1))
150 }).send(s, {x = Synth.basicNew("Help-SynthDef"); x.newMsg; }.value); // 'object' style
152 x.free;
155 If you prefer to work in 'messaging' style, this is pretty simple. If you prefer to work in 'object' style, you can use the commands like code::newMsg::, code::setMsg::, etc. with objects to create appropriate server messages. The two proceeding examples show the difference. See the link::Guides/NodeMessaging:: helpfile for more detail.
157 In the case of link::Classes/Buffer:: objects a function can be used as a completion message. It will be evaluated and passed the link::Classes/Buffer:: object as an argument. This will happen after the link::Classes/Buffer:: object is created, but before the message is sent to the server. It can also return a valid OSC message for the server to execute upon completion.
159 code::
161 SynthDef("help-Buffer",{ arg out=0, bufnum;
162         Out.ar(
163                 out,
164                 PlayBuf.ar(1,bufnum,BufRateScale.kr(bufnum))
165         )
166 }).load(s);
168 y = Synth.basicNew("help-Buffer"); // not sent yet
170 b = Buffer.read(s,"sounds/a11wlk01.wav",
171         completionMessage: { arg buffer; 
172                 // synth add its s_new msg to follow 
173                 // after the buffer read completes
174                 y.newMsg(s,\addToTail,[\bufnum,buffer])
175         } // .value NOT needed, unlike in the previous example
179 // when done...
180 y.free;
181 b.free;
184 The main purpose of completion messages is to provide OSC messages for the server to execute immediately upon completion. In the case of link::Classes/Buffer:: there is essentially no difference between the following:
186 code::
188 b = Buffer.alloc(s, 44100, 
189         completionMessage: { arg buffer; ("bufnum:" + buffer).postln; }
193 // this is equivalent to the above
195 b = Buffer.alloc;
196 ("bufnum:" + b).postln;
200 One can also evaluate a function in response to a 'done' message, or indeed any other one, using an link::Classes/OSCFunc::. See its help file for details.
202 code::
204 SynthDef("help-SendTrig",{
205         SendTrig.kr(Dust.kr(1.0), 0, 0.9);
206 }).send(s);
208 // register to receive this message
209 a = OSCFunc({ arg msg, time;
210         ("This is the done message for the SynthDef.send:" + [time, msg]).postln;
211 }, '/done', a.addr).oneShot; // remove me automatically when done
212 b = OSCFunc({ arg msg, time;
213         [time, msg].postln;
214 }, '/tr', s.addr);
215 c = OSCFunc({ arg msg;
216         "this is another call".postln;
217 }, '/tr', s.addr);
220 x = Synth.new("help-SendTrig");
221 b.free;
222 c.free;
223 x.free;