blob: 3a374b8291d4e034afbfd2c4e61d503873826ca2 [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 */
tom13cb4852014-09-11 12:44:17 -070019package org.onlab.onos.cli.net;
20
21import org.apache.karaf.shell.console.Completer;
22import org.apache.karaf.shell.console.completer.StringsCompleter;
23import org.onlab.onos.cli.AbstractShellCommand;
24import org.onlab.onos.net.topology.Topology;
25import org.onlab.onos.net.topology.TopologyCluster;
26import org.onlab.onos.net.topology.TopologyService;
27
28import java.util.List;
29import java.util.SortedSet;
30
31/**
32 * Cluster ID completer.
33 */
34public class ClusterIdCompleter 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 TopologyService service = AbstractShellCommand.get(TopologyService.class);
42 Topology topology = service.currentTopology();
43
44 SortedSet<String> strings = delegate.getStrings();
45 for (TopologyCluster cluster : service.getClusters(topology)) {
46 strings.add(Integer.toString(cluster.id().index()));
47 }
48
49 // Now let the completer do the work for figuring out what to offer.
50 return delegate.complete(buffer, cursor, candidates);
51 }
52
53}