summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/cli/objects/BlockReaderCLI.java
blob: bf8fc119fb457d41b30428c5ccd36b5270517968 (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
package bjc.utils.cli.objects;

import java.io.InputStreamReader;
import java.io.Reader;

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
import java.util.function.Predicate;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;

import bjc.utils.ioutils.blocks.*;

import static bjc.utils.cli.objects.Command.CommandStatus;
import static bjc.utils.cli.objects.Command.CommandStatus.*;

/**
 * Command-line interface for configuring block readers.
 *
 * @author Ben Culkin
 */
public class BlockReaderCLI {
	/**
	 * The state of the block reader.
	 *
	 * @author Ben Culkin
	 */
	public static final class BlockReaderState {
		/**
		 * All of the configured block readers.
		 */
		public final Map<String, BlockReader> readers;
		/**
		 * All of the configured I/O sources.
		 */
		public final Map<String, Reader> sources;

		/**
		 * Create a new set of state for the block reader.
		 *
		 * @param readers
		 *                The set of configured block readers.
		 *
		 * @param sources
		 *                The set of configured I/O sources.
		 */
		public BlockReaderState(Map<String, BlockReader> readers, Map<String, Reader> sources) {
			this.readers = readers;
			this.sources = sources;
		}

		/**
		 * Create a new set of state for the block reader.
		 *
		 * @param sources
		 *                The set of configured I/O sources.
		 */
		public BlockReaderState(Map<String, Reader> sources) {
			this.readers = new HashMap<>();
			this.sources = sources;
		}
	}

	/* Logger. */
	private final Logger LOGGER = Logger.getLogger(BlockReaderCLI.class.getName());

	/* Our state. */
	private BlockReaderState stat;

	/**
	 * Create a new CLI for configuring BlockReaders.
	 *
	 * @param srcs
	 *                The container of initial I/O sources.
	 */
	public BlockReaderCLI(Map<String, Reader> srcs) {
		stat = new BlockReaderState(srcs);
	}

	/**
	 * Create a new CLI for configuring BlockReaders.
	 *
	 * @param state
	 *                The state object to use.
	 */
	public BlockReaderCLI(BlockReaderState state) {
		stat = state;
	}

	/* :CLIArgsParsing */
	/**
	 * Run the command line interface
	 *
	 * @param args
	 *                Ignored CLI args.
	 */
	public static void main(String[] args) {
		/* Create/configure I/O sources. */
		Map<String, Reader> sources = new HashMap<>();
		BlockReaderCLI reader = new BlockReaderCLI(sources);

		sources.put("stdio", new InputStreamReader(System.in));

		Scanner input = new Scanner(System.in);
		reader.run(input, "console", true);
		input.close();
	}

	/**
	 * Run the CLI on an input source.
	 *
	 * @param input
	 *                The place to read input from.
	 *
	 * @param srcName
	 *                The name of the place to read input from.
	 *
	 * @param interactive
	 *                Whether or not the source is interactive
	 */
	public void run(Scanner input, String srcName, boolean interactive) {
		int lno = 0;

		do {
			/* Print a prompt. */
			if (interactive) {
				System.out.printf("reader-conf(%d)>", lno);
			}

			/* Read a line. */
			String ln = input.nextLine();
			lno += 1;

			/* Parse the command. */
			Command com = Command.fromString(ln, lno, srcName);
			/* Ignore blank commands. */
			if (com == null) continue;

			/* Handle a command. */
			CommandStatus sts = handleCommand(com, interactive);
			/* Exit if we finished or encountered a fatal error. */
			if (sts == FINISH || sts == ERROR) { return; }
		} while (input.hasNextLine());
	}

	/**
	 * Handle a command.
	 *
	 * @param com
	 *                The command to handle
	 *
	 * @param interactive
	 *                Whether the current input source is interactive or
	 *                not.
	 * @return The status of the executed command.
	 */
	public CommandStatus handleCommand(Command com, boolean interactive) {
		/* Handle each command. */
		switch (com.name) {
		case "def-filtered":
			return defFiltered(com);
		case "def-layered":
			return defLayered(com);
		case "def-pushback":
			return defPushback(com);
		case "def-simple":
			return defSimple(com);
		case "def-serial":
			return defSerial(com);
		case "def-toggled":
			return defToggled(com);
		case "}":
		case "end":
		case "exit":
		case "quit":
			if (interactive)
				System.out.printf("Exiting reader-conf, %d readers configured in %d commands\n",
						stat.readers.size(), com.lno);
			return FINISH;
		default:
			LOGGER.severe(com.error("Unknown command '%s'\n", com.name));
			return FAIL;
		}
	}

	private CommandStatus defFiltered(Command com) {
		/*
		 * Get the block name.
		 */

		String blockName = com.trimTo(' ');
		if (blockName == null) {
			LOGGER.severe(com.error("No name argument for def-filtered.\n"));
			return FAIL;
		}

		/*
		 * Check there isn't a reader already bound to this name.
		 */
		if (stat.readers.containsKey(blockName)) {
			LOGGER.warning(com.warn("Shadowing existing reader named %s\n", blockName));
		}

		/*
		 * Get the reader name.
		 */

		String readerName = com.trimTo(' ');
		if (readerName == null) {
			LOGGER.severe(com.error("No reader-name argument for def-filtered.\n"));
			return FAIL;
		}

		/*
		 * Check there is a reader bound to that name.
		 */
		if (!stat.readers.containsKey(readerName)) {
			LOGGER.severe(com.error("No source named %s\n", readerName));
			return FAIL;
		}

		/*
		 * Get the pattern.
		 */
		if (com.remn.equals("")) {
			LOGGER.severe(com.error("No filter argument for def-filtered\n"));
			return FAIL;
		}

		String filter = com.remn;

		try {
			Pattern pat = Pattern.compile(filter);

			Predicate<Block> pred = (block) -> {
				Matcher mat = pat.matcher(block.contents);

				return mat.matches();
			};

			BlockReader reader = new FilteredBlockReader(stat.readers.get(readerName), pred);

			stat.readers.put(blockName, reader);
		} catch (PatternSyntaxException psex) {
			LOGGER.severe(com.error("Invalid regular expression '%s' for filter. (%s)\n", filter,
					psex.getMessage()));
			return FAIL;
		}

		return SUCCESS;
	}

	private CommandStatus defPushback(Command com) {
		String[] parts = com.remn.split(" ");

		if (parts.length != 2) {
			LOGGER.severe(com.error(
					"Incorrect number of arguments to def-pushback. Requires a block name and a reader name\n"));
			return FAIL;
		}

		String blockName = parts[0];
		if (stat.readers.containsKey(blockName)) {
			LOGGER.warning(com.warn("Shadowing existing reader %s\n", blockName));
			return FAIL;
		}

		String readerName = parts[1];
		if (!stat.readers.containsKey(readerName)) {
			LOGGER.severe(com.error("No reader named %s\n", readerName));
			return FAIL;
		}

		BlockReader reader = new PushbackBlockReader(stat.readers.get(readerName));
		stat.readers.put(blockName, reader);

		return SUCCESS;
	}

	private CommandStatus defToggled(Command com) {
		String[] parts = com.remn.split(" ");

		if (parts.length != 3) {
			LOGGER.severe(com.error(
					"Incorrect number of arguments to def-toggled. Requires a block name and two reader names\n"));
			return FAIL;
		}

		/*
		 * Get the block name.
		 */
		String blockName = parts[0];
		if (stat.readers.containsKey(blockName)) {
			LOGGER.warning(com.warn("Shadowing existing reader named %s\n", blockName));
		}

		/*
		 * Make sure the component readers exist.
		 */
		if (!stat.readers.containsKey(parts[1])) {
			LOGGER.severe(com.error("No reader named %s\n", parts[1]));
			return FAIL;
		}

		if (!stat.readers.containsKey(parts[2])) {
			LOGGER.severe(com.error("No reader named %s\n", parts[2]));
			return FAIL;
		}

		BlockReader reader = new ToggledBlockReader(stat.readers.get(parts[1]), stat.readers.get(parts[2]));
		stat.readers.put(blockName, reader);

		return SUCCESS;
	}

	private CommandStatus defLayered(Command com) {
		String[] parts = com.remn.split(" ");

		if (parts.length != 3) {
			LOGGER.severe(com.error(
					"Incorrect number of arguments to def-layered. Requires a block name and two reader names\n"));
			return FAIL;
		}

		/*
		 * Get the block name.
		 */
		String blockName = parts[0];
		if (stat.readers.containsKey(blockName)) {
			LOGGER.warning(com.warn("Shadowing existing reader named %s\n", blockName));
		}

		/*
		 * Make sure the component readers exist.
		 */
		if (!stat.readers.containsKey(parts[1])) {
			LOGGER.severe(com.error("No reader named %s\n", parts[1]));
			return FAIL;
		}

		if (!stat.readers.containsKey(parts[2])) {
			LOGGER.severe(com.error("No reader named %s\n", parts[2]));
			return FAIL;
		}

		BlockReader reader = new LayeredBlockReader(stat.readers.get(parts[1]), stat.readers.get(parts[2]));
		stat.readers.put(blockName, reader);

		return SUCCESS;
	}

	private CommandStatus defSerial(Command com) {
		String[] parts = com.remn.split(" ");

		if (parts.length < 2) {
			LOGGER.severe(com.error(
					"Not enough arguments to def-serial. Requires at least a block name and at least one reader name\n"));
			return FAIL;
		}

		/*
		 * Get the name for this BlockReader.
		 */
		String blockName = parts[0];
		/*
		 * Check there isn't a reader already bound to this name.
		 */
		if (stat.readers.containsKey(blockName)) {
			LOGGER.warning(com.warn("Shadowing existing reader named %s\n", blockName));
		}

		/*
		 * Get all of the component readers.
		 */
		BlockReader[] readerArr = new BlockReader[parts.length - 1];
		for (int i = 1; i < parts.length; i++) {
			String readerName = parts[i];

			/*
			 * Check there is a reader bound to that name.
			 */
			if (!stat.readers.containsKey(readerName)) {
				LOGGER.severe(com.error("No reader named %s\n", readerName));
				return FAIL;
			}

			readerArr[i] = stat.readers.get(readerName);
		}

		BlockReader reader = new SerialBlockReader(readerArr);

		stat.readers.put(blockName, reader);

		return SUCCESS;
	}

	private CommandStatus defSimple(Command com) {
		String remn = com.remn;

		/*
		 * Get the block name.
		 */
		/* :StringHandling */
		int idx = remn.indexOf(' ');
		if (idx == -1) {
			LOGGER.severe(com.error("No name argument for def-simple.\n"));
			return FAIL;
		}
		String blockName = remn.substring(0, idx).trim();
		remn = remn.substring(idx).trim();

		/*
		 * Check there isn't a reader already bound to this name.
		 */
		if (stat.readers.containsKey(blockName)) {
			LOGGER.warning(com.warn("Shadowing existing reader named %s\n", blockName));
		}

		/*
		 * Get the source name.
		 */
		/* :StringHandling */
		idx = remn.indexOf(' ');
		if (idx == -1) {
			LOGGER.severe(com.error("No source-name argument for def-simple.\n"));
			return FAIL;
		}
		String sourceName = remn.substring(0, idx).trim();
		remn = remn.substring(idx).trim();

		/*
		 * Check there is a source bound to that name.
		 */
		if (!stat.sources.containsKey(sourceName)) {
			LOGGER.severe(com.error("No source named %s\n", sourceName));
			return FAIL;
		}

		/*
		 * Get the pattern.
		 */
		if (remn.equals("")) {
			LOGGER.severe(com.error("No delimiter argument for def-simple\n"));
			return FAIL;
		}

		String delim = remn;

		/* Get the delimiter, and create the reader. */
		try {
			BlockReader reader = new SimpleBlockReader(delim, stat.sources.get(sourceName));

			stat.readers.put(blockName, reader);
		} catch (PatternSyntaxException psex) {
			LOGGER.severe(com.error("Invalid regular expression '%s' for delimiter. (%s)\n", delim,
					psex.getMessage()));
			return FAIL;
		}

		return SUCCESS;
	}
}