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 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
|
VSTPlugin : MultiOutUGen {
// class members
classvar <versionMajor=0;
classvar <versionMinor=6;
classvar <versionBugfix=1;
classvar pluginDict;
classvar <platformExtension;
// instance members
var <>id;
var <>info;
var <>desc;
// class methods
*initClass {
StartUp.add {
platformExtension = Platform.case(
\windows, ".dll", \osx, ".vst", \linux, ".so"
);
pluginDict = IdentityDictionary.new;
pluginDict[Server.default] = IdentityDictionary.new;
}
}
*ar { arg input, numOut=1, bypass=0, params, id, info, blockSize;
input = input.asArray;
params = params.asArray;
params.size.odd.if {
MethodError("'params' must be pairs of param index/name + value", this).throw;
};
^this.multiNewList([\audio, id, info, blockSize, bypass, input.size, numOut, params.size.div(2)] ++ input ++ params);
}
*kr { ^this.shouldNotImplement(thisMethod) }
*plugins { arg server;
server = server ?? Server.default;
^pluginDict[server];
}
*pluginList { arg server, sorted = false;
var dict = this.plugins(server);
var array = [];
dict.notNil.if {
// get list of unique plugins (which have been inserted under various keys)
array = dict.as(IdentitySet).asArray;
sorted.if {
// sort by name
array = array.sort({ arg a, b; a.name.compare(b.name, true) < 0});
}
};
^array;
}
*pluginKeys { arg server;
^this.pluginList(server).collect({ arg i; i.key });
}
*print { arg server;
// print plugins sorted by name in ascending order
// (together with path to distinguish plugins of the same name)
this.pluginList(server, true).do { arg item;
"% (%) [%]".format(item.key, item.vendor, item.path).postln; // rather print key instead of name
};
}
*clear { arg server, remove=true;
server = server ?? Server.default;
server.serverRunning.not.if {
"VSTPlugin.clear requires the Server to be running!".warn;
^this;
};
// clear local plugin dictionary
pluginDict[server] = IdentityDictionary.new;
// clear server plugin dictionary
// remove=true -> also delete temp file
server.listSendMsg(this.clearMsg(remove));
}
*clearMsg { arg remove=true;
^['/cmd', '/vst_clear', remove.asInteger];
}
*reset { arg server;
this.deprecated(thisMethod, this.class.findMethod(\clear));
this.clear(server);
}
*readCache { arg server, dir;
server = server ?? Server.default;
server.serverRunning.not.if {
"VSTPlugin.readCache requires the Server to be running!".warn;
^this;
};
server.listSendMsg(this.readCacheMsg(dir));
}
*readCacheMsg { arg dir;
^['/cmd', '/vst_cache_read', dir]
}
*search { arg server, dir, options, verbose=true, wait = -1, action;
server = server ?? Server.default;
server.serverRunning.not.if {
"VSTPlugin.search requires the Server to be running!".warn;
action.value;
^this;
};
// add dictionary if it doesn't exist yet
pluginDict[server].isNil.if { pluginDict[server] = IdentityDictionary.new };
server.isLocal.if { this.prSearchLocal(server, dir, options, verbose, action) }
{ this.prSearchRemote(server, dir, options, verbose, wait, action) };
}
*searchMsg { arg dir, options, verbose=false, dest=nil;
var flags = 0, timeout, save = true, parallel = true, exclude, cacheFileDir;
// search directories
dir.isString.if { dir = [dir] };
(dir.isNil or: dir.isArray).not.if { MethodError("bad type % for 'dir' argument!".format(dir.class), this).throw };
dir = dir.collect({ arg p; p.asString.standardizePath });
// parse options
options.notNil.if {
// make sure that options is really an dictionary!
// this helps to catch errors with existing code because
// 'useDefault' has been replaced by 'options' in VSTPlugin v0.5
options.isKindOf(IdentityDictionary).not.if {
MethodError("bad type % for 'options' argument!".format(options.class), this).throw
};
options.keysValuesDo { arg key, value;
switch(key,
\save, { save = value.asBoolean },
\parallel, { parallel = value.asBoolean },
\timeout, { timeout = value !? { value.asFloat } },
\exclude, { exclude = value },
\cacheFileDir, { cacheFileDir = value },
{ MethodError("unknown option '%'".format(key), this).throw; }
)
}
};
// exclude directories
exclude.isString.if { exclude = [exclude] };
(exclude.isNil or: exclude.isArray).not.if { MethodError("bad type % for 'exclude' argument!".format(exclude.class), this).throw };
exclude = exclude.collect({ arg p; p.asString.standardizePath });
cacheFileDir = cacheFileDir !? [cacheFileDir];
// make flag from options
flags = [verbose, save, parallel].sum { arg x, i; x.asInteger << i };
dest = this.prMakeDest(dest); // nil -> -1 = don't write results
^['/cmd', '/vst_search', flags, dest, timeout ?? 0.0, dir.size] ++ dir ++ exclude.size ++ exclude ++ cacheFileDir
}
*prSearchLocal { arg server, dir, options, verbose, action;
{
var stream, dict = pluginDict[server];
var tmpPath = this.prMakeTmpPath;
// ask VSTPlugin to store the search results in a temp file
server.listSendMsg(this.searchMsg(dir, options, verbose, tmpPath));
// wait for cmd to finish
server.sync;
// read file
try {
File.use(tmpPath, "rb", { arg file;
stream = CollStream.new(file.readAllString);
});
// done - free temp file
File.delete(tmpPath).not.if { ("Could not delete tmp file:" + tmpPath).warn };
} { "Failed to read tmp file!".error };
stream.notNil.if {
this.prParseIni(stream).do { arg info;
// store under key
this.prAddPlugin(dict, info.key, info);
};
};
action.value;
}.forkIfNeeded;
}
*prSearchRemote { arg server, dir, options, verbose, wait, action;
{
var dict = pluginDict[server];
var buf = Buffer(server); // get free Buffer
// ask VSTPlugin to store the search results in this Buffer
// (it will allocate the memory for us!)
server.listSendMsg(this.searchMsg(dir, options, verbose, buf));
// wait for cmd to finish and update buffer info
server.sync;
buf.updateInfo({
// now read data from Buffer
buf.getToFloatArray(wait: wait, timeout: 5, action: { arg array;
var string = array.collectAs({arg c; c.asInteger.asAscii}, String);
this.prParseIni(CollStream.new(string)).do { arg info;
// store under key
this.prAddPlugin(dict, info.key, info);
};
buf.free;
action.value; // done
});
});
}.forkIfNeeded;
}
*stopSearch { arg server;
server = server ?? Server.default;
server.listSendMsg(this.stopSearchMsg);
}
*stopSearchMsg {
^['/cmd', '/vst_search_stop'];
}
*prQuery { arg server, path, wait = -1, action;
var info;
// add dictionary if it doesn't exist yet
pluginDict[server].isNil.if { pluginDict[server] = IdentityDictionary.new };
// if the key already exists, return the info;
// otherwise query the plugin and store it under the given key
info = pluginDict[server][path.asSymbol];
info.notNil.if {
action.value(info);
} {
server.isLocal.if { this.prQueryLocal(server, path, action) }
{ this.prQueryRemote(server, path, wait, action) }
}
}
*prQueryMsg { arg path, dest;
^['/cmd', '/vst_query', path.asString.standardizePath, this.prMakeDest(dest)];
}
*prQueryLocal { arg server, path, action;
forkIfNeeded {
var stream, info, dict = pluginDict[server];
var tmpPath = this.prMakeTmpPath;
// ask server to write plugin info to tmp file
server.listSendMsg(this.prQueryMsg(path, tmpPath));
// wait for cmd to finish
server.sync;
// read file (only written if the plugin could be probed)
File.exists(tmpPath).if {
try {
File.use(tmpPath, "rb", { arg file;
stream = CollStream.new(file.readAllString);
});
} { "Failed to read tmp file!".error };
File.delete(tmpPath).not.if { ("Could not delete tmp file:" + tmpPath).warn };
stream.notNil.if {
info = VSTPluginDesc.prParse(stream).scanPresets;
// store under key + path
this.prAddPlugin(dict, info.key, info);
this.prAddPlugin(dict, path, info);
};
};
// done (on fail, info is nil)
action.value(info);
};
}
*prQueryRemote { arg server, path, wait, action;
forkIfNeeded {
var dict = pluginDict[server];
var buf = Buffer(server); // get free Buffer
// ask VSTPlugin to store the probe result in this Buffer
// (it will allocate the memory for us!)
server.listSendMsg(this.prQueryMsg(path, buf));
// wait for cmd to finish and update buffer info
server.sync;
buf.updateInfo({
// now read data from Buffer
buf.getToFloatArray(wait: wait, timeout: 5, action: { arg array;
var string = array.collectAs({arg c; c.asInteger.asAscii}, String);
var info;
(string.size > 0).if {
info = VSTPluginDesc.prParse(CollStream.new(string)).scanPresets;
// store under key + path
this.prAddPlugin(dict, info.key, info);
this.prAddPlugin(dict, path, info);
};
buf.free;
action.value(info); // done
});
});
}
}
*readPlugins { arg dir=nil;
var arch, cachefile, appdata, path, stream, dict = IdentityDictionary.new;
arch = switch(Platform.architecture,
\i386, \i386,
\x86_64, \amd64,
\AArch32, \arm,
\AArch64, \aarch64,
{ "unknown CPU architecture: %".format(Platform.architecture).throw }
);
cachefile = "cache_%.ini".format(arch);
dir.notNil.if {
path = dir +/+ cachefile;
} {
// <appdata>/vstplugin/sc/cache_<version_<arch>.ini
appdata = "XDG_DATA_HOME".getenv ?? { Platform.userAppSupportDir.dirname };
path = appdata +/+ "vstplugin" +/+ "sc" +/+ cachefile;
};
// read cache file
File.exists(path).not.if {
dir.notNil.if {
"Couldn't find plugin cache file in %!".format(dir).error;
} {
"Couldn't find plugin cache file! Make sure to call VSTPlugin.search at least once.".warn;
}
^dict;
};
try {
File.use(path, "rb", { arg file;
stream = CollStream.new(file.readAllString);
});
} {
"Failed to read plugin info file (%)!".format(path).error;
^dict;
};
stream.notNil.if {
this.prParseIni(stream).do { arg info;
this.prAddPlugin(dict, info.key, info);
};
};
^dict;
}
*prAddPlugin { arg dict, key, info;
key = key.asSymbol;
// we prefer non-bridged plugins, so we don't overwrite
// an existing non-bridged plugin with a new bridged plugin.
dict[key] !? {
(dict[key].bridged.not && info.bridged).if { ^this; }
};
dict[key] = info;
}
*prGetLine { arg stream, skip=false;
var pos, line;
{
pos = stream.pos;
line = stream.readUpTo($\n);
stream.pos_(pos + line.size + 1);
line ?? { ^nil }; // EOF
// skip empty lines or comments if desired
(skip && ((line.size == 0) || (line[0] == $#) || (line[0] == $;))).if { ^nil };
^line;
}.loop;
}
*prParseCount { arg line;
var onset = line.find("=");
onset ?? { Error("expecting 'n=<number>'").throw; };
^line[(onset+1)..].asInteger; // will eat whitespace and stop at newline
}
*prParseKeyValuePair { arg line;
var key, value, split = line.find("=");
split ?? { Error("expecting 'key=value'").throw; };
key = line[0..(split-1)];
split = split + 1;
(split < line.size).if {
value = line[split..];
} { value = "" };
^[key.stripWhiteSpace.asSymbol, value.stripWhiteSpace ];
}
*prParseIni { arg stream;
var line, n, indices, last = 0;
var major = 0, minor = 0, bugfix = 0;
loop {
line = this.prGetLine(stream, true);
line.isNil.if {
Error("missing [plugins] header").throw; // reached EOF!
};
// check version (optional)
(line == "[version]").if {
#major, minor, bugfix = this.prGetLine(stream).split($.).collect(_.asInteger);
// there was a breaking change between 0.4 and 0.5
// (introduction of audio input/output busses)
((major == 0) && (minor < 5)).if {
Error("The plugin cache file is incompatible with this version. Please perform a new search!").throw;
};
};
// collect plugins
(line == "[plugins]").if {
// get number of plugins
line = this.prGetLine(stream, true);
n = this.prParseCount(line);
// deserialize plugins and return!
^n.collect {
VSTPluginDesc.prParse(stream, major, minor, bugfix).scanPresets;
};
};
}
}
*prMakeTmpPath {
^PathName.tmp +/+ "vst_" ++ UniqueID.next;
}
*prMakeDest { arg dest;
// 'dest' may be a) temp file path, b) bufnum, c) Buffer, d) nil
dest !? {
(dest.isString).if {
^dest.standardizePath; // tmp file path
};
dest = dest.asUGenInput;
dest.isNumber.if { ^dest.asInteger }; // bufnum
Error("bad type '%' for 'dest' argument!".format(dest.class)).throw;
}
^-1; // invalid bufnum: don't write results
}
*initDSPThreads { arg server, numThreads;
server = server ?? Server.default;
server.serverRunning.not.if {
"VSTPlugin.initDSPThreads requires the Server to be running!".warn;
^this;
};
server.listSendMsg(this.initDSPThreadsMsg(numThreads));
}
*initDSPThreadsMsg { arg numThreads;
^['/cmd', '/vst_dsp_threads', numThreads ?? 0 ];
}
// instance methods
init { arg id, info, blockSize, bypass, numIn, numOut, numParams ... args;
var numInputs, numOutputs, pluginInputs, inputArray, outputArray, paramArray, ugenOutputs, numUgenOutputs;
// store id and info (both optional)
this.id = id !? { id.asSymbol }; // !
this.info = (info.notNil && info.isKindOf(VSTPluginDesc).not).if {
// try to get plugin from default server
VSTPlugin.plugins[info.asSymbol] ?? { MethodError("can't find plugin '%' (did you forget to call VSTPlugin.search?)".format(info), this).throw; };
} { info };
// catch bugs with existing code before v0.5 ('auxInputs' and 'numAuxOut' arguments)
(blockSize.notNil && blockSize.isNumber.not).if {
MethodError("bad value for 'blockSize': %".format(blockSize), this).throw;
};
// plugin inputs
(numIn > 0).if {
inputArray = [];
numInputs = 0;
pluginInputs = args[0..(numIn-1)];
pluginInputs[0].isKindOf(Ref).if {
// multi-bus input
// the array must contain a single array Ref!
(pluginInputs.size != 1).if { MethodError("bad input array!", this).throw };
// get Array from Ref
pluginInputs = pluginInputs[0].value;
// make flat array of bus count + bus channels
// "inputs:".postln;
pluginInputs.do { arg bus, count;
bus = bus.asArray;
inputArray = inputArray.add(bus.size);
bus.do { arg item, i;
(item.rate != \audio).if {
MethodError("input % (%) in bus % is not audio rate".format(i, item, count), this).throw;
};
inputArray = inputArray.add(item);
};
numInputs = numInputs + 1;
// "[%] %".format(count, bus).postln;
};
} {
// single-bus input
// make array of channel count + channels
(pluginInputs.size != numIn).if {
MethodError("bug: input array size mismatch!", this).throw;
};
inputArray = inputArray.add(pluginInputs.size);
pluginInputs.do { arg item, i;
(item.rate != \audio).if {
MethodError("input % (%) is not audio rate".format(i, item), this).throw;
};
inputArray = inputArray.add(item);
};
numInputs = 1;
// "inputs: %".format(pluginInputs).postln;
}
} {
// no inputs
inputArray = [];
numInputs = 0;
// "inputs: none".postln;
};
// plugin outputs
// can be a single Number or Array Ref; both are turned into an Array of channel numbers
outputArray = numOut.value.asArray.collect { arg item, i;
// check that the item is a number >= 0! 'nil' is treated as 0.
item.notNil.if {
// must be Integer!
item.isNumber.if { item.max(0).asInteger }
{ MethodError("bad value for output % (%)".format(i, item), this) }
} { 0 };
};
numOutputs = outputArray.size;
numUgenOutputs = outputArray.sum.max(1); // total number of outputs (at least 1!)
// "outputs: %".format(outputArray).postln;
// parameter controls
(numParams > 0).if {
paramArray = args[numIn..(numIn + (numParams*2) - 1)];
(paramArray.size != (numParams*2)).if { MethodError("bug: param array size mismatch!", this).throw };
};
// substitute parameter names with indices
paramArray.pairsDo { arg param, value, i;
var index;
param.isValidUGenInput.not.if {
(param.isString || param.isKindOf(Symbol)).if {
this.info ?? { MethodError("can't resolve parameter '%' without info".format(param), this).throw; };
index = this.info.findParamIndex(param.asSymbol);
index ?? { MethodError("unknown parameter '%' for plugin '%'".format(param, this.info.name), this).throw; };
paramArray[i] = index;
} {
MethodError("bad parameter index '%'".format(param), this).throw;
}
};
};
// "parameters: %".format(paramArray).postln;
// check block size type to catch possible errors with older clients (before the API break)
blockSize.isNumber.not.if { MethodError("bad value for 'blockSize' parameter", this) };
// reassemble UGen inputs (in correct order)
// first argument is 'flags'!
inputs = [0, blockSize ?? { 0 }, bypass, numInputs] ++ inputArray ++ numOutputs ++ outputArray ++ numParams ++ paramArray;
// "ugen inputs: %".format(inputs).postln;
ugenOutputs = this.initOutputs(numUgenOutputs, rate);
(numOutputs > 1).if {
// return Array of busses
^ugenOutputs.clumps(outputArray);
} { ^ugenOutputs }
}
optimizeGraph {
// This is called exactly once during SynthDef construction!
var metadata;
// For older SC versions, where metadata might be 'nil'
this.synthDef.metadata ?? { this.synthDef.metadata = () };
// Add vstplugin metadata entry if needed:
metadata = this.synthDef.metadata[\vstplugins];
metadata ?? {
metadata = ();
this.synthDef.metadata[\vstplugins] = metadata;
};
// Make plugin description and add to metadata:
this.desc = ();
this.info !? { this.desc[\key] = this.info.key };
// There can only be a single VSTPlugin without ID. In this case, the metadata will contain
// a (single) item at the pseudo key 'false', see VSTPluginController.prFindPlugins.
this.id.notNil.if {
// check for VSTPlugin without ID
metadata.at(false).notNil.if {
Error("SynthDef '%' contains multiple VSTPlugin instances - can't omit 'id' argument!".format(this.synthDef.name)).throw;
};
// check for duplicate ID
metadata.at(this.id).notNil.if {
Error("SynthDef '%' contains duplicate VSTPlugin ID '%'".format(this.synthDef.name, this.id)).throw;
};
metadata.put(this.id, this.desc);
} {
// metadata must not contain other VSTPlugins!
(metadata.size > 0).if {
Error("SynthDef '%' contains multiple VSTPlugin instances - can't omit 'id' argument!".format(this.synthDef.name)).throw;
};
metadata.put(false, this.desc);
};
}
synthIndex_ { arg index;
super.synthIndex_(index); // !
// update metadata (ignored if reconstructing from disk)
this.desc.notNil.if { this.desc.index = index; }
}
}
|