blob: 7486c12fc87a1e43420a34b415fd88cee45495db [file] [log] [blame]
jiangruia0fc6052015-11-28 14:03:42 +08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
jiangruia0fc6052015-11-28 14:03:42 +08003 *
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.vtnrsc.cli.routerinterface;
17
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Command;
19import org.apache.karaf.shell.api.action.Option;
Ray Milkey7a2dee52018-09-28 10:58:28 -070020import org.apache.karaf.shell.api.action.lifecycle.Service;
jiangruia0fc6052015-11-28 14:03:42 +080021import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.vtnrsc.RouterInterface;
23import org.onosproject.vtnrsc.SubnetId;
24import org.onosproject.vtnrsc.routerinterface.RouterInterfaceService;
25
26/**
27 * Supports for query a router interface.
28 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070029@Service
jiangruia0fc6052015-11-28 14:03:42 +080030@Command(scope = "onos", name = "routerinterfaces", description = "Supports for querying a router interface")
31public class RouterInterfaceQueryCommand extends AbstractShellCommand {
32 @Option(name = "-s", aliases = "--subnetId", description = "The subnet identifier of router interface",
33 required = false, multiValued = false)
34 String subnetId = null;
35
36 private static final String FMT = "subnetId=%s, tenantId=%s, portId=%s, routerId=%s";
37
38 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070039 protected void doExecute() {
jiangruia0fc6052015-11-28 14:03:42 +080040 RouterInterfaceService service = get(RouterInterfaceService.class);
41 if (subnetId != null) {
42 RouterInterface routerInterface = service
43 .getRouterInterface(SubnetId.subnetId(subnetId));
44 printRouterInterface(routerInterface);
45 } else {
46 Iterable<RouterInterface> routerInterfaces = service
47 .getRouterInterfaces();
48 for (RouterInterface routerInterface : routerInterfaces) {
49 printRouterInterface(routerInterface);
50 }
51 }
52 }
53
54 private void printRouterInterface(RouterInterface routerInterface) {
55 print(FMT, routerInterface.subnetId(), routerInterface.tenantId(),
56 routerInterface.portId(), routerInterface.routerId());
57 }
58}