blob: 811b63d1455292af332a2b473046ce8c6ca7d20a [file] [log] [blame]
Jian Li26ef1302018-07-04 14:37:06 +09001/*
2 * Copyright 2018-present Open Networking Foundation
3 *
4 * 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
7 *
8 * 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.
15 */
16package org.onosproject.openstackvtap.cli;
17
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.lifecycle.Service;
19import org.apache.karaf.shell.api.console.CommandLine;
20import org.apache.karaf.shell.api.console.Completer;
21import org.apache.karaf.shell.api.console.Session;
22import org.apache.karaf.shell.support.completers.StringsCompleter;
Jian Li26ef1302018-07-04 14:37:06 +090023import org.onosproject.cli.AbstractShellCommand;
24import org.onosproject.openstackvtap.api.OpenstackVtap;
25import org.onosproject.openstackvtap.api.OpenstackVtapService;
26
27import java.util.List;
28import java.util.SortedSet;
29
30import static org.onosproject.openstackvtap.util.OpenstackVtapUtil.getVtapTypeFromString;
31
32/**
33 * vTap ID completer.
34 */
Ray Milkey86ad7bb2018-09-27 12:32:28 -070035@Service
Jian Li26ef1302018-07-04 14:37:06 +090036public class VtapIdCompleter implements Completer {
37
38 private static final String VTAP_TYPE = "none";
39
40 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070041 public int complete(Session session, CommandLine commandLine, List<String> candidates) {
Jian Li26ef1302018-07-04 14:37:06 +090042
43 OpenstackVtap.Type type = getVtapTypeFromString(VTAP_TYPE);
44
45 // Delegate string completer
46 StringsCompleter delegate = new StringsCompleter();
47 SortedSet<String> strings = delegate.getStrings();
48
49 OpenstackVtapService service = AbstractShellCommand.get(OpenstackVtapService.class);
50
51 service.getVtaps(type).forEach(t -> {
52 strings.add(t.id().toString());
53 });
54
Ray Milkey86ad7bb2018-09-27 12:32:28 -070055 return delegate.complete(session, commandLine, candidates);
Jian Li26ef1302018-07-04 14:37:06 +090056 }
57}