blob: 3b6e4750da539b01a928fb770307b44369efd1b1 [file] [log] [blame]
daniel parkb5817102018-02-15 00:18:51 +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.MacAddress;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.openstacknetworking.api.ExternalPeerRouter;
23import org.onosproject.openstacknetworking.api.OpenstackNetworkService;
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 * Mac Address Completer.
33 */
34public class MacAddressCompleter implements Completer {
35
36 @Override
37 public int complete(String buffer, int cursor, List<String> candidates) {
38 StringsCompleter delegate = new StringsCompleter();
39 OpenstackNetworkService osNetService = AbstractShellCommand.get(OpenstackNetworkService.class);
40 Set<MacAddress> set = osNetService.externalPeerRouters().stream()
Jian Li5e2ad4a2018-07-16 13:40:53 +090041 .map(ExternalPeerRouter::macAddress)
daniel parkb5817102018-02-15 00:18:51 +090042 .collect(Collectors.toSet());
43 SortedSet<String> strings = delegate.getStrings();
44
45 Iterator<MacAddress> it = set.iterator();
46
47 while (it.hasNext()) {
48 strings.add(it.next().toString());
49 }
50
51 return delegate.complete(buffer, cursor, candidates);
52
53 }
54 }