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 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
|
/*
Cadabra: a field-theory motivated computer algebra system.
Copyright (C) 2001-2015 Kasper Peeters <cadabra@phi-sci.com>
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 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/>.
*/
/*
Bugs: - This code is ugly. Then again, this is only because human
beings cannot be bothered to type in prefix notation. Since
it ain't broke, I won't fix it. Should really be replaced by
a parser written using ANTLR or Bisonc++ or something like that.
Remember: we want brackets around infix operators to be around every child,
not around the operator itself.
*/
#include <ctype.h>
#include <stdexcept>
#include <sstream>
#include <internal/uniconv.h>
#include "PreProcessor.hh"
const char32_t preprocessor::orders[] = { '!', tok_pow, '/', '*', tok_wedge,
'-', '+', tok_sequence, '=', tok_unequals,
'<', '>', '|', tok_arrow, tok_set_option,
tok_declare, ',', '~', 0
};
const char32_t * const preprocessor::order_names[]= { U"\\factorial",
U"\\pow", U"\\frac", U"\\prod", U"\\wedge",
U"\\sub", U"\\sum", U"\\sequence",
U"\\equals", U"\\unequals", U"\\less",
U"\\greater", U"\\conditional",
U"\\arrow", U"\\setoption", U"\\declare",
U"\\comma", U"\\tie", 0
};
const char32_t preprocessor::open_brackets[] = { '{', '(', '[' };
const char32_t preprocessor::close_brackets[] = { '}', ')', ']' };
std::istream& operator>>(std::istream& s, preprocessor& p)
{
std::string inp;
utf_converter conv;
while(std::getline(s,inp)) {
std::u32string inp32=conv.to_utf32(inp);
p.parse_(inp32);
}
return s;
}
std::ostream& operator<<(std::ostream& s, const preprocessor& p)
{
while(p.accus.size()>0)
p.unwind_(sizeof(preprocessor::orders)/sizeof(char32_t));
p.unwind_(sizeof(preprocessor::orders)/sizeof(char32_t));
p.strip_outer_brackets();
utf_converter conv;
auto ac8 = conv.to_utf8(p.cur.accu);
s << ac8;
return s;
}
preprocessor::preprocessor()
: verbatim_(false), next_is_product_(false), eat_initial_whitespace_(true), cur_pos(0)
{
}
bool preprocessor::is_link_(char32_t c) const
{
return (c=='_' || c=='^' || c=='$' || c=='&');
}
bool preprocessor::is_infix_operator_(char32_t c) const
{
for(unsigned int i=0; i<sizeof(orders)/sizeof(char32_t); ++i)
if(orders[i]==c) return true;
return false;
}
void preprocessor::print_stack() const
{
// for(unsigned int i=0; i<accus.size(); ++i) {
// std::cerr << "LEVEL " << i << std::endl
// << " head gen= " << accus[i].head_is_generated << std::endl
// << " bracket = " << accus[i].bracket << std::endl
// << " order = " << accus[i].order << std::endl
// << " parts = " << accus[i].parts.size() << std::endl;
// for(unsigned int k=0; k<accus[i].parts.size(); ++k)
// std::cerr << " " << accus[i].parts[k] << std::endl;
// std::cerr << " accu = " << accus[i].accu << std::endl;
// }
// std::cerr << "CURRENT " << std::endl
// << " head gen= " << cur.head_is_generated << std::endl
// << " bracket = " << cur.bracket << std::endl
// << " order = " << cur.order << std::endl
// << " parts = " << cur.parts.size() << std::endl;
// for(unsigned int k=0; k<cur.parts.size(); ++k)
// std::cerr << " " << cur.parts[k] << std::endl;
// std::cerr << " accu = " << cur.accu << std::endl;
}
unsigned int preprocessor::current_bracket_(bool deep) const
{
unsigned int i;
if((i=accus.size())>0) {
do {
if(accus[--i].bracket)
return accus[i].bracket;
}
while(i>0 && deep);
}
return 0;
}
bool preprocessor::default_is_product_() const
{
if(cur.order==order_prod || cur.order==order_frac || cur.order==order_arrow || cur.order==order_comma ||
cur.order==order_minus || cur.order==order_plus || cur.order==order_equals ||
cur.order==order_unequals )
return true; // spaces in comma-separated lists/products are stars
int n=current_bracket_(true);
return (n==2 || n==3 || n==0 || (n==1 && cur.is_index==false) );
}
bool preprocessor::is_digits_(const std::u32string& str) const
{
if(str.size()==0) return false;
for(unsigned int i=0; i<str.size(); ++i)
if(!isdigit(str[i]) && str[i]!='.') return false;
return true;
}
unsigned int preprocessor::is_closing_bracket_(char32_t c) const
{
for(unsigned int i=0; i<sizeof(close_brackets)/sizeof(char32_t); ++i) {
if(c==close_brackets[i]) return i+1;
if(c==close_brackets[i]+128) return i+1+128;
}
return 0;
}
unsigned int preprocessor::is_opening_bracket_(char32_t c) const
{
for(unsigned int i=0; i<sizeof(open_brackets)/sizeof(char32_t); ++i) {
if(c==open_brackets[i]) return i+1;
if(c==open_brackets[i]+128) return i+1+128;
}
return 0;
}
unsigned int preprocessor::is_bracket_(char32_t c) const
{
unsigned int ret;
if((ret=is_opening_bracket_(c))) return ret;
return is_closing_bracket_(c);
}
bool preprocessor::is_already_bracketed_(const std::u32string& str) const
{
if(str.size()>=2)
if(is_bracket_(str[0])) // && str[0]!='{')
if(is_opening_bracket_(str[0])==is_closing_bracket_(str[str.size()-1]))
return true;
return false;
}
char32_t preprocessor::get_token_(char32_t prev_token)
{
char32_t candidate=0;
// Candidate is set to the code of an infix operator if
// encountered. Because we have to treat spaces as multiplication
// operators, yet these can also just denote spaces by themselves if
// followed by an explicit operator, the loop below iterates until a
// non-space character is found.
// std::cout << "cur char=" << cur_str[cur_pos] << "\n";
if(verbatim_) {
return cur_str[cur_pos];
}
if(next_is_product_) {
next_is_product_=false;
candidate='*';
// if(cur_pos<cur_str.size()) {
// --cur_pos;
// return '*';
// }
}
if(is_opening_bracket_(prev_token)) {
while(cur_str[cur_pos]==' ' || cur_str[cur_pos]=='\t' || cur_str[cur_pos]=='\n' /* std::isblank(cur_str[cur_pos], std::locale("en_US.UTF-8"))*/ ) {
++cur_pos;
}
}
while(cur_pos<cur_str.size()) {
char32_t c=cur_str[cur_pos];
// std::cerr << "|" << c << "|" << std::endl;
if(c==':' && cur_str[cur_pos+1]=='=') { // ':' and ':=' are the same thing
++cur_pos;
cur_str[cur_pos]=tok_declare;
c=tok_declare;
}
if(c==':' && cur_str[cur_pos+1]==':') {
++cur_pos;
cur_str[cur_pos]='$';
c='$'; // FIXME: Another hack... (property)
}
if(c=='*' && cur_str[cur_pos+1]=='*') {
++cur_pos;
cur_str[cur_pos]=tok_pow;
c=tok_pow; // FIXME: Another hack... (exponent)
}
if(c=='-' && cur_str[cur_pos+1]=='>') {
++cur_pos;
cur_str[cur_pos]=tok_arrow;
c=tok_arrow; // FIXME: Another hack... (arrow)
}
if(c==':' && cur_str[cur_pos+1]=='>') {
++cur_pos;
cur_str[cur_pos]=tok_set_option;
c=tok_set_option; // FIXME: Another hack... (set_option)
}
if(c=='!' && cur_str[cur_pos+1]=='=') {
++cur_pos;
cur_str[cur_pos]=tok_unequals;
c=tok_unequals; // FIXME: Another hack... (unequals)
}
if(c=='.') {
if(cur_str[cur_pos+1]=='.') {
++cur_pos;
if(cur_str[cur_pos+1]=='.') {
cur_str[cur_pos]=tok_siblings;
cur_str[cur_pos+1]=tok_siblings;
++cur_pos;
c=tok_siblings;
return '@'; // FIXME: worst hack of them all, we're running out of tricks...
}
else {
cur_str[cur_pos]=tok_sequence;
c=tok_sequence; // FIXME: Another hack... (sequence)
}
}
else return c;
}
// HERE: how do we force get_token to return a '*' for the space separating .... and b ?
if(c==' ' || c=='\t' || c=='\n' /*std::isblank(c, std::locale("en_US.UTF-8")*/ ) {
// std::cout << "blank " << (int)(c) << "\n";
if(candidate==0) candidate=' ';
++cur_pos;
continue;
}
else if(c=='^' && candidate==' ') { // Isolated '^' with space prefixing it.
cur_str[cur_pos]=tok_wedge;
++cur_pos;
return tok_wedge;
}
else if(is_infix_operator_(c)) {
if(candidate && candidate!=' ') {
--cur_pos;
return candidate;
// FIXME: have to test whether this operator allows for missing first child.
// throw std::logic_error("two subsequent operators without intermediate operand");
}
candidate=c;
++cur_pos;
continue;
}
else if(c=='@' && isdigit(cur_str[cur_pos+1]) ) { // eat labels completely
while(isdigit(cur_str[++cur_pos]));
continue;
}
if(candidate==0 && c=='\\' && is_bracket_(cur_str[cur_pos+1])) {
++cur_pos;
c=cur_str[cur_pos]+128;
}
if(candidate!=0) {
// std::cout << "candidate " << (int)candidate << "\n";
--cur_pos;
if(candidate==' ' && default_is_product_()) return '*';
return candidate;
}
else {
std::u32string acplusone=cur.accu + (char32_t)(c);
if( ( is_closing_bracket_(prev_token) && is_opening_bracket_(c) && cur.head_is_generated ) ||
( is_closing_bracket_(prev_token) && !is_infix_operator_(c) && !is_bracket_(c) && !is_link_(c) ) ||
( is_digits_(cur.accu) && !is_digits_(acplusone) && !is_link_(c) && !is_closing_bracket_(c) ) ||
( !is_infix_operator_(prev_token) && !is_opening_bracket_(prev_token) && !is_link_(prev_token) && prev_token!=' ' && c=='\\' ) ) {
--cur_pos;
if( default_is_product_() ) return '*';
else return ' ';
}
if(is_link_(prev_token) && !(is_opening_bracket_(c) || c=='\\' || prev_token=='$')) {
if(cur.accu.size()==0 || ! (cur.accu.size()>3 || cur.accu[0]=='@' || (cur.accu[0]=='\\' && cur.accu[1]=='@'))) {
next_is_product_=true; // turn aaa_bbb into aaa_b bb (but keep @aaa_bbb)
}
}
return c;
}
}
if(candidate) {
--cur_pos;
return candidate;
}
throw std::range_error("get_token out of range");
}
void preprocessor::bracket_strings_(char32_t cb, std::u32string& obrack, std::u32string& cbrack) const
{
obrack=U"";
cbrack=U"";
if(cb==0) return;
if(cb>128) {
obrack=U"\\";
cbrack=U"\\";
cb-=128;
}
obrack+=open_brackets[cb-1];
cbrack+=close_brackets[cb-1];
}
// unwind the "stack" until we reach infix operator level "onum" or bottom of stack.
// if onum==sizeof(orders), unwind to the bracket level of the second (optional) argument.
bool preprocessor::unwind_(unsigned int onum, unsigned int bracketgoal, bool usebracket) const
{
// std::cout << "unwinding to " << onum << " " << usebracket << std::endl;
// static long iters=0;
bool generated_head=false;
bool bracket_reached=false;
do {
generated_head=false;
bracket_reached=false;
std::u32string tmp;
if(cur.accu.size()>0)
cur.parts.push_back(cur.accu);
unsigned int cb=current_bracket_();
// std::cout << "current bracket = " << cb << std::endl;
// print_stack();
if(onum==sizeof(orders)/sizeof(char32_t) && bracketgoal) {
if(cb!=0) {
if(cb==bracketgoal)
bracket_reached=true;
else {
// std::cerr << "wanted " << bracketgoal << " got " << cb << std::endl;
show_and_throw_("Bracket mismatch.");
}
}
}
else {
// if we are unwinding to reach a different operator level, never unwind beyond
// a bracket (in that case, we have to push up again).
if(current_bracket_())
bracket_reached=true;
}
std::u32string obrack, cbrack;
if(cb==0 || !usebracket || (onum==sizeof(orders)/sizeof(char32_t) && bracket_reached && accus.back().accu.size()>0)) {
obrack=U"{";
cbrack=U"}";
}
else bracket_strings_(cb, obrack, cbrack);
if(cur.parts.size()>1 || cur.order==order_factorial) { // More than one argument to the function.
if(cur.order<sizeof(orders)/sizeof(char32_t)) {
bool special=((cb==2 || cb==3) && std::u32string(order_names[cur.order])==U"\\comma" && accus.size()>0 && accus.back().accu.size()!=0);
if(!special)
tmp+=order_names[cur.order];
else
bracket_strings_(accus.back().bracket, obrack, cbrack);
for(unsigned int k=0; k<cur.parts.size(); ++k)
if(cur.parts[k].size()>0) {
if(is_already_bracketed_(cur.parts[k]) && (cur.parts[k][0]==obrack[0] || obrack[0]=='{'))
tmp+=cur.parts[k];
else {
if(special) {
if(k>0) tmp+=obrack;
}
else
tmp+=obrack;
tmp+=cur.parts[k];
if(special) {
if(k<cur.parts.size()-1) tmp+=cbrack;
}
else
tmp+=cbrack;
}
}
generated_head=true;
}
else {
tmp=obrack;
for(unsigned int k=0; k<cur.parts.size(); ++k) {
tmp+=cur.parts[k];
if(k!=cur.parts.size()-1) tmp+=U" ";
}
tmp+=cbrack;
}
}
else { // Function with only one argument.
if(cur.parts.size()>0) {
bracket_strings_(cb, obrack, cbrack);
// std::cout << cur.parts[0] << " : " << is_already_bracketed_(cur.parts[0]) << std::endl;
if(onum!=sizeof(orders)/sizeof(char32_t) ||
( is_already_bracketed_(cur.parts[0]) && ( cur.parts[0][0]==obrack[0] || obrack[0]=='{')))
tmp=cur.parts[0];
else {
tmp=obrack;
tmp+=cur.parts[0];
tmp+=cbrack;
}
}
}
// std::cerr << "string to unwind: " << tmp << std::endl;
if(accus.size()==0) {
cur.erase();
cur.order=onum;
cur.accu=tmp;
break;
}
if(onum!=sizeof(orders)/sizeof(char32_t) && bracket_reached) {
cur.accu=tmp;
cur.parts.clear();
break;
}
cur=accus.back();
accus.pop_back();
// if there was something at this level already, wrap the string just constructed
// in brackets
if(cur.accu.size()>0) {
if(tmp.size()>0) {
bracket_strings_(cb, obrack, cbrack);
// FIXME: next line might want to check for {(aaa)} problems (like all other
// lines that check for is_already_bracketed_)
if(!is_opening_bracket_(tmp[0]) && !(tmp[0]=='\\' && is_opening_bracket_(tmp[1])) && ( !is_already_bracketed_(tmp) || tmp[0]!=obrack[0])) {
cur.accu+=obrack;
cur.accu+=tmp;
cur.accu+=cbrack;
}
else
cur.accu+=tmp;
}
generated_head=false;
}
else cur.accu+=tmp;
}
while(cur.order<onum && !bracket_reached);
// Reset the head_is_generated flag, otherwise we end up with
// situations where e.g. a \prod{}{} node pushed into the parts
// vector sets this flag, then a '+' sign is read, and any
// subsequent elements are automatically treated as if they got the
// head generated too.
cur.head_is_generated=false;
if(onum!=sizeof(orders)/sizeof(char32_t) && cur.accu.size()>0 && onum>=cur.order && !bracket_reached) {
// std::cout << cur.accu.size() << std::endl;
cur.parts.push_back(cur.accu);
cur.accu.erase();
}
if(generated_head && cur.accu.size()>0)
cur.head_is_generated=true;
return bracket_reached;
}
preprocessor::accu_t::accu_t()
: head_is_generated(false), order(sizeof(orders)/sizeof(char32_t)), bracket(0), is_index(false)
{
}
void preprocessor::accu_t::erase()
{
head_is_generated=false;
accu.erase();
order=sizeof(orders)/sizeof(char32_t);
parts.clear();
bracket=0;
}
void preprocessor::strip_outer_brackets() const
{
if(is_already_bracketed_(cur.accu))
cur.accu=cur.accu.substr(1,cur.accu.size()-2);
}
void preprocessor::erase()
{
cur_pos=0;
cur_str.erase();
cur.erase();
accus.clear();
next_is_product_=false;
}
void preprocessor::parse_(const std::u32string& str)
{
cur_str=str;
parse_internal_();
}
void preprocessor::show_and_throw_(const std::string& str) const
{
std::stringstream ss;
utf_converter conv;
ss << std::endl << conv.to_utf8(cur_str) << std::endl;
for(unsigned int i=0; i<cur_pos; ++i)
ss << " ";
ss << "^" << std::endl
<< str;
ss << std::endl << cur.order << std::endl;
throw std::logic_error(ss.str());
throw std::logic_error(str);
}
void preprocessor::parse_internal_()
{
static long chars_parsed=0;
cur_pos=0;
char32_t c=0, prev_token=0;
while(cur_pos<cur_str.size()) {
unsigned onum=0;
prev_token=c;
c=get_token_(c);
if(eat_initial_whitespace_ && c=='*')
goto loopdone;
eat_initial_whitespace_=false;
//std::cerr << c << ", brac=" << cur.bracket << ", order=" << cur.order << std::endl;
if(verbatim_) {
if(c=='\"')
verbatim_=false;
cur.accu+=c;
goto loopdone;
}
for(; onum<sizeof(orders)/sizeof(char32_t); ++onum) {
if(c==orders[order_factorial] && cur.accu.size()>0 && cur.accu[0]=='@')
break; // keep the '!' in '@command!(foobar)'
if(c==orders[onum]) {
if(cur.order==sizeof(orders)/sizeof(char32_t) || onum==cur.order) {
// std::cerr << "same order, was " << cur.order << " now " << onum << std::endl;
// FIXME: this is a hack
if(onum==order_minus && cur.accu.size()==0)
cur.accu=U"0";
cur.order=onum;
++chars_parsed;
// if(chars_parsed%(100L)==0)
// std::cout << chars_parsed << std::endl;
cur.parts.push_back(cur.accu);
cur.accu.erase();
cur.head_is_generated=false;
// print_stack();
}
else if(onum<cur.order) {
std::u32string tmp=cur.accu;
cur.accu.erase();
cur.head_is_generated=false;
if(tmp.size()==0 && onum==order_minus) // hack for "foo: -a-b"
tmp=U"0";
// std::cerr << "pushing up |" << tmp << "| to " << orders[onum] << std::endl;
accus.push_back(cur);
cur.erase();
cur.parts.push_back(tmp);
cur.order=onum;
// std::cerr << "next character:" << cur_str[cur_pos+1] << std::endl;
}
else {
// std::cerr << "need to unwind from " << cur.order << " to " << onum << std::endl;
if(unwind_(onum, 0, false) || onum<cur.order) {
// std::cerr << "lifting up again, previous was " << cur.accu << ", " << cur.order << std::endl;
std::u32string tmp(cur.accu);
cur.accu.erase();
// for "a = b c + e" we need to push back
// for "[a b, c]" we don't.
if(onum<cur.order)
accus.push_back(cur);
cur.parts.clear();
cur.parts.push_back(tmp);
cur.order=onum;
// print_stack();
goto loopdone;
}
if(cur.accu.size()>0)
cur.parts.push_back(cur.accu);
cur.accu.erase();
cur.head_is_generated=false;
}
goto loopdone;
}
}
if(c==' ' && cur.order!=sizeof(orders)/sizeof(char32_t)) {
if(cur_pos==cur_str.size()-1)
goto loopdone;
else show_and_throw_("Whitespace encountered at unexpected location.");
}
unsigned int ind;
if((ind=is_opening_bracket_(c))) {
// std::cerr << "entering bracket level " << ind << " " << prev_token << std::endl;
// std::cerr << "is index before entering: " << cur.is_index << std::endl;
cur.bracket=ind; // remember the bracket, so that we can add it when we return to this level.
// std::cerr << "is index after entering: " << cur.is_index << std::endl;
accus.push_back(cur);
if(is_link_(prev_token)) cur.is_index=true;
else cur.is_index=false;
cur.erase();
cur.bracket=0;
}
else if((ind=is_closing_bracket_(c))) {
// std::cerr << "closing bracket encountered " << ind << " " << (char)cur.bracket << " " << (char)current_bracket_() << std::endl;
if(ind==1 && cur.accu.size()==0 && cur.parts.size()==0)
cur.parts.push_back(cur.accu); // empty lists count
// std::cerr << "on accu: " << accus.back().is_index << std::endl;
unwind_(sizeof(orders)/sizeof(char32_t), ind);
// std::cerr << "is index now " << cur.is_index << std::endl;
cur.bracket=0;
// cur.is_index=false; // TEST
}
else if(c==' ') {
// std::cout << "space\n";
if(cur.accu.size()>0) {
cur.parts.push_back(cur.accu);
cur.accu.erase();
cur.head_is_generated=false;
}
}
else cur.accu+=c;
if(c=='\"')
verbatim_=true;
loopdone:
++cur_pos;
}
}
|