blob: db2ba989f16472433b6ed5b863aedca1238913dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
package bjc.dicelang.ast;
import java.util.InputMismatchException;
import bjc.dicelang.old.ast.nodes.IDiceASTNode;
import bjc.dicelang.old.ast.nodes.LiteralDiceNode;
import bjc.dicelang.old.ast.nodes.OperatorDiceNode;
import bjc.dicelang.old.ast.nodes.VariableDiceNode;
import bjc.utils.funcdata.IFunctionalList;
import bjc.utils.parserutils.AST;
import bjc.utils.parserutils.TreeConstructor;
/**
* Parse a string expression into AST form. Doesn't do anything else
*
* @author ben
*
*/
public class DiceASTParser {
/**
* Create an AST from a list of tokens
*
* @param tokens
* The list of tokens to convert
* @return An AST built from the tokens
*/
public static AST<IDiceASTNode> createFromString(
IFunctionalList<String> tokens) {
AST<String> rawTokens =
TreeConstructor.constructTree(tokens, (token) -> {
return isOperatorNode(token);
}, (operator) -> false, null);
// The last argument is valid because there are no special
// operators yet, so it'll never get called
return rawTokens.rebuildTree(DiceASTParser::convertLeafNode,
DiceASTParser::convertOperatorNode);
}
private static boolean isOperatorNode(String token) {
try {
OperatorDiceNode.fromString(token);
return true;
} catch (@SuppressWarnings("unused") IllegalArgumentException iaex) {
// We don't care about details
return false;
}
}
private static IDiceASTNode convertLeafNode(String leafNode) {
if (LiteralDiceNode.isLiteral(leafNode)) {
return new LiteralDiceNode(leafNode);
}
return new VariableDiceNode(leafNode);
}
private static IDiceASTNode convertOperatorNode(String operatorNode) {
try {
return OperatorDiceNode.fromString(operatorNode);
} catch (IllegalArgumentException iaex) {
InputMismatchException imex = new InputMismatchException(
"Attempted to parse invalid operator " + operatorNode);
imex.initCause(iaex);
throw imex;
}
}
}
|