blob: dc447d6f231ea31bad29c1bb2806b8a804fc1f1f [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;
Ray Milkey7a2dee52018-09-28 10:58:28 -070020import org.apache.karaf.shell.api.action.lifecycle.Service;
jiangrui264dede2015-11-28 14:02:34 +080021import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.vtnrsc.Router;
23import org.onosproject.vtnrsc.RouterId;
24import org.onosproject.vtnrsc.router.RouterService;
25
26/**
27 * Supports for query a list of router.
28 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070029@Service
jiangrui264dede2015-11-28 14:02:34 +080030@Command(scope = "onos", name = "routers", description = "Supports for creating a router")
31public class RouterQueryCommand extends AbstractShellCommand {
32 @Option(name = "-i", aliases = "--id", description = "The router identifier",
33 required = false, multiValued = false)
34 String id = null;
35
36 @Option(name = "-n", aliases = "--routerName", description = "The name of router",
37 required = false, multiValued = false)
38 String routerName = null;
39
40 private static final String FMT = "routerId=%s, routerName=%s, tenantId=%s, gatewayPortId=%s,"
41 + "externalGatewayInfo=%s, status=%s, adminStateUp=%s, distributed=%s, routers=%s";
42
43 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070044 protected void doExecute() {
jiangrui264dede2015-11-28 14:02:34 +080045 RouterService service = get(RouterService.class);
46 if (id != null) {
47 Router router = service.getRouter(RouterId.valueOf(id));
48 printFloatingIp(router);
49 } else if (routerName != null) {
50 Iterable<Router> routers = service.getRouters();
51 if (routers == null) {
52 return;
53 }
54 for (Router router : routers) {
55 if (router.name().equals(routerName)) {
56 printFloatingIp(router);
57 return;
58 }
59 }
60 print(null, "The routerName is not existed");
61 } else {
62 Iterable<Router> routers = service.getRouters();
63 if (routers == null) {
64 return;
65 }
66 for (Router router : routers) {
67 printFloatingIp(router);
68 }
69 }
70 }
71
72 private void printFloatingIp(Router router) {
73 print(FMT, router.id(), router.name(), router.tenantId(),
74 router.gatewayPortid(), router.externalGatewayInfo(),
75 router.status(), router.adminStateUp(), router.distributed(),
76 router.routes());
77 }
78}