blob: d44b8d4b46c578478b57365acd814a38bad63123 [file] [log] [blame]
Daniel Park95f73312018-07-31 15:48:34 +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.onosproject.cli.AbstractShellCommand;
21import org.onosproject.openstacknetworking.api.OpenstackNetworkService;
22import org.openstack4j.model.network.Port;
23
24import java.util.Iterator;
25import java.util.List;
26import java.util.Set;
27import java.util.SortedSet;
28import java.util.stream.Collectors;
29
30import static org.onosproject.openstacknetworking.api.Constants.DIRECT;
31
32/**
33 * Direct port completer.
34 */
35public class DirectPortListCompleter implements Completer {
36
37 @Override
38 public int complete(String buffer, int cursor, List<String> candidates) {
39 StringsCompleter delegate = new StringsCompleter();
40 OpenstackNetworkService osNetService = AbstractShellCommand.get(OpenstackNetworkService.class);
41 Set<String> set = osNetService.ports().stream()
42 .filter(port -> port.getvNicType().equals(DIRECT))
43 .map(Port::getId)
44 .collect(Collectors.toSet());
45
46 SortedSet<String> strings = delegate.getStrings();
47 Iterator<String> it = set.iterator();
48
49 while (it.hasNext()) {
50 strings.add(it.next().toString());
51 }
52 return delegate.complete(buffer, cursor, candidates);
53 }
54}