blob: b44ca76dd6e5e86cd5f73c2b578f2ff73d63ae99 [file] [log] [blame]
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -07001/*
2 * Copyright 2014-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.segmentrouting.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.segmentrouting.SegmentRoutingService;
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -080022import org.onosproject.segmentrouting.pwaas.L2Tunnel;
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -070023
24import java.util.Iterator;
25import java.util.List;
26import java.util.SortedSet;
27import java.util.stream.Collectors;
28
29/**
30 * Device ID completer.
31 */
32public class PseudowireIdCompleter implements Completer {
33 @Override
34 public int complete(String buffer, int cursor, List<String> candidates) {
35 // Delegate string completer
36 StringsCompleter delegate = new StringsCompleter();
37
38 SegmentRoutingService srService =
39 AbstractShellCommand.get(SegmentRoutingService.class);
40
41
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -080042 List<L2Tunnel> tunnels = srService.getL2Tunnels();
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -070043
44 // combine polices and tunnels to pseudowires
45 Iterator<String> pseudowires = tunnels.stream()
46 .map(l2Tunnel -> Long.toString(l2Tunnel.tunnelId()))
47 .collect(Collectors.toList()).iterator();
48
49 SortedSet<String> strings = delegate.getStrings();
50 while (pseudowires.hasNext()) {
51 strings.add(pseudowires.next());
52 }
53
54 // Now let the completer do the work for figuring out what to offer.
55 return delegate.complete(buffer, cursor, candidates);
56 }
57
58}