blob: abf0c0c081145a0808b5982bbcea1660c4e144ee [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
Ray Milkeydb38bc82018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.lifecycle.Service;
19import org.apache.karaf.shell.api.console.CommandLine;
20import org.apache.karaf.shell.api.console.Completer;
21import org.apache.karaf.shell.api.console.Session;
22import org.apache.karaf.shell.support.completers.StringsCompleter;
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -070023import org.onosproject.cli.AbstractShellCommand;
24import org.onosproject.segmentrouting.SegmentRoutingService;
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -080025import org.onosproject.segmentrouting.pwaas.L2Tunnel;
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -070026
27import java.util.Iterator;
28import java.util.List;
29import java.util.SortedSet;
30import java.util.stream.Collectors;
31
32/**
33 * Device ID completer.
34 */
Ray Milkeydb38bc82018-09-27 12:32:28 -070035@Service
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -070036public class PseudowireIdCompleter implements Completer {
37 @Override
Ray Milkeydb38bc82018-09-27 12:32:28 -070038 public int complete(Session session, CommandLine commandLine, List<String> candidates) {
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -070039 // Delegate string completer
40 StringsCompleter delegate = new StringsCompleter();
41
42 SegmentRoutingService srService =
43 AbstractShellCommand.get(SegmentRoutingService.class);
44
45
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -080046 List<L2Tunnel> tunnels = srService.getL2Tunnels();
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -070047
48 // combine polices and tunnels to pseudowires
49 Iterator<String> pseudowires = tunnels.stream()
50 .map(l2Tunnel -> Long.toString(l2Tunnel.tunnelId()))
51 .collect(Collectors.toList()).iterator();
52
53 SortedSet<String> strings = delegate.getStrings();
54 while (pseudowires.hasNext()) {
55 strings.add(pseudowires.next());
56 }
57
58 // Now let the completer do the work for figuring out what to offer.
Ray Milkeydb38bc82018-09-27 12:32:28 -070059 return delegate.complete(session, commandLine, candidates);
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -070060 }
61
62}