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
|
/************************************************************************
************************************************************************
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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <iomanip>
#include <iostream>
#include <limits>
#include <sstream>
#include <string>
#include <vector>
#include <algorithm>
#include "Text.hh"
#include "compatibility.hh"
#include "floats.hh"
#include "global.hh"
static string substitution(const string& model, const vector<string>& args);
/**
* Text substitution. Creates a string by replacing all the $n
* occurences in the model string, with the corresponding arguments.
* Example : subst("float $0 = $1;", "var", T(10.2))
*/
string subst(const string& model, const vector<string>& args)
{
return substitution(model, args);
}
string subst(const string& model, const string& a0)
{
vector<string> args(10);
args[0] = a0;
return substitution(model, args);
}
string subst(const string& model, const string& a0, const string& a1)
{
vector<string> args(10);
args[0] = a0;
args[1] = a1;
return substitution(model, args);
}
string subst(const string& model, const string& a0, const string& a1, const string& a2)
{
vector<string> args(10);
args[0] = a0;
args[1] = a1;
args[2] = a2;
return substitution(model, args);
}
string subst(const string& model, const string& a0, const string& a1, const string& a2, const string& a3)
{
vector<string> args(10);
args[0] = a0;
args[1] = a1;
args[2] = a2;
args[3] = a3;
return substitution(model, args);
}
string subst(const string& model, const string& a0, const string& a1, const string& a2, const string& a3,
const string& a4)
{
vector<string> args(10);
args[0] = a0;
args[1] = a1;
args[2] = a2;
args[3] = a3;
args[4] = a4;
return substitution(model, args);
}
string subst(const string& model, const string& a0, const string& a1, const string& a2, const string& a3,
const string& a4, const string& a5)
{
vector<string> args(10);
args[0] = a0;
args[1] = a1;
args[2] = a2;
args[3] = a3;
args[4] = a4;
args[5] = a5;
return substitution(model, args);
}
string subst(const string& model, const string& a0, const string& a1, const string& a2, const string& a3,
const string& a4, const string& a5, const string& a6)
{
vector<string> args(10);
args[0] = a0;
args[1] = a1;
args[2] = a2;
args[3] = a3;
args[4] = a4;
args[5] = a5;
args[6] = a6;
return substitution(model, args);
}
static string substitution(const string& model, const vector<string>& args)
{
char c;
int i = 0, ilast = (int)model.length() - 1;
string result;
while (i < ilast) {
c = model[i++];
if (c != '$') {
result += c;
} else {
c = model[i++];
if (c >= '0' && c <= '9') {
result += args[c - '0'];
} else {
result += c;
}
}
}
if (i == ilast) result += model[i];
return result;
}
string T(char* c)
{
return string(c);
}
string T(int n)
{
char c[64];
snprintf(c, 63, "%d", n);
return string(c);
}
string T(long n)
{
char c[64];
snprintf(c, 63, "%ld", n);
return string(c);
}
/**
* If needed add a trailing '.0' to the
* the textual representation of a floating point number
* to avoid confusions with an int.
*/
static string ensureFloat(const string& c)
{
bool isInt = true;
for (size_t i = 0; i < c.size(); i++) {
if ((c[i] == '.') || (c[i] == 'e')) {
isInt = false;
break;
}
}
return (isInt) ? (c + ".0") : c;
}
/**
* Convert a simple-precision float into a string.
* Adjusts the precision p to the needs.
*/
string T(float n)
{
stringstream num;
num << setprecision(numeric_limits<float>::max_digits10) << n;
return ensureFloat(num.str()) + inumix();
}
/**
* Convert a double-precision float into a string.
* Adjusts the precision p to the needs.
*/
string T(double n)
{
stringstream num;
num << setprecision(numeric_limits<double>::max_digits10) << n;
return ensureFloat(num.str()) + inumix();
}
/**
* remove quotes from a string
*/
string unquote(const string& str)
{
return (str[0] == '"') ? str.substr(1, str.size() - 2) : str;
}
/**
* add quotes to a string
*/
string quote(const string& s)
{
return "\"" + s + "\"";
}
/**
* Print n tabs (for indentation purpose)
* @param n number of tabs to print
* @param fout output stream
*/
void tab(int n, ostream& fout)
{
fout << '\n';
while (n--) fout << '\t';
}
void back(int n, ostream& fout)
{
long pos = fout.tellp();
fout.seekp(pos-n);
}
/**
* Print a list of lines
* @param n number of tabs of indentation
* @param lines list of lines to be printed
* @param fout output stream
*/
void printlines(int n, list<string>& lines, ostream& fout, const string& sep)
{
list<string>::const_iterator s;
for (s = lines.begin(); s != lines.end(); s++) {
if (s == lines.begin()) {
tab(n, fout);
fout << *s; // No separator before first one
} else {
tab(n, fout);
fout << sep << *s;
}
}
}
/**
* rmWhiteSpaces(): Remove the leading and trailing white spaces of a string
* (but not those in the middle of the string)
*/
string rmWhiteSpaces(const string& s)
{
size_t i = s.find_first_not_of(" \t");
size_t j = s.find_last_not_of(" \t");
if ((i != string::npos) & (j != string::npos)) {
return s.substr(i, 1 + j - i);
} else {
return "";
}
}
// 'Quad' (= long double) are currectly treated like 'double'
string checkReal(double val)
{
return (strcmp(ifloat(), "float") == 0) ? checkFloat(float(val)) : checkDouble(val);
}
string indent(const string& str, int tabs)
{
stringstream instream(str);
stringstream outstream;
string line;
while (getline(instream, line, '\n')) {
for (int i = 0; i != tabs; ++i) {
outstream << '\t';
}
outstream << line << endl;
}
return outstream.str();
}
string replaceChar(string str, char src, char dst)
{
replace(str.begin(), str.end(), src, dst);
return str;
}
string replaceCharList(string str, const vector<char>& ch1, char ch2)
{
vector<char>::const_iterator beg = ch1.begin();
vector<char>::const_iterator end = ch1.end();
for (size_t i = 0; i < str.length(); ++i) {
if (find(beg, end, str[i]) != end) {
str[i] = ch2;
}
}
return str;
}
vector<string> tokenizeString(const string& str, char sep)
{
vector<string> res;
istringstream is(str);
string token;
while (getline(is, token, sep)) res.push_back(token);
return res;
}
|