blob: 2c8df90b26a2efca279f4af99d0a91308863bbc3 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Ray Milkeya058c732014-10-08 13:52:34 -070019package org.onlab.onos.cli.net;
20
21import java.util.List;
22import java.util.SortedSet;
23
24import org.apache.karaf.shell.console.Completer;
25import org.apache.karaf.shell.console.completer.StringsCompleter;
26import org.onlab.onos.cli.AbstractShellCommand;
27import org.onlab.onos.net.Device;
28import org.onlab.onos.net.Port;
29import org.onlab.onos.net.device.DeviceService;
30
31/**
32 * ConnectPoint completer.
33 */
34public class ConnectPointCompleter implements Completer {
35 @Override
36 public int complete(String buffer, int cursor, List<String> candidates) {
37 // Delegate string completer
38 StringsCompleter delegate = new StringsCompleter();
39
40 // Fetch our service and feed it's offerings to the string completer
41 DeviceService service = AbstractShellCommand.get(DeviceService.class);
42
43 // Generate the device ID/port number identifiers
44 for (Device device : service.getDevices()) {
45 SortedSet<String> strings = delegate.getStrings();
46
47 for (Port port : service.getPorts(device.id())) {
48 strings.add(device.id().toString() + "/" + port.number());
49 }
50 }
51
52 // Now let the completer do the work for figuring out what to offer.
53 return delegate.complete(buffer, cursor, candidates);
54 }
55
56}