2003-08-19 10:04:35 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file texparser.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-08-19 10:04:35 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2003-02-12 07:53:03 +00:00
|
|
|
|
#ifndef PARSER_H
|
|
|
|
|
#define PARSER_H
|
|
|
|
|
|
2003-02-12 08:36:49 +00:00
|
|
|
|
#include <vector>
|
2003-06-30 11:36:08 +00:00
|
|
|
|
#include <string>
|
|
|
|
|
|
2003-02-12 07:53:03 +00:00
|
|
|
|
|
2003-04-16 12:52:49 +00:00
|
|
|
|
enum mode_type {UNDECIDED_MODE, TEXT_MODE, MATH_MODE, MATHTEXT_MODE, TABLE_MODE};
|
2003-02-12 07:53:03 +00:00
|
|
|
|
|
2003-06-30 11:36:08 +00:00
|
|
|
|
mode_type asMode(mode_type oldmode, std::string const & str);
|
2003-02-12 07:53:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// These are TeX's catcodes
|
|
|
|
|
enum CatCode {
|
|
|
|
|
catEscape, // 0 backslash
|
|
|
|
|
catBegin, // 1 {
|
|
|
|
|
catEnd, // 2 }
|
|
|
|
|
catMath, // 3 $
|
|
|
|
|
catAlign, // 4 &
|
|
|
|
|
catNewline, // 5 ^^M
|
|
|
|
|
catParameter, // 6 #
|
|
|
|
|
catSuper, // 7 ^
|
|
|
|
|
catSub, // 8 _
|
|
|
|
|
catIgnore, // 9
|
|
|
|
|
catSpace, // 10 space
|
|
|
|
|
catLetter, // 11 a-zA-Z
|
|
|
|
|
catOther, // 12 none of the above
|
|
|
|
|
catActive, // 13 ~
|
|
|
|
|
catComment, // 14 %
|
|
|
|
|
catInvalid // 15 <delete>
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CatCode catcode(unsigned char c);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
FLAG_BRACE_LAST = 1 << 1, // last closing brace ends the parsing
|
|
|
|
|
FLAG_RIGHT = 1 << 2, // next \\right ends the parsing process
|
|
|
|
|
FLAG_END = 1 << 3, // next \\end ends the parsing process
|
|
|
|
|
FLAG_BRACK_LAST = 1 << 4, // next closing bracket ends the parsing
|
|
|
|
|
FLAG_TEXTMODE = 1 << 5, // we are in a box
|
|
|
|
|
FLAG_ITEM = 1 << 6, // read a (possibly braced token)
|
|
|
|
|
FLAG_LEAVE = 1 << 7, // leave the loop at the end
|
|
|
|
|
FLAG_SIMPLE = 1 << 8, // next $ leaves the loop
|
|
|
|
|
FLAG_EQUATION = 1 << 9, // next \] leaves the loop
|
|
|
|
|
FLAG_SIMPLE2 = 1 << 10, // next \) leaves the loop
|
|
|
|
|
FLAG_OPTION = 1 << 11, // read [...] style option
|
2003-04-16 12:52:49 +00:00
|
|
|
|
FLAG_BRACED = 1 << 12, // read {...} style argument
|
2003-10-23 11:46:33 +00:00
|
|
|
|
FLAG_CELL = 1 << 13, // read table cell
|
|
|
|
|
FLAG_TABBING = 1 << 14 // We are inside a tabbing environment
|
2003-02-12 07:53:03 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Helper class for parsing
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
class Token {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
Token() : cs_(), char_(0), cat_(catIgnore) {}
|
|
|
|
|
///
|
|
|
|
|
Token(char c, CatCode cat) : cs_(), char_(c), cat_(cat) {}
|
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
Token(std::string const & cs) : cs_(cs), char_(0), cat_(catIgnore) {}
|
2003-02-12 07:53:03 +00:00
|
|
|
|
|
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
std::string const & cs() const { return cs_; }
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
|
|
|
|
CatCode cat() const { return cat_; }
|
|
|
|
|
///
|
|
|
|
|
char character() const { return char_; }
|
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
std::string asString() const;
|
2003-02-12 11:09:22 +00:00
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
std::string asInput() const;
|
2003-02-12 07:53:03 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
std::string cs_;
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
|
|
|
|
char char_;
|
|
|
|
|
///
|
|
|
|
|
CatCode cat_;
|
|
|
|
|
};
|
|
|
|
|
|
2003-02-12 18:17:27 +00:00
|
|
|
|
std::ostream & operator<<(std::ostream & os, Token const & t);
|
2003-02-12 07:53:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Actual parser class
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
class Parser {
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
///
|
2003-02-12 18:17:27 +00:00
|
|
|
|
Parser(std::istream & is);
|
2003-04-16 12:52:49 +00:00
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
Parser(std::string const & s);
|
2003-02-12 07:53:03 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
int lineno() const { return lineno_; }
|
|
|
|
|
///
|
|
|
|
|
void putback();
|
|
|
|
|
/// dump contents to screen
|
|
|
|
|
void dump() const;
|
|
|
|
|
|
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
std::string getArg(char left, char right);
|
2003-02-28 13:37:43 +00:00
|
|
|
|
/// getArg('[', ']') including the brackets
|
2003-06-30 11:36:08 +00:00
|
|
|
|
std::string getOpt();
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
|
|
|
|
char getChar();
|
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
void error(std::string const & msg);
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
2003-02-12 18:17:27 +00:00
|
|
|
|
void tokenize(std::istream & is);
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
|
|
|
|
void push_back(Token const & t);
|
|
|
|
|
///
|
|
|
|
|
void pop_back();
|
|
|
|
|
///
|
2003-04-23 15:14:43 +00:00
|
|
|
|
Token const & prev_token() const;
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
2003-04-23 15:14:43 +00:00
|
|
|
|
Token const & next_token() const;
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
2003-04-23 15:14:43 +00:00
|
|
|
|
Token const & get_token();
|
2003-02-12 07:53:03 +00:00
|
|
|
|
/// skips spaces if any
|
2003-04-25 15:54:29 +00:00
|
|
|
|
void skip_spaces();
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
void lex(std::string const & s);
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
|
|
|
|
bool good() const;
|
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
std::string verbatim_item();
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
2003-06-30 11:36:08 +00:00
|
|
|
|
std::string verbatimOption();
|
2003-10-23 11:46:33 +00:00
|
|
|
|
/// resets the parser to initial state
|
|
|
|
|
void reset();
|
2003-02-28 13:37:43 +00:00
|
|
|
|
///
|
|
|
|
|
void setCatCode(char c, CatCode cat);
|
|
|
|
|
///
|
|
|
|
|
CatCode getCatCode(char c) const;
|
|
|
|
|
|
2003-02-12 07:53:03 +00:00
|
|
|
|
//private:
|
|
|
|
|
///
|
|
|
|
|
int lineno_;
|
|
|
|
|
///
|
2003-02-12 21:07:47 +00:00
|
|
|
|
std::vector<Token> tokens_;
|
2003-02-12 07:53:03 +00:00
|
|
|
|
///
|
|
|
|
|
unsigned pos_;
|
|
|
|
|
};
|
|
|
|
|
|
2003-06-30 11:36:08 +00:00
|
|
|
|
|
2003-02-12 07:53:03 +00:00
|
|
|
|
#endif
|