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
|
/************************************************************************
FAUST Architecture File
Copyright (C) 2016-2021 GRAME, Centre National de Creation Musicale
---------------------------------------------------------------------
This Architecture section is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 3 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; If not, see <http://www.gnu.org/licenses/>.
EXCEPTION : As a special exception, you may create a larger work
that contains this FAUST architecture section and distribute
that work under terms of your choice, so long as this FAUST
architecture section is not modified.
************************************************************************/
#include <libgen.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <thread>
#include <mutex>
#ifdef JACK
#include "faust/audio/jack-dsp.h"
#else
#include "faust/audio/coreaudio-dsp.h"
#include "faust/midi/rt-midi.h"
#include "faust/midi/RtMidi.cpp"
#endif
#include "faust/dsp/llvm-dsp.h"
#include "faust/dsp/interpreter-dsp.h"
#include "faust/dsp/dsp-adapter.h"
#include "faust/dsp/poly-dsp.h"
#include "faust/dsp/libfaust.h"
#include "faust/gui/meta.h"
#include "faust/gui/FUI.h"
#include "faust/gui/GTKUI.h"
#include "faust/gui/MidiUI.h"
#include "faust/gui/httpdUI.h"
#include "faust/gui/OSCUI.h"
#include "faust/gui/SoundUI.h"
#include "faust/misc.h"
using namespace std;
list<GUI*> GUI::fGuiList;
ztimedmap GUI::gTimedZoneMap;
static bool endWith(const string& str, const string& suffix)
{
size_t i = str.rfind(suffix);
return (i != string::npos) && (i == (str.length() - suffix.length()));
}
static void printList(const vector<string>& list)
{
for (size_t i = 0; i < list.size(); i++) {
cout << "item: " << list[i] << "\n";
}
}
static void splitTarget(const string& target, string& triple, string& cpu)
{
size_t pos1 = target.find_first_of(':');
triple = target.substr(0, pos1);
if (pos1 != string::npos) {
cpu = target.substr(pos1 + 1);
}
}
struct DynamicDSP {
bool hasCompileOption(const string& compile_options, const string& option)
{
istringstream iss(compile_options);
string token;
while (std::getline(iss, token, ' ')) {
if (token == option) return true;
}
return false;
}
dsp_factory* fFactory = nullptr;
dsp* fDSP = nullptr;
MidiUI* fMIDIInterface = nullptr;
httpdUI* fHTTPDinterface = nullptr;
GUI* fInterface = nullptr;
GUI* fOSCinterface = nullptr;
FUI* fFInterface = nullptr;
SoundUI* fSoundinterface = nullptr;
#ifdef JACK
jackaudio_midi fAudio;
#else
coreaudio fAudio;
midi_handler* fMidiHandler = nullptr;
#endif
string fRCfilename;
bool is_llvm = false;
#ifdef JACK
DynamicDSP(int argc, char* argv[], bool is_dsp_only = false)
#else
DynamicDSP(int argc, char* argv[], bool is_dsp_only = false):fAudio(44100, 512)
#endif
{
char name[256];
char filename[256];
char rcfilename[256];
char* home = getenv("HOME");
int nvoices = 0;
bool is_midi = false;
bool midi_sync = false;
string error_msg;
snprintf(name, 255, "%s", basename(argv[0]));
snprintf(filename, 255, "%s", basename(argv[argc-1]));
snprintf(rcfilename, 255, "%s/.%s-%src", home, name, filename);
fRCfilename = rcfilename;
is_llvm = isopt(argv, "-llvm");
bool is_interp = isopt(argv, "-interp");
bool is_osc = isopt(argv, "-osc");
bool is_all = isopt(argv, "-all");
bool is_generic = isopt(argv, "-generic");
bool is_httpd = isopt(argv, "-httpd");
bool is_resample = isopt(argv, "-resample");
if (isopt(argv, "-h") || isopt(argv, "-help") || (!is_llvm && !is_interp)) {
#ifdef JACK
cout << "dynamic-jack-gtk [-llvm|interp] [-edit] [-generic] [-nvoices <num>] [-all] [-midi] [-osc] [-httpd] [-resample] [additional Faust options (-vec -vs 8...)] foo.dsp/foo.fbc/foo.ll/foo.bc/foo.mc" << endl;
#else
cout << "dynamic-coreaudio-gtk [-llvm|interp] [-edit] [-generic] [-nvoices <num>] [-all] [-midi] [-osc] [-httpd] [-resample] [additional Faust options (-vec -vs 8...)] foo.dsp/foo.fbc/foo.ll/foo.bc/foo.mc" << endl;
#endif
cout << "Use '-llvm' to use LLVM backend, using either .dsp, .ll, .bc or .mc files\n";
cout << "Use '-interp' to use Interpreter backend, using either .dsp or .fbc (Faust Byte Code) files\n";
cout << "Use '-edit' to start an edit/compile/run loop, using a foo.dsp kind of source file\n";
cout << "Use '-generic' to JIT for a generic CPU (otherwise 'native' mode is used)\n";
cout << "Use '-nvoices <num>' to produce a polyphonic self-contained DSP with <num> voices, ready to be used with MIDI or OSC\n";
cout << "Use '-all' to active the 'all voices always playing' mode when polyphony is used\n";
cout << "Use '-midi' to activate MIDI control\n";
cout << "Use '-osc' to activate OSC control\n";
cout << "Use '-httpd' to activate HTTP control\n";
cout << "Use '-resample' to resample soundfiles to the audio driver sample rate\n";
exit(EXIT_FAILURE);
}
cout << "Libfaust version : " << getCLibFaustVersion() << endl;
int argc1 = 0;
const char* argv1[64];
cout << "Compiled with additional options : ";
for (int i = 1; i < argc-1; i++) {
if ((string(argv[i]) == "-llvm")
|| (string(argv[i]) == "-interp")
|| (string(argv[i]) == "-edit")
|| (string(argv[i]) == "-generic")
|| (string(argv[i]) == "-midi")
|| (string(argv[i]) == "-osc")
|| (string(argv[i]) == "-all")
|| (string(argv[i]) == "-httpd")
|| (string(argv[i]) == "-resample")) {
continue;
} else if ((string(argv[i]) == "-nvoices")
|| (string(argv[i]) == "-port")
|| (string(argv[i]) == "-outport")
|| (string(argv[i]) == "-errport")
|| (string(argv[i]) == "-desthost")
|| (string(argv[i]) == "-xmit")) {
i++;
continue;
}
argv1[argc1++] = argv[i];
cout << argv[i] << " ";
}
cout << endl;
argv1[argc1] = nullptr; // NULL terminated argv
if (is_llvm) {
string opt_target;
if (is_generic) {
string triple, cpu;
splitTarget(getDSPMachineTarget(), triple, cpu);
opt_target = triple + ":generic";
cout << "Using LLVM backend in 'generic' mode\n";
} else {
cout << "Using LLVM backend in 'native' mode\n";
}
// argc : without the filename (last element);
fFactory = createDSPFactoryFromFile(argv[argc-1], argc1, argv1, opt_target, error_msg, -1);
if (!is_dsp_only) {
if (!fFactory) {
cerr << error_msg;
cout << "Trying to use readDSPFactoryFromIRFile..." << endl;
fFactory = readDSPFactoryFromIRFile(argv[argc-1], "", error_msg, -1);
}
if (!fFactory) {
cerr << error_msg;
cout << "Trying to use readDSPFactoryFromBitcodeFile..." << endl;
fFactory = readDSPFactoryFromBitcodeFile(argv[argc-1], "", error_msg, -1);
}
if (!fFactory) {
cerr << error_msg;
cout << "Trying to use readDSPFactoryFromMachineFile..." << endl;
fFactory = readDSPFactoryFromMachineFile(argv[argc-1], "", error_msg);
}
}
} else {
cout << "Using interpreter backend" << endl;
// argc : without the filename (last element);
fFactory = createInterpreterDSPFactoryFromFile(argv[argc-1], argc1, argv1, error_msg);
if (!is_dsp_only) {
if (!fFactory) {
cerr << error_msg;
cout << "Trying to use readDSPFactoryFromBitcodeFile..." << endl;
fFactory = readInterpreterDSPFactoryFromBitcodeFile(argv[argc-1], error_msg);
}
}
}
if (!fFactory) {
cerr << error_msg;
throw bad_alloc();
}
cout << "getCompileOptions " << fFactory->getCompileOptions() << endl;
bool is_double = hasCompileOption(fFactory->getCompileOptions(), "-double");
cout << "getLibraryList" << endl;
printList(fFactory->getLibraryList());
cout << "getIncludePathnames" << endl;
printList(fFactory->getIncludePathnames());
fDSP = fFactory->createDSPInstance();
if (!fDSP) {
cerr << "Cannot create instance "<< endl;
throw bad_alloc();
}
if (is_double) {
cout << "Running in double..." << endl;
fDSP = new dsp_sample_adapter<double, float>(fDSP);
}
cout << "getName " << fFactory->getName() << endl;
cout << "getSHAKey " << fFactory->getSHAKey() << endl;
// Before reading the -nvoices and -midi parameters
MidiMeta::analyse(fDSP, is_midi, midi_sync, nvoices);
// Possibly update the state read in "options" with command line parameters
nvoices = lopt(argv, "-nvoices", nvoices);
is_midi = isopt(argv, "-midi") || is_midi;
if (nvoices > 0) {
cout << "Starting polyphonic mode 'nvoices' : " << nvoices << " and 'all' : " << is_all << endl;
fDSP = new mydsp_poly(fDSP, nvoices, !is_all, true);
}
fInterface = new GTKUI(filename, &argc, &argv);
fDSP->buildUserInterface(fInterface);
fFInterface = new FUI();
fDSP->buildUserInterface(fFInterface);
// After audio init to get SR
fSoundinterface = new SoundUI("", ((is_resample) ? fAudio.getSampleRate() : -1), nullptr, is_double);
fDSP->buildUserInterface(fSoundinterface);
if (is_httpd) {
fHTTPDinterface = new httpdUI(name, fDSP->getNumInputs(), fDSP->getNumOutputs(), argc, argv);
fDSP->buildUserInterface(fHTTPDinterface);
}
if (is_osc) {
fOSCinterface = new OSCUI(filename, argc, argv);
fDSP->buildUserInterface(fOSCinterface);
}
if (is_midi) {
#ifdef JACK
fMIDIInterface = new MidiUI(&fAudio);
#else
fMidiHandler = new rt_midi(name);
fMIDIInterface = new MidiUI(fMidiHandler);
#endif
fDSP->buildUserInterface(fMIDIInterface);
}
if (!fAudio.init(filename, fDSP)) {
throw bad_alloc();
}
// State (after UI construction)
fFInterface->recallState(rcfilename);
fAudio.start();
if (is_httpd) {
fHTTPDinterface->run();
}
if (is_osc) {
fOSCinterface->run();
}
if (is_midi) {
fMIDIInterface->run();
}
}
bool start()
{
fInterface->run();
return fInterface->stopped();
}
void stop()
{
fInterface->stop();
}
~DynamicDSP()
{
fAudio.stop();
fFInterface->saveState(fRCfilename.c_str());
delete fInterface;
delete fDSP;
delete fFInterface;
delete fMIDIInterface;
delete fHTTPDinterface;
delete fOSCinterface;
delete fSoundinterface;
if (is_llvm) {
deleteDSPFactory(static_cast<llvm_dsp_factory*>(fFactory));
} else {
deleteInterpreterDSPFactory(static_cast<interpreter_dsp_factory*>(fFactory));
}
#ifdef JACK
#else
delete fMidiHandler;
#endif
}
};
// Global context shared between 'main' and the additional thread
struct Context {
int fArgc;
char** fArgv;
string fSHAKey;
Context(int argc, char** argv):fArgc(argc), fArgv(argv) {}
};
static mutex gMutex;
static DynamicDSP* gDynamicDSP = nullptr;
// Stop the current gDynamicDSP if file content is different, the main thread will then allocate a new one
static void run(Context* context)
{
while (true) {
string sha_key = generateSHA1(pathToContent(context->fArgv[context->fArgc-1]));
if (sha_key != context->fSHAKey) {
context->fSHAKey = sha_key;
gMutex.lock();
if (gDynamicDSP) gDynamicDSP->stop();
gMutex.unlock();
}
usleep(500000);
}
}
static bool runDynamicDSP(int argc, char* argv[], bool is_dsp_only = false)
{
try {
// Allocate a new DynamicDSP and start it
gDynamicDSP = new DynamicDSP(argc, argv, is_dsp_only);
bool res = gDynamicDSP->start();
// blocking 'start' returns either because the DSP file content has changed or the window was closed by the user
gMutex.lock();
delete gDynamicDSP;
gDynamicDSP = nullptr;
gMutex.unlock();
// 'res' is true when gDynamicDSP was stopped by the additional thread
return res;
} catch (...) {
gDynamicDSP = nullptr;
return true;
}
}
int main(int argc, char* argv[])
{
if (isopt(argv, "-edit")) {
if (!endWith(argv[argc-1], ".dsp")) {
cout << "Cannot use -edit mode with '" << argv[argc-1] << "', use a foo.dsp kind of source file!" << endl;
exit(EXIT_FAILURE);
}
// Start an additional thread that continuously check if the DSP file content has changed
new thread(run, new Context(argc, argv));
// And edit/compile/run forever
while (runDynamicDSP(argc, argv, true)) {};
} else {
// Run once
runDynamicDSP(argc, argv);
}
return 0;
}
|