1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-30 23:20:48 +00:00
plantuml/src/net/sourceforge/plantuml/tim/Eater.java
2019-09-14 20:12:04 +02:00

342 lines
9.3 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*/
package net.sourceforge.plantuml.tim;
import java.util.ArrayList;
import java.util.List;
import net.sourceforge.plantuml.LineLocation;
import net.sourceforge.plantuml.StringLocated;
import net.sourceforge.plantuml.json.Json;
import net.sourceforge.plantuml.json.JsonValue;
import net.sourceforge.plantuml.tim.expression.TValue;
import net.sourceforge.plantuml.tim.expression.Token;
import net.sourceforge.plantuml.tim.expression.TokenStack;
import net.sourceforge.plantuml.tim.expression.TokenType;
public abstract class Eater {
private int i = 0;
private final String s;
public Eater(String s) {
this.s = s;
}
public abstract void execute(TContext context, TMemory memory) throws EaterException;
public int getCurrentPosition() {
return i;
}
final protected String eatAllToEnd() throws EaterException {
final String result = s.substring(i);
i = s.length();
return result;
}
final protected TValue eatExpression(TContext context, TMemory memory) throws EaterException {
if (peekChar() == '{') {
String data = eatAllToEnd();
System.err.println("data=" + data);
JsonValue json = Json.parse(data);
System.err.println("json=" + json);
return TValue.fromJson(json);
}
final TokenStack tokenStack = new TokenStack();
addIntoTokenStack(tokenStack, false);
if (tokenStack.size() == 0) {
throw new EaterException("Missing expression");
}
return tokenStack.getResult(context, memory);
}
final protected TValue eatExpressionStopAtColon(TContext context, TMemory memory) throws EaterException {
final TokenStack tokenStack = new TokenStack();
addIntoTokenStack(tokenStack, true);
return tokenStack.getResult(context, memory);
}
final protected void addIntoTokenStack(TokenStack tokenStack, boolean stopAtColon) throws EaterException {
while (true) {
final Token token = TokenType.eatOneToken(this, stopAtColon);
// System.err.println("token=" + token);
if (token == null) {
return;
}
tokenStack.add(token);
}
}
final public String eatAndGetQuotedString() throws EaterException {
final char separator = peekChar();
if (TLineType.isQuote(separator) == false) {
throw new EaterException("quote10");
}
checkAndEatChar(separator);
final StringBuilder value = new StringBuilder();
addUpTo(separator, value);
checkAndEatChar(separator);
return value.toString();
}
final protected String eatAndGetOptionalQuotedString() throws EaterException {
final char quote = peekChar();
if (TLineType.isQuote(quote)) {
return eatAndGetQuotedString();
}
final StringBuilder value = new StringBuilder();
// DEPLICATE eatUntilCloseParenthesisOrComma
int level = 0;
while (true) {
char ch = peekChar();
if (ch == 0) {
throw new EaterException("until001");
}
if (level == 0 && (ch == ',' || ch == ')')) {
return value.toString().trim();
}
ch = eatOneChar();
if (ch == '(') {
level++;
} else if (ch == ')') {
level--;
}
value.append(ch);
}
// addUpTo(',', ')', value);
// return value.toString();
}
final public String eatAndGetNumber() throws EaterException {
final StringBuilder result = new StringBuilder();
while (true) {
final char ch = peekChar();
if (ch == 0 || TLineType.isLatinDigit(ch) == false) {
return result.toString();
}
result.append(eatOneChar());
}
}
final public String eatAndGetSpaces() throws EaterException {
final StringBuilder result = new StringBuilder();
while (true) {
final char ch = peekChar();
if (ch == 0 || TLineType.isSpaceChar(ch) == false) {
return result.toString();
}
result.append(eatOneChar());
}
}
final protected String eatAndGetVarname() throws EaterException {
final StringBuilder varname = new StringBuilder("" + eatOneChar());
if (TLineType.isLetterOrUnderscoreOrDollar(varname.charAt(0)) == false) {
throw new EaterException("a002");
}
addUpToLastLetterOrUnderscoreOrDigit(varname);
return varname.toString();
}
final protected String eatAndGetFunctionName() throws EaterException {
final StringBuilder varname = new StringBuilder("" + eatOneChar());
if (TLineType.isLetterOrUnderscoreOrDollar(varname.charAt(0)) == false) {
throw new EaterException("a003");
}
addUpToLastLetterOrUnderscoreOrDigit(varname);
return varname.toString();
}
final public void skipSpaces() {
while (i < s.length() && Character.isWhitespace(s.charAt(i))) {
i++;
}
}
final protected void skipUntilChar(char ch) {
while (i < s.length() && s.charAt(i) != ch) {
i++;
}
}
final public char peekChar() {
if (i >= s.length()) {
return 0;
}
return s.charAt(i);
}
final public char peekCharN2() {
if (i + 1 >= s.length()) {
return 0;
}
return s.charAt(i + 1);
}
final protected boolean hasNextChar() {
return i < s.length();
}
final public char eatOneChar() {
final char ch = s.charAt(i);
i++;
return ch;
}
final protected void checkAndEatChar(char ch) throws EaterException {
if (i >= s.length() || s.charAt(i) != ch) {
throw new EaterException("a001");
}
i++;
}
final protected boolean safeCheckAndEatChar(char ch) throws EaterException {
if (i >= s.length() || s.charAt(i) != ch) {
return false;
}
i++;
return true;
}
final protected void optionallyEatChar(char ch) throws EaterException {
if (i >= s.length() || s.charAt(i) != ch) {
return;
}
assert s.charAt(i) == ch;
i++;
}
final protected void checkAndEatChar(String s) throws EaterException {
for (int j = 0; j < s.length(); j++) {
checkAndEatChar(s.charAt(j));
}
}
final protected void addUpToLastLetterOrUnderscoreOrDigit(StringBuilder sb) {
while (i < s.length()) {
final char ch = s.charAt(i);
if (TLineType.isLetterOrUnderscoreOrDigit(ch) == false) {
return;
}
i++;
sb.append(ch);
}
}
final protected void addUpTo(char separator, StringBuilder sb) {
while (i < s.length()) {
final char ch = peekChar();
if (ch == separator) {
return;
}
i++;
sb.append(ch);
}
}
// final protected void addUpToUnused(char separator1, char separator2, StringBuilder sb) {
// while (i < s.length()) {
// final char ch = peekChar();
// if (ch == separator1 || ch == separator2) {
// return;
// }
// i++;
// sb.append(ch);
// }
// }
final protected TFunctionImpl eatDeclareFunction(TContext context, TMemory memory, boolean unquoted,
LineLocation location, boolean allowNoParenthesis) throws EaterException {
final List<TFunctionArgument> args = new ArrayList<TFunctionArgument>();
final String functionName = eatAndGetFunctionName();
skipSpaces();
if (safeCheckAndEatChar('(') == false) {
if (allowNoParenthesis) {
return new TFunctionImpl(functionName, args, unquoted);
}
throw new EaterException("Missing opening parenthesis");
}
while (true) {
skipSpaces();
char ch = peekChar();
if (TLineType.isLetterOrUnderscoreOrDollar(ch)) {
final String varname = eatAndGetVarname();
skipSpaces();
final TValue defValue;
if (peekChar() == '=') {
eatOneChar();
final TokenStack def = TokenStack.eatUntilCloseParenthesisOrComma(this);
def.guessFunctions();
defValue = def.getResult(context, memory);
// System.err.println("result=" + defValue);
} else {
defValue = null;
}
args.add(new TFunctionArgument(varname, defValue));
} else if (ch == ',') {
checkAndEatChar(',');
} else if (ch == ')') {
checkAndEatChar(")");
break;
} else {
throw new EaterException("Error in function definition");
}
}
skipSpaces();
return new TFunctionImpl(functionName, args, unquoted);
}
final protected TFunctionImpl eatDeclareFunctionWithOptionalReturn(TContext context, TMemory memory,
boolean unquoted, LineLocation location) throws EaterException {
final TFunctionImpl result = eatDeclareFunction(context, memory, unquoted, location, false);
if (peekChar() == 'r') {
checkAndEatChar("return");
skipSpaces();
final String line = "!return " + eatAllToEnd();
result.addBody(new StringLocated(line, location));
} else if (peekChar() == '!') {
checkAndEatChar("!return");
skipSpaces();
final String line = "!return " + eatAllToEnd();
result.addBody(new StringLocated(line, location));
}
return result;
}
}