1 /* This file is part of EdiTeX, an editor of mathematical
2 * expressions based on TeX syntax.
4 * Copyright (C) 2002-2003 Luca Padovani <lpadovan@cs.unibo.it>,
5 * 2003 Paolo Marinelli <pmarinel@cs.unibo.it>.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * For more information, please visit the project's home page
22 * http://helm.cs.unibo.it/editex/
23 * or send an email to <lpadovan@cs.unibo.it>
31 #include "TPushLexer.hh"
32 #include "APushParser.hh"
34 TPushLexer::TPushLexer(ALogger& l, APushParser& p) : APushLexer(l, p)
55 TPushLexer::transaction(char ch, State newState)
59 case '{': parser.push(TToken(TToken::BEGIN)); break;
60 case '}': parser.push(TToken(TToken::END)); break;
61 case '$': parser.push(TToken(TToken::SHIFT)); break;
62 case '&': parser.push(TToken(TToken::ALIGN)); break;
64 case '\r': parser.push(TToken(TToken::EOL, ch)); break;
65 case '^': parser.push(TToken(TToken::SUPERSCRIPT)); break;
66 case '_': parser.push(TToken(TToken::SUBSCRIPT)); break;
68 case ' ': parser.push(TToken(TToken::IGNORABLE_SPACE, ch)); break;
69 case '~': parser.push(TToken(TToken::ACTIVE, ch)); break;
70 case '%': parser.push(TToken(TToken::COMMENT)); break;
72 if (isalpha(ch)) parser.push(TToken(TToken::LETTER, ch));
73 else if (isdigit(ch)) parser.push(TToken(TToken::DIGIT, ch));
74 else parser.push(TToken(TToken::OTHER, ch));
81 TPushLexer::push(char ch)
86 if (ch == '\\') state = ESCAPE;
87 else if (ch == '#') state = PARAMETER;
89 else transaction(ch, ACCEPT);
97 else if (ch == -1) error();
100 parser.push(TToken(TToken::CONTROL, ch));
107 parser.push(TToken(TToken::CONTROL, buffer));
113 parser.push(TToken(TToken::CONTROL, buffer));
117 else if (isalpha(ch))
118 buffer.push_back(ch);
121 parser.push(TToken(TToken::CONTROL, buffer));
127 parser.push(TToken(TToken::CONTROL, buffer));
129 if (isspace(ch)) state = IGNORE_SPACE;
130 else transaction(ch, ACCEPT);
134 if (ch == '\\') state = ESCAPE;
135 else if (ch == '#') state = PARAMETER;
136 else if (isspace(ch)) ;
137 else if (ch == -1) state = ACCEPT;
138 else transaction(ch, ACCEPT);
141 if (ch == -1) error();
144 parser.push(TToken(TToken::PARAMETER, ch));
158 TPushLexer::drop(bool alt)
160 std::string restore = "";
166 restore = parser.drop(alt);
167 if (restore.length() > 0 && restore[0] == '\\')
169 buffer = std::string(restore, 1, restore.length() - 1);
170 state = (buffer.length() > 0) ? MACRO : ESCAPE;
177 if (alt) buffer.erase();
178 else buffer.erase(buffer.length() - 1, 1);
179 if (buffer.length() == 0) state = ESCAPE;
192 TPushLexer::displayCursor()
196 case ESCAPE: parser.setCursorHint("\\"); break;
197 case MACRO: parser.setCursorHint("\\" + buffer); break;
198 case PARAMETER: parser.setCursorHint("#"); break;
199 default: parser.setCursorHint(""); break;
204 TPushLexer::error() const