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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2000-09-26 13:54:57 +00:00
|
|
|
|
|
1999-11-15 11:06:41 +00:00
|
|
|
|
#include <cctype>
|
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"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
#include "array.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "math_inset.h"
|
2001-07-17 07:38:41 +00:00
|
|
|
|
#include "math_arrayinset.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-02-13 13:28:32 +00:00
|
|
|
|
#include "math_matrixinset.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-07-17 07:38:41 +00:00
|
|
|
|
#include "math_sqrtinset.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
|
#include "debug.h"
|
2001-08-13 14:02:37 +00:00
|
|
|
|
#include "support.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
|
#include "lyxlex.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
|
#include "support/lstrings.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
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;
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
unsigned n = s.size();
|
|
|
|
|
return n && s[n - 1] == '*';
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
MathScriptInset * prevScriptInset(MathArray const & array)
|
|
|
|
|
{
|
|
|
|
|
MathInset * p = array.back();
|
|
|
|
|
return (p && p->isScriptInset()) ? static_cast<MathScriptInset *>(p) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
MathInset * lastScriptInset(MathArray & array, bool up, int limits)
|
2001-08-10 09:30:02 +00:00
|
|
|
|
{
|
|
|
|
|
MathScriptInset * p = prevScriptInset(array);
|
|
|
|
|
if (!p) {
|
|
|
|
|
MathInset * b = array.back();
|
|
|
|
|
if (b && b->isScriptable()) {
|
2001-08-17 09:48:24 +00:00
|
|
|
|
p = new MathScriptInset(up, !up, b->clone());
|
2001-08-10 09:30:02 +00:00
|
|
|
|
array.pop_back();
|
|
|
|
|
} else {
|
2001-08-17 09:48:24 +00:00
|
|
|
|
p = new MathScriptInset(up, !up);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
}
|
|
|
|
|
array.push_back(p);
|
|
|
|
|
}
|
|
|
|
|
if (up)
|
|
|
|
|
p->up(true);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else
|
|
|
|
|
p->down(true);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
if (limits)
|
|
|
|
|
p->limits(limits);
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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 = 1 << 0, // an opening brace needed
|
|
|
|
|
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
|
2001-08-17 09:48:24 +00:00
|
|
|
|
FLAG_NEWLINE = 1 << 6, // next \\\\ ends the parsing process
|
2001-08-13 14:02:37 +00:00
|
|
|
|
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()
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i <= 255; ++i)
|
2001-08-17 10:21:37 +00:00
|
|
|
|
theCatcode[i] = catOther;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
for (int i = 'a'; i <= 'z'; ++i)
|
2001-08-17 10:21:37 +00:00
|
|
|
|
theCatcode[i] = catLetter;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
for (int i = 'A'; i <= 'Z'; ++i)
|
2001-08-17 10:21:37 +00:00
|
|
|
|
theCatcode[i] = catLetter;
|
|
|
|
|
|
|
|
|
|
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) {}
|
|
|
|
|
///
|
|
|
|
|
Token(const string & 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-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-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
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
MathMacroTemplate * parse_macro();
|
|
|
|
|
///
|
|
|
|
|
MathMatrixInset * parse_normal();
|
|
|
|
|
///
|
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-08-17 09:48:24 +00:00
|
|
|
|
void parse_lines(MathGridInset * p, bool numbered, bool outmost);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
///
|
|
|
|
|
latexkeys const * read_delim();
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
///
|
|
|
|
|
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;
|
|
|
|
|
return good() ? tokens_[pos_++] : dummy;
|
|
|
|
|
}
|
2001-08-14 07:46:11 +00:00
|
|
|
|
|
2001-08-13 14:46:06 +00:00
|
|
|
|
|
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-08-17 17:41:38 +00:00
|
|
|
|
istringstream is(buffer, 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-29 16:23:54 +00:00
|
|
|
|
#if 1
|
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-06-25 00:06:33 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-07-12 07:18:29 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
void Parser::parse_lines(MathGridInset * p, bool numbered, bool outmost)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-08-17 09:48:24 +00:00
|
|
|
|
const int cols = p->ncols();
|
|
|
|
|
|
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-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);
|
|
|
|
|
|
|
|
|
|
// no ampersand
|
|
|
|
|
if (prevToken().cat() != catAlign) {
|
|
|
|
|
//lyxerr << "less cells read than normal in row/col: "
|
|
|
|
|
// << row << " " << col << "\n";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
|
if (outmost) {
|
|
|
|
|
MathMatrixInset * m = static_cast<MathMatrixInset *>(p);
|
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()) {
|
|
|
|
|
m->vskip(LyXLength(curr_skip_), row);
|
|
|
|
|
curr_skip_.erase();
|
|
|
|
|
}
|
2001-06-27 14:10:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
// no newline?
|
|
|
|
|
if (prevToken() != Token("\\")) {
|
|
|
|
|
//lyxerr << "no newline here\n";
|
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
|
|
|
|
|
|
|
|
|
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-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
MathMacroTemplate * Parser::parse_macro()
|
2001-08-03 09:54:48 +00:00
|
|
|
|
{
|
2001-08-17 09:48:24 +00:00
|
|
|
|
while (nextToken().cat() == catSpace)
|
|
|
|
|
getToken();
|
|
|
|
|
|
|
|
|
|
if (getToken().cs() != "newcommand") {
|
2001-08-03 09:54:48 +00:00
|
|
|
|
lyxerr << "\\newcommand expected\n";
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (getToken().cat() != catBegin) {
|
|
|
|
|
lyxerr << "'{' expected\n";
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string name = getToken().cs();
|
|
|
|
|
|
|
|
|
|
if (getToken().cat() != catEnd) {
|
|
|
|
|
lyxerr << "'}' expected\n";
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string arg = getArg('[', ']');
|
2001-08-03 09:54:48 +00:00
|
|
|
|
int narg = arg.empty() ? 0 : atoi(arg.c_str());
|
2001-08-17 09:48:24 +00:00
|
|
|
|
//lyxerr << "creating macro " << name << " with " << narg << "args\n";
|
2001-08-03 09:54:48 +00:00
|
|
|
|
MathMacroTemplate * p = new MathMacroTemplate(name, narg);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
parse_into(p->cell(0), FLAG_BRACE | FLAG_BRACE_LAST);
|
2001-08-03 09:54:48 +00:00
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
MathMatrixInset * Parser::parse_normal()
|
2001-06-25 00:06:33 +00:00
|
|
|
|
{
|
2001-08-24 05:59:59 +00:00
|
|
|
|
while (nextToken().cat() == catSpace)
|
|
|
|
|
getToken();
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Token const & t = getToken();
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (t.cat() == catMath || t.cs() == "(") {
|
|
|
|
|
MathMatrixInset * p = new MathMatrixInset(LM_OT_SIMPLE);
|
|
|
|
|
parse_into(p->cell(0), 0);
|
|
|
|
|
return p;
|
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (!t.cs().size()) {
|
|
|
|
|
lyxerr << "start of math expected, got '" << t << "'\n";
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
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();
|
|
|
|
|
MathMatrixInset * p = new MathMatrixInset(LM_OT_EQUATION);
|
|
|
|
|
parse_into(p->cell(0), 0);
|
|
|
|
|
p->numbered(0, curr_num_);
|
|
|
|
|
p->label(0, curr_label_);
|
|
|
|
|
return p;
|
|
|
|
|
}
|
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";
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
string const name = getArg('{', '}');
|
|
|
|
|
|
|
|
|
|
if (name == "equation" || name == "equation*") {
|
2001-08-17 16:10:51 +00:00
|
|
|
|
curr_num_ = !stared(name);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
curr_label_.erase();
|
|
|
|
|
MathMatrixInset * p = new MathMatrixInset(LM_OT_EQUATION);
|
|
|
|
|
parse_into(p->cell(0), FLAG_END);
|
|
|
|
|
p->numbered(0, curr_num_);
|
|
|
|
|
p->label(0, curr_label_);
|
|
|
|
|
return p;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (name == "eqnarray" || name == "eqnarray*") {
|
|
|
|
|
MathMatrixInset * p = new MathMatrixInset(LM_OT_EQNARRAY);
|
2001-08-17 16:10:51 +00:00
|
|
|
|
parse_lines(p, !stared(name), true);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name == "align" || name == "align*") {
|
|
|
|
|
MathMatrixInset * p = new MathMatrixInset(LM_OT_ALIGN);
|
|
|
|
|
p->halign(getArg('{', '}'));
|
2001-08-17 16:10:51 +00:00
|
|
|
|
parse_lines(p, !stared(name), true);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name == "alignat" || name == "alignat*") {
|
|
|
|
|
MathMatrixInset * p = new MathMatrixInset(LM_OT_ALIGNAT);
|
|
|
|
|
p->halign(getArg('{', '}'));
|
2001-08-17 16:10:51 +00:00
|
|
|
|
parse_lines(p, !stared(name), true);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lyxerr[Debug::MATHED] << "1: unknown math environment: " << name << "\n";
|
|
|
|
|
return 0;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-10 09:30:02 +00:00
|
|
|
|
latexkeys const * Parser::read_delim()
|
2001-08-09 15:19:31 +00:00
|
|
|
|
{
|
2001-08-17 09:48:24 +00:00
|
|
|
|
Token const & t = getToken();
|
|
|
|
|
latexkeys const * l = in_word_set(t.asString());
|
|
|
|
|
return l ? l : in_word_set(".");
|
2001-08-09 15:19:31 +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-08-17 09:48:24 +00:00
|
|
|
|
MathTextCodes yyvarcode = LM_TC_MIN;
|
2001-07-27 12:32:29 +00:00
|
|
|
|
|
|
|
|
|
bool panic = false;
|
|
|
|
|
int limits = 0;
|
|
|
|
|
|
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:02:37 +00:00
|
|
|
|
if (flags & FLAG_BRACE) {
|
2001-08-17 09:48:24 +00:00
|
|
|
|
if (t.cat() != catBegin) {
|
2001-08-13 14:02:37 +00:00
|
|
|
|
error("Expected {. Maybe you forgot to enclose an argument in {}");
|
|
|
|
|
panic = true;
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
flags &= ~FLAG_BRACE;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2001-07-13 07:55:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-13 14:46:06 +00:00
|
|
|
|
if (flags & FLAG_BLOCK) {
|
2001-08-29 16:23:54 +00:00
|
|
|
|
if (t.cat() == catAlign || t.cs() == "\\")
|
2001-08-17 09:48:24 +00:00
|
|
|
|
return;
|
|
|
|
|
if (t.cs() == "end") {
|
|
|
|
|
getArg('{', '}');
|
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)
|
|
|
|
|
array.push_back(new MathCharInset(t.character(), yyvarcode));
|
2001-08-13 14:02:37 +00:00
|
|
|
|
|
2001-08-21 07:03:46 +00:00
|
|
|
|
else if (t.cat() == catSpace &&
|
|
|
|
|
(yyvarcode == LM_TC_TEXTRM || code == LM_TC_TEXTRM))
|
2001-08-17 09:48:24 +00:00
|
|
|
|
array.push_back(new MathCharInset(' ', yyvarcode));
|
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();
|
|
|
|
|
MathMacroArgument * p = new MathMacroArgument(n.character() - '0');
|
2001-08-03 09:54:48 +00:00
|
|
|
|
array.push_back(p);
|
|
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cat() == catBegin) {
|
2001-08-30 08:55:13 +00:00
|
|
|
|
array.push_back(new MathCharInset('{', 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() == catEnd) {
|
2001-08-29 16:23:54 +00:00
|
|
|
|
if (flags & FLAG_BRACE_LAST)
|
|
|
|
|
return;
|
2001-08-30 08:55:13 +00:00
|
|
|
|
array.push_back(new MathCharInset('}', 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) {
|
|
|
|
|
lyxerr << "found tab unexpectedly, array: '" << array << "'\n";
|
2001-08-30 08:55:13 +00:00
|
|
|
|
array.push_back(new MathCharInset('&', 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() == catSuper)
|
|
|
|
|
parse_into(lastScriptInset(array, true, limits)->cell(0), FLAG_ITEM);
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cat() == catSub)
|
|
|
|
|
parse_into(lastScriptInset(array, false, limits)->cell(1), FLAG_ITEM);
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.character() == ']' && (flags & FLAG_BRACK_END))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
else if (t.cat() == catOther)
|
|
|
|
|
array.push_back(new MathCharInset(t.character(), yyvarcode));
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
//
|
|
|
|
|
// codesequences
|
|
|
|
|
//
|
|
|
|
|
else if (t.cs() == "protect")
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
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-08-29 15:19:50 +00:00
|
|
|
|
if (flags & FLAG_NEWLINE)
|
|
|
|
|
return;
|
|
|
|
|
lyxerr[Debug::MATHED]
|
2001-08-17 09:48:24 +00:00
|
|
|
|
<< "found newline unexpectedly, array: '" << array << "'\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
|
|
|
|
|
|
|
|
|
else if (t.cs() == "limits")
|
|
|
|
|
limits = 1;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cs() == "nolimits")
|
|
|
|
|
limits = -1;
|
|
|
|
|
|
|
|
|
|
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-07-12 07:18:29 +00:00
|
|
|
|
array.push_back(new MathRootInset);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
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-07-12 07:18:29 +00:00
|
|
|
|
array.push_back(new MathSqrtInset);
|
2001-08-10 09:30:02 +00:00
|
|
|
|
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-08-09 15:19:31 +00:00
|
|
|
|
latexkeys const * l = read_delim();
|
2001-06-25 00:06:33 +00:00
|
|
|
|
MathArray ar;
|
2001-08-10 09:30:02 +00:00
|
|
|
|
parse_into(ar, FLAG_RIGHT);
|
2001-08-09 15:19:31 +00:00
|
|
|
|
latexkeys const * r = read_delim();
|
|
|
|
|
MathDelimInset * 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") {
|
|
|
|
|
if (!(flags & FLAG_RIGHT))
|
|
|
|
|
error("Unmatched right delimiter");
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LM_TK_UNDEF:
|
2001-08-10 09:30:02 +00:00
|
|
|
|
if (MathMacroTable::hasTemplate(sval_)) {
|
|
|
|
|
MathMacro * m = MathMacroTable::cloneTemplate(sval_);
|
2001-07-06 12:09:32 +00:00
|
|
|
|
for (int i = 0; i < m->nargs(); ++i)
|
2001-08-10 09:30:02 +00:00
|
|
|
|
parse_into(m->cell(i), FLAG_ITEM);
|
2001-07-10 13:17:43 +00:00
|
|
|
|
array.push_back(m);
|
2001-07-26 06:56:43 +00:00
|
|
|
|
m->metrics(LM_ST_TEXT);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
} else
|
2001-08-10 09:30:02 +00:00
|
|
|
|
array.push_back(new MathFuncInset(sval_));
|
2001-02-26 12:53:35 +00:00
|
|
|
|
break;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
else LM_TK_SPECIAL:
|
2001-08-30 08:55:13 +00:00
|
|
|
|
array.push_back(new MathCharInset(ival_, LM_TC_TEX));
|
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
|
|
|
|
else if (t.cs() == "begin") {
|
|
|
|
|
string const name = getArg('{', '}');
|
|
|
|
|
if (name == "array") {
|
|
|
|
|
string const valign = getArg('[', ']') + 'c';
|
|
|
|
|
string const halign = getArg('{', '}');
|
2001-07-13 07:55:55 +00:00
|
|
|
|
MathArrayInset * m = new MathArrayInset(halign.size(), 1);
|
|
|
|
|
m->valign(valign[0]);
|
|
|
|
|
m->halign(halign);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
parse_lines(m, false, false);
|
2001-07-13 07:55:55 +00:00
|
|
|
|
array.push_back(m);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
} else
|
2001-08-17 09:48:24 +00:00
|
|
|
|
lyxerr[Debug::MATHED] << "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;
|
|
|
|
|
}
|
|
|
|
|
array.push_back(new MathKernInset(s));
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 09:48:24 +00:00
|
|
|
|
else if (t.cs() == "label") {
|
2001-08-20 13:45:02 +00:00
|
|
|
|
//MathArray ar;
|
|
|
|
|
//parse_into(ar, FLAG_ITEM);
|
|
|
|
|
//ostringstream os;
|
|
|
|
|
//ar.write(os, true);
|
|
|
|
|
//curr_label_ = os.str();
|
2001-08-17 09:48:24 +00:00
|
|
|
|
// was:
|
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-08-13 15:26:41 +00:00
|
|
|
|
limits = 0;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
MathInset * p = createMathInset(t.cs());
|
2001-08-29 16:23:54 +00:00
|
|
|
|
// search backward for position of last '{' if any
|
|
|
|
|
int pos;
|
|
|
|
|
for (pos = array.size() - 1; pos >= 0; --pos) {
|
|
|
|
|
MathInset * q = array.nextInset(pos);
|
2001-08-30 08:55:13 +00:00
|
|
|
|
if (q->getChar() == '{')
|
2001-08-29 16:23:54 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (pos >= 0) {
|
|
|
|
|
// found it -> use the part after '{' as "numerator", erase the '{'
|
|
|
|
|
p->cell(0) = MathArray(array, pos + 1, array.size());
|
|
|
|
|
array.erase(pos, array.size());
|
|
|
|
|
} else {
|
|
|
|
|
// not found -> use everything as "numerator"
|
|
|
|
|
p->cell(0).swap(array);
|
|
|
|
|
}
|
2001-08-13 14:46:06 +00:00
|
|
|
|
array.push_back(p);
|
|
|
|
|
parse_into(p->cell(1), FLAG_BLOCK);
|
2001-08-13 14:02:37 +00:00
|
|
|
|
}
|
2001-08-17 09:48:24 +00:00
|
|
|
|
|
|
|
|
|
else if (t.cs().size()) {
|
2001-08-13 14:02:37 +00:00
|
|
|
|
limits = 0;
|
2001-08-17 09:48:24 +00:00
|
|
|
|
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;
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
MathTextCodes t = static_cast<MathTextCodes>(l->id);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
MathArray ar;
|
2001-08-21 07:03:46 +00:00
|
|
|
|
parse_into(ar, FLAG_ITEM, t);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
for (MathArray::iterator it = ar.begin(); it != ar.end(); ++it)
|
2001-08-21 07:03:46 +00:00
|
|
|
|
(*it)->handleFont(t);
|
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";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (l->token == LM_TK_OLDFONT)
|
|
|
|
|
yyvarcode = static_cast<MathTextCodes>(l->id);
|
|
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
MathInset * p = createMathInset(t.cs());
|
|
|
|
|
for (int i = 0; i < p->nargs(); ++i)
|
|
|
|
|
parse_into(p->cell(i), FLAG_ITEM);
|
|
|
|
|
array.push_back(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
MathInset * p = createMathInset(t.cs());
|
|
|
|
|
if (p) {
|
|
|
|
|
for (int i = 0; i < p->nargs(); ++i)
|
|
|
|
|
parse_into(p->cell(i), FLAG_ITEM);
|
|
|
|
|
array.push_back(p);
|
|
|
|
|
} else {
|
|
|
|
|
error("Unrecognized token");
|
|
|
|
|
//lyxerr[Debug::MATHED] << "[" << t << "]\n";
|
|
|
|
|
lyxerr << t << "\n";
|
|
|
|
|
}
|
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-08-10 09:30:02 +00:00
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
2001-07-12 07:18:29 +00:00
|
|
|
|
|
2001-07-26 16:14:23 +00:00
|
|
|
|
|
|
|
|
|
MathArray mathed_parse_cell(string const & str)
|
|
|
|
|
{
|
|
|
|
|
istringstream is(str.c_str());
|
2001-08-10 09:30:02 +00:00
|
|
|
|
Parser parser(is);
|
2001-07-26 16:14:23 +00:00
|
|
|
|
MathArray ar;
|
2001-08-10 09:30:02 +00:00
|
|
|
|
parser.parse_into(ar, 0);
|
2001-07-26 16:14:23 +00:00
|
|
|
|
return ar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-10 07:52:04 +00:00
|
|
|
|
|
2001-08-03 09:54:48 +00:00
|
|
|
|
MathMacroTemplate * mathed_parse_macro(string const & str)
|
|
|
|
|
{
|
|
|
|
|
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-08-10 07:52:04 +00:00
|
|
|
|
MathMacroTemplate * mathed_parse_macro(istream & is)
|
|
|
|
|
{
|
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-08-10 07:52:04 +00:00
|
|
|
|
MathMacroTemplate * 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-08-10 07:52:04 +00:00
|
|
|
|
MathMatrixInset * mathed_parse_normal(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);
|
|
|
|
|
return parser.parse_normal();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-10 07:52:04 +00:00
|
|
|
|
MathMatrixInset * mathed_parse_normal(istream & is)
|
2001-08-03 09:54:48 +00:00
|
|
|
|
{
|
2001-08-10 09:30:02 +00:00
|
|
|
|
Parser parser(is);
|
|
|
|
|
return parser.parse_normal();
|
2001-08-03 09:54:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MathMatrixInset * mathed_parse_normal(LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-08-10 09:30:02 +00:00
|
|
|
|
Parser parser(lex);
|
2001-08-17 09:48:24 +00:00
|
|
|
|
return parser.parse_normal();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|