]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_parser.C
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_parser.C
index 4da7787d9c016097f76e345ea8a576eb06851c1d..98940b4537ccd53da89cda5bb27680a899370b0e 100644 (file)
@@ -45,18 +45,15 @@ point to write some macros:
 
 #include <config.h>
 
-#include <cctype>
-#include <stack>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_parser.h"
-#include "array.h"
 #include "math_inset.h"
 #include "math_arrayinset.h"
 #include "math_braceinset.h"
+#include "math_casesinset.h"
 #include "math_charinset.h"
 #include "math_deliminset.h"
 #include "math_factory.h"
@@ -67,28 +64,36 @@ point to write some macros:
 #include "math_macrotemplate.h"
 #include "math_hullinset.h"
 #include "math_rootinset.h"
+#include "math_sizeinset.h"
 #include "math_sqrtinset.h"
 #include "math_scriptinset.h"
 #include "math_specialcharinset.h"
 #include "math_splitinset.h"
 #include "math_sqrtinset.h"
-#include "debug.h"
 #include "math_support.h"
+
 #include "lyxlex.h"
+#include "debug.h"
+
 #include "support/lstrings.h"
 
+#include <cctype>
+#include <stack>
+#include <algorithm>
+
 using std::istream;
 using std::ostream;
 using std::ios;
 using std::endl;
 using std::stack;
+using std::fill;
 
 
 namespace {
 
 bool stared(string const & s)
 {
-       unsigned n = s.size();
+       string::size_type const n = s.size();
        return n && s[n - 1] == '*';
 }
 
@@ -133,6 +138,7 @@ enum {
        FLAG_RIGHT      = 1 << 2,  //  next \\right ends the parsing process
        FLAG_END        = 1 << 3,  //  next \\end ends the parsing process
        FLAG_BRACK_END  = 1 << 4,  //  next closing bracket ends the parsing process
+       FLAG_BOX        = 1 << 5,  //  we are in a box
        FLAG_ITEM       = 1 << 7,  //  read a (possibly braced token)
        FLAG_BLOCK      = 1 << 8,  //  next block ends the parsing process
        FLAG_LEAVE      = 1 << 9   //  leave the loop at the end
@@ -141,12 +147,9 @@ enum {
 
 void catInit()
 {
-       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;
+       fill(theCatcode, theCatcode + 256, catOther);
+       fill(theCatcode + 'a', theCatcode + 'z' + 1, catLetter);
+       fill(theCatcode + 'A', theCatcode + 'Z' + 1, catLetter);
 
        theCatcode['\\'] = catEscape;   
        theCatcode['{']  = catBegin;    
@@ -178,7 +181,7 @@ public:
        ///
        Token(char c, CatCode cat) : cs_(), char_(c), cat_(cat) {}
        ///
-       Token(const string & cs) : cs_(cs), char_(0), cat_(catIgnore) {}
+       Token(string const & cs) : cs_(cs), char_(0), cat_(catIgnore) {}
 
        ///
        string const & cs() const { return cs_; }
@@ -188,6 +191,8 @@ public:
        char character() const { return char_; }
        ///
        string asString() const;
+       ///
+       bool isCR() const;
 
 private:       
        ///
@@ -198,6 +203,11 @@ private:
        CatCode cat_;
 };
 
+bool Token::isCR() const
+{
+       return cs_ == "\\" || cs_ == "cr" || cs_ == "crcr";
+}
+
 string Token::asString() const
 {
        return cs_.size() ? cs_ : string(1, char_);
@@ -209,10 +219,11 @@ bool operator==(Token const & s, Token const & t)
                && s.cat() == t.cat() && s.cs() == t.cs(); 
 }
 
-bool operator!=(Token const & s, Token const & t)
-{
-       return !(s == t);
-}
+// Angus' compiler says this is not needed
+//bool operator!=(Token const & s, Token const & t)
+//{
+//     return !(s == t);
+//}
 
 ostream & operator<<(ostream & os, Token const & t)
 {
@@ -268,6 +279,10 @@ private:
        Token const & nextToken() const;
        ///
        Token const & getToken();
+       /// skips spaces if any
+       void skipSpaces();
+       /// counts a sequence of hlines
+       int readHLines();
        ///
        void lex(string const & s);
        ///
@@ -332,10 +347,31 @@ Token const & Parser::nextToken() const
 Token const & Parser::getToken()
 {
        static const Token dummy;
+       //lyxerr << "looking at token " << tokens_[pos_] << '\n';
        return good() ? tokens_[pos_++] : dummy;
 }
 
 
+void Parser::skipSpaces()
+{
+       while (nextToken().cat() == catSpace)
+               getToken();
+}
+
+
+int Parser::readHLines()
+{
+       int num = 0;
+       skipSpaces();
+       while (nextToken().cs() == "hline") {
+               getToken();
+               ++num;
+               skipSpaces();
+       }
+       return num;
+}
+
+
 void Parser::putback()
 {
        --pos_;
@@ -468,32 +504,38 @@ bool Parser::parse_lines(MathAtom & t, bool numbered, bool outmost)
                return false;
        }
 
-       const int cols = p->ncols();
+       MathInset::col_type const cols = p->ncols();
 
        // save global variables
        bool   const saved_num   = curr_num_;
        string const saved_label = curr_label_;
 
+       // read initial hlines
+       p->rowinfo(0).lines_ = readHLines();
+
        for (int row = 0; true; ++row) {
                // reset global variables
                curr_num_   = numbered;
                curr_label_.erase();
 
                // reading a row
-               for (int col = 0; col < cols; ++col) {
+               for (MathInset::col_type 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) {
+                       // break if cell is not followed by an ampersand
+                       if (nextToken().cat() != catAlign) {
                                //lyxerr << "less cells read than normal in row/col: "
                                //      << row << " " << col << "\n";
                                break;
                        }
+                       
+                       // skip the ampersand
+                       getToken();
                }
 
                if (outmost) {
-                       MathHullInset * m = t->asMatrixInset();
+                       MathHullInset * m = t->asHullInset();
                        if (!m) {
                                lyxerr << "error in Parser::parse_lines() 2\n";
                                return false;
@@ -501,17 +543,34 @@ bool Parser::parse_lines(MathAtom & t, bool numbered, bool outmost)
                        m->numbered(row, curr_num_);
                        m->label(row, curr_label_);
                        if (curr_skip_.size()) {
-                               m->vskip(LyXLength(curr_skip_), row);
+                               m->vcrskip(LyXLength(curr_skip_), row);
                                curr_skip_.erase();
                        }
                }
 
-               // no newline?
-               if (prevToken() != Token("\\")) {
-                       //lyxerr << "no newline here\n";
+               // 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
                        break;
                }
 
+               // otherwise, we have to start a new row
                p->appendRow();
        }
 
@@ -526,9 +585,7 @@ bool Parser::parse_lines(MathAtom & t, bool numbered, bool outmost)
 string Parser::parse_macro()
 {
        string name = "{error}";
-
-       while (nextToken().cat() == catSpace)
-               getToken();
+       skipSpaces();
 
        if (getToken().cs() != "newcommand") {
                lyxerr << "\\newcommand expected\n";
@@ -564,9 +621,7 @@ string Parser::parse_macro()
 
 bool Parser::parse_normal(MathAtom & matrix)
 {
-       while (nextToken().cat() == catSpace)
-               getToken();
-
+       skipSpaces();
        Token const & t = getToken();
 
        if (t.cs() == "(") {
@@ -580,7 +635,7 @@ bool Parser::parse_normal(MathAtom & matrix)
                if (n.cat() == catMath) {
                        // TeX's $$...$$ syntax for displayed math
                        matrix = MathAtom(new MathHullInset(LM_OT_EQUATION));
-                       MathHullInset * p = matrix->asMatrixInset();
+                       MathHullInset * p = matrix->asHullInset();
                        parse_into(p->cell(0), 0);
                        p->numbered(0, curr_num_);
                        p->label(0, curr_label_);
@@ -604,7 +659,7 @@ bool Parser::parse_normal(MathAtom & matrix)
                curr_num_ = 0;
                curr_label_.erase();
                matrix = MathAtom(new MathHullInset(LM_OT_EQUATION));
-               MathHullInset * p = matrix->asMatrixInset();
+               MathHullInset * p = matrix->asHullInset();
                parse_into(p->cell(0), 0);
                p->numbered(0, curr_num_);
                p->label(0, curr_label_);
@@ -618,11 +673,17 @@ bool Parser::parse_normal(MathAtom & matrix)
 
        string const name = getArg('{', '}');
 
+       if (name == "math") {
+               matrix = MathAtom(new MathHullInset(LM_OT_SIMPLE));
+               parse_into(matrix->cell(0), 0);
+               return true;
+       }
+
        if (name == "equation" || name == "equation*" || name == "displaymath") {
                curr_num_ = (name == "equation");
                curr_label_.erase();
                matrix = MathAtom(new MathHullInset(LM_OT_EQUATION));
-               MathHullInset * p = matrix->asMatrixInset();
+               MathHullInset * p = matrix->asHullInset();
                parse_into(p->cell(0), FLAG_END);
                p->numbered(0, curr_num_);
                p->label(0, curr_label_);
@@ -668,6 +729,7 @@ bool Parser::parse_normal(MathAtom & matrix)
        }
 
        lyxerr[Debug::MATHED] << "1: unknown math environment: " << name << "\n";
+       lyxerr << "1: unknown math environment: " << name << "\n";
        return false;
 }
 
@@ -698,10 +760,8 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
                }
 
                if (flags & FLAG_BLOCK) {
-                       if (t.cat() == catAlign || t.cs() == "\\")
-                               return;
-                       if (t.cs() == "end") {
-                               getArg('{', '}');
+                       if (t.cat() == catAlign || t.isCR() || t.cs() == "end") {
+                               putback();
                                return;
                        }
                }
@@ -709,8 +769,16 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
                //
                // cat codes
                //
-               if (t.cat() == catMath)
-                       break;
+               if (t.cat() == catMath) {
+                       if (flags & FLAG_BOX) {
+                               // we are inside an mbox, so opening new math is allowed
+                               array.push_back(MathAtom(new MathHullInset(LM_OT_SIMPLE)));
+                               parse_into(array.back()->cell(0), 0);
+                       } else {
+                               // otherwise this is the end of the formula
+                               break;
+                       }
+               }
 
                else if (t.cat() == catLetter)
                        add(array, t.character(), code);
@@ -720,7 +788,7 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
 
                else if (t.cat() == catParameter) {
                        Token const & n = getToken();
-                       array.push_back(MathAtom(new MathMacroArgument(n.character() - '0')));
+                       array.push_back(MathAtom(new MathMacroArgument(n.character()-'0', code)));
                }
 
                else if (t.cat() == catBegin) {
@@ -741,14 +809,14 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
                else if (t.cat() == catEnd) {
                        if (flags & FLAG_BRACE_LAST)
                                return;
-                       //lyxerr << "found '}' unexpectedly, array: '" << array << "'\n";
-                       lyxerr << "found '}' unexpectedly\n";
+                       lyxerr << "found '}' unexpectedly, array: '" << array << "'\n";
+                       //lyxerr << "found '}' unexpectedly\n";
                        add(array, '}', LM_TC_TEX);
                }
                
                else if (t.cat() == catAlign) {
-                       //lyxerr << "found tab unexpectedly, array: '" << array << "'\n";
-                       lyxerr << "found tab unexpectedly\n";
+                       lyxerr << "found tab unexpectedly, array: '" << array << "'\n";
+                       //lyxerr << "found tab unexpectedly\n";
                        add(array, '&', LM_TC_TEX);
                }
                
@@ -839,32 +907,21 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
                        return;
                }
 
-/*             
-               case LM_TK_STY:
-               {
-                       lyxerr[Debug::MATHED] << "LM_TK_STY not implemented\n";
-                       //MathArray tmp = array;
-                       //MathSizeInset * p = new MathSizeInset(MathStyles(lval_->id));
-                       //array.push_back(p);
-                       //parse_into(p->cell(0), FLAG_BRACE_FONT);
-                       break; 
-               }
-
-*/
-               
                else if (t.cs() == "begin") {
                        string const name = getArg('{', '}');   
                        if (name == "array") {
                                string const valign = getArg('[', ']') + 'c';
                                string const halign = getArg('{', '}');
-                               array.push_back(
-                                       MathAtom(new MathArrayInset(halign.size(), 1, valign[0], halign)));
+                               array.push_back(MathAtom(new MathArrayInset(valign[0], halign)));
                                parse_lines(array.back(), false, false);
                        } else if (name == "split") {
                                array.push_back(MathAtom(new MathSplitInset(1)));
                                parse_lines(array.back(), false, false);
+                       } else if (name == "cases") {
+                               array.push_back(MathAtom(new MathCasesInset));
+                               parse_lines(array.back(), false, false);
                        } else 
-                               lyxerr[Debug::MATHED] << "unknow math inset begin '" << name << "'\n";  
+                               lyxerr << "unknow math inset begin '" << name << "'\n"; 
                }
        
                else if (t.cs() == "kern") {
@@ -897,8 +954,8 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
                        return;
                }
 
-/*
                // Disabled
+#if 0
                else if (t.cs() == "mbox") {
                        array.push_back(createMathInset(t.cs()));
                        // slurp in the argument of mbox
@@ -906,7 +963,8 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
                        MathBoxInset * p = array.back()->asBoxInset();
                        //lyx::assert(p);
                }
-*/
+#endif
+
        
                else if (t.cs().size()) {
                        latexkeys const * l = in_word_set(t.cs());
@@ -932,6 +990,19 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
                                        code = static_cast<MathTextCodes>(l->id);
                                }
 
+                               else if (l->token == LM_TK_BOX) {
+                                       MathAtom p = createMathInset(t.cs());
+                                       parse_into(p->cell(0), FLAG_ITEM | FLAG_BOX, LM_TC_BOX);
+                                       array.push_back(p);
+                               }
+
+                               else if (l->token == LM_TK_STY) {
+                                       MathAtom p = createMathInset(t.cs());
+                                       parse_into(p->cell(0), flags, code);
+                                       array.push_back(p);
+                                       return;
+                               }
+
                                else {
                                        MathAtom p = createMathInset(t.cs());
                                        for (MathInset::idx_type i = 0; i < p->nargs(); ++i)