
scala.tools.jline.console.completer.AggregateCompleter Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package scala.tools.jline.console.completer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.LinkedList;
import java.util.List;
/**
* Completer which contains multiple completers and aggregates them together.
*
* @author Jason Dillon
* @since 2.3
*/
public class AggregateCompleter
implements Completer
{
private final List completers = new ArrayList();
public AggregateCompleter() {
// empty
}
public AggregateCompleter(final Collection completers) {
assert completers != null;
this.completers.addAll(completers);
}
public AggregateCompleter(final Completer... completers) {
this(Arrays.asList(completers));
}
public Collection getCompleters() {
return completers;
}
public int complete(final String buffer, final int cursor, final List candidates) {
// buffer could be null
assert candidates != null;
List completions = new ArrayList(completers.size());
// Run each completer, saving its completion results
int max = -1;
for (Completer completer : completers) {
Completion completion = new Completion(candidates);
completion.complete(completer, buffer, cursor);
// Compute the max cursor position
max = Math.max(max, completion.cursor);
completions.add(completion);
}
// Append candidates from completions which have the same cursor position as max
for (Completion completion : completions) {
if (completion.cursor == max) {
candidates.addAll(completion.candidates);
}
}
return max;
}
@Override
public String toString() {
return getClass().getSimpleName() + "{" +
"completers=" + completers +
'}';
}
private class Completion
{
public final List candidates;
public int cursor;
public Completion(final List candidates) {
assert candidates != null;
this.candidates = new LinkedList(candidates);
}
public void complete(final Completer completer, final String buffer, final int cursor) {
assert completer != null;
this.cursor = completer.complete(buffer, cursor, candidates);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy