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
|
/************************************************************************
************************************************************************
FAUST compiler
Copyright (C) 2003-2004 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.
************************************************************************
************************************************************************/
#define FAUSTVERSION "0.9.9.4"
#include <stdio.h>
#include <string.h>
//#include <unistd.h>
#include <assert.h>
#include "signals.hh"
#include "sigtype.hh"
#include "sigtyperules.hh"
#include "sigprint.hh"
#include "simplify.hh"
#include "privatise.hh"
#include "compile_scal.hh"
#include "compile_vect.hh"
#include "propagate.hh"
#include "errormsg.hh"
#include "ppbox.hh"
#include "enrobage.hh"
#include "eval.hh"
#include "description.hh"
#include <map>
#include <string>
#include <vector>
#include <iostream>
#include <fstream>
#include <sstream>
#include "sourcereader.hh"
// construction des representations graphiques
#include "schema.h"
#include "drawschema.hh"
using namespace std ;
/****************************************************************
Parser variables
*****************************************************************/
int yyparse();
int yyerr;
extern int yydebug;
extern FILE* yyin;
Tree gResult;
Tree gResult2;
SourceReader gReader;
map<Tree, set<Tree> > gMetaDataSet;
/****************************************************************
Command line tools and arguments
*****************************************************************/
//-- command line arguments
bool gHelpSwitch = false;
bool gVersionSwitch = false;
bool gDetailsSwitch = false;
bool gVectorSwitch = false;
bool gDrawPSSwitch = false;
bool gDrawSVGSwitch = false;
bool gPrintXMLSwitch = false;
int gBalancedSwitch = 0;
int gFoldThreshold = 25;
int gMaxNameSize = 40;
bool gSimpleNames = false;
bool gLessTempSwitch = false;
int gMaxCopyDelay = 16;
string gArchFile;
string gOutputFile;
list<string> gInputFiles;
bool gPatternEvalMode = false;
//-- command line tools
static bool isCmd(const char* cmd, const char* kw1)
{
return (strcmp(cmd, kw1) == 0);
}
static bool isCmd(const char* cmd, const char* kw1, const char* kw2)
{
return (strcmp(cmd, kw1) == 0) || (strcmp(cmd, kw2) == 0);
}
bool process_cmdline(int argc, char* argv[])
{
int i=1; int err=0;
while (i<argc) {
if (isCmd(argv[i], "-h", "--help")) {
gHelpSwitch = true;
i += 1;
} else if (isCmd(argv[i], "-v", "--version")) {
gVersionSwitch = true;
i += 1;
} else if (isCmd(argv[i], "-d", "--details")) {
gDetailsSwitch = true;
i += 1;
} else if (isCmd(argv[i], "-a", "--architecture")) {
gArchFile = argv[i+1];
i += 2;
} else if (isCmd(argv[i], "-o")) {
gOutputFile = argv[i+1];
i += 2;
} else if (isCmd(argv[i], "-vec", "--vectorize")) {
gVectorSwitch = true;
i += 1;
} else if (isCmd(argv[i], "-ps", "--postscript")) {
gDrawPSSwitch = true;
i += 1;
} else if (isCmd(argv[i], "-xml", "--xml")) {
gPrintXMLSwitch = true;
i += 1;
} else if (isCmd(argv[i], "-svg", "--svg")) {
gDrawSVGSwitch = true;
i += 1;
} else if (isCmd(argv[i], "-f", "--fold")) {
gFoldThreshold = atoi(argv[i+1]);
i += 2;
} else if (isCmd(argv[i], "-mns", "--max-name-size")) {
gMaxNameSize = atoi(argv[i+1]);
i += 2;
} else if (isCmd(argv[i], "-sn", "--simple-names")) {
gSimpleNames = true;
i += 1;
} else if (isCmd(argv[i], "-lb", "--left-balanced")) {
gBalancedSwitch = 0;
i += 1;
} else if (isCmd(argv[i], "-mb", "--mid-balanced")) {
gBalancedSwitch = 1;
i += 1;
} else if (isCmd(argv[i], "-rb", "--right-balanced")) {
gBalancedSwitch = 2;
i += 1;
} else if (isCmd(argv[i], "-lt", "--less-temporaries")) {
gLessTempSwitch = true;
i += 1;
} else if (isCmd(argv[i], "-mcd", "--max-copy-delay")) {
gMaxCopyDelay = atoi(argv[i+1]);
i += 2;
} else if (argv[i][0] != '-') {
if (check_file(argv[i])) {
gInputFiles.push_back(argv[i]);
}
i++;
} else {
cerr << "faust: unrecognized option \"" << argv[i] <<"\"" << endl;
i++;
err++;
}
}
return err == 0;
}
/****************************************************************
Help and Version information
*****************************************************************/
void printversion()
{
cout << "FAUST, DSP to C++ compiler, Version " << FAUSTVERSION << "\n";
cout << "Copyright (C) 2002-2008, GRAME - Centre National de Creation Musicale. All rights reserved. \n\n";
}
void printhelp()
{
printversion();
cout << "usage: faust [options] file1 [file2 ...]\n";
cout << "\twhere options represent zero or more compiler options \n\tand fileN represents a faust source file (.dsp extension).\n";
cout << "\noptions :\n";
cout << "---------\n";
cout << "-h \t\tprint this --help message\n";
cout << "-v \t\tprint compiler --version information\n";
cout << "-d \t\tprint compilation --details\n";
cout << "-ps \t\tprint block-diagram --postscript file\n";
cout << "-svg \t\tprint block-diagram --svg file\n";
cout << "-f <n> \t\t--fold <n> threshold during block-diagram generation (default 25 elements) \n";
cout << "-mns <n> \t--max-name-size <n> threshold during block-diagram generation (default 40 char)\n";
cout << "-sn \t\tuse --simple-names (without arguments) during block-diagram generation\n";
cout << "-xml \t\tgenerate an --xml description file\n";
cout << "-lb \t\tgenerate --left-balanced expressions\n";
cout << "-mb \t\tgenerate --mid-balanced expressions (default)\n";
cout << "-rb \t\tgenerate --right-balanced expressions\n";
cout << "-lt \t\tgenerate --less-temporaries in compiling delays\n";
cout << "-mcd <n> \t--max-copy-delay <n> threshold between copy and ring buffer implementation (default 16 samples)\n";
cout << "-a <file> \tC++ wrapper file\n";
cout << "-o <file> \tC++ output file\n";
cout << "\nexample :\n";
cout << "---------\n";
cout << "faust -a jack-gtk.cpp -o myfx.cpp myfx.dsp\n";
}
void printheader(ostream& dst)
{
Tree author = tree("author");
dst << "//-----------------------------------------------------" << endl;
for (map<Tree, set<Tree> >::iterator i = gMetaDataSet.begin(); i != gMetaDataSet.end(); i++) {
dst << "// " << *(i->first) << " : ";
if (i->first != author) {
dst << **(i->second.begin());
} else {
for (set<Tree>::iterator j = i->second.begin(); j != i->second.end(); j++) {
if (j != i->second.begin()) { dst << endl << "// contributors : "; }
dst << **j << " ";
}
}
dst << endl;
}
dst << "//" << endl;
dst << "// Code generated with Faust " << FAUSTVERSION << " (http://faust.grame.fr)" << endl;
dst << "//-----------------------------------------------------" << endl;
}
/****************************************************************
MAIN
*****************************************************************/
int main (int argc, char* argv[])
{
/****************************************************************
1 - process command line
*****************************************************************/
process_cmdline(argc, argv);
if (gHelpSwitch) { printhelp(); exit(0); }
if (gVersionSwitch) { printversion(); exit(0); }
/****************************************************************
2 - parse source files
*****************************************************************/
list<string>::iterator s;
gResult2 = nil;
yyerr = 0;
string masterFilename = "unknow";
if (gInputFiles.begin() == gInputFiles.end()) {
cerr << "ERROR: no files specified; for help type \"faust --help\"" << endl;
exit(1);
}
for (s = gInputFiles.begin(); s != gInputFiles.end(); s++) {
if (s == gInputFiles.begin()) masterFilename = *s;
gResult2 = cons(importFile(tree(s->c_str())), gResult2);
}
if (yyerr > 0) {
//fprintf(stderr, "Erreur de parsing 2, count = %d \n", yyerr);
exit(1);
}
/****************************************************************
3 - evaluate 'process' definition
*****************************************************************/
Tree process = evalprocess(gReader.expandlist(gResult2));
if (gErrorCount > 0) {
// cerr << "Total of " << gErrorCount << " errors during evaluation of : process = " << boxpp(process) << ";\n";
cerr << "Total of " << gErrorCount << " errors during the compilation of " << masterFilename << ";\n";
exit(1);
}
if (gDetailsSwitch) { cerr << "process = " << boxpp(process) << ";\n"; }
if (gDrawPSSwitch) { drawSchema( process, subst("$0-ps", masterFilename).c_str(), "ps" ); }
if (gDrawSVGSwitch) { drawSchema( process, subst("$0-svg", masterFilename).c_str(), "svg" ); }
int numInputs, numOutputs;
if (!getBoxType(process, &numInputs, &numOutputs)) {
cerr << "ERROR during the evaluation of process : "
<< boxpp(process) << endl;
exit(1);
}
if (gDetailsSwitch) { cerr <<"process has " <<numInputs <<" inputs, and " <<numOutputs <<" outputs" <<endl; }
/****************************************************************
4 - compute output signals of 'process'
*****************************************************************/
Tree lsignals = boxPropagateSig(nil, process , makeSigInputList(numInputs) );
if (gDetailsSwitch) { cerr << "output signals are : " << endl; printSignal(lsignals, stderr); }
/****************************************************************
5 - translate output signals into C++ code
*****************************************************************/
Compiler* C;
if (gVectorSwitch) C = new VectorCompiler("mydsp", "dsp", numInputs, numOutputs);
else C = new ScalarCompiler("mydsp", "dsp", numInputs, numOutputs);
if (gPrintXMLSwitch) C->setDescription(new Description());
C->compileMultiSignal(lsignals);
/****************************************************************
6 - generate XML description (if required)
*****************************************************************/
if (gPrintXMLSwitch) {
Description* D = C->getDescription(); assert(D);
ostream* xout = new ofstream(subst("$0.xml", masterFilename).c_str());
if(gMetaDataSet.count(tree("name"))>0) D->name(tree2str(*(gMetaDataSet[tree("name")].begin())));
if(gMetaDataSet.count(tree("author"))>0) D->author(tree2str(*(gMetaDataSet[tree("author")].begin())));
if(gMetaDataSet.count(tree("copyright"))>0) D->copyright(tree2str(*(gMetaDataSet[tree("copyright")].begin())));
if(gMetaDataSet.count(tree("license"))>0) D->license(tree2str(*(gMetaDataSet[tree("license")].begin())));
if(gMetaDataSet.count(tree("version"))>0) D->version(tree2str(*(gMetaDataSet[tree("version")].begin())));
D->inputs(C->getClass()->inputs());
D->outputs(C->getClass()->outputs());
D->print(0, *xout);
}
/****************************************************************
7 - generate output file
*****************************************************************/
ostream* dst;
istream* enrobage;
istream* intrinsic;
if (gOutputFile != "") {
dst = new ofstream(gOutputFile.c_str());
} else {
dst = &cout;
}
if (gArchFile != "") {
if ( (enrobage = open_arch_stream(gArchFile.c_str())) ) {
printheader(*dst);
C->getClass()->printLibrary(*dst);
C->getClass()->printIncludeFile(*dst);
streamCopyUntil(*enrobage, *dst, "<<includeIntrinsic>>");
if ( gVectorSwitch && (intrinsic = open_arch_stream("intrinsic.hh")) ) {
streamCopyUntilEnd(*intrinsic, *dst);
}
streamCopyUntil(*enrobage, *dst, "<<includeclass>>");
C->getClass()->println(0,*dst);
streamCopyUntilEnd(*enrobage, *dst);
} else {
cerr << "ERROR : can't open architecture file " << gArchFile << endl;
return 1;
}
} else {
printheader(*dst);
C->getClass()->printLibrary(*dst);
C->getClass()->printIncludeFile(*dst);
C->getClass()->println(0,*dst);
}
return 0;
}
|