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
|
/************************************************************************
************************************************************************
FAUST compiler
Copyright (C) 2003-2018 GRAME, Centre National de Creation Musicale
Copyright (C) 2023-2023 INRIA
---------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
************************************************************************
************************************************************************/
#ifndef _PPBOX_H
#define _PPBOX_H
/**********************************************************************
- ppbox.h : pretty print box expressions (projet FAUST) -
Historique :
-----------
12-07-2002 first implementation (yo)
***********************************************************************/
#include <iostream>
#include <map>
#include <sstream>
#include <utility>
#include "boxes.hh"
#include "garbageable.hh"
LIBFAUST_API const char* prim0name(Tree (*ptr)());
LIBFAUST_API const char* prim1name(Tree (*ptr)(Tree));
LIBFAUST_API const char* prim2name(Tree (*ptr)(Tree, Tree));
LIBFAUST_API const char* prim3name(Tree (*ptr)(Tree, Tree, Tree));
LIBFAUST_API const char* prim4name(Tree (*ptr)(Tree, Tree, Tree, Tree));
LIBFAUST_API const char* prim5name(Tree (*ptr)(Tree, Tree, Tree, Tree, Tree));
// Box pretty printer.
// usage : out << boxpp(aBoxExp);
class boxpp : public virtual Garbageable {
protected:
Tree fBox;
int fPriority;
public:
boxpp(Tree b, int p = 0) : fBox(b), fPriority(p) {}
virtual ~boxpp() {}
virtual std::ostream& print(std::ostream& fout) const;
};
inline std::ostream& operator<<(std::ostream& file, const boxpp& bpp)
{
return bpp.print(file);
}
// Use a map <ID, expression> to reuse already written expressions.
// printIDs allow to print the <ID, expression> list before 'process = exp;' final line.
class boxppShared : public boxpp {
public:
boxppShared(Tree b, int p = 0) : boxpp(b, p) {}
boxppShared(Tree L, std::ostream& fout) : boxpp(L)
{
// Create a map of <ID, expression>
std::stringstream s;
s << boxppShared(L);
// Print the <ID, expression> list
printIDs(fout);
fout << "process = " << s.str() << ";" << std::endl;
}
virtual ~boxppShared() {}
virtual std::ostream& print(std::ostream& fout) const;
static void printIDs(std::ostream& fout);
};
// environment pretty printer.
// usage : out << envpp(aEnvExp);
class envpp : public virtual Garbageable {
Tree fEnv;
public:
envpp(Tree e) : fEnv(e) {}
std::ostream& print(std::ostream& fout) const;
};
inline std::ostream& operator<<(std::ostream& file, const envpp& epp)
{
return epp.print(file);
}
// Limit the box description string to max_size characters
std::string mBox(Tree b, int max_size);
#endif
|