blob: 98e1969098dd664cb62a559903242eb590c938a3 [file] [log] [blame]
Ray Milkeyfb6655e2015-04-10 10:50:54 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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.cfg;
17
Ray Milkeyfb6655e2015-04-10 10:50:54 -070018import org.apache.karaf.shell.console.completer.ArgumentCompleter;
19import org.apache.karaf.shell.console.completer.StringsCompleter;
20import org.onosproject.cfg.ComponentConfigService;
Ray Milkey1cdfd8e2015-04-10 15:20:03 -070021import org.onosproject.cfg.ConfigProperty;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070022import org.onosproject.cli.AbstractCompleter;
Thomas Vachuskaf9e0d172015-04-12 08:29:14 -070023
24import java.util.List;
25import java.util.Set;
26import java.util.SortedSet;
27
28import static org.onosproject.cli.AbstractShellCommand.get;
Ray Milkeyfb6655e2015-04-10 10:50:54 -070029
30/**
31 * Component property name completer.
32 */
Thomas Vachuskaf9e0d172015-04-12 08:29:14 -070033public class ComponentPropertyNameCompleter extends AbstractCompleter {
Ray Milkeyfb6655e2015-04-10 10:50:54 -070034 @Override
35 public int complete(String buffer, int cursor, List<String> candidates) {
36 // Delegate string completer
37 StringsCompleter delegate = new StringsCompleter();
38
Ray Milkeyfb6655e2015-04-10 10:50:54 -070039 // Component name is the previous argument.
Thomas Vachuskaf9e0d172015-04-12 08:29:14 -070040 ArgumentCompleter.ArgumentList list = getArgumentList();
Ray Milkeyfb6655e2015-04-10 10:50:54 -070041 String componentName = list.getArguments()[list.getCursorArgumentIndex() - 1];
Thomas Vachuskaf9e0d172015-04-12 08:29:14 -070042 ComponentConfigService service = get(ComponentConfigService.class);
Ray Milkeyfb6655e2015-04-10 10:50:54 -070043
44 SortedSet<String> strings = delegate.getStrings();
Ray Milkey1cdfd8e2015-04-10 15:20:03 -070045 Set<ConfigProperty> properties =
Thomas Vachuskaf9e0d172015-04-12 08:29:14 -070046 service.getProperties(componentName);
Ray Milkey1cdfd8e2015-04-10 15:20:03 -070047 if (properties != null) {
48 properties.forEach(property -> strings.add(property.name()));
49 }
Ray Milkeyfb6655e2015-04-10 10:50:54 -070050
51 // Now let the completer do the work for figuring out what to offer.
52 return delegate.complete(buffer, cursor, candidates);
53 }
54
55}