blob: 1395509e1b7faa3ea389e841942ae42df4ab11e9 [file] [log] [blame]
sangho6703da22015-06-11 14:49:59 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
sangho6703da22015-06-11 14:49:59 -07003 *
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.segmentrouting.cli;
17
18import org.apache.karaf.shell.commands.Command;
19import org.onosproject.cli.AbstractShellCommand;
20import org.onosproject.segmentrouting.SegmentRoutingService;
21import org.onosproject.segmentrouting.Tunnel;
22
23/**
24 * Command to show the list of tunnels.
25 */
Saurav Das59232cf2016-04-27 18:35:50 -070026@Command(scope = "onos", name = "sr-tunnel-list",
sangho6703da22015-06-11 14:49:59 -070027 description = "Lists all tunnels")
28public class TunnelListCommand extends AbstractShellCommand {
29
30 private static final String FORMAT_MAPPING =
31 " id=%s, path=%s";
32
33 @Override
34 protected void execute() {
35
36 SegmentRoutingService srService =
37 AbstractShellCommand.get(SegmentRoutingService.class);
38
39 srService.getTunnels().forEach(tunnel -> printTunnel(tunnel));
40 }
41
42 private void printTunnel(Tunnel tunnel) {
43 print(FORMAT_MAPPING, tunnel.id(), tunnel.labelIds());
44 }
45}