1999-09-27 18:44:28 +00:00
|
|
|
|
/*
|
|
|
|
|
* File: math_parser.C
|
|
|
|
|
* Purpose: Parser for mathed
|
|
|
|
|
* Author: Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
|
|
|
|
|
* Created: January 1996
|
|
|
|
|
* Description: Parse LaTeX2e math mode code.
|
|
|
|
|
*
|
|
|
|
|
* Dependencies: Xlib, XForms
|
|
|
|
|
*
|
2000-03-09 03:36:48 +00:00
|
|
|
|
* Copyright: 1996, Alejandro Aguilar Sierra
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
|
|
|
|
* Version: 0.8beta.
|
|
|
|
|
*
|
|
|
|
|
* You are free to use and modify this code under the terms of
|
|
|
|
|
* the GNU General Public Licence version 2 or later.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-10-29 15:45:24 +00:00
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
If someone desperately needs partial "structures" (such as a few cells of
|
|
|
|
|
an array inset or similar) (s)he could uses the following hack as starting
|
|
|
|
|
point to write some macros:
|
|
|
|
|
|
|
|
|
|
\newif\ifcomment
|
|
|
|
|
\commentfalse
|
|
|
|
|
\ifcomment
|
|
|
|
|
\def\makeamptab{\catcode`\&=4\relax}
|
|
|
|
|
\def\makeampletter{\catcode`\&=11\relax}
|
|
|
|
|
\def\b{\makeampletter\expandafter\makeamptab\bi}
|
|
|
|
|
\long\def\bi#1\e{}
|
|
|
|
|
\else
|
|
|
|
|
\def\b{}\def\e{}
|
|
|
|
|
\fi
|
|
|
|
|
|
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
\[\begin{array}{ccc}
|
|
|
|
|
1 & 2\b & 3^2\\
|
|
|
|
|
4 & 5\e & 6\\
|
|
|
|
|
7 & 8 & 9
|
|
|
|
|
\end{array}\]
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include <config.h>
|
2000-09-26 13:54:57 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#ifdef __GNUG__
|
2001-02-13 13:28:32 +00:00
|
|
|
|
#pragma implementation
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "math_parser.h"
|
|
|
|
|
#include "math_inset.h"
|
2001-07-17 07:38:41 +00:00
|
|
|
|
#include "math_arrayinset.h"
|
2001-10-29 15:45:24 +00:00
|
|
|
|
#include "math_braceinset.h"
|
2001-11-12 16:45:09 +00:00
|
|
|
|
#include "math_casesinset.h"
|
2001-08-09 09:19:18 +00:00
|
|
|
|
#include "math_charinset.h"
|
2001-07-17 07:38:41 +00:00
|
|
|
|
#include "math_deliminset.h"
|
2001-08-13 14:02:37 +00:00
|
|
|
|
#include "math_factory.h"
|
2001-07-17 07:38:41 +00:00
|
|
|
|
#include "math_funcinset.h"
|
2001-08-21 14:20:50 +00:00
|
|
|
|
#include "math_kerninset.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "math_macro.h"
|
2001-02-13 17:08:51 +00:00
|
|
|
|
#include "math_macrotable.h"
|
|
|
|
|
#include "math_macrotemplate.h"
|
2001-11-08 12:28:33 +00:00
|
|
|
|
#include "math_hullinset.h"
|
2001-07-17 07:38:41 +00:00
|
|
|
|
#include "math_rootinset.h"
|
2001-08-10 15:32:26 +00:00
|
|
|
|
#include "math_sqrtinset.h"
|
2001-07-12 07:18:29 +00:00
|
|
|
|
#include "math_scriptinset.h"
|
2001-08-30 08:55:13 +00:00
|
|
|
|
#include "math_specialcharinset.h"
|
2001-09-05 12:57:13 +00:00
|
|
|
|
#include "math_splitinset.h"
|
2001-07-17 07:38:41 +00:00
|
|
|
|
#include "math_sqrtinset.h"
|
2001-11-08 12:15:12 +00:00
|
|
|
|
#include "math_support.h"
|
2001-12-18 03:16:46 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
#include "lyxlex.h"
|
2001-11-08 12:55:58 +00:00
|
|
|
|
#include "debug.h"
|
2001-12-18 03:16:46 +00:00
|
|
|
|
|
2001-07-29 17:39:01 +00:00
|
|
|
|
#include "support/lstrings.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-12-18 03:16:46 +00:00
|
|
|
|
#include <cctype>
|
|
|
|
|
#include <stack>
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
|
using std::istream;
|
2001-08-17 11:08:55 +00:00
|
|
|
|
using std::ostream;
|
|
|
|
|
using std::ios;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
using std::endl;
|
2001-10-24 17:14:05 +00:00
|
|
|
|
using std::stack;
|
2001-12-18 03:16:46 +00:00
|
|
|
|
using std::fill;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2000-11-02 04:48:34 +00:00
|
|
|
|
|
2001-08-10 07:52:04 +00:00
|
|
|
|
namespace {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
bool stared(string const & s)
|
|
|
|
|
{
|
2001-12-18 03:16:46 +00:00
|
|
|
|
unsigned const n = s.size();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
return n && s[n - 1] == '*';
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
void add(MathArray & ar, char c, MathTextCodes code)
|
|
|
|
|
{
|
|
|
|
|
ar.push_back(MathAtom(new MathCharInset(c, code)));
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +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>
|
2001-06-25 00:06:33 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-08-17 10:21:37 +00:00
|
|
|
|
CatCode theCatcode[256];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline CatCode catcode(unsigned char c)
|
|
|
|
|
{
|
|
|
|
|
return theCatcode[c];
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
enum {
|
2001-08-13 14:02:37 +00:00
|
|
|
|
FLAG_BRACE_LAST = 1 << 1, // last closing brace ends the parsing process
|
2001-08-17 09:48:24 +00:00
|
|
|
|
FLAG_RIGHT = 1 << 2, // next \\right ends the parsing process
|
|
|
|
|
FLAG_END = 1 << 3, // next \\end ends the parsing process
|
2001-08-13 14:02:37 +00:00
|
|
|
|
FLAG_BRACK_END = 1 << 4, // next closing bracket ends the parsing process
|
|
|
|
|
FLAG_ITEM = 1 << 7, // read a (possibly braced token)
|
|
|
|
|
FLAG_BLOCK = 1 << 8, // next block ends the parsing process
|
2001-08-17 11:08:55 +00:00
|
|
|
|
FLAG_LEAVE = 1 << 9 // leave the loop at the end
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
void catInit()
|
|
|
|
|
{
|
2001-12-18 03:16:46 +00:00
|
|
|
|
fill(theCatcode, theCatcode + 256, catOther);
|
|
|
|
|
fill(theCatcode + 'a', theCatcode + 'z' + 1, catLetter);
|
|
|
|
|
fill(theCatcode + 'A', theCatcode + 'Z' + 1, catLetter);
|
|
|
|
|
|
|
|
|
|
// for (int i = 0; i <= 255; ++i)
|
|
|
|
|
// theCatcode[i] = catOther;
|
|
|
|
|
// for (int i = 'a'; i <= 'z'; ++i)
|
|
|
|
|
// theCatcode[i] = catLetter;
|
|
|
|
|
// for (int i = 'A'; i <= 'Z'; ++i)
|
|
|
|
|
// theCatcode[i] = catLetter;
|
2001-08-17 10:21:37 +00:00
|
|
|
|
|
|
|
|
|
theCatcode['\\'] = catEscape;
|
|
|
|
|
theCatcode['{'] = catBegin;
|
|
|
|
|
theCatcode['}'] = catEnd;
|
|
|
|
|
theCatcode['$'] = catMath;
|
|
|
|
|
theCatcode['&'] = catAlign;
|
|
|
|
|
theCatcode['\n'] = catNewline;
|
|
|
|
|
theCatcode['#'] = catParameter;
|
|
|
|
|
theCatcode['^'] = catSuper;
|
|
|
|
|
theCatcode['_'] = catSub;
|
|
|
|
|
theCatcode[''] = catIgnore;
|
|
|
|
|
theCatcode[' '] = catSpace;
|
|
|
|
|
theCatcode['\t'] = catSpace;
|
|
|
|
|
theCatcode['\r'] = catSpace;
|
|
|
|
|
theCatcode['~'] = catActive;
|
|
|
|
|
theCatcode['%'] = catComment;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
//
|
|
|
|
|
// Helper class for parsing
|
|
|
|
|
//
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
class Token {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
Token() : cs_(), char_(0), cat_(catIgnore) {}
|
|
|
|
|
///
|
|
|
|
|
Token(char c, CatCode cat) : cs_(), char_(c), cat_(cat) {}
|
|
|
|
|
///
|
2001-12-18 03:16:46 +00:00
|
|
|
|
Token(string const & cs) : cs_(cs), char_(0), cat_(catIgnore) {}
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 10:51:50 +00:00
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
string const & cs() const { return cs_; }
|
|
|
|
|
///
|
|
|
|
|
CatCode cat() const { return cat_; }
|
|
|
|
|
///
|
|
|
|
|
char character() const { return char_; }
|
|
|
|
|
///
|
|
|
|
|
string asString() const;
|
2001-11-12 18:00:20 +00:00
|
|
|
|
///
|
|
|
|
|
bool isCR() const;
|
2001-08-13 14:02:37 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
string cs_;
|
|
|
|
|
///
|
|
|
|
|
char char_;
|
|
|
|
|
///
|
|
|
|
|
CatCode cat_;
|
|
|
|
|
};
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-11-12 18:00:20 +00:00
|
|
|
|
bool Token::isCR() const
|
|
|
|
|
{
|
|
|
|
|
return cs_ == "\\" || cs_ == "cr" || cs_ == "crcr";
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
string Token::asString() const
|
|
|
|
|
{
|
|
|
|
|
return cs_.size() ? cs_ : string(1, char_);
|
|
|
|
|
}
|
1999-11-15 11:06:41 +00:00
|
|
|
|
|
2001-08-17 11:37:48 +00:00
|
|
|
|
bool operator==(Token const & s, Token const & t)
|
2001-08-17 09:48:24 +00:00
|
|
|
|
{
|
2001-08-17 11:37:48 +00:00
|
|
|
|
return s.character() == t.character()
|
|
|
|
|
&& s.cat() == t.cat() && s.cs() == t.cs();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-08-10 09:30:02 +00:00
|
|
|
|
|
2001-08-17 11:37:48 +00:00
|
|
|
|
bool operator!=(Token const & s, Token const & t)
|
2001-08-17 10:51:50 +00:00
|
|
|
|
{
|
2001-08-17 11:37:48 +00:00
|
|
|
|
return !(s == t);
|
2001-08-17 10:51:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
ostream & operator<<(ostream & os, Token const & t)
|
|
|
|
|
{
|
|
|
|
|
if (t.cs().size())
|
|
|
|
|
os << "\\" << t.cs();
|
|
|
|
|
else
|
|
|
|
|
os << "[" << t.character() << "," << t.cat() << "]";
|
|
|
|
|
return os;
|
|
|
|
|
}
|
2001-08-10 09:30:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Parser {
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Parser(LyXLex & lex);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Parser(istream & is);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
|
|
|
|
|
///
|
2001-10-12 12:02:49 +00:00
|
|
|
|
string parse_macro();
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
2001-10-12 12:02:49 +00:00
|
|
|
|
bool parse_normal(MathAtom &);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
2001-08-21 07:03:46 +00:00
|
|
|
|
void parse_into(MathArray & array, unsigned flags, MathTextCodes = LM_TC_MIN);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
|
|
|
|
int lineno() const { return lineno_; }
|
2001-08-13 14:46:06 +00:00
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
void putback();
|
2001-08-10 09:30:02 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
string getArg(char lf, char rf);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
char getChar();
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
|
|
|
|
void error(string const & msg);
|
|
|
|
|
///
|
2001-10-12 12:02:49 +00:00
|
|
|
|
bool parse_lines(MathAtom & t, bool numbered, bool outmost);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
void tokenize(istream & is);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
void tokenize(string const & s);
|
|
|
|
|
///
|
|
|
|
|
void push_back(Token const & t);
|
|
|
|
|
///
|
|
|
|
|
void pop_back();
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Token const & prevToken() const;
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Token const & nextToken() const;
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Token const & getToken();
|
2001-11-28 13:09:40 +00:00
|
|
|
|
/// skips spaces if any
|
|
|
|
|
void skipSpaces();
|
|
|
|
|
/// counts a sequence of hlines
|
|
|
|
|
int readHLines();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
///
|
|
|
|
|
void lex(string const & s);
|
|
|
|
|
///
|
|
|
|
|
bool good() const;
|
2001-08-10 09:30:02 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
///
|
|
|
|
|
int lineno_;
|
|
|
|
|
///
|
|
|
|
|
std::vector<Token> tokens_;
|
|
|
|
|
///
|
|
|
|
|
unsigned pos_;
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
|
|
|
|
bool curr_num_;
|
2001-08-10 11:51:06 +00:00
|
|
|
|
///
|
2001-08-10 09:30:02 +00:00
|
|
|
|
string curr_label_;
|
2001-08-10 11:51:06 +00:00
|
|
|
|
///
|
|
|
|
|
string curr_skip_;
|
2001-08-10 09:30:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Parser::Parser(LyXLex & lexer)
|
2001-08-17 16:34:19 +00:00
|
|
|
|
: lineno_(lexer.getLineNo()), pos_(0), curr_num_(false)
|
2001-08-13 14:46:06 +00:00
|
|
|
|
{
|
2001-08-17 09:48:24 +00:00
|
|
|
|
tokenize(lexer.getStream());
|
2001-08-18 12:02:40 +00:00
|
|
|
|
lexer.eatLine();
|
2001-08-13 14:46:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Parser::Parser(istream & is)
|
2001-08-17 16:34:19 +00:00
|
|
|
|
: lineno_(0), pos_(0), curr_num_(false)
|
2001-08-10 09:30:02 +00:00
|
|
|
|
{
|
2001-08-17 09:48:24 +00:00
|
|
|
|
tokenize(is);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
void Parser::push_back(Token const & t)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-08-17 09:48:24 +00:00
|
|
|
|
tokens_.push_back(t);
|
|
|
|
|
}
|
2001-07-13 07:55:55 +00:00
|
|
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
void Parser::pop_back()
|
|
|
|
|
{
|
|
|
|
|
tokens_.pop_back();
|
|
|
|
|
}
|
2001-07-13 07:55:55 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
Token const & Parser::prevToken() const
|
|
|
|
|
{
|
|
|
|
|
static const Token dummy;
|
|
|
|
|
return pos_ > 0 ? tokens_[pos_ - 1] : dummy;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-15 11:06:41 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Token const & Parser::nextToken() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-08-17 09:48:24 +00:00
|
|
|
|
static const Token dummy;
|
|
|
|
|
return good() ? tokens_[pos_] : dummy;
|
|
|
|
|
}
|
2001-08-13 14:46:06 +00:00
|
|
|
|
|
2001-08-14 07:46:11 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Token const & Parser::getToken()
|
|
|
|
|
{
|
|
|
|
|
static const Token dummy;
|
2001-11-28 13:09:40 +00:00
|
|
|
|
//lyxerr << "looking at token " << tokens_[pos_] << '\n';
|
2001-08-17 09:48:24 +00:00
|
|
|
|
return good() ? tokens_[pos_++] : dummy;
|
|
|
|
|
}
|
2001-08-14 07:46:11 +00:00
|
|
|
|
|
2001-08-13 14:46:06 +00:00
|
|
|
|
|
2001-11-28 13:09:40 +00:00
|
|
|
|
void Parser::skipSpaces()
|
|
|
|
|
{
|
|
|
|
|
while (nextToken().cat() == catSpace)
|
|
|
|
|
getToken();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Parser::readHLines()
|
|
|
|
|
{
|
|
|
|
|
int num = 0;
|
|
|
|
|
skipSpaces();
|
|
|
|
|
while (nextToken().cs() == "hline") {
|
|
|
|
|
getToken();
|
|
|
|
|
++num;
|
|
|
|
|
skipSpaces();
|
|
|
|
|
}
|
|
|
|
|
return num;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
void Parser::putback()
|
|
|
|
|
{
|
|
|
|
|
--pos_;
|
|
|
|
|
}
|
2001-08-13 14:46:06 +00:00
|
|
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
bool Parser::good() const
|
|
|
|
|
{
|
|
|
|
|
return pos_ < tokens_.size();
|
|
|
|
|
}
|
2001-08-13 14:46:06 +00:00
|
|
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
char Parser::getChar()
|
|
|
|
|
{
|
|
|
|
|
if (!good())
|
|
|
|
|
lyxerr << "The input stream is not well..." << endl;
|
|
|
|
|
return tokens_[pos_++].character();
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-13 14:46:06 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
string Parser::getArg(char lf, char rg)
|
|
|
|
|
{
|
|
|
|
|
string result;
|
|
|
|
|
char c = getChar();
|
2001-08-13 14:46:06 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (c != lf)
|
|
|
|
|
putback();
|
|
|
|
|
else
|
|
|
|
|
while ((c = getChar()) != rg && good())
|
|
|
|
|
result += c;
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Parser::tokenize(istream & is)
|
|
|
|
|
{
|
|
|
|
|
// eat everything up to the next \end_inset or end of stream
|
|
|
|
|
// and store it in s for further tokenization
|
|
|
|
|
string s;
|
|
|
|
|
char c;
|
|
|
|
|
while (is.get(c)) {
|
|
|
|
|
s += c;
|
|
|
|
|
if (s.size() >= 10 && s.substr(s.size() - 10) == "\\end_inset") {
|
|
|
|
|
s = s.substr(0, s.size() - 10);
|
|
|
|
|
break;
|
2001-08-13 14:46:06 +00:00
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-08-13 14:46:06 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
// tokenize buffer
|
|
|
|
|
tokenize(s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Parser::tokenize(string const & buffer)
|
|
|
|
|
{
|
|
|
|
|
static bool init_done = false;
|
|
|
|
|
|
|
|
|
|
if (!init_done) {
|
|
|
|
|
catInit();
|
|
|
|
|
init_done = true;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-05 15:22:20 +00:00
|
|
|
|
istringstream is(buffer.c_str(), ios::in | ios::binary);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
2001-08-17 10:21:37 +00:00
|
|
|
|
char c;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
while (is.get(c)) {
|
|
|
|
|
|
2001-08-17 10:21:37 +00:00
|
|
|
|
switch (catcode(c)) {
|
2001-08-17 09:48:24 +00:00
|
|
|
|
case catNewline: {
|
|
|
|
|
++lineno_;
|
|
|
|
|
is.get(c);
|
2001-08-17 10:21:37 +00:00
|
|
|
|
if (catcode(c) == catNewline)
|
2001-08-17 09:48:24 +00:00
|
|
|
|
; //push_back(Token("par"));
|
|
|
|
|
else {
|
2001-08-17 10:51:50 +00:00
|
|
|
|
push_back(Token(' ', catSpace));
|
2001-08-17 09:48:24 +00:00
|
|
|
|
is.putback(c);
|
2001-08-13 14:02:37 +00:00
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
break;
|
2001-02-26 12:53:35 +00:00
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
case catComment: {
|
2001-08-17 10:21:37 +00:00
|
|
|
|
while (is.get(c) && catcode(c) != catNewline)
|
2001-08-17 09:48:24 +00:00
|
|
|
|
;
|
|
|
|
|
++lineno_;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case catEscape: {
|
|
|
|
|
is.get(c);
|
|
|
|
|
string s(1, c);
|
2001-08-17 10:21:37 +00:00
|
|
|
|
if (catcode(c) == catLetter) {
|
|
|
|
|
while (is.get(c) && catcode(c) == catLetter)
|
2001-08-17 09:48:24 +00:00
|
|
|
|
s += c;
|
2001-08-17 10:21:37 +00:00
|
|
|
|
if (catcode(c) == catSpace)
|
|
|
|
|
while (is.get(c) && catcode(c) == catSpace)
|
2001-08-17 09:48:24 +00:00
|
|
|
|
;
|
|
|
|
|
is.putback(c);
|
|
|
|
|
}
|
|
|
|
|
push_back(Token(s));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
2001-08-17 10:21:37 +00:00
|
|
|
|
push_back(Token(c, catcode(c)));
|
2001-02-26 12:53:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
2001-08-30 10:17:28 +00:00
|
|
|
|
#if 0
|
2001-08-17 15:47:02 +00:00
|
|
|
|
lyxerr << "\nTokens: ";
|
|
|
|
|
for (unsigned i = 0; i < tokens_.size(); ++i)
|
|
|
|
|
lyxerr << tokens_[i];
|
|
|
|
|
lyxerr << "\n";
|
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
void Parser::error(string const & msg)
|
2001-07-26 06:46:50 +00:00
|
|
|
|
{
|
2001-08-10 09:30:02 +00:00
|
|
|
|
lyxerr << "Line ~" << lineno_ << ": Math parse error: " << msg << endl;
|
2001-09-12 09:17:46 +00:00
|
|
|
|
//exit(1);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-07-12 07:18:29 +00:00
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
bool Parser::parse_lines(MathAtom & t, bool numbered, bool outmost)
|
|
|
|
|
{
|
|
|
|
|
MathGridInset * p = t->asGridInset();
|
|
|
|
|
if (!p) {
|
|
|
|
|
lyxerr << "error in Parser::parse_lines() 1\n";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2001-12-18 03:16:46 +00:00
|
|
|
|
int const cols = p->ncols();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
2001-07-03 07:56:55 +00:00
|
|
|
|
// save global variables
|
2001-08-10 09:30:02 +00:00
|
|
|
|
bool const saved_num = curr_num_;
|
|
|
|
|
string const saved_label = curr_label_;
|
2001-07-03 07:56:55 +00:00
|
|
|
|
|
2001-11-28 13:09:40 +00:00
|
|
|
|
// read initial hlines
|
|
|
|
|
p->rowinfo(0).lines_ = readHLines();
|
|
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
|
for (int row = 0; true; ++row) {
|
2001-06-25 00:06:33 +00:00
|
|
|
|
// reset global variables
|
2001-08-10 09:30:02 +00:00
|
|
|
|
curr_num_ = numbered;
|
|
|
|
|
curr_label_.erase();
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
|
// reading a row
|
2001-08-17 09:48:24 +00:00
|
|
|
|
for (int col = 0; col < cols; ++col) {
|
|
|
|
|
//lyxerr << "reading cell " << row << " " << col << "\n";
|
|
|
|
|
parse_into(p->cell(col + row * cols), FLAG_BLOCK);
|
|
|
|
|
|
2001-11-28 13:09:40 +00:00
|
|
|
|
// break if cell is not followed by an ampersand
|
|
|
|
|
if (nextToken().cat() != catAlign) {
|
2001-08-17 09:48:24 +00:00
|
|
|
|
//lyxerr << "less cells read than normal in row/col: "
|
|
|
|
|
// << row << " " << col << "\n";
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-11-28 13:09:40 +00:00
|
|
|
|
|
|
|
|
|
// skip the ampersand
|
|
|
|
|
getToken();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
|
if (outmost) {
|
2001-11-09 08:35:57 +00:00
|
|
|
|
MathHullInset * m = t->asHullInset();
|
2001-10-12 12:02:49 +00:00
|
|
|
|
if (!m) {
|
|
|
|
|
lyxerr << "error in Parser::parse_lines() 2\n";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2001-08-10 09:30:02 +00:00
|
|
|
|
m->numbered(row, curr_num_);
|
|
|
|
|
m->label(row, curr_label_);
|
2001-08-10 11:51:06 +00:00
|
|
|
|
if (curr_skip_.size()) {
|
2001-11-28 13:09:40 +00:00
|
|
|
|
m->vcrskip(LyXLength(curr_skip_), row);
|
2001-08-10 11:51:06 +00:00
|
|
|
|
curr_skip_.erase();
|
|
|
|
|
}
|
2001-06-27 14:10:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-11-28 13:09:40 +00:00
|
|
|
|
// is a \\ coming?
|
|
|
|
|
if (nextToken().isCR()) {
|
|
|
|
|
// skip the cr-token
|
|
|
|
|
getToken();
|
|
|
|
|
|
|
|
|
|
// try to read a length
|
|
|
|
|
//get
|
|
|
|
|
|
|
|
|
|
// read hlines for next row
|
|
|
|
|
p->rowinfo(row + 1).lines_ = readHLines();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// we are finished if the next token is an 'end'
|
|
|
|
|
if (nextToken().cs() == "end") {
|
|
|
|
|
// skip the end-token
|
|
|
|
|
getToken();
|
|
|
|
|
getArg('{','}');
|
|
|
|
|
|
|
|
|
|
// leave the 'read a line'-loop
|
2001-06-25 00:06:33 +00:00
|
|
|
|
break;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-11-28 13:09:40 +00:00
|
|
|
|
// otherwise, we have to start a new row
|
2001-06-25 00:06:33 +00:00
|
|
|
|
p->appendRow();
|
|
|
|
|
}
|
2001-07-03 07:56:55 +00:00
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
// restore "global" variables
|
|
|
|
|
curr_num_ = saved_num;
|
|
|
|
|
curr_label_ = saved_label;
|
2001-10-12 12:02:49 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
string Parser::parse_macro()
|
2001-08-03 09:54:48 +00:00
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
string name = "{error}";
|
2001-11-28 13:09:40 +00:00
|
|
|
|
skipSpaces();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
if (getToken().cs() != "newcommand") {
|
2001-08-03 09:54:48 +00:00
|
|
|
|
lyxerr << "\\newcommand expected\n";
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return name;
|
2001-08-03 09:54:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (getToken().cat() != catBegin) {
|
2001-10-31 12:04:45 +00:00
|
|
|
|
lyxerr << "'{' in \\newcommand expected (1)\n";
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return name;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
name = getToken().cs();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
if (getToken().cat() != catEnd) {
|
|
|
|
|
lyxerr << "'}' expected\n";
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return name;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
string arg = getArg('[', ']');
|
|
|
|
|
int narg = arg.empty() ? 0 : atoi(arg.c_str());
|
2001-10-31 12:04:45 +00:00
|
|
|
|
|
|
|
|
|
if (getToken().cat() != catBegin) {
|
|
|
|
|
lyxerr << "'{' in \\newcommand expected (2)\n";
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathArray ar;
|
2001-10-31 12:04:45 +00:00
|
|
|
|
parse_into(ar, FLAG_BRACE_LAST);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathMacroTable::create(name, narg, ar);
|
|
|
|
|
return name;
|
2001-08-03 09:54:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
bool Parser::parse_normal(MathAtom & matrix)
|
2001-06-25 00:06:33 +00:00
|
|
|
|
{
|
2001-11-28 13:09:40 +00:00
|
|
|
|
skipSpaces();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Token const & t = getToken();
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-10-15 14:19:16 +00:00
|
|
|
|
if (t.cs() == "(") {
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_SIMPLE));
|
2001-10-12 12:02:49 +00:00
|
|
|
|
parse_into(matrix->cell(0), 0);
|
|
|
|
|
return true;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-10-15 14:19:16 +00:00
|
|
|
|
if (t.cat() == catMath) {
|
|
|
|
|
Token const & n = getToken();
|
|
|
|
|
if (n.cat() == catMath) {
|
|
|
|
|
// TeX's $$...$$ syntax for displayed math
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_EQUATION));
|
2001-11-09 08:35:57 +00:00
|
|
|
|
MathHullInset * p = matrix->asHullInset();
|
2001-10-15 14:19:16 +00:00
|
|
|
|
parse_into(p->cell(0), 0);
|
|
|
|
|
p->numbered(0, curr_num_);
|
|
|
|
|
p->label(0, curr_label_);
|
|
|
|
|
} else {
|
|
|
|
|
// simple $...$ stuff
|
|
|
|
|
putback();
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_SIMPLE));
|
2001-10-15 14:19:16 +00:00
|
|
|
|
parse_into(matrix->cell(0), 0);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (!t.cs().size()) {
|
|
|
|
|
lyxerr << "start of math expected, got '" << t << "'\n";
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return false;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-07-13 07:55:55 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
string const & cs = t.cs();
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (cs == "[") {
|
|
|
|
|
curr_num_ = 0;
|
|
|
|
|
curr_label_.erase();
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_EQUATION));
|
2001-11-09 08:35:57 +00:00
|
|
|
|
MathHullInset * p = matrix->asHullInset();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
parse_into(p->cell(0), 0);
|
|
|
|
|
p->numbered(0, curr_num_);
|
|
|
|
|
p->label(0, curr_label_);
|
2001-10-15 14:19:16 +00:00
|
|
|
|
return true;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (cs != "begin") {
|
|
|
|
|
lyxerr << "'begin' of un-simple math expected, got '" << cs << "'\n";
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return false;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
string const name = getArg('{', '}');
|
|
|
|
|
|
2001-10-29 16:10:41 +00:00
|
|
|
|
if (name == "equation" || name == "equation*" || name == "displaymath") {
|
|
|
|
|
curr_num_ = (name == "equation");
|
2001-08-17 09:48:24 +00:00
|
|
|
|
curr_label_.erase();
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_EQUATION));
|
2001-11-09 08:35:57 +00:00
|
|
|
|
MathHullInset * p = matrix->asHullInset();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
parse_into(p->cell(0), FLAG_END);
|
|
|
|
|
p->numbered(0, curr_num_);
|
|
|
|
|
p->label(0, curr_label_);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return true;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (name == "eqnarray" || name == "eqnarray*") {
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_EQNARRAY));
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parse_lines(matrix, !stared(name), true);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name == "align" || name == "align*") {
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_ALIGN));
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parse_lines(matrix, !stared(name), true);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name == "alignat" || name == "alignat*") {
|
2001-10-12 12:02:49 +00:00
|
|
|
|
int nc = 2 * atoi(getArg('{', '}').c_str());
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_ALIGNAT, nc));
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parse_lines(matrix, !stared(name), true);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-09-04 13:32:06 +00:00
|
|
|
|
if (name == "xalignat" || name == "xalignat*") {
|
2001-10-12 12:02:49 +00:00
|
|
|
|
int nc = 2 * atoi(getArg('{', '}').c_str());
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_XALIGNAT, nc));
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parse_lines(matrix, !stared(name), true);
|
2001-09-04 13:32:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name == "xxalignat") {
|
2001-10-12 12:02:49 +00:00
|
|
|
|
int nc = 2 * atoi(getArg('{', '}').c_str());
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_XXALIGNAT, nc));
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parse_lines(matrix, !stared(name), true);
|
2001-09-04 13:32:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-09-04 14:56:30 +00:00
|
|
|
|
if (name == "multline" || name == "multline*") {
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_MULTLINE));
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parse_lines(matrix, !stared(name), true);
|
2001-09-04 14:56:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name == "gather" || name == "gather*") {
|
2001-11-08 12:28:33 +00:00
|
|
|
|
matrix = MathAtom(new MathHullInset(LM_OT_GATHER));
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parse_lines(matrix, !stared(name), true);
|
2001-09-04 14:56:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
lyxerr[Debug::MATHED] << "1: unknown math environment: " << name << "\n";
|
2001-11-12 16:45:09 +00:00
|
|
|
|
lyxerr << "1: unknown math environment: " << name << "\n";
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return false;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-21 07:03:46 +00:00
|
|
|
|
void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
|
2001-06-25 00:06:33 +00:00
|
|
|
|
{
|
2001-07-27 12:32:29 +00:00
|
|
|
|
bool panic = false;
|
2001-10-12 12:02:49 +00:00
|
|
|
|
int limits = 0;
|
2001-07-27 12:32:29 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
while (good()) {
|
|
|
|
|
Token const & t = getToken();
|
2001-08-17 16:10:51 +00:00
|
|
|
|
|
|
|
|
|
//lyxerr << "t: " << t << " flags: " << flags << "'\n";
|
2001-04-24 16:13:38 +00:00
|
|
|
|
//array.dump(lyxerr);
|
2001-08-17 16:10:51 +00:00
|
|
|
|
//lyxerr << "\n";
|
2001-04-24 16:13:38 +00:00
|
|
|
|
|
2001-07-13 07:55:55 +00:00
|
|
|
|
if (flags & FLAG_ITEM) {
|
|
|
|
|
flags &= ~FLAG_ITEM;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (t.cat() == catBegin) {
|
2001-08-10 15:49:15 +00:00
|
|
|
|
// skip the brace and collect everything to the next matching
|
2001-07-13 07:55:55 +00:00
|
|
|
|
// closing brace
|
|
|
|
|
flags |= FLAG_BRACE_LAST;
|
2001-08-14 07:46:11 +00:00
|
|
|
|
continue;
|
2001-07-13 07:55:55 +00:00
|
|
|
|
} else {
|
2001-08-14 07:46:11 +00:00
|
|
|
|
// handle only this single token, leave the loop if done
|
2001-07-13 07:55:55 +00:00
|
|
|
|
flags |= FLAG_LEAVE;
|
2001-02-26 12:53:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-04-25 15:43:57 +00:00
|
|
|
|
|
2001-08-13 14:46:06 +00:00
|
|
|
|
if (flags & FLAG_BLOCK) {
|
2001-11-28 13:09:40 +00:00
|
|
|
|
if (t.cat() == catAlign || t.isCR() || t.cs() == "end") {
|
|
|
|
|
putback();
|
2001-08-13 14:46:06 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
//
|
|
|
|
|
// cat codes
|
|
|
|
|
//
|
|
|
|
|
if (t.cat() == catMath)
|
|
|
|
|
break;
|
2001-08-13 14:46:06 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cat() == catLetter)
|
2001-10-29 15:45:24 +00:00
|
|
|
|
add(array, t.character(), code);
|
2001-08-13 14:02:37 +00:00
|
|
|
|
|
2001-10-29 15:45:24 +00:00
|
|
|
|
else if (t.cat() == catSpace && code == LM_TC_TEXTRM)
|
|
|
|
|
add(array, t.character(), code);
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cat() == catParameter) {
|
|
|
|
|
Token const & n = getToken();
|
2001-10-12 12:02:49 +00:00
|
|
|
|
array.push_back(MathAtom(new MathMacroArgument(n.character() - '0')));
|
2001-08-03 09:54:48 +00:00
|
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cat() == catBegin) {
|
2001-10-31 15:14:22 +00:00
|
|
|
|
MathArray ar;
|
|
|
|
|
parse_into(ar, FLAG_BRACE_LAST);
|
|
|
|
|
#ifndef WITH_WARNINGS
|
|
|
|
|
#warning this might be wrong in general!
|
|
|
|
|
#endif
|
|
|
|
|
// ignore braces around simple items
|
|
|
|
|
if (ar.size() == 1 || (ar.size() == 2 && ar.back()->asScriptInset())) {
|
|
|
|
|
array.push_back(ar);
|
|
|
|
|
} else {
|
|
|
|
|
array.push_back(MathAtom(new MathBraceInset));
|
|
|
|
|
array.back()->cell(0).swap(ar);
|
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cat() == catEnd) {
|
2001-08-29 16:23:54 +00:00
|
|
|
|
if (flags & FLAG_BRACE_LAST)
|
|
|
|
|
return;
|
2001-12-11 10:14:51 +00:00
|
|
|
|
lyxerr << "found '}' unexpectedly, array: '" << array << "'\n";
|
|
|
|
|
//lyxerr << "found '}' unexpectedly\n";
|
2001-10-12 12:02:49 +00:00
|
|
|
|
add(array, '}', LM_TC_TEX);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cat() == catAlign) {
|
2001-12-11 10:14:51 +00:00
|
|
|
|
lyxerr << "found tab unexpectedly, array: '" << array << "'\n";
|
|
|
|
|
//lyxerr << "found tab unexpectedly\n";
|
2001-10-12 12:02:49 +00:00
|
|
|
|
add(array, '&', LM_TC_TEX);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-09-11 10:58:17 +00:00
|
|
|
|
else if (t.cat() == catSuper || t.cat() == catSub) {
|
|
|
|
|
bool up = (t.cat() == catSuper);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathScriptInset * p = 0;
|
|
|
|
|
if (array.size())
|
|
|
|
|
p = array.back()->asScriptInset();
|
|
|
|
|
if (!p || p->has(up)) {
|
|
|
|
|
array.push_back(MathAtom(new MathScriptInset(up)));
|
|
|
|
|
p = array.back()->asScriptInset();
|
|
|
|
|
}
|
|
|
|
|
p->ensure(up);
|
|
|
|
|
parse_into(p->cell(up), FLAG_ITEM);
|
|
|
|
|
p->limits(limits);
|
|
|
|
|
limits = 0;
|
2001-09-11 10:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.character() == ']' && (flags & FLAG_BRACK_END))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
else if (t.cat() == catOther)
|
2001-10-29 15:45:24 +00:00
|
|
|
|
add(array, t.character(), code);
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
//
|
2001-10-31 12:26:42 +00:00
|
|
|
|
// control sequences
|
2001-08-17 09:48:24 +00:00
|
|
|
|
//
|
2001-10-31 12:26:42 +00:00
|
|
|
|
else if (t.cs() == "protect")
|
|
|
|
|
// ignore \\protect, will be re-added during output
|
2001-08-17 09:48:24 +00:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
else if (t.cs() == "end")
|
2001-02-26 12:53:35 +00:00
|
|
|
|
break;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
else if (t.cs() == ")")
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
else if (t.cs() == "]")
|
2001-02-26 12:53:35 +00:00
|
|
|
|
break;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
else if (t.cs() == "\\") {
|
|
|
|
|
curr_skip_ = getArg('[', ']');
|
2001-11-08 12:06:56 +00:00
|
|
|
|
//lyxerr << "found newline unexpectedly, array: '" << array << "'\n";
|
|
|
|
|
lyxerr << "found newline unexpectedly\n";
|
2001-08-29 15:19:50 +00:00
|
|
|
|
array.push_back(createMathInset("\\"));
|
2001-08-10 10:39:56 +00:00
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
else if (t.cs() == "limits")
|
|
|
|
|
limits = 1;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
else if (t.cs() == "nolimits")
|
|
|
|
|
limits = -1;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
else if (t.cs() == "nonumber")
|
|
|
|
|
curr_num_ = false;
|
2001-07-26 16:56:23 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cs() == "number")
|
|
|
|
|
curr_num_ = true;
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cs() == "sqrt") {
|
|
|
|
|
char c = getChar();
|
2001-02-26 12:53:35 +00:00
|
|
|
|
if (c == '[') {
|
2001-10-12 12:02:49 +00:00
|
|
|
|
array.push_back(MathAtom(new MathRootInset));
|
|
|
|
|
parse_into(array.back()->cell(0), FLAG_BRACK_END);
|
|
|
|
|
parse_into(array.back()->cell(1), FLAG_ITEM);
|
2001-02-26 12:53:35 +00:00
|
|
|
|
} else {
|
2001-08-17 09:48:24 +00:00
|
|
|
|
putback();
|
2001-10-12 12:02:49 +00:00
|
|
|
|
array.push_back(MathAtom(new MathSqrtInset));
|
|
|
|
|
parse_into(array.back()->cell(0), FLAG_ITEM);
|
2001-02-26 12:53:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cs() == "left") {
|
2001-09-12 12:51:55 +00:00
|
|
|
|
string l = getToken().asString();
|
2001-06-25 00:06:33 +00:00
|
|
|
|
MathArray ar;
|
2001-08-10 09:30:02 +00:00
|
|
|
|
parse_into(ar, FLAG_RIGHT);
|
2001-09-12 12:51:55 +00:00
|
|
|
|
string r = getToken().asString();
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathAtom dl(new MathDelimInset(l, r));
|
2001-07-12 07:18:29 +00:00
|
|
|
|
dl->cell(0) = ar;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
array.push_back(dl);
|
2001-02-26 12:53:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cs() == "right") {
|
2001-09-12 09:17:46 +00:00
|
|
|
|
if (!(flags & FLAG_RIGHT)) {
|
2001-11-08 12:06:56 +00:00
|
|
|
|
//lyxerr << "got so far: '" << array << "'\n";
|
2001-08-17 09:48:24 +00:00
|
|
|
|
error("Unmatched right delimiter");
|
2001-09-12 09:17:46 +00:00
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
return;
|
2001-08-10 15:32:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
/*
|
2001-06-25 00:06:33 +00:00
|
|
|
|
case LM_TK_STY:
|
|
|
|
|
{
|
2001-07-08 12:52:16 +00:00
|
|
|
|
lyxerr[Debug::MATHED] << "LM_TK_STY not implemented\n";
|
2001-06-25 00:06:33 +00:00
|
|
|
|
//MathArray tmp = array;
|
2001-08-10 09:30:02 +00:00
|
|
|
|
//MathSizeInset * p = new MathSizeInset(MathStyles(lval_->id));
|
2001-06-25 00:06:33 +00:00
|
|
|
|
//array.push_back(p);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
//parse_into(p->cell(0), FLAG_BRACE_FONT);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
*/
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cs() == "begin") {
|
|
|
|
|
string const name = getArg('{', '}');
|
|
|
|
|
if (name == "array") {
|
|
|
|
|
string const valign = getArg('[', ']') + 'c';
|
|
|
|
|
string const halign = getArg('{', '}');
|
2001-11-28 13:09:40 +00:00
|
|
|
|
array.push_back(MathAtom(new MathArrayInset(valign[0], halign)));
|
2001-10-12 12:02:49 +00:00
|
|
|
|
parse_lines(array.back(), false, false);
|
2001-09-05 12:57:13 +00:00
|
|
|
|
} else if (name == "split") {
|
2001-10-12 12:02:49 +00:00
|
|
|
|
array.push_back(MathAtom(new MathSplitInset(1)));
|
|
|
|
|
parse_lines(array.back(), false, false);
|
2001-11-12 16:45:09 +00:00
|
|
|
|
} else if (name == "cases") {
|
|
|
|
|
array.push_back(MathAtom(new MathCasesInset));
|
|
|
|
|
parse_lines(array.back(), false, false);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
} else
|
2001-11-12 16:45:09 +00:00
|
|
|
|
lyxerr << "unknow math inset begin '" << name << "'\n";
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-21 14:20:50 +00:00
|
|
|
|
else if (t.cs() == "kern") {
|
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
|
#warning A hack...
|
|
|
|
|
#endif
|
|
|
|
|
string s;
|
|
|
|
|
while (1) {
|
|
|
|
|
Token const & t = getToken();
|
|
|
|
|
if (!good()) {
|
|
|
|
|
putback();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
s += t.character();
|
|
|
|
|
if (isValidLength(s))
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-10-12 12:02:49 +00:00
|
|
|
|
array.push_back(MathAtom(new MathKernInset(s)));
|
2001-08-21 14:20:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cs() == "label") {
|
2001-08-20 13:45:02 +00:00
|
|
|
|
curr_label_ = getArg('{', '}');
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-08-13 14:02:37 +00:00
|
|
|
|
|
2001-08-17 17:50:00 +00:00
|
|
|
|
else if (t.cs() == "choose" || t.cs() == "over" || t.cs() == "atop") {
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathAtom p = createMathInset(t.cs());
|
2001-10-31 12:04:45 +00:00
|
|
|
|
array.swap(p->cell(0));
|
|
|
|
|
parse_into(p->cell(1), flags, code);
|
|
|
|
|
array.push_back(p);
|
|
|
|
|
return;
|
2001-08-13 14:02:37 +00:00
|
|
|
|
}
|
2001-10-19 11:25:48 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
// Disabled
|
|
|
|
|
else if (t.cs() == "mbox") {
|
|
|
|
|
array.push_back(createMathInset(t.cs()));
|
|
|
|
|
// slurp in the argument of mbox
|
|
|
|
|
|
|
|
|
|
MathBoxInset * p = array.back()->asBoxInset();
|
|
|
|
|
//lyx::assert(p);
|
|
|
|
|
}
|
|
|
|
|
*/
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
else if (t.cs().size()) {
|
|
|
|
|
latexkeys const * l = in_word_set(t.cs());
|
|
|
|
|
if (l) {
|
|
|
|
|
if (l->token == LM_TK_FONT) {
|
|
|
|
|
//lyxerr << "starting font\n";
|
2001-08-21 07:03:46 +00:00
|
|
|
|
//CatCode catSpaceSave = theCatcode[' '];
|
|
|
|
|
//if (l->id == LM_TC_TEXTRM) {
|
|
|
|
|
// // temporarily change catcode
|
|
|
|
|
// theCatcode[' '] = catLetter;
|
|
|
|
|
//}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
MathArray ar;
|
2001-10-31 09:54:47 +00:00
|
|
|
|
parse_into(ar, FLAG_ITEM, static_cast<MathTextCodes>(l->id));
|
2001-08-17 09:48:24 +00:00
|
|
|
|
array.push_back(ar);
|
2001-08-21 07:03:46 +00:00
|
|
|
|
|
|
|
|
|
// undo catcode changes
|
|
|
|
|
////theCatcode[' '] = catSpaceSave;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
//lyxerr << "ending font\n";
|
|
|
|
|
}
|
|
|
|
|
|
2001-10-24 17:14:05 +00:00
|
|
|
|
else if (l->token == LM_TK_OLDFONT) {
|
2001-10-29 15:45:24 +00:00
|
|
|
|
code = static_cast<MathTextCodes>(l->id);
|
2001-10-24 17:14:05 +00:00
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
else {
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathAtom p = createMathInset(t.cs());
|
2001-09-26 16:52:34 +00:00
|
|
|
|
for (MathInset::idx_type i = 0; i < p->nargs(); ++i)
|
2001-08-17 09:48:24 +00:00
|
|
|
|
parse_into(p->cell(i), FLAG_ITEM);
|
|
|
|
|
array.push_back(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else {
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathAtom p = createMathInset(t.cs());
|
|
|
|
|
for (MathInset::idx_type i = 0; i < p->nargs(); ++i)
|
|
|
|
|
parse_into(p->cell(i), FLAG_ITEM);
|
|
|
|
|
array.push_back(p);
|
2001-08-13 14:02:37 +00:00
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-07-13 07:55:55 +00:00
|
|
|
|
|
|
|
|
|
if (flags & FLAG_LEAVE) {
|
|
|
|
|
flags &= ~FLAG_LEAVE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-08-14 07:46:11 +00:00
|
|
|
|
}
|
2001-07-13 07:55:55 +00:00
|
|
|
|
|
2001-08-14 07:46:11 +00:00
|
|
|
|
if (panic) {
|
|
|
|
|
lyxerr << " Math Panic, expect problems!\n";
|
|
|
|
|
// Search for the end command.
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Token t;
|
2001-08-14 07:46:11 +00:00
|
|
|
|
do {
|
2001-08-17 09:48:24 +00:00
|
|
|
|
t = getToken();
|
|
|
|
|
} while (good() && t.cs() != "end");
|
2001-08-10 07:52:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
|
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
2001-07-12 07:18:29 +00:00
|
|
|
|
|
2001-10-18 13:21:21 +00:00
|
|
|
|
void mathed_parse_cell(MathArray & ar, string const & str)
|
2001-07-26 16:14:23 +00:00
|
|
|
|
{
|
|
|
|
|
istringstream is(str.c_str());
|
2001-10-18 13:21:21 +00:00
|
|
|
|
mathed_parse_cell(ar, is);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void mathed_parse_cell(MathArray & ar, istream & is)
|
|
|
|
|
{
|
|
|
|
|
Parser(is).parse_into(ar, 0);
|
2001-07-26 16:14:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-10 07:52:04 +00:00
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
string mathed_parse_macro(string const & str)
|
2001-08-03 09:54:48 +00:00
|
|
|
|
{
|
|
|
|
|
istringstream is(str.c_str());
|
2001-08-10 09:30:02 +00:00
|
|
|
|
Parser parser(is);
|
|
|
|
|
return parser.parse_macro();
|
2001-08-03 09:54:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
string mathed_parse_macro(istream & is)
|
2001-08-10 07:52:04 +00:00
|
|
|
|
{
|
2001-08-10 09:30:02 +00:00
|
|
|
|
Parser parser(is);
|
|
|
|
|
return parser.parse_macro();
|
2001-08-10 07:52:04 +00:00
|
|
|
|
}
|
2001-08-03 09:54:48 +00:00
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
string mathed_parse_macro(LyXLex & lex)
|
2001-07-20 10:57:22 +00:00
|
|
|
|
{
|
2001-08-10 09:30:02 +00:00
|
|
|
|
Parser parser(lex);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
return parser.parse_macro();
|
2001-07-20 10:57:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-08-03 09:54:48 +00:00
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
bool mathed_parse_normal(MathAtom & t, string const & str)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-08-10 07:52:04 +00:00
|
|
|
|
istringstream is(str.c_str());
|
2001-08-10 09:30:02 +00:00
|
|
|
|
Parser parser(is);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parser.parse_normal(t);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
bool mathed_parse_normal(MathAtom & t, istream & is)
|
2001-08-03 09:54:48 +00:00
|
|
|
|
{
|
2001-08-10 09:30:02 +00:00
|
|
|
|
Parser parser(is);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parser.parse_normal(t);
|
2001-08-03 09:54:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
bool mathed_parse_normal(MathAtom & t, LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-08-10 09:30:02 +00:00
|
|
|
|
Parser parser(lex);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return parser.parse_normal(t);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|