blob: 9a142af01019e3ed711124a3f6982ec8c7a9bb71 [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 */
alshabib144a2942014-09-25 18:44:02 -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;
alshabib1c319ff2014-10-04 20:29:09 -070026import org.onlab.onos.net.flow.FlowEntry.FlowEntryState;
alshabib144a2942014-09-25 18:44:02 -070027
28/**
29 * Device ID completer.
30 */
31public class FlowRuleStatusCompleter implements Completer {
32 @Override
33 public int complete(String buffer, int cursor, List<String> candidates) {
34 // Delegate string completer
35 StringsCompleter delegate = new StringsCompleter();
36
alshabib1c319ff2014-10-04 20:29:09 -070037 FlowEntryState[] states = FlowEntryState.values();
alshabib144a2942014-09-25 18:44:02 -070038 SortedSet<String> strings = delegate.getStrings();
39 for (int i = 0; i < states.length; i++) {
40 strings.add(states[i].toString().toLowerCase());
41 }
42 strings.add(FlowsListCommand.ANY);
43
44 // Now let the completer do the work for figuring out what to offer.
45 return delegate.complete(buffer, cursor, candidates);
46 }
47
48}