blob: a41a64380aa712db13af8606325337f19562c262 [file] [log] [blame]
Daniel Parka73c2362018-09-17 17:43:25 +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.openstacknetworking.cli;
17
18import org.apache.karaf.shell.console.Completer;
19import org.apache.karaf.shell.console.completer.StringsCompleter;
20import org.onlab.packet.IpAddress;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.openstacknetworking.api.InstancePort;
23import org.onosproject.openstacknetworking.api.InstancePortService;
24
25import java.util.Iterator;
26import java.util.List;
27import java.util.Set;
28import java.util.SortedSet;
29import java.util.stream.Collectors;
30
31/**
32 * Instance port ip address completer.
33 */
34public class InstanceIpAddressCompleter implements Completer {
35 private static final String EXTERNAL_IP = "8.8.8.8";
36
37 @Override
38 public int complete(String buffer, int cursor, List<String> candidates) {
39 StringsCompleter delegate = new StringsCompleter();
40 InstancePortService instancePortService =
41 AbstractShellCommand.get(InstancePortService.class);
42
43 Set<IpAddress> set = instancePortService.instancePorts().stream()
44 .map(InstancePort::ipAddress)
45 .collect(Collectors.toSet());
46 set.add(IpAddress.valueOf(EXTERNAL_IP));
47
48 SortedSet<String> strings = delegate.getStrings();
49
50 Iterator<IpAddress> it = set.iterator();
51
52 while (it.hasNext()) {
53 strings.add(it.next().toString());
54 }
55
56 return delegate.complete(buffer, cursor, candidates);
57
58
59 }
60}