]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/Parser.cpp
tex2lyx/Preamble.cpp: remove a FIXME, the problem was only in trunk (bug #8211) and...
[lyx.git] / src / tex2lyx / Parser.cpp
1 /**
2  * \file Parser.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz 
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "Encoding.h"
14 #include "Parser.h"
15 #include "support/textutils.h"
16
17 #include <iostream>
18
19 using namespace std;
20
21 namespace lyx {
22
23 namespace {
24
25 CatCode theCatcode[256];
26
27 void catInit()
28 {
29         static bool init_done = false;
30         if (init_done) 
31                 return;
32         init_done = true;
33
34         fill(theCatcode, theCatcode + 256, catOther);
35         fill(theCatcode + 'a', theCatcode + 'z' + 1, catLetter);
36         fill(theCatcode + 'A', theCatcode + 'Z' + 1, catLetter);
37
38         theCatcode[int('\\')] = catEscape;
39         theCatcode[int('{')]  = catBegin;
40         theCatcode[int('}')]  = catEnd;
41         theCatcode[int('$')]  = catMath;
42         theCatcode[int('&')]  = catAlign;
43         theCatcode[int('\n')] = catNewline;
44         theCatcode[int('#')]  = catParameter;
45         theCatcode[int('^')]  = catSuper;
46         theCatcode[int('_')]  = catSub;
47         theCatcode[0x7f]      = catIgnore;
48         theCatcode[int(' ')]  = catSpace;
49         theCatcode[int('\t')] = catSpace;
50         theCatcode[int('\r')] = catNewline;
51         theCatcode[int('~')]  = catActive;
52         theCatcode[int('%')]  = catComment;
53
54         // This is wrong!
55         theCatcode[int('@')]  = catLetter;
56 }
57
58 /*!
59  * Translate a line ending to '\n'.
60  * \p c must have catcode catNewline, and it must be the last character read
61  * from \p is.
62  */
63 char_type getNewline(idocstream & is, char_type c)
64 {
65         // we have to handle 3 different line endings:
66         // - UNIX (\n)
67         // - MAC  (\r)
68         // - DOS  (\r\n)
69         if (c == '\r') {
70                 // MAC or DOS
71                 char_type wc;
72                 if (is.get(wc) && wc != '\n') {
73                         // MAC
74                         is.putback(wc);
75                 }
76                 return '\n';
77         }
78         // UNIX
79         return c;
80 }
81
82 CatCode catcode(char_type c)
83 {
84         if (c < 256)
85                 return theCatcode[(unsigned char)c];
86         return catOther;
87 }
88
89 }
90
91
92 //
93 // Token
94 //
95
96 ostream & operator<<(ostream & os, Token const & t)
97 {
98         if (t.cat() == catComment)
99                 os << '%' << t.cs() << '\n';
100         else if (t.cat() == catSpace)
101                 os << t.cs();
102         else if (t.cat() == catEscape)
103                 os << '\\' << t.cs() << ' ';
104         else if (t.cat() == catLetter)
105                 os << t.cs();
106         else if (t.cat() == catNewline)
107                 os << "[" << t.cs().size() << "\\n," << t.cat() << "]\n";
108         else
109                 os << '[' << t.cs() << ',' << t.cat() << ']';
110         return os;
111 }
112
113
114 string Token::asInput() const
115 {
116         if (cat_ == catComment)
117                 return '%' + cs_ + '\n';
118         if (cat_ == catEscape)
119                 return '\\' + cs_;
120         return cs_;
121 }
122
123
124 bool Token::isAlnumASCII() const
125 {
126         return cat_ == catLetter ||
127                (cat_ == catOther && cs_.length() == 1 && isDigitASCII(cs_[0]));
128 }
129
130
131 #ifdef FILEDEBUG
132 void debugToken(std::ostream & os, Token const & t, unsigned int flags)
133 {
134         char sep = ' ';
135         os << "t: " << t << " flags: " << flags;
136         if (flags & FLAG_BRACE_LAST) { os << sep << "BRACE_LAST"; sep = '|'; }
137         if (flags & FLAG_RIGHT     ) { os << sep << "RIGHT"     ; sep = '|'; }
138         if (flags & FLAG_END       ) { os << sep << "END"       ; sep = '|'; }
139         if (flags & FLAG_BRACK_LAST) { os << sep << "BRACK_LAST"; sep = '|'; }
140         if (flags & FLAG_TEXTMODE  ) { os << sep << "TEXTMODE"  ; sep = '|'; }
141         if (flags & FLAG_ITEM      ) { os << sep << "ITEM"      ; sep = '|'; }
142         if (flags & FLAG_LEAVE     ) { os << sep << "LEAVE"     ; sep = '|'; }
143         if (flags & FLAG_SIMPLE    ) { os << sep << "SIMPLE"    ; sep = '|'; }
144         if (flags & FLAG_EQUATION  ) { os << sep << "EQUATION"  ; sep = '|'; }
145         if (flags & FLAG_SIMPLE2   ) { os << sep << "SIMPLE2"   ; sep = '|'; }
146         if (flags & FLAG_OPTION    ) { os << sep << "OPTION"    ; sep = '|'; }
147         if (flags & FLAG_BRACED    ) { os << sep << "BRACED"    ; sep = '|'; }
148         if (flags & FLAG_CELL      ) { os << sep << "CELL"      ; sep = '|'; }
149         if (flags & FLAG_TABBING   ) { os << sep << "TABBING"   ; sep = '|'; }
150         os << "\n";
151 }
152 #endif
153
154
155 //
156 // Parser
157 //
158
159
160 Parser::Parser(idocstream & is)
161         : lineno_(0), pos_(0), iss_(0), is_(is), encoding_latex_("utf8")
162 {
163 }
164
165
166 Parser::Parser(string const & s)
167         : lineno_(0), pos_(0), 
168           iss_(new idocstringstream(from_utf8(s))), is_(*iss_), 
169           encoding_latex_("utf8")
170 {
171 }
172
173
174 Parser::~Parser()
175 {
176         delete iss_;
177 }
178
179
180 void Parser::setEncoding(std::string const & e)
181 {
182         Encoding const * enc = encodings.fromLaTeXName(e);
183         if (!enc) {
184                 cerr << "Unknown encoding " << e << ". Ignoring." << std::endl;
185                 return;
186         }
187         //cerr << "setting encoding to " << enc->iconvName() << std::endl;
188         is_ << lyx::setEncoding(enc->iconvName());
189         encoding_latex_ = e;
190 }
191
192
193 void Parser::push_back(Token const & t)
194 {
195         tokens_.push_back(t);
196 }
197
198
199 // We return a copy here because the tokens_ vector may get reallocated
200 Token const Parser::prev_token() const
201 {
202         static const Token dummy;
203         return pos_ > 1 ? tokens_[pos_ - 2] : dummy;
204 }
205
206
207 // We return a copy here because the tokens_ vector may get reallocated
208 Token const Parser::curr_token() const
209 {
210         static const Token dummy;
211         return pos_ > 0 ? tokens_[pos_ - 1] : dummy;
212 }
213
214
215 // We return a copy here because the tokens_ vector may get reallocated
216 Token const Parser::next_token()
217 {
218         static const Token dummy;
219         return good() ? tokens_[pos_] : dummy;
220 }
221
222
223 // We return a copy here because the tokens_ vector may get reallocated
224 Token const Parser::next_next_token()
225 {
226         static const Token dummy;
227         // If good() has not been called after the last get_token() we need
228         // to tokenize two more tokens.
229         if (pos_ + 1 >= tokens_.size()) {
230                 tokenize_one();
231                 tokenize_one();
232         }
233         return pos_ + 1 < tokens_.size() ? tokens_[pos_ + 1] : dummy;
234 }
235
236
237 // We return a copy here because the tokens_ vector may get reallocated
238 Token const Parser::get_token()
239 {
240         static const Token dummy;
241         //cerr << "looking at token " << tokens_[pos_] << " pos: " << pos_ << '\n';
242         return good() ? tokens_[pos_++] : dummy;
243 }
244
245
246 bool Parser::isParagraph()
247 {
248         // A new paragraph in TeX ist started
249         // - either by a newline, following any amount of whitespace
250         //   characters (including zero), and another newline
251         // - or the token \par
252         if (curr_token().cat() == catNewline &&
253             (curr_token().cs().size() > 1 ||
254              (next_token().cat() == catSpace &&
255               next_next_token().cat() == catNewline)))
256                 return true;
257         if (curr_token().cat() == catEscape && curr_token().cs() == "par")
258                 return true;
259         return false;
260 }
261
262
263 bool Parser::skip_spaces(bool skip_comments)
264 {
265         // We just silently return if we have no more tokens.
266         // skip_spaces() should be callable at any time,
267         // the caller must check p::good() anyway.
268         bool skipped = false;
269         while (good()) {
270                 get_token();
271                 if (isParagraph()) {
272                         putback();
273                         break;
274                 }
275                 if (curr_token().cat() == catSpace ||
276                     curr_token().cat() == catNewline) {
277                         skipped = true;
278                         continue;
279                 }
280                 if ((curr_token().cat() == catComment && curr_token().cs().empty()))
281                         continue;
282                 if (skip_comments && curr_token().cat() == catComment) {
283                         // If positions_ is not empty we are doing some kind
284                         // of look ahead
285                         if (!positions_.empty())
286                                 cerr << "  Ignoring comment: "
287                                      << curr_token().asInput();
288                 } else {
289                         putback();
290                         break;
291                 }
292         }
293         return skipped;
294 }
295
296
297 void Parser::unskip_spaces(bool skip_comments)
298 {
299         while (pos_ > 0) {
300                 if ( curr_token().cat() == catSpace ||
301                     (curr_token().cat() == catNewline && curr_token().cs().size() == 1))
302                         putback();
303                 else if (skip_comments && curr_token().cat() == catComment) {
304                         // TODO: Get rid of this
305                         // If positions_ is not empty we are doing some kind
306                         // of look ahead
307                         if (!positions_.empty())
308                                 cerr << "Unignoring comment: "
309                                      << curr_token().asInput();
310                         putback();
311                 }
312                 else
313                         break;
314         }
315 }
316
317
318 void Parser::putback()
319 {
320         --pos_;
321 }
322
323
324 void Parser::pushPosition()
325 {
326         positions_.push_back(pos_);
327 }
328
329
330 void Parser::popPosition()
331 {
332         pos_ = positions_.back();
333         positions_.pop_back();
334 }
335
336
337 bool Parser::good()
338 {
339         if (pos_ < tokens_.size())
340                 return true;
341         tokenize_one();
342         return pos_ < tokens_.size();
343 }
344
345
346 char Parser::getChar()
347 {
348         if (!good())
349                 error("The input stream is not well...");
350         return get_token().character();
351 }
352
353
354 bool Parser::hasOpt()
355 {
356         // An optional argument can occur in any of the following forms:
357         // - \foo[bar]
358         // - \foo [bar]
359         // - \foo
360         //   [bar]
361         // - \foo %comment
362         //   [bar]
363
364         // remember current position
365         unsigned int oldpos = pos_;
366         // skip spaces and comments
367         while (good()) {
368                 get_token();
369                 if (isParagraph()) {
370                         putback();
371                         break;
372                 }
373                 if (curr_token().cat() == catSpace ||
374                     curr_token().cat() == catNewline ||
375                     curr_token().cat() == catComment)
376                         continue;
377                 putback();
378                 break;
379         }
380         bool const retval = (next_token().asInput() == "[");
381         pos_ = oldpos;
382         return retval;
383 }
384
385
386 Parser::Arg Parser::getFullArg(char left, char right)
387 {
388         skip_spaces(true);
389
390         // This is needed if a partial file ends with a command without arguments,
391         // e. g. \medskip
392         if (! good())
393                 return make_pair(false, string());
394
395         string result;
396         char c = getChar();
397
398         if (c != left) {
399                 putback();
400                 return make_pair(false, string());
401         } else
402                 while ((c = getChar()) != right && good()) {
403                         // Ignore comments
404                         if (curr_token().cat() == catComment) {
405                                 if (!curr_token().cs().empty())
406                                         cerr << "Ignoring comment: " << curr_token().asInput();
407                         }
408                         else
409                                 result += curr_token().asInput();
410                 }
411
412         return make_pair(true, result);
413 }
414
415
416 string Parser::getArg(char left, char right)
417 {
418         return getFullArg(left, right).second;
419 }
420
421
422 string Parser::getFullOpt(bool keepws)
423 {
424         Arg arg = getFullArg('[', ']');
425         if (arg.first)
426                 return '[' + arg.second + ']';
427         if (keepws)
428                 unskip_spaces(true);
429         return string();
430 }
431
432
433 string Parser::getOpt(bool keepws)
434 {
435         string const res = getArg('[', ']');
436         if (res.empty()) {
437                 if (keepws)
438                         unskip_spaces(true);
439                 return string();
440         }
441         return '[' + res + ']';
442 }
443
444
445 string Parser::getFullParentheseArg()
446 {
447         Arg arg = getFullArg('(', ')');
448         if (arg.first)
449                 return '(' + arg.second + ')';
450         return string();
451 }
452
453
454 string const Parser::verbatimEnvironment(string const & name)
455 {
456         if (!good())
457                 return string();
458
459         ostringstream os;
460         for (Token t = get_token(); good(); t = get_token()) {
461                 if (t.cat() == catBegin) {
462                         putback();
463                         os << '{' << verbatim_item() << '}';
464                 } else if (t.asInput() == "\\begin") {
465                         string const env = getArg('{', '}');
466                         os << "\\begin{" << env << '}'
467                            << verbatimEnvironment(env)
468                            << "\\end{" << env << '}';
469                 } else if (t.asInput() == "\\end") {
470                         string const end = getArg('{', '}');
471                         if (end != name)
472                                 cerr << "\\end{" << end
473                                      << "} does not match \\begin{" << name
474                                      << "}." << endl;
475                         return os.str();
476                 } else
477                         os << t.asInput();
478         }
479         cerr << "unexpected end of input" << endl;
480         return os.str();
481 }
482
483
484 string const Parser::plainEnvironment(string const & name)
485 {
486         if (!good())
487                 return string();
488
489         ostringstream os;
490         for (Token t = get_token(); good(); t = get_token()) {
491                 if (t.asInput() == "\\end") {
492                         string const end = getArg('{', '}');
493                         if (end == name)
494                                 return os.str();
495                         else
496                                 os << "\\end{" << end << '}';
497                 } else
498                         os << t.asInput();
499         }
500         cerr << "unexpected end of input" << endl;
501         return os.str();
502 }
503
504
505 string const Parser::plainCommand(char left, char right, string const & name)
506 {
507         if (!good())
508                 return string();
509         // check if first token is really the start character
510         Token tok = get_token();
511         if (tok.character() != left) {
512                 cerr << "first character does not match start character of command \\" << name << endl;
513                 return string();
514         }
515         ostringstream os;
516         for (Token t = get_token(); good(); t = get_token()) {
517                 if (t.character() == right) {
518                         return os.str();
519                 } else
520                         os << t.asInput();
521         }
522         cerr << "unexpected end of input" << endl;
523         return os.str();
524 }
525
526
527 void Parser::tokenize_one()
528 {
529         catInit();
530         char_type c;
531         if (!is_.get(c)) 
532                 return;
533
534         switch (catcode(c)) {
535         case catSpace: {
536                 docstring s(1, c);
537                 while (is_.get(c) && catcode(c) == catSpace)
538                         s += c;
539                 if (catcode(c) != catSpace)
540                         is_.putback(c);
541                 push_back(Token(s, catSpace));
542                 break;
543         }
544                 
545         case catNewline: {
546                 ++lineno_;
547                 docstring s(1, getNewline(is_, c));
548                 while (is_.get(c) && catcode(c) == catNewline) {
549                         ++lineno_;
550                         s += getNewline(is_, c);
551                 }
552                 if (catcode(c) != catNewline)
553                         is_.putback(c);
554                 push_back(Token(s, catNewline));
555                 break;
556         }
557                 
558         case catComment: {
559                 // We don't treat "%\n" combinations here specially because
560                 // we want to preserve them in the preamble
561                 docstring s;
562                 while (is_.get(c) && catcode(c) != catNewline)
563                         s += c;
564                 // handle possible DOS line ending
565                 if (catcode(c) == catNewline)
566                         c = getNewline(is_, c);
567                 // Note: The '%' at the beginning and the '\n' at the end
568                 // of the comment are not stored.
569                 ++lineno_;
570                 push_back(Token(s, catComment));
571                 break;
572         }
573                 
574         case catEscape: {
575                 is_.get(c);
576                 if (!is_) {
577                         error("unexpected end of input");
578                 } else {
579                         docstring s(1, c);
580                         if (catcode(c) == catLetter) {
581                                 // collect letters
582                                 while (is_.get(c) && catcode(c) == catLetter)
583                                         s += c;
584                                 if (catcode(c) != catLetter)
585                                         is_.putback(c);
586                         }
587                         push_back(Token(s, catEscape));
588                 }
589                 break;
590         }
591                 
592         case catIgnore: {
593                 cerr << "ignoring a char: " << c << "\n";
594                 break;
595         }
596                 
597         default:
598                 push_back(Token(docstring(1, c), catcode(c)));
599         }
600         //cerr << tokens_.back();
601 }
602
603
604 void Parser::dump() const
605 {
606         cerr << "\nTokens: ";
607         for (unsigned i = 0; i < tokens_.size(); ++i) {
608                 if (i == pos_)
609                         cerr << " <#> ";
610                 cerr << tokens_[i];
611         }
612         cerr << " pos: " << pos_ << "\n";
613 }
614
615
616 void Parser::error(string const & msg)
617 {
618         cerr << "Line ~" << lineno_ << ":  parse error: " << msg << endl;
619         dump();
620         //exit(1);
621 }
622
623
624 string Parser::verbatimOption()
625 {
626         string res;
627         if (next_token().character() == '[') {
628                 Token t = get_token();
629                 for (t = get_token(); t.character() != ']' && good(); t = get_token()) {
630                         if (t.cat() == catBegin) {
631                                 putback();
632                                 res += '{' + verbatim_item() + '}';
633                         } else
634                                 res += t.cs();
635                 }
636         }
637         return res;
638 }
639
640
641 string Parser::verbatim_item()
642 {
643         if (!good())
644                 error("stream bad");
645         skip_spaces();
646         if (next_token().cat() == catBegin) {
647                 Token t = get_token(); // skip brace
648                 string res;
649                 for (Token t = get_token(); t.cat() != catEnd && good(); t = get_token()) {
650                         if (t.cat() == catBegin) {
651                                 putback();
652                                 res += '{' + verbatim_item() + '}';
653                         }
654                         else
655                                 res += t.asInput();
656                 }
657                 return res;
658         }
659         return get_token().asInput();
660 }
661
662
663 void Parser::reset()
664 {
665         pos_ = 0;
666 }
667
668
669 void Parser::setCatCode(char c, CatCode cat)
670 {
671         theCatcode[(unsigned char)c] = cat;
672 }
673
674
675 CatCode Parser::getCatCode(char c) const
676 {
677         return theCatcode[(unsigned char)c];
678 }
679
680
681 } // namespace lyx