]> git.lyx.org Git - features.git/blob - src/tex2lyx/Parser.cpp
c48301207a447ec0e5593c64fea0e2b39881a2c0
[features.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 void Parser::tokenize_one()
485 {
486         catInit();
487         char_type c;
488         if (!is_.get(c)) 
489                 return;
490
491         switch (catcode(c)) {
492         case catSpace: {
493                 docstring s(1, c);
494                 while (is_.get(c) && catcode(c) == catSpace)
495                         s += c;
496                 if (catcode(c) != catSpace)
497                         is_.putback(c);
498                 push_back(Token(s, catSpace));
499                 break;
500         }
501                 
502         case catNewline: {
503                 ++lineno_;
504                 docstring s(1, getNewline(is_, c));
505                 while (is_.get(c) && catcode(c) == catNewline) {
506                         ++lineno_;
507                         s += getNewline(is_, c);
508                 }
509                 if (catcode(c) != catNewline)
510                         is_.putback(c);
511                 push_back(Token(s, catNewline));
512                 break;
513         }
514                 
515         case catComment: {
516                 // We don't treat "%\n" combinations here specially because
517                 // we want to preserve them in the preamble
518                 docstring s;
519                 while (is_.get(c) && catcode(c) != catNewline)
520                         s += c;
521                 // handle possible DOS line ending
522                 if (catcode(c) == catNewline)
523                         c = getNewline(is_, c);
524                 // Note: The '%' at the beginning and the '\n' at the end
525                 // of the comment are not stored.
526                 ++lineno_;
527                 push_back(Token(s, catComment));
528                 break;
529         }
530                 
531         case catEscape: {
532                 is_.get(c);
533                 if (!is_) {
534                         error("unexpected end of input");
535                 } else {
536                         docstring s(1, c);
537                         if (catcode(c) == catLetter) {
538                                 // collect letters
539                                 while (is_.get(c) && catcode(c) == catLetter)
540                                         s += c;
541                                 if (catcode(c) != catLetter)
542                                         is_.putback(c);
543                         }
544                         push_back(Token(s, catEscape));
545                 }
546                 break;
547         }
548                 
549         case catIgnore: {
550                 cerr << "ignoring a char: " << c << "\n";
551                 break;
552         }
553                 
554         default:
555                 push_back(Token(docstring(1, c), catcode(c)));
556         }
557         //cerr << tokens_.back();
558 }
559
560
561 void Parser::dump() const
562 {
563         cerr << "\nTokens: ";
564         for (unsigned i = 0; i < tokens_.size(); ++i) {
565                 if (i == pos_)
566                         cerr << " <#> ";
567                 cerr << tokens_[i];
568         }
569         cerr << " pos: " << pos_ << "\n";
570 }
571
572
573 void Parser::error(string const & msg)
574 {
575         cerr << "Line ~" << lineno_ << ":  parse error: " << msg << endl;
576         dump();
577         //exit(1);
578 }
579
580
581 string Parser::verbatimOption()
582 {
583         string res;
584         if (next_token().character() == '[') {
585                 Token t = get_token();
586                 for (t = get_token(); t.character() != ']' && good(); t = get_token()) {
587                         if (t.cat() == catBegin) {
588                                 putback();
589                                 res += '{' + verbatim_item() + '}';
590                         } else
591                                 res += t.cs();
592                 }
593         }
594         return res;
595 }
596
597
598 string Parser::verbatim_item()
599 {
600         if (!good())
601                 error("stream bad");
602         skip_spaces();
603         if (next_token().cat() == catBegin) {
604                 Token t = get_token(); // skip brace
605                 string res;
606                 for (Token t = get_token(); t.cat() != catEnd && good(); t = get_token()) {
607                         if (t.cat() == catBegin) {
608                                 putback();
609                                 res += '{' + verbatim_item() + '}';
610                         }
611                         else
612                                 res += t.asInput();
613                 }
614                 return res;
615         }
616         return get_token().asInput();
617 }
618
619
620 void Parser::reset()
621 {
622         pos_ = 0;
623 }
624
625
626 void Parser::setCatCode(char c, CatCode cat)
627 {
628         theCatcode[(unsigned char)c] = cat;
629 }
630
631
632 CatCode Parser::getCatCode(char c) const
633 {
634         return theCatcode[(unsigned char)c];
635 }
636
637
638 } // namespace lyx