X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2FParser.cpp;h=69e3460f459de17c1ccc6f15b564eeac8589af69;hb=3628ceec480c3d8fa9673f80f781eb1153fb9e1f;hp=01f14b8dc9da9f3e031e37f964f6060c0eb35ff0;hpb=28dc8a77ee281f606de3bd7c56d467466ee28b64;p=lyx.git diff --git a/src/tex2lyx/Parser.cpp b/src/tex2lyx/Parser.cpp index 01f14b8dc9..69e3460f45 100644 --- a/src/tex2lyx/Parser.cpp +++ b/src/tex2lyx/Parser.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -12,55 +12,25 @@ #include "Encoding.h" #include "Parser.h" +#include "support/foreach.h" +#include "support/lstrings.h" #include "support/textutils.h" #include using namespace std; +using namespace lyx::support; namespace lyx { namespace { -CatCode theCatcode[256]; - -void catInit() -{ - static bool init_done = false; - if (init_done) - return; - init_done = true; - - fill(theCatcode, theCatcode + 256, catOther); - fill(theCatcode + 'a', theCatcode + 'z' + 1, catLetter); - fill(theCatcode + 'A', theCatcode + 'Z' + 1, catLetter); - - theCatcode[int('\\')] = catEscape; - theCatcode[int('{')] = catBegin; - theCatcode[int('}')] = catEnd; - theCatcode[int('$')] = catMath; - theCatcode[int('&')] = catAlign; - theCatcode[int('\n')] = catNewline; - theCatcode[int('#')] = catParameter; - theCatcode[int('^')] = catSuper; - theCatcode[int('_')] = catSub; - theCatcode[0x7f] = catIgnore; - theCatcode[int(' ')] = catSpace; - theCatcode[int('\t')] = catSpace; - theCatcode[int('\r')] = catNewline; - theCatcode[int('~')] = catActive; - theCatcode[int('%')] = catComment; - - // This is wrong! - theCatcode[int('@')] = catLetter; -} - /*! * Translate a line ending to '\n'. * \p c must have catcode catNewline, and it must be the last character read * from \p is. */ -char_type getNewline(idocstream & is, char_type c) +char_type getNewline(iparserdocstream & is, char_type c) { // we have to handle 3 different line endings: // - UNIX (\n) @@ -79,16 +49,8 @@ char_type getNewline(idocstream & is, char_type c) return c; } -CatCode catcode(char_type c) -{ - if (c < 256) - return theCatcode[(unsigned char)c]; - return catOther; -} - } - // // Token // @@ -152,21 +114,64 @@ void debugToken(std::ostream & os, Token const & t, unsigned int flags) #endif +// +// Wrapper +// + +void iparserdocstream::setEncoding(std::string const & e) +{ + is_ << lyx::setEncoding(e); +} + + +void iparserdocstream::putback(char_type c) +{ + s_ = c + s_; +} + + +void iparserdocstream::putback(docstring s) +{ + s_ = s + s_; +} + + +iparserdocstream & iparserdocstream::get(char_type &c) +{ + if (s_.empty()) + is_.get(c); + else { + //cerr << "unparsed: " << to_utf8(s_) <iconvName()); +} + + +void Parser::catInit() +{ + if (curr_cat_ == theCatcodesType_) return; + curr_cat_ = theCatcodesType_; + + fill(theCatcode_, theCatcode_ + 256, catOther); + fill(theCatcode_ + 'a', theCatcode_ + 'z' + 1, catLetter); + fill(theCatcode_ + 'A', theCatcode_ + 'Z' + 1, catLetter); + // This is wrong! + theCatcode_[int('@')] = catLetter; + + if (theCatcodesType_ == NORMAL_CATCODES) { + theCatcode_[int('\\')] = catEscape; + theCatcode_[int('{')] = catBegin; + theCatcode_[int('}')] = catEnd; + theCatcode_[int('$')] = catMath; + theCatcode_[int('&')] = catAlign; + theCatcode_[int('\n')] = catNewline; + theCatcode_[int('#')] = catParameter; + theCatcode_[int('^')] = catSuper; + theCatcode_[int('_')] = catSub; + theCatcode_[0x7f] = catIgnore; + theCatcode_[int(' ')] = catSpace; + theCatcode_[int('\t')] = catSpace; + theCatcode_[int('\r')] = catNewline; + theCatcode_[int('~')] = catActive; + theCatcode_[int('%')] = catComment; } - //cerr << "setting encoding to " << enc->iconvName() << std::endl; - is_ << lyx::setEncoding(enc->iconvName()); - encoding_latex_ = e; +} + +CatCode Parser::catcode(char_type c) const +{ + if (c < 256) + return theCatcode_[(unsigned char)c]; + return catOther; +} + + +void Parser::setCatcode(char c, CatCode cat) +{ + theCatcode_[(unsigned char)c] = cat; + deparse(); +} + + +void Parser::setCatcodes(cat_type t) +{ + theCatcodesType_ = t; + deparse(); +} + + +bool Parser::setEncoding(std::string const & e) +{ + //cerr << "setting encoding to " << e << std::endl; + encoding_iconv_ = e; + // If the encoding is fixed, we must not change the stream encoding + // (because the whole input uses that encoding, e.g. if it comes from + // the clipboard). We still need to track the original encoding in + // encoding_iconv_, so that the generated output is correct. + if (!fixed_enc_) + is_.setEncoding(e); + return true; } @@ -216,7 +303,11 @@ Token const Parser::curr_token() const Token const Parser::next_token() { static const Token dummy; - return good() ? tokens_[pos_] : dummy; + if (!good()) + return dummy; + if (pos_ >= tokens_.size()) + tokenize_one(); + return pos_ < tokens_.size() ? tokens_[pos_] : dummy; } @@ -224,12 +315,14 @@ Token const Parser::next_token() Token const Parser::next_next_token() { static const Token dummy; - // If good() has not been called after the last get_token() we need - // to tokenize two more tokens. - if (pos_ + 1 >= tokens_.size()) { + if (!good()) + return dummy; + // If tokenize_one() has not been called after the last get_token() we + // need to tokenize two more tokens. + if (pos_ >= tokens_.size()) tokenize_one(); + if (pos_ + 1 >= tokens_.size()) tokenize_one(); - } return pos_ + 1 < tokens_.size() ? tokens_[pos_ + 1] : dummy; } @@ -238,8 +331,16 @@ Token const Parser::next_next_token() Token const Parser::get_token() { static const Token dummy; - //cerr << "looking at token " << tokens_[pos_] << " pos: " << pos_ << '\n'; - return good() ? tokens_[pos_++] : dummy; + if (!good()) + return dummy; + if (pos_ >= tokens_.size()) { + tokenize_one(); + if (pos_ >= tokens_.size()) + return dummy; + } + // cerr << "looking at token " << tokens_[pos_] + // << " pos: " << pos_ << '\n'; + return tokens_[pos_++]; } @@ -331,23 +432,23 @@ void Parser::popPosition() { pos_ = positions_.back(); positions_.pop_back(); + deparse(); } -bool Parser::good() +void Parser::dropPosition() { - if (pos_ < tokens_.size()) - return true; - tokenize_one(); - return pos_ < tokens_.size(); + positions_.pop_back(); } -char Parser::getChar() +bool Parser::good() { - if (!good()) - error("The input stream is not well..."); - return get_token().character(); + if (pos_ < tokens_.size()) + return true; + if (!is_.good()) + return false; + return is_.peek() != idocstream::traits_type::eof(); } @@ -400,7 +501,8 @@ Parser::Arg Parser::getFullArg(char left, char right, bool allow_escaping) putback(); return make_pair(false, string()); } else { - for (t = get_token(); good(); t = get_token()) { + while (good()) { + t = get_token(); // Ignore comments if (t.cat() == catComment) { if (!t.cs().empty()) @@ -462,7 +564,7 @@ string Parser::getFullParentheseArg() } -string const Parser::verbatimEnvironment(string const & name) +string const Parser::ertEnvironment(string const & name) { if (!good()) return string(); @@ -475,7 +577,7 @@ string const Parser::verbatimEnvironment(string const & name) } else if (t.asInput() == "\\begin") { string const env = getArg('{', '}'); os << "\\begin{" << env << '}' - << verbatimEnvironment(env) + << ertEnvironment(env) << "\\end{" << env << '}'; } else if (t.asInput() == "\\end") { string const end = getArg('{', '}'); @@ -535,11 +637,107 @@ string const Parser::plainCommand(char left, char right, string const & name) } +Parser::Arg Parser::verbatimStuff(string const & end_string, bool const allow_linebreak) +{ + if (!good()) + return Arg(false, string()); + + pushPosition(); + ostringstream oss; + size_t match_index = 0; + setCatcodes(VERBATIM_CATCODES); + for (Token t = get_token(); good(); t = get_token()) { + // FIXME t.asInput() might be longer than we need ? + if (t.asInput() == end_string.substr(match_index, + t.asInput().length())) { + match_index += t.asInput().length(); + if (match_index >= end_string.length()) + break; + } else { + if (!allow_linebreak && t.asInput() == "\n") { + cerr << "unexpected end of input" << endl; + popPosition(); + setCatcodes(NORMAL_CATCODES); + return Arg(false, string()); + } + if (match_index) { + oss << end_string.substr(0, match_index) + << t.asInput(); + match_index = 0; + } else + oss << t.asInput(); + } + } + + if (!good()) { + cerr << "unexpected end of input" << endl; + popPosition(); + setCatcodes(NORMAL_CATCODES); + return Arg(false, string()); + } + setCatcodes(NORMAL_CATCODES); + dropPosition(); + return Arg(true, oss.str()); +} + + +string const Parser::verbatimEnvironment(string const & name) +{ + //FIXME: do something if endstring is not found + string s = verbatimStuff("\\end{" + name + "}").second; + // ignore one newline at beginning or end of string + if (prefixIs(s, "\n")) + s.erase(0,1); + if (suffixIs(s, "\n")) + s.erase(s.length() - 1,1); + return s; +} + + +string Parser::verbatimOption() +{ + string res; + if (next_token().character() == '[') { + Token t = get_token(); + for (t = get_token(); t.character() != ']' && good(); t = get_token()) { + if (t.cat() == catBegin) { + putback(); + res += '{' + verbatim_item() + '}'; + } else + res += t.asInput(); + } + } + return res; +} + + +string Parser::verbatim_item() +{ + if (!good()) + error("stream bad"); + skip_spaces(); + if (next_token().cat() == catBegin) { + Token t = get_token(); // skip brace + string res; + for (Token t = get_token(); t.cat() != catEnd && good(); t = get_token()) { + if (t.cat() == catBegin) { + putback(); + res += '{' + verbatim_item() + '}'; + } + else + res += t.asInput(); + } + return res; + } + return get_token().asInput(); +} + + void Parser::tokenize_one() { catInit(); char_type c; - if (!is_.get(c)) + if (!is_.get(c)) return; switch (catcode(c)) { @@ -632,61 +830,10 @@ void Parser::error(string const & msg) } -string Parser::verbatimOption() -{ - string res; - if (next_token().character() == '[') { - Token t = get_token(); - for (t = get_token(); t.character() != ']' && good(); t = get_token()) { - if (t.cat() == catBegin) { - putback(); - res += '{' + verbatim_item() + '}'; - } else - res += t.cs(); - } - } - return res; -} - - -string Parser::verbatim_item() -{ - if (!good()) - error("stream bad"); - skip_spaces(); - if (next_token().cat() == catBegin) { - Token t = get_token(); // skip brace - string res; - for (Token t = get_token(); t.cat() != catEnd && good(); t = get_token()) { - if (t.cat() == catBegin) { - putback(); - res += '{' + verbatim_item() + '}'; - } - else - res += t.asInput(); - } - return res; - } - return get_token().asInput(); -} - - void Parser::reset() { pos_ = 0; } -void Parser::setCatCode(char c, CatCode cat) -{ - theCatcode[(unsigned char)c] = cat; -} - - -CatCode Parser::getCatCode(char c) const -{ - return theCatcode[(unsigned char)c]; -} - - } // namespace lyx