blob: 77dbe7a7c3a483b3d2b3acc58bdcc4ccc45a3e96 [file] [log] [blame]
jiangrui264dede2015-11-28 14:02:34 +08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
jiangrui264dede2015-11-28 14:02:34 +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.router;
17
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Command;
19import org.apache.karaf.shell.api.action.Option;
jiangrui264dede2015-11-28 14:02:34 +080020import org.onosproject.cli.AbstractShellCommand;
21import org.onosproject.vtnrsc.Router;
22import org.onosproject.vtnrsc.RouterId;
23import org.onosproject.vtnrsc.router.RouterService;
24
25/**
26 * Supports for query a list of router.
27 */
28@Command(scope = "onos", name = "routers", description = "Supports for creating a router")
29public class RouterQueryCommand extends AbstractShellCommand {
30 @Option(name = "-i", aliases = "--id", description = "The router identifier",
31 required = false, multiValued = false)
32 String id = null;
33
34 @Option(name = "-n", aliases = "--routerName", description = "The name of router",
35 required = false, multiValued = false)
36 String routerName = null;
37
38 private static final String FMT = "routerId=%s, routerName=%s, tenantId=%s, gatewayPortId=%s,"
39 + "externalGatewayInfo=%s, status=%s, adminStateUp=%s, distributed=%s, routers=%s";
40
41 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070042 protected void doExecute() {
jiangrui264dede2015-11-28 14:02:34 +080043 RouterService service = get(RouterService.class);
44 if (id != null) {
45 Router router = service.getRouter(RouterId.valueOf(id));
46 printFloatingIp(router);
47 } else if (routerName != null) {
48 Iterable<Router> routers = service.getRouters();
49 if (routers == null) {
50 return;
51 }
52 for (Router router : routers) {
53 if (router.name().equals(routerName)) {
54 printFloatingIp(router);
55 return;
56 }
57 }
58 print(null, "The routerName is not existed");
59 } else {
60 Iterable<Router> routers = service.getRouters();
61 if (routers == null) {
62 return;
63 }
64 for (Router router : routers) {
65 printFloatingIp(router);
66 }
67 }
68 }
69
70 private void printFloatingIp(Router router) {
71 print(FMT, router.id(), router.name(), router.tenantId(),
72 router.gatewayPortid(), router.externalGatewayInfo(),
73 router.status(), router.adminStateUp(), router.distributed(),
74 router.routes());
75 }
76}