blob: d81a58726147bee45510beaacc1e28f8f3366e62 [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -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 */
Jonathan Hart0b04bed2014-10-16 16:39:19 -070019package org.onlab.onos.sdnip.cli;
20
21import org.apache.karaf.shell.commands.Command;
22import org.onlab.onos.cli.AbstractShellCommand;
23import org.onlab.onos.sdnip.RouteEntry;
24import org.onlab.onos.sdnip.SdnIpService;
25
26/**
27 * Command to show the list of routes in SDN-IP's routing table.
28 */
29@Command(scope = "onos", name = "routes",
30 description = "Lists all routes known to SDN-IP")
31public class RoutesListCommand extends AbstractShellCommand {
32
33 private static final String FORMAT =
34 "prefix=%s, nexthop=%s";
35
36 @Override
37 protected void execute() {
38 SdnIpService service = get(SdnIpService.class);
39
40 for (RouteEntry route : service.getRoutes()) {
41 printRoute(route);
42 }
43 }
44
45 private void printRoute(RouteEntry route) {
46 if (route != null) {
47 print(FORMAT, route.prefix(), route.nextHop());
48 }
49 }
50}