summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/rgens/parser/elements/VariableCaseElement.java
blob: 63701e0d70be7fc8c48ed8a5ca8bf6ed6e35a634 (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
71
72
73
74
75
package bjc.rgens.parser.elements;

import bjc.rgens.parser.GrammarException;

public abstract class VariableCaseElement extends CaseElement {
	public static enum VariableType {
		NORMAL,
		EXPAND,
		RULE
	}
	/**
	 * The name of the variable this element defines.
	 */
	public final String varName;

	/**
	 * The definition of the variable this element defines.
	 */
	public final String varDef;

	public final VariableType varType;

	public VariableCaseElement(String name, String def, VariableType varType) {
		super(false);

		varName = name;
		varDef = def;
		
		this.varType = varType;
	}

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = super.hashCode();
		result = prime * result + ((varDef == null) ? 0 : varDef.hashCode());
		result = prime * result + ((varName == null) ? 0 : varName.hashCode());
		return result;
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (!super.equals(obj))
			return false;
		if (getClass() != obj.getClass())
			return false;
		VariableCaseElement other = (VariableCaseElement) obj;
		if (varDef == null) {
			if (other.varDef != null)
				return false;
		} else if (!varDef.equals(other.varDef))
			return false;
		if (varName == null) {
			if (other.varName != null)
				return false;
		} else if (!varName.equals(other.varName))
			return false;
		return true;
	}

	public static CaseElement parseVariable(String varName, String varDef, boolean colon) {
		if(varName.startsWith("$")) {
			// Handle normal/expanding variable definitions
			if(colon) return new ExpVariableCaseElement(varName.substring(1), varDef);

			return new LitVariableCaseElement(varName.substring(1), varDef);
		} else if(varName.startsWith("@")) {
			return new RuleVariableCaseElement(varName.substring(1), varDef, colon);
		} else {
			throw new GrammarException("Unrecognized declaration sigil " + varName.charAt(0));
		}
	}
}