使用JLine在一行上完成多个命令

fla*_*kes 6 java jline

我想知道如何实现ArgumentCompleter这样一个如果我完成一个完整有效的命令,那么它将开始制作一个新命令的选项卡.

我原以为它可以构造成这样的东西:

final ConsoleReader consoleReader = new ConsoleReader()

final ArgumentCompleter cyclicalArgument = new ArgumentCompleter();
cyclicalArgument.getCompleters().addAll(Arrays.asList(
        new StringsCompleter("foo"), 
        new StringsCompleter("bar"), 
        cyclicalArgument));

consoleReader.addCompleter(cyclicalArgument);
consoleReader.readLine();
Run Code Online (Sandbox Code Playgroud)

但是现在,在完成第一个选项卡后,这将停止工作 foo bar

是否有人熟悉图书馆,告诉我如何实施这个?或者有一种已知的方法可以做到这一点,我错过了吗?这也是使用JLine2.

oli*_*ver 5

这是一项艰巨的任务:-)

它由您正在使用的完成器处理。完成器的方法complete()必须仅使用最后一个空白之后的内容进行搜索。

例如,如果您查看FileNameCompleter图书馆的示例:这根本没有完成,因此您将发现没有完成,因为完成器搜索<input1> <input2>而不仅仅是<input2>:-)

您必须自己实现能够找到 input2 的完成程序。

此外,还CompletionHandler必须将您找到的内容附加到您已经输入的内容中。

这是更改默认值的基本实现FileNameCompleter

  protected int matchFiles(final String buffer, final String translated, final File[] files,
         final List<CharSequence> candidates) {
      // THIS IS NEW
      String[] allWords = translated.split(" ");
      String lastWord = allWords[allWords.length - 1];
      // the lastWord is used when searching the files now
      // ---

      if (files == null) {
         return -1;
      }

      int matches = 0;

      // first pass: just count the matches
      for (File file : files) {
         if (file.getAbsolutePath().startsWith(lastWord)) {
            matches++;
         }
      }
      for (File file : files) {
         if (file.getAbsolutePath().startsWith(lastWord)) {
            CharSequence name = file.getName() + (matches == 1 && file.isDirectory() ? this.separator() : " ");
            candidates.add(this.render(file, name).toString());
         }
      }

      final int index = buffer.lastIndexOf(this.separator());

      return index + this.separator().length();
   }
Run Code Online (Sandbox Code Playgroud)

这里是更改默认值complete()的方法:CompletionHandlerCandidateListCompletionHandler

  @Override
   public boolean complete(final ConsoleReader reader, final List<CharSequence> candidates, final int pos)
         throws IOException {
      CursorBuffer buf = reader.getCursorBuffer();

      // THIS IS NEW
      String[] allWords = buf.toString().split(" ");
      String firstWords = "";
      if (allWords.length > 1) {
         for (int i = 0; i < allWords.length - 1; i++) {
            firstWords += allWords[i] + " ";
         }
      }
      //-----

      // if there is only one completion, then fill in the buffer
      if (candidates.size() == 1) {
         String value = Ansi.stripAnsi(candidates.get(0).toString());

         if (buf.cursor == buf.buffer.length() && this.printSpaceAfterFullCompletion && !value.endsWith(" ")) {
            value += " ";
         }

         // fail if the only candidate is the same as the current buffer
         if (value.equals(buf.toString())) {
            return false;
         }

         CandidateListCompletionHandler.setBuffer(reader, firstWords + " " + value, pos);

         return true;
      } else if (candidates.size() > 1) {
         String value = this.getUnambiguousCompletions(candidates);
         CandidateListCompletionHandler.setBuffer(reader, value, pos);
      }

      CandidateListCompletionHandler.printCandidates(reader, candidates);

      // redraw the current console buffer
      reader.drawLine();

      return true;
   }
Run Code Online (Sandbox Code Playgroud)