blob: 4acf444cedd309bb08647dc244b7076cf536d354 [file] [log] [blame]
sangho36c9d2c2015-06-24 09:37:40 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
sangho36c9d2c2015-06-24 09:37:40 -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
18
19import com.google.common.collect.Lists;
20import org.apache.karaf.shell.commands.Argument;
21import org.apache.karaf.shell.commands.Command;
22import org.onosproject.cli.AbstractShellCommand;
23import org.onosproject.segmentrouting.DefaultTunnel;
24import org.onosproject.segmentrouting.SegmentRoutingService;
25import org.onosproject.segmentrouting.Tunnel;
sangho71abe1b2015-06-29 14:58:47 -070026import org.onosproject.segmentrouting.TunnelHandler;
sangho36c9d2c2015-06-24 09:37:40 -070027
28/**
29 * Command to remove a tunnel.
30 */
31@Command(scope = "onos", name = "srtunnel-remove",
32 description = "Remove a tunnel")
33public class TunnelRemoveCommand extends AbstractShellCommand {
34
35 @Argument(index = 0, name = "tunnel ID",
36 description = "tunnel ID",
37 required = true, multiValued = false)
38 String tunnelId;
39
40 @Override
41 protected void execute() {
sangho36c9d2c2015-06-24 09:37:40 -070042 SegmentRoutingService srService =
43 AbstractShellCommand.get(SegmentRoutingService.class);
44
45 Tunnel tunnel = new DefaultTunnel(tunnelId, Lists.newArrayList());
sangho71abe1b2015-06-29 14:58:47 -070046 TunnelHandler.Result result = srService.removeTunnel(tunnel);
47 switch (result) {
48 case TUNNEL_IN_USE:
49 print("ERROR: the tunnel is still in use");
50 break;
51 case TUNNEL_NOT_FOUND:
52 print("ERROR: the tunnel is not found");
53 break;
54 default:
55 break;
56 }
sangho36c9d2c2015-06-24 09:37:40 -070057 }
58}