blob: b3a551a10a52d96d4ea7b6acaaa54e61dfb0ef40 [file] [log] [blame]
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuskac40d4632015-04-09 16:55:03 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.cli;
17
Ray Milkeyd84f89b2018-08-17 14:54:17 -070018import org.apache.karaf.shell.api.console.CommandLine;
19import org.apache.karaf.shell.api.console.Session;
20import org.apache.karaf.shell.support.completers.StringsCompleter;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070021
22import java.util.List;
23import java.util.SortedSet;
24
25/**
26 * Abstraction of a completer with preset choices.
27 */
28public abstract class AbstractChoicesCompleter extends AbstractCompleter {
29
30 protected abstract List<String> choices();
Ray Milkey86ad7bb2018-09-27 12:32:28 -070031 public CommandLine commandLine;
32 public Session session;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070033
34 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070035 public int complete(Session session, CommandLine commandLine, List<String> candidates) {
36 this.session = session;
37 this.commandLine = commandLine;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070038 StringsCompleter delegate = new StringsCompleter();
39 SortedSet<String> strings = delegate.getStrings();
40 choices().forEach(strings::add);
Ray Milkeyd84f89b2018-08-17 14:54:17 -070041 return delegate.complete(session, commandLine, candidates);
Thomas Vachuskac40d4632015-04-09 16:55:03 -070042 }
43
44}