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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
package bjc.rgens.parser.elements;
import bjc.rgens.parser.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public abstract class RuleCaseElement extends StringCaseElement {
public static enum ReferenceType {
DEPENDENT,
VARIABLE,
NORMAL
}
public final ReferenceType ref;
protected RuleCaseElement(String vl, ReferenceType ref) {
super(vl, false);
this.ref = ref;
}
protected void doGenerate(String actName, GenerationState state) {
GenerationState newState = state.newBuf();
if (actName.startsWith("[^")) {
actName = "[" + actName.substring(2);
RGrammar dst = state.importRules.get(actName);
newState.swapGrammar(dst);
/* :Postprocessing */
newState.contents = new StringBuilder(dst.generate(actName, state.rnd, state.vars));
} else if (state.rules.containsKey(actName)) {
Rule rl = state.rules.get(actName);
if(rl.doRecur()) {
RuleCase cse = rl.getCase(state.rnd);
state.gram.generateCase(cse, newState);
rl.endRecur();
} else {
throw new RecurLimitException("Rule recurrence limit exceeded");
}
} else if (state.importRules.containsKey(actName)) {
RGrammar dst = state.importRules.get(actName);
newState.swapGrammar(dst);
/* :Postprocessing */
newState.contents = new StringBuilder(dst.generate(actName, state.rnd, state.vars));
} else {
/*
* @TODO 5/29/18 Ben Culkin :RuleSuggesting
*
* Re-get this working again.
*/
/*
if (ruleSearcher != null) {
Set<Match<? extends String>> results = ruleSearcher.search(actName, MAX_DISTANCE);
String[] resArray = results.stream().map(Match::getMatch).toArray((i) -> new String[i]);
String msg = String.format("No rule '%s' defined (perhaps you meant %s?)", actName,
StringUtils.toEnglishList(resArray, false));
throw new GrammarException(msg);
}
*/
String msg = String.format("No rule '%s' defined", actName);
throw new GrammarException(msg);
}
String res = newState.contents.toString();
if (actName.contains("+")) {
/* Rule names with pluses in them get space-flattened */
state.contents.append(res.replaceAll("\\s+", ""));
} else {
state.contents.append(res);
}
}
}
|