summaryrefslogtreecommitdiff
path: root/clformat/src/main/java/bjc/utils/ioutils/format/directives/ConditionalDirective.java
blob: c7b29995947872f9419c89aee39a557da4b2153b (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package bjc.utils.ioutils.format.directives;

import java.io.*;
import java.util.*;

import bjc.esodata.*;
import bjc.utils.ioutils.format.*;

/**
 * Implements the [ directive.
 *
 * This does varying sorts of conditional dispatches on which string to use for
 * formatting, allowing it to be based off of general conditions in varying
 * ways.
 *
 * @author Ben Culkin
 */
public class ConditionalDirective implements Directive {
	@Override
	public Edict compile(CompileContext compCTX) {
		CLModifiers mods    = compCTX.decr.modifiers;
		CLParameters params = compCTX.decr.parameters;

		// :ConfigDirectives
		GroupDecree clauses = compCTX.directives.nextGroup(compCTX.decr, "]", ";");

		ClauseDecree defClause = null;
		boolean isDefault      = false;

		for (ClauseDecree clause : clauses) {
			if (isDefault) defClause = clause;

			if (clause.terminator != null && clause.terminator.modifiers.colonMod) {
				isDefault = true;
			}
		}

		if (mods.starMod && clauses.size() > 0)defClause = clauses.clause();

		CLValue index = null;

		if (params.length() >= 1) {
			params.mapIndices("choice");

			index = params.resolveKey("choice");
		}

		ConditionalEdict.Mode mode;

		if (mods.colonMod) {
			mode = ConditionalEdict.Mode.FIRST_SECOND;
		} else if (mods.atMod) {
			mode = ConditionalEdict.Mode.OUTPUT_TRUE;
		} else {
			mode = ConditionalEdict.Mode.INDEX_CLAUSE;
		}

		return new ConditionalEdict(mode, mods.dollarMod, index, clauses,
				defClause, compCTX.formatter);
	}
}

class ConditionalEdict implements Edict {
	public static enum Mode {
		FIRST_SECOND, OUTPUT_TRUE, INDEX_CLAUSE
	}

	private Mode condMode;

	private boolean decrementIndex;
	private CLValue index;

	private List<CLString> clauses;
	private CLString defClause;

	// Think I might need this for something...
	@SuppressWarnings("unused")
	private CLFormatter formatter;

	public ConditionalEdict(Mode condMode, boolean decrementIndex, CLValue index,
			GroupDecree clauses, ClauseDecree defClause, CLFormatter fmt) {
		this.condMode = condMode;

		this.decrementIndex = decrementIndex;
		this.index = index;

		this.clauses = new ArrayList<>();
		for (ClauseDecree clause : clauses) {
			List<Edict> compiled = fmt.compile(clause);
			
			this.clauses.add(new CLString(compiled));
		}
		this.defClause = new CLString(fmt.compile(defClause));

		this.formatter = fmt;
	}

	@Override
	public void format(FormatContext formCTX) throws IOException {
		Tape<Object> items = formCTX.items;

		try {
			switch (condMode) {
			case FIRST_SECOND: {
				Object item = items.item();
				items.right();

				boolean conditionResult = false;
				if (item == null) {
					// throw new IllegalArgumentException("No parameter provided for [
					// directive.");
				} else if (!(item instanceof Boolean)) {
					throw new IllegalFormatConversionException('[', item.getClass());
				} else {
					conditionResult = (Boolean) item;
				}

				CLString pickedFormat;
				if (conditionResult) {
					pickedFormat = clauses.get(1);
				} else {
					pickedFormat = clauses.get(0);
				}

				pickedFormat.format(formCTX);
			}
				break;
			case OUTPUT_TRUE: {
				boolean conditionResult = false;
				Object item = items.item();

				if (item == null) {
					// throw new IllegalArgumentException("No parameter provided for [
					// directive.");
				} else if (item instanceof Integer) {
					if ((Integer) item != 0) {
						conditionResult = true;
					}
				} else if (item instanceof Boolean) {
					conditionResult = (Boolean) item;
				} else {
					throw new IllegalFormatConversionException('[', item.getClass());
				}

				if (conditionResult) {
					clauses.get(0).format(formCTX);
				} else {
					items.right();
				}
			}
				break;
			case INDEX_CLAUSE: {
				int clauseIndex;

				if (index != null) {
					clauseIndex = index.asInt(items, "conditional choice", "[", 0);
				} else {
					Object item = items.item();

					if (item == null) {
						throw new IllegalArgumentException(
								"No parameter provided for [ directive.");
					} else if (!(item instanceof Number)) {
						throw new IllegalFormatConversionException('[', item.getClass());
					}

					clauseIndex = ((Number) item).intValue();

					items.right();
				}

				if (decrementIndex)
					clauseIndex -= 1;

				if (clauses.size() == 0 || clauseIndex < 0 || clauseIndex >= clauses.size()) {
					if (defClause != null) defClause.format(formCTX.writer, items);
				} else {
					CLString frmt = clauses.get(clauseIndex);

					frmt.format(formCTX.writer, items);
				}
			}
				break;
			default:
				// IMPROVE Should probably handle this
				// -- Ben Culkin, 4/14/2020
				break;
			}
		} catch (DirectiveEscape dex) {
			// Conditionals are transparent to iteration-escapes
			throw dex;
		}
	}
}