mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 02:49:46 +00:00
5552f4045f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7222 a592a061-630c-0410-9148-cb99ea01b6c8
379 lines
6.1 KiB
C
379 lines
6.1 KiB
C
|
||
#include <config.h>
|
||
|
||
#include "texparser.h"
|
||
|
||
#include <iostream>
|
||
#include <sstream>
|
||
|
||
using std::cerr;
|
||
using std::endl;
|
||
using std::fill;
|
||
using std::ios;
|
||
using std::istream;
|
||
using std::istringstream;
|
||
using std::ostream;
|
||
using std::string;
|
||
using std::vector;
|
||
|
||
|
||
namespace {
|
||
|
||
CatCode theCatcode[256];
|
||
|
||
void skipSpaceTokens(istream & is, char c)
|
||
{
|
||
// skip trailing spaces
|
||
while (catcode(c) == catSpace || catcode(c) == catNewline)
|
||
if (!is.get(c))
|
||
break;
|
||
//cerr << "putting back: " << c << "\n";
|
||
is.putback(c);
|
||
}
|
||
|
||
|
||
void catInit()
|
||
{
|
||
fill(theCatcode, theCatcode + 256, catOther);
|
||
fill(theCatcode + 'a', theCatcode + 'z' + 1, catLetter);
|
||
fill(theCatcode + 'A', theCatcode + 'Z' + 1, catLetter);
|
||
|
||
theCatcode['\\'] = catEscape;
|
||
theCatcode['{'] = catBegin;
|
||
theCatcode['}'] = catEnd;
|
||
theCatcode['$'] = catMath;
|
||
theCatcode['&'] = catAlign;
|
||
theCatcode[10] = catNewline;
|
||
theCatcode['#'] = catParameter;
|
||
theCatcode['^'] = catSuper;
|
||
theCatcode['_'] = catSub;
|
||
theCatcode[''] = catIgnore;
|
||
theCatcode[' '] = catSpace;
|
||
theCatcode['\t'] = catSpace;
|
||
theCatcode[13] = catIgnore;
|
||
theCatcode['~'] = catActive;
|
||
theCatcode['%'] = catComment;
|
||
|
||
// This is wrong!
|
||
theCatcode['@'] = catLetter;
|
||
}
|
||
|
||
}
|
||
|
||
|
||
//
|
||
// catcodes
|
||
//
|
||
|
||
mode_type asMode(mode_type oldmode, string const & str)
|
||
{
|
||
if (str == "mathmode")
|
||
return MATH_MODE;
|
||
if (str == "textmode" || str == "forcetext")
|
||
return TEXT_MODE;
|
||
return oldmode;
|
||
}
|
||
|
||
|
||
CatCode catcode(unsigned char c)
|
||
{
|
||
return theCatcode[c];
|
||
}
|
||
|
||
|
||
|
||
//
|
||
// Token
|
||
//
|
||
|
||
ostream & operator<<(ostream & os, Token const & t)
|
||
{
|
||
if (t.cs().size())
|
||
os << '\\' << t.cs() << ' ';
|
||
else if (t.cat() == catLetter)
|
||
os << t.character();
|
||
else if (t.cat() == catNewline)
|
||
os << "[\\n," << t.cat() << "]\n";
|
||
else
|
||
os << '[' << t.character() << ',' << t.cat() << ']';
|
||
return os;
|
||
}
|
||
|
||
|
||
string Token::asString() const
|
||
{
|
||
return cs_.size() ? cs_ : string(1, char_);
|
||
}
|
||
|
||
|
||
string Token::asInput() const
|
||
{
|
||
return char_ ? string(1, char_) : '\\' + cs_ + ' ';
|
||
}
|
||
|
||
|
||
//
|
||
// Parser
|
||
//
|
||
|
||
|
||
Parser::Parser(istream & is)
|
||
: lineno_(0), pos_(0)
|
||
{
|
||
tokenize(is);
|
||
}
|
||
|
||
|
||
Parser::Parser(string const & s)
|
||
: lineno_(0), pos_(0)
|
||
{
|
||
istringstream is(s);
|
||
tokenize(is);
|
||
}
|
||
|
||
|
||
void Parser::push_back(Token const & t)
|
||
{
|
||
tokens_.push_back(t);
|
||
}
|
||
|
||
|
||
void Parser::pop_back()
|
||
{
|
||
tokens_.pop_back();
|
||
}
|
||
|
||
|
||
Token const & Parser::prev_token() const
|
||
{
|
||
static const Token dummy;
|
||
return pos_ > 0 ? tokens_[pos_ - 1] : dummy;
|
||
}
|
||
|
||
|
||
Token const & Parser::next_token() const
|
||
{
|
||
static const Token dummy;
|
||
return good() ? tokens_[pos_] : dummy;
|
||
}
|
||
|
||
|
||
Token const & Parser::get_token()
|
||
{
|
||
static const Token dummy;
|
||
//cerr << "looking at token " << tokens_[pos_] << " pos: " << pos_ << '\n';
|
||
return good() ? tokens_[pos_++] : dummy;
|
||
}
|
||
|
||
|
||
void Parser::skip_spaces()
|
||
{
|
||
while (1) {
|
||
if (next_token().cat() == catSpace || next_token().cat() == catNewline)
|
||
get_token();
|
||
else if (next_token().cat() == catComment)
|
||
while (next_token().cat() != catNewline)
|
||
get_token();
|
||
else
|
||
break;
|
||
}
|
||
}
|
||
|
||
|
||
void Parser::putback()
|
||
{
|
||
--pos_;
|
||
}
|
||
|
||
|
||
bool Parser::good() const
|
||
{
|
||
return pos_ < tokens_.size();
|
||
}
|
||
|
||
|
||
char Parser::getChar()
|
||
{
|
||
if (!good())
|
||
error("The input stream is not well...");
|
||
return tokens_[pos_++].character();
|
||
}
|
||
|
||
|
||
string Parser::getArg(char left, char right)
|
||
{
|
||
skip_spaces();
|
||
|
||
string result;
|
||
char c = getChar();
|
||
|
||
if (c != left)
|
||
putback();
|
||
else
|
||
while ((c = getChar()) != right && good())
|
||
result += c;
|
||
|
||
return result;
|
||
}
|
||
|
||
|
||
string Parser::getOpt()
|
||
{
|
||
string const res = getArg('[', ']');
|
||
return res.size() ? '[' + res + ']' : string();
|
||
}
|
||
|
||
|
||
void Parser::tokenize(istream & is)
|
||
{
|
||
static bool init_done = false;
|
||
|
||
if (!init_done) {
|
||
catInit();
|
||
init_done = true;
|
||
}
|
||
|
||
char c;
|
||
while (is.get(c)) {
|
||
//cerr << "reading c: " << c << "\n";
|
||
|
||
switch (catcode(c)) {
|
||
case catNewline: {
|
||
++lineno_;
|
||
is.get(c);
|
||
if (catcode(c) == catNewline) {
|
||
//do {
|
||
is.get(c);
|
||
//} while (catcode(c) == catNewline);
|
||
push_back(Token("par"));
|
||
} else {
|
||
push_back(Token('\n', catNewline));
|
||
}
|
||
is.putback(c);
|
||
break;
|
||
}
|
||
|
||
case catComment: {
|
||
push_back(Token(c, catComment));
|
||
while (is.get(c) && catcode(c) != catNewline)
|
||
push_back(Token(c, catLetter));
|
||
push_back(Token(c, catNewline));
|
||
++lineno_;
|
||
is.get(c);
|
||
if (catcode(c) == catNewline) {
|
||
push_back(Token("par"));
|
||
++lineno_;
|
||
} else {
|
||
is.putback(c);
|
||
}
|
||
break;
|
||
}
|
||
|
||
case catEscape: {
|
||
is.get(c);
|
||
if (!is) {
|
||
error("unexpected end of input");
|
||
} else {
|
||
string s(1, c);
|
||
if (catcode(c) == catLetter) {
|
||
// collect letters
|
||
while (is.get(c) && catcode(c) == catLetter)
|
||
s += c;
|
||
skipSpaceTokens(is, c);
|
||
}
|
||
push_back(Token(s));
|
||
}
|
||
break;
|
||
}
|
||
|
||
case catSuper:
|
||
case catSub: {
|
||
push_back(Token(c, catcode(c)));
|
||
is.get(c);
|
||
skipSpaceTokens(is, c);
|
||
break;
|
||
}
|
||
|
||
case catIgnore: {
|
||
if (c != 13)
|
||
cerr << "ignoring a char: " << int(c) << "\n";
|
||
break;
|
||
}
|
||
|
||
default:
|
||
push_back(Token(c, catcode(c)));
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
void Parser::dump() const
|
||
{
|
||
cerr << "\nTokens: ";
|
||
for (unsigned i = 0; i < tokens_.size(); ++i) {
|
||
if (i == pos_)
|
||
cerr << " <#> ";
|
||
cerr << tokens_[i];
|
||
}
|
||
cerr << " pos: " << pos_ << "\n";
|
||
}
|
||
|
||
|
||
void Parser::error(string const & msg)
|
||
{
|
||
cerr << "Line ~" << lineno_ << ": parse error: " << msg << endl;
|
||
dump();
|
||
//exit(1);
|
||
}
|
||
|
||
|
||
string Parser::verbatimOption()
|
||
{
|
||
string res;
|
||
if (next_token().character() == '[') {
|
||
Token t = get_token();
|
||
for (Token t = get_token(); t.character() != ']' && good(); t = get_token()) {
|
||
if (t.cat() == catBegin) {
|
||
putback();
|
||
res += '{' + verbatim_item() + '}';
|
||
} else
|
||
res += t.asString();
|
||
}
|
||
}
|
||
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::setCatCode(char c, CatCode cat)
|
||
{
|
||
theCatcode[c] = cat;
|
||
}
|
||
|
||
|
||
CatCode Parser::getCatCode(char c) const
|
||
{
|
||
return theCatcode[c];
|
||
}
|