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
|
/************************************************************************
************************************************************************
FAUST compiler
Copyright (C) 2003-2018 GRAME, Centre National de Creation Musicale
---------------------------------------------------------------------
This program 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 2 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, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
************************************************************************
************************************************************************/
#include "interpreter_dsp_aux.hh"
#include "compatibility.hh"
#include "libfaust.h"
using namespace std;
#ifdef MACHINE
void faustassertaux(bool cond, const string& file, int line)
{
if (!cond) {
stringstream str;
str << "ASSERT : please report this message, the stack trace, and the failing DSP file to Faust developers (";
str << "file: " << file.substr(file.find_last_of('/') + 1) << ", line: " << line << ", ";
str << "version: " << FAUSTVERSION;
str << ")\n";
stacktrace(str, 20);
throw faustexception(str.str());
}
}
#endif
dsp_factory_table<SDsp_factory> gInterpreterFactoryTable;
// External API
EXPORT interpreter_dsp_factory* getInterpreterDSPFactoryFromSHAKey(const string& sha_key)
{
return static_cast<interpreter_dsp_factory*>(gInterpreterFactoryTable.getDSPFactoryFromSHAKey(sha_key));
}
EXPORT bool deleteInterpreterDSPFactory(interpreter_dsp_factory* factory)
{
return (factory) ? gInterpreterFactoryTable.deleteDSPFactory(factory) : false;
}
EXPORT vector<string> getInterpreterDSPFactoryLibraryList(interpreter_dsp_factory* factory)
{
// TODO
vector<string> res;
return res;
}
EXPORT vector<string> getAllInterpreterDSPFactories()
{
return gInterpreterFactoryTable.getAllDSPFactories();
}
EXPORT void deleteAllInterpreterDSPFactories()
{
gInterpreterFactoryTable.deleteAllDSPFactories();
}
EXPORT interpreter_dsp::~interpreter_dsp()
{
gInterpreterFactoryTable.removeDSP(fFactory, this);
if (fFactory->getMemoryManager()) {
fDSP->~interpreter_dsp_base();
fFactory->getMemoryManager()->destroy(fDSP);
} else {
delete fDSP;
}
}
EXPORT interpreter_dsp* interpreter_dsp_factory::createDSPInstance()
{
dsp* dsp = fFactory->createDSPInstance(this);
gInterpreterFactoryTable.addDSP(this, dsp);
return static_cast<interpreter_dsp*>(dsp);
}
// Use the memory manager if needed
EXPORT void interpreter_dsp::operator delete(void* ptr)
{
if (ptr) {
dsp_memory_manager* manager = static_cast<interpreter_dsp*>(ptr)->fFactory->getMemoryManager();
if (manager) {
manager->destroy(ptr);
} else {
::operator delete(ptr);
}
}
}
// Read/write
static string read_real_type(istream* in)
{
string type_line;
getline(*in, type_line);
stringstream type_reader(type_line);
string dummy, type;
type_reader >> dummy; // Read "interpreter_dsp_factory" token
type_reader >> type;
return type;
}
static interpreter_dsp_factory* readInterpreterDSPFactoryFromBitcodeAux(const string& bitcode, string& error_msg)
{
try {
dsp_factory_table<SDsp_factory>::factory_iterator it;
string sha_key = generateSHA1(bitcode);
if (gInterpreterFactoryTable.getFactory(sha_key, it)) {
SDsp_factory sfactory = (*it).first;
sfactory->addReference();
return sfactory;
} else {
interpreter_dsp_factory* factory = nullptr;
stringstream reader(bitcode);
string type = read_real_type(&reader);
if (type == "float") {
factory = new interpreter_dsp_factory(interpreter_dsp_factory_aux<float, 0>::read(&reader));
} else if (type == "double") {
factory = new interpreter_dsp_factory(interpreter_dsp_factory_aux<double, 0>::read(&reader));
} else {
throw faustexception("ERROR : unrecognized file format\n");
}
gInterpreterFactoryTable.setFactory(factory);
factory->setSHAKey(sha_key);
factory->setDSPCode(bitcode);
return factory;
}
} catch (faustexception& e) {
error_msg = e.Message();
return nullptr;
}
}
EXPORT interpreter_dsp_factory* readInterpreterDSPFactoryFromBitcode(const string& bitcode, string& error_msg)
{
return readInterpreterDSPFactoryFromBitcodeAux(bitcode, error_msg);
}
EXPORT string writeInterpreterDSPFactoryToBitcode(interpreter_dsp_factory* factory)
{
stringstream writer;
factory->write(&writer, true);
return writer.str();
}
EXPORT interpreter_dsp_factory* readInterpreterDSPFactoryFromBitcodeFile(const string& bitcode_path, string& error_msg)
{
string base = basename((char*)bitcode_path.c_str());
size_t pos = bitcode_path.find(".fbc");
if (pos != string::npos) {
ifstream reader(bitcode_path.c_str());
if (reader.is_open()) {
string bitcode(istreambuf_iterator<char>(reader), {});
return readInterpreterDSPFactoryFromBitcodeAux(bitcode, error_msg);
} else {
error_msg = "ERROR opening file '" + bitcode_path + "'\n";
return nullptr;
}
} else {
error_msg = "ERROR : file Extension is not the one expected (.fbc expected)\n";
return nullptr;
}
}
EXPORT void writeInterpreterDSPFactoryToBitcodeFile(interpreter_dsp_factory* factory, const string& bitcode_path)
{
ofstream writer(bitcode_path.c_str());
factory->write(&writer, true);
}
EXPORT void interpreter_dsp::metadata(Meta* meta)
{
fDSP->metadata(meta);
}
EXPORT interpreter_dsp* interpreter_dsp::clone()
{
return fFactory->createDSPInstance();
}
EXPORT int interpreter_dsp::getSampleRate()
{
return fDSP->getSampleRate();
}
EXPORT int interpreter_dsp::getNumInputs()
{
return fDSP->getNumInputs();
}
int EXPORT interpreter_dsp::getNumOutputs()
{
return fDSP->getNumOutputs();
}
EXPORT void interpreter_dsp::init(int samplingRate)
{
fDSP->init(samplingRate);
}
EXPORT void interpreter_dsp::instanceInit(int samplingRate)
{
fDSP->instanceInit(samplingRate);
}
EXPORT void interpreter_dsp::instanceConstants(int samplingRate)
{
fDSP->instanceConstants(samplingRate);
}
EXPORT void interpreter_dsp::instanceResetUserInterface()
{
fDSP->instanceResetUserInterface();
}
EXPORT void interpreter_dsp::instanceClear()
{
fDSP->instanceClear();
}
EXPORT void interpreter_dsp::buildUserInterface(UI* ui_interface)
{
UITemplate glue(ui_interface);
fDSP->buildUserInterface(&glue);
}
EXPORT void interpreter_dsp::compute(int count, FAUSTFLOAT** input, FAUSTFLOAT** output)
{
fDSP->compute(count, input, output);
}
|