blob: 4687209a4f5277f1e135e79b524f21c9cb27e1f2 [file] [log] [blame]
Jian Lic38e9032018-08-09 17:08:38 +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.openstacktroubleshoot.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.openstacknetworking.api.InstancePort;
22import org.onosproject.openstacknetworking.api.InstancePortService;
23
24import java.util.List;
25import java.util.Set;
26import java.util.SortedSet;
27import java.util.stream.Collectors;
28
29/**
30 * Active VM floating IP address completer.
31 */
32public class ActiveFloatingIpCompleter implements Completer {
33
34 @Override
35 public int complete(String buffer, int cursor, List<String> candidates) {
36 StringsCompleter delegate = new StringsCompleter();
37 InstancePortService service = AbstractShellCommand.get(InstancePortService.class);
38 Set<String> set = service.instancePorts().stream()
39 .filter(p -> p.state() == InstancePort.State.ACTIVE)
40 .filter(p -> service.floatingIp(p.portId()) != null)
41 .map(p -> service.floatingIp(p.portId()).toString())
42 .collect(Collectors.toSet());
43
44 SortedSet<String> strings = delegate.getStrings();
45 strings.addAll(set);
46
47 return delegate.complete(buffer, cursor, candidates);
48 }
49}