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
|
package bjc.utils.cli;
import java.util.TreeMap;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import bjc.funcdata.FunctionalMap;
import bjc.funcdata.MapEx;
/**
* A general command mode, with a customizable set of commands.
*
* There is a small set of commands which is handled by default. The first is
* 'list', which lists all the commands the user can input. The second is
* 'alias', which allows the user to bind a new name to a command.
*
* @author ben
*/
public class GenericCommandMode implements CommandMode {
/* Contains the commands this mode handles. */
private final MapEx<String, Command> commandHandlers;
/* Commands to execute in every mode. */
private final MapEx<String, Command> defaultHandlers;
/* Contains help topics without an associated command */
private final MapEx<String, CommandHelp> helpTopics;
/* The action to execute upon encountering an unknown command */
private BiConsumer<String, String[]> unknownCommandHandler;
/* The functions to use for input/output */
private final Consumer<String> errorOutput;
private final Consumer<String> normalOutput;
/* The name of this command mode, or null if it is unnamed */
private String modeName;
/* The custom prompt to use, or null if none is specified */
private String customPrompt;
/**
* Create a new generic command mode
*
* @param normalOutput
* The function to use for normal output.
*
* @param errorOutput
* The function to use for error output.
*/
public GenericCommandMode(final Consumer<String> normalOutput,
final Consumer<String> errorOutput) {
if (normalOutput == null)
throw new NullPointerException("Normal output source must be non-null");
else if (errorOutput == null)
throw new NullPointerException("Error output source must be non-null");
this.normalOutput = normalOutput;
this.errorOutput = errorOutput;
/* Initialize maps so that they sort in alphabetical order. */
commandHandlers = new FunctionalMap<>(new TreeMap<>());
defaultHandlers = new FunctionalMap<>(new TreeMap<>());
helpTopics = new FunctionalMap<>(new TreeMap<>());
/* Setup default commands. */
setupDefaultCommands();
}
/**
* Add an alias to an existing command.
*
* @param commandName
* The name of the command to add an alias for.
*
* @param aliasName
* The new alias for the command.
*
* @throws IllegalArgumentException
* If the specified command doesn't have a
* bound handler, or if the alias name already
* has a bound value.
*/
public void addCommandAlias(final String commandName, final String aliasName) {
if (commandName == null) {
throw new NullPointerException("Command name must not be null");
} else if (aliasName == null) {
throw new NullPointerException("Alias name must not be null");
} else if (!commandHandlers.containsKey(commandName)
&& !defaultHandlers.containsKey(commandName)) {
String msg = String.format("Cannot alias non-existing command '%s'",
commandName);
throw new IllegalArgumentException(msg);
} else if (commandHandlers.containsKey(aliasName)
|| defaultHandlers.containsKey(aliasName)) {
String msg = String.format(
"Cannot bind alias '%s' to an already used name.", aliasName);
throw new IllegalArgumentException(msg);
} else {
/* The command that will be aliased. */
Command aliasedCommand;
/* Get the alias. */
if (defaultHandlers.containsKey(commandName)) {
aliasedCommand = defaultHandlers.get(commandName).get().aliased();
} else {
aliasedCommand = commandHandlers.get(commandName).get().aliased();
}
commandHandlers.put(aliasName, aliasedCommand);
}
}
/**
* Add a command to this command mode.
*
* @param command
* The name of the command to add.
*
* @param handler
* The handler to use for the specified command.
*
* @throws IllegalArgumentException
* If the specified command already has a
* handler registered.
*/
public void addCommandHandler(final String command, final Command handler) {
if (command == null) {
throw new NullPointerException("Command must not be null");
} else if (handler == null) {
throw new NullPointerException("Handler must not be null");
} else if (canHandle(command)) {
String msg = String.format("Command '%s' already has a registered handler", command);
throw new IllegalArgumentException(msg);
} else {
commandHandlers.put(command, handler);
}
}
/**
* Add a help topic to this command mode that isn't tied to a command.
*
* @param topicName
* The name of the topic.
*
* @param topic
* The contents of the topic.
*/
public void addHelpTopic(final String topicName, final CommandHelp topic) {
helpTopics.put(topicName, topic);
}
/* Default command builders */
/*
* @TODO 10/09/17 Ben Culkin :CommandExtraction
*
* These command messages should be extracted into some kind of file-based
* abstraction.
*/
private GenericCommand buildAliasCommand() {
final String aliasShortHelp = "alias\tAlias one command to another";
final String aliasLongHelp = "Gives a command another name it can be invoked by."
+ " Invoke with two arguments: the name of the command to alias"
+ "followed by the name of the alias to give that command.";
return new GenericCommand(args -> {
doAliasCommands(args);
return this;
}, aliasShortHelp, aliasLongHelp);
}
private GenericCommand buildClearCommands() {
final String clearShortHelp = "clear\tClear the screen";
final String clearLongHelp = "Clears the screen of all the text on it,"
+ " and prints a new prompt.";
return new GenericCommand(args -> {
errorOutput.accept("ERROR: This console doesn't support screen clearing");
return this;
}, clearShortHelp, clearLongHelp);
}
private GenericCommand buildExitCommand() {
final String exitShortHelp = "exit\tExit the console";
final String exitLongHelp = "First prompts the user to make sure they want to"
+ " exit, then quits if they say they do";
return new GenericCommand(args -> {
errorOutput.accept("ERROR: This console doesn't support auto-exiting");
return this;
}, exitShortHelp, exitLongHelp);
}
private GenericCommand buildHelpCommand() {
final String helpShortHelp = "help\tConsult the help system";
final String helpLongHelp = "Consults the internal help system."
+ " Invoked in two different ways. Invoking with no arguments"
+ " causes all the topics you can ask for details on to be list,"
+ " while invoking with the name of a topic will print the entry"
+ " for that topic";
return new GenericCommand(args -> {
if (args == null || args.length == 0) {
/* Invoke general help */
doHelpSummary();
} else {
/* Invoke help for a command */
doHelpCommand(args[0]);
}
return this;
}, helpShortHelp, helpLongHelp);
}
private GenericCommand buildListCommand() {
final String listShortHelp = "list\tList available commands";
final String listLongHelp = "Lists all of the commands available in this mode,"
+ " as well as commands available in any mode";
return new GenericCommand(args -> {
doListCommands();
return this;
}, listShortHelp, listLongHelp);
}
@Override
public boolean canHandle(final String command) {
return commandHandlers.containsKey(command)
|| defaultHandlers.containsKey(command);
}
/* Implement default commands */
private void doAliasCommands(final String[] args) {
if (args.length != 2) {
String msg = String.format(
"ERROR: Alias requires two arguments. The command name, and the alias for that command. ");
errorOutput.accept(msg);
} else {
final String commandName = args[0];
final String aliasName = args[1];
if (!canHandle(commandName)) {
String msg = String.format("ERROR: '%s' is not a valid command.",
commandName);
errorOutput.accept(msg);
} else if (canHandle(aliasName)) {
String msg = String.format("ERROR: Cannot overwrite command '%s'",
aliasName);
errorOutput.accept(msg);
} else {
addCommandAlias(commandName, aliasName);
}
}
}
private void doHelpCommand(final String commandName) {
if (commandHandlers.containsKey(commandName)) {
final String desc
= commandHandlers.get(commandName).get().getHelp().getDescription();
normalOutput.accept("\n" + desc);
} else if (defaultHandlers.containsKey(commandName)) {
final String desc
= defaultHandlers.get(commandName).get().getHelp().getDescription();
normalOutput.accept("\n" + desc);
} else if (helpTopics.containsKey(commandName)) {
normalOutput.accept("\n" + helpTopics.get(commandName).get().getDescription());
} else {
String msg = String.format("ERROR: No help available for '%s'", commandName);
errorOutput.accept(msg);
}
}
private void doHelpSummary() {
normalOutput.accept("Help topics for this command mode are as follows:\n");
if (commandHandlers.size() > 0) {
commandHandlers.forEachValue(command -> {
if (!command.isAlias()) {
String comLine = command.getHelp().getSummary();
String msg = String.format("\t%s\n", comLine);
normalOutput.accept(msg);
}
});
} else {
normalOutput.accept("\tNone available\n");
}
normalOutput
.accept("\nHelp topics available in all command modes are as follows\n");
if (defaultHandlers.size() > 0) {
/*
* @NOTE This block here should be abstracted out into a method.
*/
defaultHandlers.forEachValue(command -> {
if (!command.isAlias()) {
String comLine = command.getHelp().getSummary();
String msg = String.format("\t%s\n", comLine);
normalOutput.accept(msg);
}
});
} else {
normalOutput.accept("\tNone available\n");
}
normalOutput
.accept("\nHelp topics not associated with a command are as follows\n");
if (helpTopics.size() > 0) {
helpTopics.forEachValue(topic -> {
String msg = String.format("\t%s\n", topic.getSummary());
normalOutput.accept(msg);
});
} else {
normalOutput.accept("\tNone available\n");
}
}
private void doListCommands() {
normalOutput.accept("The available commands for this mode are as follows:\n");
commandHandlers.keyList().forEach(commandName -> {
String msg = String.format("\t%s", commandName);
normalOutput.accept(msg);
});
normalOutput.accept("\nThe following commands are available in all modes:\n");
defaultHandlers.keyList().forEach(commandName -> {
String msg = String.format("\t%s", commandName);
normalOutput.accept(msg);
});
normalOutput.accept("\n");
}
@Override
public String getCustomPrompt() {
if (customPrompt != null)
return customPrompt;
return CommandMode.super.getCustomPrompt();
}
@Override
public String getName() {
if (modeName != null)
return modeName;
return CommandMode.super.getName();
}
@Override
public boolean isCustomPromptEnabled() {
return customPrompt != null;
}
@Override
public CommandMode process(final String command, final String[] args) {
normalOutput.accept("\n");
if (defaultHandlers.containsKey(command))
return defaultHandlers.get(command).get().getHandler().handle(args);
else if (commandHandlers.containsKey(command))
return commandHandlers.get(command).get().getHandler().handle(args);
else {
if (args != null) {
String argString = String.join(", ", args);
String msg
= String.format("ERROR: Unrecognized command %s (arguments %s)",
command, argString);
errorOutput.accept(msg);
} else {
String msg = String.format("ERROR: Unrecognized command %s", command);
errorOutput.accept(msg);
}
if (unknownCommandHandler == null) {
String msg = String.format("Command %s is invalid", command);
throw new UnsupportedOperationException(msg);
}
unknownCommandHandler.accept(command, args);
}
return this;
}
/**
* Set the custom prompt for this mode
*
* @param prompt
* The custom prompt for this mode, or null to disable the custom
* prompt
*/
public void setCustomPrompt(final String prompt) {
customPrompt = prompt;
}
/**
* Set the name of this mode
*
* @param name
* The desired name of this mode, or null to use the default name
*/
public void setModeName(final String name) {
modeName = name;
}
/**
* Set the handler to use for unknown commands
*
* @param handler
* The handler to use for unknown commands, or null to throw on
* unknown commands
*/
public void setUnknownCommandHandler(final BiConsumer<String, String[]> handler) {
if (handler == null)
throw new NullPointerException("Handler must not be null");
unknownCommandHandler = handler;
}
/* Setup default commands. */
private void setupDefaultCommands() {
defaultHandlers.put("list", buildListCommand());
defaultHandlers.put("alias", buildAliasCommand());
defaultHandlers.put("help", buildHelpCommand());
/* Help unix people :) */
addCommandAlias("help", "man");
/* Add commands handled in a upper layer. */
/*
* @NOTE Figure out a place to put commands that apply across all modes, but
* only to a specific application.
*/
defaultHandlers.put("clear", buildClearCommands());
defaultHandlers.put("exit", buildExitCommand());
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
final StringBuilder builder = new StringBuilder();
builder.append("GenericCommandMode [");
if (commandHandlers != null) {
builder.append("commandHandlers=");
builder.append(commandHandlers);
}
if (defaultHandlers != null) {
builder.append(", ");
builder.append("defaultHandlers=");
builder.append(defaultHandlers);
}
if (helpTopics != null) {
builder.append(", ");
builder.append("helpTopics=");
builder.append(helpTopics);
}
if (modeName != null) {
builder.append(", ");
builder.append("modeName=");
builder.append(modeName);
}
if (customPrompt != null) {
builder.append(", ");
builder.append("customPrompt=");
builder.append(customPrompt);
}
builder.append("]");
return builder.toString();
}
}
|