blob: dfc76a7ee7f1f5ad0565f77421b62d8c75fd89bd [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska7d693f52014-10-21 19:17:57 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska7d693f52014-10-21 19:17:57 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska7d693f52014-10-21 19:17:57 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli.net;
Ray Milkeya058c732014-10-08 13:52:34 -070017
Ray Milkeyd84f89b2018-08-17 14:54:17 -070018import org.apache.karaf.shell.api.console.CommandLine;
19import org.apache.karaf.shell.api.console.Completer;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
21import org.apache.karaf.shell.api.console.Session;
22import org.apache.karaf.shell.support.completers.StringsCompleter;
Brian O'Connorabafb502014-12-02 22:26:20 -080023import org.onosproject.cli.AbstractShellCommand;
24import org.onosproject.net.Device;
25import org.onosproject.net.Port;
26import org.onosproject.net.device.DeviceService;
Ray Milkeya058c732014-10-08 13:52:34 -070027
Thomas Vachuska22925672014-11-11 17:57:53 -080028import java.util.List;
29import java.util.SortedSet;
30
Ray Milkeya058c732014-10-08 13:52:34 -070031/**
32 * ConnectPoint completer.
33 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070034@Service
Ray Milkeya058c732014-10-08 13:52:34 -070035public class ConnectPointCompleter implements Completer {
36 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070037 public int complete(Session session, CommandLine commandLine, List<String> candidates) {
Ray Milkeya058c732014-10-08 13:52:34 -070038 // Delegate string completer
39 StringsCompleter delegate = new StringsCompleter();
40
41 // Fetch our service and feed it's offerings to the string completer
42 DeviceService service = AbstractShellCommand.get(DeviceService.class);
43
44 // Generate the device ID/port number identifiers
45 for (Device device : service.getDevices()) {
46 SortedSet<String> strings = delegate.getStrings();
Ray Milkeya058c732014-10-08 13:52:34 -070047 for (Port port : service.getPorts(device.id())) {
Thomas Vachuska22925672014-11-11 17:57:53 -080048 if (!port.number().isLogical()) {
49 strings.add(device.id().toString() + "/" + port.number());
50 }
Ray Milkeya058c732014-10-08 13:52:34 -070051 }
52 }
53
54 // Now let the completer do the work for figuring out what to offer.
Ray Milkeyd84f89b2018-08-17 14:54:17 -070055 return delegate.complete(session, commandLine, candidates);
Ray Milkeya058c732014-10-08 13:52:34 -070056 }
57
58}