blob: 90381148cd959f88a0a923b7b7a63e7f3bd2ee88 [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 */
Ayaka Koshibe43530be2014-09-15 11:14:52 -070019package org.onlab.onos.cli.net;
20
alshabib99b8fdc2014-09-25 14:30:22 -070021import java.util.Iterator;
22import java.util.List;
23import java.util.SortedSet;
24
Ayaka Koshibe43530be2014-09-15 11:14:52 -070025import org.apache.karaf.shell.console.Completer;
26import org.apache.karaf.shell.console.completer.StringsCompleter;
27import org.onlab.onos.cli.AbstractShellCommand;
28import org.onlab.onos.net.Host;
29import org.onlab.onos.net.host.HostService;
30
Ayaka Koshibe43530be2014-09-15 11:14:52 -070031public class HostIdCompleter implements Completer {
32
33 @Override
34 public int complete(String buffer, int cursor, List<String> candidates) {
35 // Delegate string completer
36 StringsCompleter delegate = new StringsCompleter();
37
38 HostService service = AbstractShellCommand.get(HostService.class);
39 Iterator<Host> it = service.getHosts().iterator();
40 SortedSet<String> strings = delegate.getStrings();
41 while (it.hasNext()) {
42 strings.add(it.next().id().toString());
43 }
44
45 // Now let the completer do the work for figuring out what to offer.
46 return delegate.complete(buffer, cursor, candidates);
47
48 }
49
50}