-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathSuperColliderJS.sc
388 lines (358 loc) · 8.68 KB
/
SuperColliderJS.sc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
SuperColliderJS {
classvar tab, nl, jsonEncoders, errorEncoders, <>sclangConf;
*interpret { arg guid,
escapedCode,
executingPath,
returnResultAsString=true,
reportError=true,
getBacktrace=false;
var code = escapedCode.replace("__NL__", Char.nl.as(String)),
compiled,
result,
error,
saveExecutingPath = thisProcess.nowExecutingPath;
code = code.replace("__SLASH__", ($\\).as(String));
thisProcess.nowExecutingPath = executingPath;
// capture compile errors, stdout
"\nSUPERCOLLIDERJS:%:CAPTURE:START\n".format(guid).postln;
compiled = code.compile;
if(compiled.isNil, {
"\nSUPERCOLLIDERJS:%:CAPTURE:END".format(guid).postln;
this.return(guid, "SyntaxError", nil);
}, {
{
result = compiled.value();
}.try({ arg err;
err.path = executingPath ? guid;
error = this.encodeError(err, getBacktrace, compiled);
// classic mode
if(reportError.asBoolean, {
err.reportError;
});
});
"\nSUPERCOLLIDERJS:%:CAPTURE:END".format(guid).postln;
if(error.notNil, {
this.return(guid, "Error", error);
}, {
this.return(guid, "Result", if(returnResultAsString ? true, { result.asString }, { result }));
});
});
thisProcess.nowExecutingPath = saveExecutingPath;
"SUPERCOLLIDERJS.interpreted".postln;
^""
}
*return { arg guid, type, object;
// post object as JSON to STDOUT
var json = this.stringify(object);
"\nSUPERCOLLIDERJS:%:START:%".format(guid, type).postln;
// sclang screws up when posting long lines in a single chunk
json.clump(2048).do { arg chunk;
"SUPERCOLLIDERJS:%:CHUNK:%".format(guid, chunk).postln;
};
"SUPERCOLLIDERJS:%:END:%".format(guid, type).postln;
}
*executeFile { arg guid, path;
var compiled, result, error, saveExecutingPath;
saveExecutingPath = thisProcess.nowExecutingPath;
thisProcess.nowExecutingPath = path;
// capture compile errors, stdout
"\nSUPERCOLLIDERJS:%:CAPTURE:START\n".format(guid).postln;
compiled = thisProcess.interpreter.compileFile(path);
if(compiled.isNil, {
"\nSUPERCOLLIDERJS:%:CAPTURE:END".format(guid).postln;
this.return(guid, "SyntaxError", nil);
}, {
{
result = compiled.value();
}.try({ arg err;
err.path = path;
error = this.encodeError(err, true, compiled);
});
"\nSUPERCOLLIDERJS:%:CAPTURE:END".format(guid).postln;
if(error.notNil, {
this.return(guid, "Error", error);
}, {
this.return(guid, "Result", result);
});
});
thisProcess.nowExecutingPath = saveExecutingPath;
"SUPERCOLLIDERJS.interpreted".postln;
}
/****************** JSON encoding *****************************************/
*encodeError { arg err, getBacktrace=false, compiledFunc;
var data = ();
err.class.superclassesDo({ arg class;
var handler = errorEncoders.at(class.name);
if(handler.notNil, {
data.putAll(handler.value(err));
});
});
if(getBacktrace, {
data['backtrace'] = this.getBacktrace(err, compiledFunc);
});
^data
}
*encodeObject { arg obj, deep=false;
var dd, asString, class = obj.class;
if(class.class === Class or: {class === Main}, {
deep = false;
});
if(class === String or: (class === Symbol), {
asString = obj.asCompileString;
}, {
{
asString = obj.asString;
}.try({
asString = "(asString error)";
});
});
dd = (
class: obj.class,
asString: asString
);
if(class === Function, {
dd.sourceCode = obj.def.sourceCode
});
if(deep, {
dd.vars = (obj.class.instVarNames ? []).collect({ arg v, i;
(
name: v,
value: this.encodeObject(obj.instVarAt(i), false)
)
});
});
^dd
}
*frameContext { arg frame;
// 'context' points to another DebugFrame for the frame lexically enclosing this one.
// This searches up the context chain for the enclosing method
// where the function was defined.
var def;
if(frame.isNil, {
nil
}, {
def = frame.functionDef;
if(def.class === Method, {
if(def.ownerClass === Interpreter, {
nil
}, {
(
class: def.ownerClass,
method: def.name,
file: def.filenameSymbol,
charPos: def.charPos,
source: def.sourceCode
)
});
}, {
if(frame.context.isNil, {
nil
}, {
this.frameContext(frame.context);
})
})
});
}
*getBacktrace { arg err, compiledFunc;
var out, currentFrame, def, ownerClass, methodName, callerAddress,
startAtDef, stopAtDef, addingFrame = false;
out = [];
currentFrame = err.protectedBacktrace ?? { err.getBackTrace };
// 'caller' points to another DebugFrame for the caller to this function.
callerAddress = { arg caller;
caller !? { caller.address.asString }
};
// the source code to interpret compiled to a function
if(compiledFunc.notNil, {
stopAtDef = compiledFunc.def;
/*}, {
// out of band thrown Error
startAtDef = Object.findMethod('throw');*/
});
while({
currentFrame.notNil and: {
currentFrame.functionDef !== stopAtDef
}
}, {
var vv;
def = currentFrame.functionDef;
if(def.isKindOf(Method), {
ownerClass = def.ownerClass;
methodName = def.name;
vv = (
type: "Method",
class: ownerClass,
method: methodName,
file: def.filenameSymbol,
charPos: def.charPos,
source: def.sourceCode,
address: currentFrame.address.asString,
caller: callerAddress.(currentFrame.caller)
);
}, {
vv = (
type: "Function",
address: currentFrame.address.asString,
source: def.sourceCode,
caller: callerAddress.value(currentFrame.caller),
// maybe indicate if its an inner function
context: this.frameContext(currentFrame.context)
);
});
vv[\args] = def.argNames.collect({ |name, i|
(
name: name,
value: this.encodeObject(currentFrame.args[i], true)
)
});
vv[\vars] = def.varNames.collect({ |name, i|
(
name: name,
value: this.encodeObject(currentFrame.vars[i], true)
)
});
out = out.add(vv);
currentFrame = currentFrame.caller;
});
^out
}
*isInitialized {
^errorEncoders.notNil
}
*initClass {
tab = [$\\,$\\,$t].as(String);
nl = [$\\,$\\,$n].as(String);
errorEncoders = (
Exception: { arg err;
(
class: err.class,
what: err.what,
path: err.path,
errorString: err.errorString
)
},
MethodError: { arg err;
(
receiver: this.encodeObject(err.receiver)
)
},
PrimitiveFailedError: { arg err;
(
failedPrimitiveName: err.failedPrimitiveName
)
},
SubclassResponsibilityError: { arg err;
(
method: (
name: err.method.name,
class: err.class
)
)
},
ShouldNotImplementError: { arg err;
(
method: (
name: err.method.name,
class: err.class
)
)
},
DoesNotUnderstandError: { arg err;
(
selector: err.selector,
args: err.args.collect({ arg a; this.encodeObject(a) })
)
},
OutOfContextReturnError: { arg err;
(
method: (
name: err.method.name,
class: err.method.ownerClass
),
result: this.encodeObject(err.result)
)
},
ImmutableError: { arg err;
(
value: this.encodeObject(err.value)
)
},
DeprecatedError: { arg err;
(
method: (
name: err.method.name,
class: err.method.ownerClass
),
alternateMethod: (
name: err.alternateMethod.name,
class: err.alternateMethod.ownerClass
)
)
}
);
jsonEncoders = (
Object: { arg data;
this.stringify((
class: data.class,
string: data.asString,
compileString: data.asCompileString
))
// could also use data.storeArgs and get the arg names from *new
},
String: { arg obj;
obj.asCompileString.reject(_.isControl).replace(Char.nl.as(String), nl).replace(Char.tab.as(String), tab);
},
Symbol: { arg obj;
this.stringify(obj.asString);
},
Class: { arg obj;
this.stringify(obj.name.asString);
},
Dictionary: { arg obj;
var out = List.new;
obj.keysValuesDo({ arg key, value;
out.add(key.asString.asCompileString ++ ":" + this.stringify(value));
});
("{" ++ (out.join(",")) ++ "}");
},
Nil: { arg obj;
"null"
},
True: { arg obj;
"true"
},
False: { arg obj;
"false"
},
Number: { arg obj;
if(obj.isNaN, {
"\"NaN\""
}, {
if(obj === inf, {
"\"Infinity\""
}, {
if(obj === (-inf), {
"\"-Infinity\""
}, {
// as full precision please
obj.asString
});
});
});
},
SequenceableCollection: { arg obj;
"[" ++ obj.collect({ arg sub;
this.stringify(sub)
}).join(",") ++ "]";
}
);
}
*stringify { arg object;
^this.encoderFor(object.class).value(object);
}
*encoderFor { arg class;
^jsonEncoders.at(class.name) ?? {
this.encoderFor(class.superclass)
};
}
}