Skip to content

Commit

Permalink
remkop#1346 Add custom types for AutoComplete path completion
Browse files Browse the repository at this point in the history
  • Loading branch information
loicrouchon committed Mar 21, 2021
1 parent 4e7e733 commit 4388af4
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions src/main/java/picocli/AutoComplete.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ private static class App implements Callable<Integer> {
"as the completion script.")
boolean writeCommandScript;

@Option(names = {"-p", "--pathTypes"}, split=",", description = "Comma-separated list of fully "
+ "qualified custom types for which to delegate to built-in path name completion.")
List<String> pathCompletionTypes = new ArrayList<String>();

@Option(names = {"-f", "--force"}, description = "Overwrite existing script files.")
boolean overwriteIfExists;

Expand All @@ -162,6 +166,11 @@ public Integer call() throws Exception {
Class<?> cls = Class.forName(commandLineFQCN);
Object instance = factory.create(cls);
CommandLine commandLine = new CommandLine(instance, factory);
for (String className : pathCompletionTypes) {
// TODO implement error handling if the class is not on the classpath
Class<?> pathCompletionClass = Class.forName(className);
commandLine.registerForPathCompletion(pathCompletionClass);
}

if (commandName == null) {
commandName = commandLine.getCommandName(); //new CommandLine.Help(commandLine.commandDescriptor).commandName;
Expand Down Expand Up @@ -288,7 +297,7 @@ private static class CommandDescriptor {
final String commandName;
final CommandLine commandLine;
final CommandLine parent;

CommandDescriptor(String functionName, String commandName, CommandLine commandLine, CommandLine parent) {
this.functionName = functionName;
this.commandName = commandName;
Expand Down Expand Up @@ -651,7 +660,7 @@ private static String generateFunctionForCommand(String functionName, String com
// sql.Types?

// Now generate the "case" switches for the options whose arguments we can generate completions for
buff.append(generateOptionsSwitch(argOptionFields));
buff.append(generateOptionsSwitch(commandLine, argOptionFields));

// Generate completion lists for positional params with a known set of valid values (including java enums)
for (PositionalParamSpec f : commandSpec.positionalParameters()) {
Expand All @@ -660,7 +669,7 @@ private static String generateFunctionForCommand(String functionName, String com
}
}

String paramsCases = generatePositionalParamsCases(commandSpec.positionalParameters(), "", "${curr_word}");
String paramsCases = generatePositionalParamsCases(commandLine, commandSpec.positionalParameters(), "", "${curr_word}");
String posParamsFooter = "";
if (paramsCases.length() > 0) {
String POSITIONAL_PARAMS_FOOTER = "" +
Expand Down Expand Up @@ -696,7 +705,8 @@ private static List<String> extract(Iterable<String> generator) {
return result;
}

private static String generatePositionalParamsCases(List<PositionalParamSpec> posParams, String indent, String currWord) {
private static String generatePositionalParamsCases(
CommandLine commandLine, List<PositionalParamSpec> posParams, String indent, String currWord) {
StringBuilder buff = new StringBuilder(1024);
for (PositionalParamSpec param : posParams) {
if (param.hidden()) { continue; } // #887 skip hidden params
Expand All @@ -711,7 +721,7 @@ private static String generatePositionalParamsCases(List<PositionalParamSpec> po
if (param.completionCandidates() != null) {
buff.append(format("%s %s (( currIndex >= %d && currIndex <= %d )); then\n", indent, ifOrElif, min, max));
buff.append(format("%s positionals=$( compgen -W \"$%s_pos_param_args\" -- \"%s\" )\n", indent, paramName, currWord));
} else if (type.equals(File.class) || "java.nio.file.Path".equals(type.getName())) {
} else if (commandLine.supportsPathCompletion(type)) {
buff.append(format("%s %s (( currIndex >= %d && currIndex <= %d )); then\n", indent, ifOrElif, min, max));
buff.append(format("%s compopt -o filenames\n", indent));
buff.append(format("%s positionals=$( compgen -f -- \"%s\" ) # files\n", indent, currWord));
Expand All @@ -727,8 +737,8 @@ private static String generatePositionalParamsCases(List<PositionalParamSpec> po
return buff.toString();
}

private static String generateOptionsSwitch(List<OptionSpec> argOptions) {
String optionsCases = generateOptionsCases(argOptions, "", "${curr_word}");
private static String generateOptionsSwitch(CommandLine commandLine, List<OptionSpec> argOptions) {
String optionsCases = generateOptionsCases(commandLine, argOptions, "", "${curr_word}");

if (optionsCases.length() == 0) {
return "";
Expand All @@ -742,7 +752,8 @@ private static String generateOptionsSwitch(List<OptionSpec> argOptions) {
+ " esac\n";
}

private static String generateOptionsCases(List<OptionSpec> argOptionFields, String indent, String currWord) {
private static String generateOptionsCases(
CommandLine commandLine, List<OptionSpec> argOptionFields, String indent, String currWord) {
StringBuilder buff = new StringBuilder(1024);
for (OptionSpec option : argOptionFields) {
if (option.hidden()) { continue; } // #887 skip hidden options
Expand All @@ -755,7 +766,7 @@ private static String generateOptionsCases(List<OptionSpec> argOptionFields, Str
buff.append(format("%s COMPREPLY=( $( compgen -W \"${%s_option_args}\" -- \"%s\" ) )\n", indent, bashify(option.paramLabel()), currWord));
buff.append(format("%s return $?\n", indent));
buff.append(format("%s ;;\n", indent));
} else if (type.equals(File.class) || "java.nio.file.Path".equals(type.getName())) {
} else if (commandLine.supportsPathCompletion(type)) {
buff.append(format("%s %s)\n", indent, concat("|", option.names()))); // " -f|--file)\n"
buff.append(format("%s compopt -o filenames\n", indent));
buff.append(format("%s COMPREPLY=( $( compgen -f -- \"%s\" ) ) # files\n", indent, currWord));
Expand Down

0 comments on commit 4388af4

Please sign in to comment.