summaryrefslogtreecommitdiff
path: root/clformat/src/main/java/bjc/utils/ioutils/format/CLFormatter.java
blob: 276356c18e5fc0394fef6f9bedfc6d4cbab0b90c (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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
package bjc.utils.ioutils.format;

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

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

// Grab our easy converters/constructors
import static bjc.utils.funcutils.IteratorUtils.I;

/**
 * An implementation of a string formatter strongly inspired by FORMAT from
 * Common Lisp.
 *
 * I say 'strongly inspired' instead of 'an implementation' because there are
 * differences and extensions between this version of FORMAT, and the one
 * defined by the CLHS.
 *
 * @author Ben Culkin
 */
public class CLFormatter {
	/**
	 * Set this to true to enable additional debug output.
	 */
	public boolean DEBUG;

	// Built-in formatting directives
	private static Map<String, Directive> builtinDirectives;

	// Extra directives specific to this formatter
	private Map<String, Directive> extraDirectives;

	static {
		// Set up the built-in directives
		builtinDirectives = new HashMap<>();

		builtinDirectives.put("A", new AestheticDirective());
		// @NOTE 9/6/18
		//
		// This is just an alias, not the actual S directive
		builtinDirectives.put("S", new AestheticDirective());

		builtinDirectives.put("C", new CharacterDirective());

		builtinDirectives.put("B", new NumberDirective(-1, 2, 'B'));
		builtinDirectives.put("O", new NumberDirective(-1, 8, 'O'));
		builtinDirectives.put("D", new NumberDirective(-1, 10, 'D'));
		builtinDirectives.put("X", new NumberDirective(-1, 16, 'X'));

		builtinDirectives.put("R", new RadixDirective());

		builtinDirectives.put("&", new FreshlineDirective());

		builtinDirectives.put("%", new LiteralDirective("\n", '%'));
		builtinDirectives.put("|", new LiteralDirective("\f", '|'));
		builtinDirectives.put("~", new LiteralDirective("~", '~'));
		builtinDirectives.put("?", new RecursiveDirective());

		builtinDirectives.put("*", new GotoDirective());

		builtinDirectives.put("^", new EscapeDirective());
		builtinDirectives.put("[", new ConditionalDirective());
		builtinDirectives.put("{", new IterationDirective());

		builtinDirectives.put("(", new CaseDirective());

		builtinDirectives.put("`[", new InflectDirective());

		builtinDirectives.put("T", new TabulateDirective());

		builtinDirectives.put("`D", new DecimalDirective());
	}

	/**
	 * Create a new CL formatter.
	 */
	public CLFormatter() {
		extraDirectives = new HashMap<>();
	}

	/*
	 * @TODO Ben Culkin 9/24/2019 :checkItem Convert this to return a boolean, not
	 * throw an exception.
	 *
	 * In general, I want to cut down on exceptions, except for where it would be
	 * very inconvenient to do so (namely, the EscapeException we use for the ~^
	 * directive; that would be a pain to implement by hand)
	 */
	/**
	 * Check that an item is valid for a directive.
	 *
	 * @param itm
	 *                  The item to check.
	 *
	 * @param directive
	 *                  The directive to check for.
	 *
	 * @throws IllegalArgumentException
	 *                                  if itm is null.
	 */
	public static void checkItem(Object itm, char directive) {
		if (itm == null) {
			String msg = String.format("No argument provided for %c directive", directive);

			throw new IllegalArgumentException(msg);
		}
	}

	/**
	 * Check that an item is valid for a directive.
	 *
	 * @param itm
	 *                  The item to check.
	 *
	 * @param directive
	 *                  The directive to check for.
	 *
	 * @throws IllegalArgumentException
	 *                                  if itm is null.
	 */
	public static void checkItem(Object itm, String directive) {
		if (itm == null) {
			String msg = String.format("No argument provided for %s directive", directive);

			throw new IllegalArgumentException(msg);
		}
	}
	/**
	 * Format a string in the style of CL's FORMAT.
	 *
	 * @param format
	 *               The format string to use.
	 *
	 * @param params
	 *               The parameters for the string.
	 *
	 * @return The formatted string.
	 *
	 * @throws IOException
	 *                     if something goes wrong during formatting the string.
	 */
	public String formatString(String format, Object... params) throws IOException {
		return formatString(format, I(I(params)));
	}

	/**
	 * Format a string in the style of CL's FORMAT.
	 *
	 * @param format
	 *               The format string to use.
	 *
	 * @param params
	 *               The parameters for the string.
	 *
	 * @return The formatted string.
	 *
	 * @throws IOException
	 *                     if something goes wrong during formatting the string.
	 */
	public String formatString(String format, Iterable<Object> params)
			throws IOException {
		ReportWriter rw = new ReportWriter(new StringWriter());

		/* Put the parameters where we can easily handle them. */
		Tape<Object> tParams = new SingleTape<>(params);

		doFormatString(format, rw, tParams, true);

		return rw.toString();
	}

	/**
	 * Format a string in the style of CL's FORMAT.
	 *
	 * @param target
	 *               The writer to send output to.
	 *
	 * @param format
	 *               The format string to use.
	 *
	 * @param params
	 *               The parameters for the string.
	 *
	 * @throws IOException
	 *                     If something I/O related goes wrong.
	 */
	public void formatString(Writer target, String format, Object... params)
			throws IOException {
		try (ReportWriter rw = new ReportWriter(target)) {
			/*
			 * Put the parameters where we can easily handle them.
			 */
			Tape<Object> tParams = new SingleTape<>(params);

			doFormatString(format, rw, tParams, true);
		}
	}

	/**
	 * Format a string in the style of CL's FORMAT.
	 *
	 * @param target
	 *               The writer with configured format options to use.
	 *
	 * @param format
	 *               The format string to use.
	 *
	 * @param params
	 *               The parameters for the string.
	 *
	 * @throws IOException
	 *                     If something I/O related goes wrong.
	 */
	public void formatString(ReportWriter target, String format, Object... params)
			throws IOException {
		/* Put the parameters where we can easily handle them. */
		Tape<Object> tParams = new SingleTape<>(params);

		doFormatString(format, target, tParams, true);
	}

	/**
	 * Format a string in the style of CL's FORMAT.
	 *
	 * @param target
	 *               The writer to send output to.
	 *
	 * @param format
	 *               The format string to use.
	 *
	 * @param params
	 *               The parameters for the string.
	 * 
	 * @throws IOException
	 *                     If something I/O related goes wrong.
	 */
	public void formatString(Writer target, String format, Iterable<Object> params)
			throws IOException {
		ReportWriter rw = new ReportWriter(target);

		/* Put the parameters where we can easily handle them. */
		Tape<Object> tParams = new SingleTape<>(params);

		doFormatString(format, rw, tParams, true);
	}

	/**
	 * Fill in a partially started format string.
	 *
	 * Used mostly for directives that require formatting again with a different
	 * string.
	 *
	 * @param format
	 *                   The format to use.
	 *
	 * @param rw
	 *                   The buffer to file output into.
	 *
	 * @param tParams
	 *                   The parameters to use.
	 *
	 * @param isToplevel
	 *                   Whether or not this is a top-level format
	 *
	 * @throws IOException
	 *                     If something goes wrong
	 */
	public void doFormatString(String format, ReportWriter rw, Tape<Object> tParams,
			boolean isToplevel) throws IOException {
		CLTokenizer cltok = new CLTokenizer(format);

		doFormatString(cltok, rw, tParams, isToplevel);
	}

	/**
	 * Fill in a partially started format string.
	 *
	 * Used mostly for directives that require formatting again with a different
	 * string.
	 *
	 * @param cltok
	 *                   The place to get tokens from.
	 *
	 * @param rw
	 *                   The buffer to file output into.
	 *
	 * @param tParams
	 *                   The parameters to use.
	 *
	 * @param isToplevel
	 *                   Whether or not this is a top-level format
	 *
	 * @throws IOException
	 *                     If something goes wrong
	 */
	public void doFormatString(CLTokenizer cltok, ReportWriter rw, Tape<Object> tParams,
			boolean isToplevel) throws IOException {
		try {
			while (cltok.hasNext()) {
				SimpleDecree decr = cltok.next();

				if (decr.isLiteral) {
					rw.write(decr.name);
				} else if (decr.isUserCall) {
					/*
					 * @TODO implement user-called functions.
					 */
				} else if (extraDirectives.containsKey(decr.name)) {
					FormatParameters params
							= new FormatParameters(rw, tParams.item(), decr,
									tParams, cltok, this);

					extraDirectives.get(decr.name).format(params);
				} else if (builtinDirectives.containsKey(decr.name)) {
					FormatParameters params
							= new FormatParameters(rw, tParams.item(), decr,
									tParams, cltok, this);

					builtinDirectives.get(decr.name).format(params);
				} else {
					// All of these conditions are an error in some way
					if (decr.name == null) decr.name = "<null>";
	
					switch (decr.name) {
					case "]":
						throw new IllegalArgumentException(
								"Found conditional-end outside of conditional.");
					case ";":
						throw new IllegalArgumentException(
								"Found seperator outside of block.");
					case "}":
						throw new IllegalArgumentException(
								"Found iteration-end outside of iteration");
					case ")":
						throw new IllegalArgumentException(
								"Case-conversion end outside of case conversion");
					case "`]":
						throw new IllegalArgumentException(
								"Inflection-end outside of inflection");
					case "<":
					case ">":
						throw new IllegalArgumentException(
								"Inflection marker outside of inflection");
					case "`<":
					case "`>":
						throw new IllegalArgumentException(
								"Layout-control directives aren't implemented yet.");
					case "F":
					case "E":
					case "G":
					case "$":
						/*
						 * @TODO
						 *
						 * implement floating point directives.
						 */
						throw new IllegalArgumentException(
								"For now, floating point directives are implemented via the `D directive. Use that instead");
					case "W":
						/*
						 * @TODO
						 *
						 * figure out if we want to implement someting for these directives
						 * instead of punting.
						 */
						throw new IllegalArgumentException(
								"S and W aren't implemented. Use A instead");
					case "P":
						throw new IllegalArgumentException(
								"These directives aren't implemented yet");
					case "\n":
						/*
						 * Ignored newline.
						 */
						break;
					default:
						String msg
								= String.format("Unknown format directive '%s'", decr.name);
						throw new IllegalArgumentException(msg);
					}
				}
			}
		} catch (DirectiveEscape eex) {
			if (!isToplevel) throw eex;
		}
	}

	/**
	 * Compile a CLString from a string.
	 *
	 * @param inp
	 *            The string to compile.
	 *
	 * @return A CLString compiled from the input.
	 */
	public CLString compile(String inp) {
		CLTokenizer tokenzer = new CLTokenizer(inp);

		List<Edict> edts = compile(tokenzer);

		return new CLString(edts);
	}

	/**
	 * Compile a set of edicts from a list of decrees.
	 *
	 * @param decrees
	 *                The decrees to compile.
	 *
	 * @return A set of edicts compiled from the decrees.
	 */
	public List<Edict> compile(Iterable<SimpleDecree> decrees) {
		// If we have no decrees, there are no edicts.
		if (decrees == null) return new ArrayList<>();

		CLTokenizer it = CLTokenizer.fromTokens(decrees);
		return compile(it);
	}

	/**
	 * Compile a set of edicts from a clause.
	 *
	 * @param clause
	 *               The clause to compile.
	 *
	 * @return The set of edicts compiled from the clause.
	 */
	public List<Edict> compile(ClauseDecree clause) {
		if (clause == null) return new ArrayList<>();
		else                return compile(clause.body);
	}

	/**
	 * Compile a set of edicts from a set of tokens.
	 *
	 * @param cltok
	 *              The tokenizer providing us with our tokens.
	 *
	 * @return The edicts compiled from those tokens.
	 */
	public List<Edict> compile(CLTokenizer cltok) {
		List<Edict> result = new ArrayList<>();

		while (cltok.hasNext()) {
			SimpleDecree decr = cltok.next();
			String nam = decr.name;

			CompileContext compCTX = new CompileContext(cltok, this, decr);

			if (decr.isLiteral) {
				result.add(new StringEdict(decr.name));
			} else if (decr.isUserCall) {
				/*
				 * @TODO implement user-called functions.
				 */
				throw new IllegalArgumentException(
						"User-called functions have not yet been implemented");
			} else if (extraDirectives.containsKey(nam)) {
				Edict edt = extraDirectives.get(nam).compile(compCTX);

				result.add(edt);
			} else if (builtinDirectives.containsKey(nam)) {
				Edict edt = builtinDirectives.get(nam).compile(compCTX);

				result.add(edt);
			} else {
				// All of these conditions are an error in some way
				if (nam == null) nam = "<null>";
	
				switch (nam) {
				case "]":
					throw new IllegalArgumentException(
							"Found conditional-end outside of conditional.");
				case ";":
					throw new IllegalArgumentException("Found seperator outside of block.");
				case "}":
					throw new IllegalArgumentException(
							"Found iteration-end outside of iteration");
				case ")":
					throw new IllegalArgumentException(
							"Case-conversion end outside of case conversion");
				case "`]":
					throw new IllegalArgumentException(
							"Inflection-end outside of inflection");
				case "<":
				case ">":
					throw new IllegalArgumentException(
							"Inflection marker outside of inflection");
				case "`<":
				case "`>":
					throw new IllegalArgumentException(
							"Layout-control directives aren't implemented yet.");
				case "F":
				case "E":
				case "G":
				case "$":
					/*
					 * @TODO
					 *
					 * implement floating point directives.
					 */
					throw new IllegalArgumentException(
							"Floating-point directives aren't implemented yet.");
				case "W":
					/*
					 * @TODO
					 *
					 * figure out if we want to implement someting for these directives
					 * instead of punting.
					 */
					throw new IllegalArgumentException(
							"S and W aren't implemented. Use A instead");
				case "P":
					throw new IllegalArgumentException(
							"These directives aren't implemented yet");
				case "\n":
					/*
					 * Ignored newline.
					 */
					break;
				default:
					String msg = String.format("Unknown format directive '%s'", nam);
					throw new IllegalArgumentException(msg);
				}
			}
		}

		return result;
	}
}