blob: b4d07d6b8e259fdb57b320935ac4c5cac181eadd [file] [log] [blame]
Andrea Campanella545edb42018-03-20 16:37:29 -07001/*
2 * Copyright 2016-present Open Networking Foundation
3 *
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.mcast.cli;
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;
Andrea Campanella545edb42018-03-20 16:37:29 -070021import org.onlab.packet.IpAddress;
22import org.onosproject.cli.AbstractShellCommand;
23import org.onosproject.mcast.api.McastRoute;
24import org.onosproject.mcast.api.MulticastRouteService;
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020025import org.onosproject.net.HostId;
Andrea Campanella545edb42018-03-20 16:37:29 -070026
27/**
28 * Deletes a multicast route.
29 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070030@Service
Andrea Campanella545edb42018-03-20 16:37:29 -070031@Command(scope = "onos", name = "mcast-source-delete",
32 description = "Delete a multicast route flow")
33public class McastSourceDeleteCommand extends AbstractShellCommand {
34
35 // Delete format for group line
36 private static final String D_FORMAT_MAPPING = "Deleted the mcast route: " +
37 "origin=%s, group=%s, source=%s";
38
39 // Update format for group line
40 private static final String U_FORMAT_MAPPING = "Updated the mcast route: " +
41 "origin=%s, group=%s, source=%s";
42
43 @Option(name = "-sAddr", aliases = "--sourceAddress",
44 description = "IP Address of the multicast source. '*' can be used for any source (*, G) entry",
45 valueToShowInHelp = "1.1.1.1",
46 required = true, multiValued = false)
47 String sAddr = null;
48
49 @Option(name = "-gAddr", aliases = "--groupAddress",
50 description = "IP Address of the multicast group",
51 valueToShowInHelp = "224.0.0.0",
52 required = true, multiValued = false)
53 String gAddr = null;
54
55 @Option(name = "-src", aliases = "--connectPoint",
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020056 description = "Host sink format: MAC/VLAN",
57 valueToShowInHelp = "00:00:00:00:00:00/None",
Andrea Campanella545edb42018-03-20 16:37:29 -070058 multiValued = true)
59 String[] sourceList = null;
60
61
62 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070063 protected void doExecute() {
Andrea Campanella545edb42018-03-20 16:37:29 -070064 MulticastRouteService mcastRouteManager = get(MulticastRouteService.class);
Pier139babb2018-03-23 14:59:49 -070065 // Clear all routes
Andrea Campanella545edb42018-03-20 16:37:29 -070066 if ("*".equals(sAddr) && "*".equals(gAddr)) {
Andrea Campanella545edb42018-03-20 16:37:29 -070067 mcastRouteManager.getRoutes().forEach(mcastRouteManager::remove);
68 return;
69 }
Pier139babb2018-03-23 14:59:49 -070070 // Removing/updating a specific entry
71 IpAddress sAddrIp = null;
72 // If the source Ip is * we want ASM so we leave it as null and the route will have it as an optional.empty()
73 if (!sAddr.equals("*")) {
74 sAddrIp = IpAddress.valueOf(sAddr);
Andrea Campanella545edb42018-03-20 16:37:29 -070075 }
Pier139babb2018-03-23 14:59:49 -070076 McastRoute mRoute = new McastRoute(sAddrIp, IpAddress.valueOf(gAddr),
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020077 McastRoute.Type.STATIC);
Pier139babb2018-03-23 14:59:49 -070078 // No specific connect points, we have to remove everything
Andrea Campanella545edb42018-03-20 16:37:29 -070079 if (sourceList == null) {
80 mcastRouteManager.remove(mRoute);
Pier139babb2018-03-23 14:59:49 -070081 printMcastRoute(D_FORMAT_MAPPING, mRoute);
Andrea Campanella545edb42018-03-20 16:37:29 -070082 return;
83 }
Pier139babb2018-03-23 14:59:49 -070084 // Otherwise we need to remove specific connect points
85 if (!mcastRouteManager.getRoutes().contains(mRoute)) {
86 print("Route is not present, store it first");
87 return;
88 }
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020089 for (String hostId : sourceList) {
90 mcastRouteManager.removeSource(mRoute, HostId.hostId(hostId));
91
92 }
Pier139babb2018-03-23 14:59:49 -070093 printMcastRoute(U_FORMAT_MAPPING, mRoute);
94 }
95
96 private void printMcastRoute(String format, McastRoute mcastRoute) {
97 // If the source is present let's use it, otherwise we need to print *
98 print(format, mcastRoute.type(), mcastRoute.group(),
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020099 mcastRoute.source().isPresent() ? mcastRoute.source().get() : "*");
Andrea Campanella545edb42018-03-20 16:37:29 -0700100 }
101}