blob: 1d08c0ab3e74d2028e7a9a3a823c26de0148bbe6 [file] [log] [blame]
Jian Li62dbb6a2018-02-27 15:18:53 +09001/*
2 * Copyright 2018-present Open Networking Foundation
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.openstacknode.cli;
17
18import org.apache.karaf.shell.console.Completer;
19import org.apache.karaf.shell.console.completer.StringsCompleter;
20import org.onosproject.cli.AbstractShellCommand;
21import org.onosproject.openstacknode.api.OpenstackNode;
22import org.onosproject.openstacknode.api.OpenstackNodeService;
23
24import java.util.List;
25import java.util.Set;
26import java.util.SortedSet;
27import java.util.stream.Collectors;
28
29/**
30 * Openstack host completer.
31 */
32public class OpenstackHostnameCompleter implements Completer {
33
34 @Override
35 public int complete(String buffer, int cursor, List<String> candidates) {
36 StringsCompleter delegate = new StringsCompleter();
37 OpenstackNodeService osNodeService = AbstractShellCommand.get(OpenstackNodeService.class);
38
39 Set<String> hostnames = osNodeService.nodes().stream()
40 .map(OpenstackNode::hostname)
41 .collect(Collectors.toSet());
42 SortedSet<String> strings = delegate.getStrings();
43
44 strings.addAll(hostnames);
45
46 return delegate.complete(buffer, cursor, candidates);
47 }
48}