summaryrefslogtreecommitdiff
path: root/clformat/src/main/java/bjc/utils/ioutils/format/CLParameters.java
blob: 00387892eb0738205c3208d79b1dfdf5bef65cf5 (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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
package bjc.utils.ioutils.format;

import java.util.*;
import bjc.data.Pair;
import bjc.data.TransformIterator;
import bjc.esodata.*;
import bjc.utils.parserutils.TokenUtils;

// @TODO Nov 13th, 2020 Ben Culkin :ParameterDefaulting
// Implement a method which will 'overlay' a set of parameters onto another
// paramater set, with support for preferring one or the other.

/**
 * Represents a set of parameters to a CL format directive.
 *
 * @author Benjamin Culkin
 */
public class CLParameters {
	private static String MSG_FMT = "Invalid %s (%s) \"%s\" to %s directive";

	private static String RX_TRUE  = "(?i)y(?:es)?|t(?:rue)?(?i)";
	private static String RX_FALSE = "(?i)no?|f(?:alse)?(?i)";

	private CLValue[] params;

	private Set<String> abbrevWords;
	private AbbrevMap2  nameAbbrevs;

	private Map<String, CLValue> namedParams;
	private Map<String, Integer> nameIndices;

	private Set<String> nonNumberedParams;
	
	/**
	 * Create a new set of blank CL format parameters.
	 */
	public CLParameters() {
		this(new CLValue[0], new HashMap<>());
	}

	/**
	 * Create a new set of CL format parameters with unnamed values.
	 *
	 * @param params
	 *               The CL format parameters to use.
	 */
	public CLParameters(CLValue[] params) {
		this(params, new HashMap<>());
	}

	/**
	 * Create a new set of CL format parameters with named values.
	 *
	 * @param namedParams
	 *                    The named parameters to use.
	 */
	public CLParameters(Map<String, CLValue> namedParams) {
		this(new CLValue[0], namedParams);
	}

	/**
	 * Create a new set of CL format parameters with both types of values.
	 *
	 * @param params
	 *                    The unnamed parameters to use.
	 *
	 * @param namedParams
	 *                    The named parameters to use.
	 */
	public CLParameters(CLValue[] params, Map<String, CLValue> namedParams) {
		this.params = params;

		this.namedParams = namedParams;
		this.nameIndices = new HashMap<>();
		this.nonNumberedParams = new HashSet<>();
		
		nonNumberedParams.addAll(namedParams.keySet());

		abbrevWords = new HashSet<>();
		nameAbbrevs = new AbbrevMap2();

		refreshAbbrevs();
	}

	// Refresh the mappings that track abbreviations
	private void refreshAbbrevs() {
		// @NOTE 9/19/18 @Cleanup @Leak Ben Culkin
		//
		// This never clears abbrevWords or nameAbbrevs, which I'm fine
		// with here, as these objects are fairly temporary.
		//
		// If it becomes an issue, I'll resolve it
		for (String key : namedParams.keySet()) refreshAbbrev(key);
		for (String key : nameIndices.keySet())	refreshAbbrev(key);
	}

	// Refresh a particular abbreviation
	private void refreshAbbrev(String key) {
		if (abbrevWords.contains(key)) return;

		abbrevWords.add(key);
		nameAbbrevs.add(key);
	}

	/**
	 * Map a set of names to indices.
	 *
	 * @param opts
	 *             The names to bind to the parameter indices. The first one will be
	 *             bound to index 0, and so forth. Pass an empty string to not bind
	 *             a name to a particular index.
	 */
	public void mapIndices(String... opts) {
		for (int i = 0; i < opts.length; i++) {
			String opt = opts[i];

			if (!opt.equals("")) mapIndex(opt, i);
		}

		refreshAbbrevs();
	}

	/**
	 * Map a singular name to an index.
	 *
	 * @param opt
	 *            The name to map.
	 *
	 * @param idx
	 *            The index to map it to.
	 */
	public void mapIndex(String opt, int idx) {
		mapIndex(opt, idx, true);
	}

	// Actually do the work of mapping an index
	private void mapIndex(String opt, int idx, boolean doRefresh) {
		if (params.length <= idx) {
			System.err.printf("WARN: Mapping invalid index %d (max %d) to \"%s\"\n", idx,
					params.length, opt.toUpperCase());
		}

		nameIndices.put(opt.toUpperCase(), idx);
		nonNumberedParams.remove(opt);
		
		if (doRefresh) refreshAbbrevs();
	}

	/**
	 * Get a parameter by an index.
	 *
	 * @param idx
	 *            The index to grab.
	 *
	 * @return The value at that index.
	 */
	public CLValue getByIndex(int idx) {
		if (idx < 0 || idx >= params.length) return null;

		return params[idx];
	}

	/**
	 * Get the length of the parameter list.
	 *
	 * @return The length of the parameters.
	 */
	public int length() {
		return params.length;
	}

	/**
	 * Creates a set of parameters from a parameter string.
	 *
	 * This handles things like quoted strings, named parameters and the other
	 * special parameter features.
	 *
	 * @param unsplit
	 *                The string to parse parameters from.
	 *
	 * @return A set of CL parameters.
	 */
	public static CLParameters fromDirective(String unsplit) {
		List<String> lParams = new ArrayList<>();
		Set<String> nonIndexParams = new HashSet<>();
		
		StringBuilder currParm = new StringBuilder();

		char prevChar = ' ';
		// Are we currently in a string while we are parsing
		boolean inStr = false;

		// Parse out the parameters
		for (int i = 0; i < unsplit.length(); i++) {
			char c = unsplit.charAt(i);

			if (c == ',' && prevChar != '\'' && !inStr) {
				lParams.add(currParm.toString());

				currParm = new StringBuilder();
			} else if (c == '"' && prevChar != '\'') {
				inStr = true;

				currParm.append(c);
			} else if (inStr && c == '"' && prevChar != '\'') {
				inStr = false;

				currParm.append(c);
			} else {
				currParm.append(c);
			}

			prevChar = c;
		}

		// Add last parameter
		lParams.add(currParm.toString());

		List<CLValue> parameters = new ArrayList<>();

		// Special case empty blocks, so that we don't confuse people
		if (lParams.size() == 1 && lParams.get(0).equals("")) {
			return new CLParameters(parameters.toArray(new CLValue[0]));
		}

		Map<String, CLValue> namedParams = new HashMap<>();

		// Set up parameter names
		for (String param : lParams) {
			if (param.startsWith("#") && !param.equals("#")) {
				// Named parameter
				boolean setIndex = false;

				int nameIdx = 0;
				for (int i = 1; i < param.length(); i++) {
					char ch = param.charAt(i);

					if (ch == ':' || ch == ';') {
						// Semicolon says to add as
						// indexed parameter
						if (ch == ';') setIndex = true;

						nameIdx = i;
						break;
					}
				}

				// Trim off the 'hash' indicator
				String paramName = param.substring(1, nameIdx);
				String paramVal = param.substring(nameIdx + 1);

				CLValue actVal = parseParam(paramVal);

				namedParams.put(paramName.toUpperCase(), actVal);

				if (setIndex) parameters.add(actVal);
				else          nonIndexParams.add(paramName);
			} else {
				parameters.add(parseParam(param));
			}
		}

		CLParameters retVal = new CLParameters(parameters.toArray(new CLValue[0]), namedParams);
		retVal.nonNumberedParams = nonIndexParams;
		
		return retVal;
	}

	// Actually parse the value for a parameter
	private static CLValue parseParam(String param) {
		String val = param;

		if (param.startsWith("\"")) {
			String dquote = param.substring(1, param.length() - 1);

			// String values get their escapes processed.
			val = TokenUtils.descapeString(dquote);
		}

		return CLValue.parse(val);
	}

	/**
	 * Get the corresponding value for a key.
	 *
	 * @param key
	 *            The name of the parameter to look up.
	 *
	 * @return The value for that key, or null if none exists.
	 */
	public CLValue resolveKey(int key) {
		return resolveKey(Integer.toString(key));
	}

	/**
	 * Get the corresponding value for a key.
	 *
	 * @param key
	 *            The name of the parameter to look up.
	 *
	 * @return The value for that key, or null if none exists.
	 */
	public CLValue resolveKey(String key) {
		String ucKey = key.toUpperCase();

		Set<String> keys = nameAbbrevs.deabbrevAll(ucKey);

		// We didn't find a parameter that could have been that. Create an appropriate
		// and useful
		// error message.
		if (keys.size() > 1) {
			StringBuilder sb = new StringBuilder();

			sb.append("Ambiguous parameter name \"");
			sb.append(ucKey);
			sb.append("\". Could've meant: ");
			boolean isFirst = true;
			for (String possKey : keys) {
				if (isFirst) {
					isFirst = false;
				} else {					
					sb.append(", ");
				}

				sb.append("\"");
				sb.append(possKey);
				sb.append("\"");
			}
			sb.append(".");

			throw new IllegalArgumentException(sb.toString());
		}

		String actKey = keys.iterator().next();

		if (namedParams.containsKey(actKey)) {
			return namedParams.get(actKey);
		} else if (nameIndices.containsKey(actKey)) {
			int idx = nameIndices.get(actKey);

			// @NOTE 9/22/18
			//
			// Consider whether we should throw an exception here.
			if (idx < 0 || idx >= params.length) return null;
			
			return params[idx];
		}

		return null;
	}

	/**
	 * Get a boolean-valued parameter.
	 *
	 * @param parms
	 *                  The format parameters to use.
	 *
	 * @param key
	 *                  The name of the parameter to use for a key.
	 *
	 * @param paramName
	 *                  The name of the parameter, as a user-intelligble string.
	 *
	 * @param directive
	 *                  The directive this parameter belongs to.
	 *
	 * @param def
	 *                  The default value for this parameter.
	 *
	 * @return The boolean value for that parameter, or the default value if that
	 *         parameter didn't exist.
	 */
	public boolean getBoolean(Tape<Object> parms, String key, String paramName,
			String directive, boolean def) {
		String bol = resolveKey(key).getValue(parms);

		if (!bol.equals("")) {
			if (bol.matches(RX_TRUE))       return true;
			else if (bol.matches(RX_FALSE)) return false;
			else {
				String msg = String.format(MSG_FMT, paramName, key, bol, directive);
				throw new IllegalArgumentException(msg);
			}
		}

		return def;
	}

	/**
	 * Get the string value for a parameter.
	 *
	 * @param parms
	 *                  The format parameters we're using.
	 *
	 * @param key
	 *                  The key for the parameter.
	 *
	 * @param paramName
	 *                  The user-intelligble name for the parameter.
	 *
	 * @param directive
	 *                  The directive this parameter is for.
	 *
	 * @param def
	 *                  The default value for the parameter.
	 *
	 * @return The string value of the parameter, or the default value if there is
	 *         no parameter by that name.
	 */
	public String getString(Tape<Object> parms, String key, String paramName,
			String directive, String def) {
		String vl = resolveKey(key).getValue(parms);

		// @NOTE 9/19/17
		//
		// This raises the question of what to do if the empty string is a valid
		// value for a parameter
		if (!vl.equals("")) return vl;

		return def;
	}

	/**
	 * Get the character value of a parameter.
	 *
	 * @param parms
	 *                  The format parameters to use.
	 *
	 * @param key
	 *                  The key for the parameter.
	 *
	 * @param paramName
	 *                  The user-intelligble name for the parameter.
	 *
	 * @param directive
	 *                  The directive the parameter is for.
	 * @param def The default value of the char.
	 *
	 * @return The character value of the parameter, or the default value if the
	 *         parameter isn't specified.
	 */
	public char getChar(Tape<Object> parms, String key, String paramName,
			String directive, char def) {
		String param = resolveKey(key).getValue(parms);

		if (!param.equals("")) {
			if (param.length() == 1) {
				// Punt in the case we have a slightly malformed
				// character
				return param.charAt(0);
			}

			if (!param.startsWith("'")) {
				throw new IllegalArgumentException(
						String.format(MSG_FMT, paramName, key, param, directive));
			}

			return param.charAt(1);
		}

		return def;
	}

	/**
	 * Get the integer value for a parameter.
	 *
	 * @param parms
	 *                  The format parameters we are using.
	 *
	 * @param key
	 *                  The key for the parameter.
	 *
	 * @param paramName
	 *                  The user-intelligble name for the parameter.
	 *
	 * @param directive
	 *                  The directive the parameter is for.
	 *
	 * @param def
	 *                  The default value for the parameter.
	 *
	 * @return The integer value of the parameter, or the default value if there is
	 *         no parameter by that name.
	 */
	public int getInt(Tape<Object> parms, String key, String paramName, String directive,
			int def) {
		String param = resolveKey(key).getValue(parms);

		if (!param.equals("")) {
			try {
				return Integer.parseInt(param);
			} catch (NumberFormatException nfex) {
				String msg = String.format(MSG_FMT, paramName, key, param, directive);

				IllegalArgumentException iaex = new IllegalArgumentException(msg);
				iaex.initCause(nfex);

				throw iaex;
			}
		}

		return def;
	}

	@Override
	public String toString() {
		StringBuilder sb = new StringBuilder("[");
		Set<Integer> seenIndices = new HashSet<>();

		int idx = 0;
		// First off, the named parameters
		for (Map.Entry<String, CLValue> param : namedParams.entrySet()) {
			String  paramName  = param.getKey();
			CLValue paramValue = param.getValue();

			if (nameIndices.containsKey(paramName)) {
				int paramIdx = nameIndices.get(paramName);

				String msg = String.format("%s(%d):'%s'",
						paramName, paramIdx, paramValue);

				if (idx != 0) sb.append(", ");
				sb.append(msg);

				seenIndices.add(idx);
			} else {
				String msg = String.format("%s:'%s'", paramName, paramValue);

				if (idx != 0) sb.append(", ");
				sb.append(msg);
			}

			idx += 1;
		}

		sb.append(";");

		// Second off, indexed parameters with a name
		for (Map.Entry<String, Integer> paramMap : nameIndices.entrySet()) {
			String paramName = paramMap.getKey();
			int paramIdx = paramMap.getValue();

			// We've already gotten this argument before
			if (seenIndices.contains(paramIdx))	continue;

			String msg = String.format("%d(%s):'%s'",
					paramIdx, paramName, params[paramIdx]);

			if (idx != 0) sb.append(", ");
			sb.append(msg);

			seenIndices.add(paramIdx);
		}

		sb.append(";");

		// Third, unnamed indexed parameters
		for (idx = 0; idx < params.length; idx++) {
			// We've already gotten this argument before
			if (seenIndices.contains(idx)) continue;

			String msg = String.format("%d:'%s'", idx, params[idx]);

			if (idx != 0) sb.append(", ");
			sb.append(msg);
		}

		sb.append("]");

		return sb.toString();
	}
	
	/**
	 * Get an iterator over all of the named parameters not bound to an index.
	 * 
	 * @return The described iterator
	 */
	public Iterator<Pair<String, CLValue>> getNonNumberedParams() {
		return new TransformIterator<>(nonNumberedParams.iterator(), (val) -> {
			return Pair.pair(val, namedParams.get(val));
		});
	}
}