blob: 9c3111189506d35cb8eb8f10fa85eb371b07e0c8 [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;
Ray Milkey8a636bb2018-10-09 14:35:13 -070019import org.apache.karaf.shell.api.action.Completion;
Ray Milkey86ad7bb2018-09-27 12:32:28 -070020import org.apache.karaf.shell.api.action.Option;
Ray Milkey7a2dee52018-09-28 10:58:28 -070021import org.apache.karaf.shell.api.action.lifecycle.Service;
Andrea Campanella545edb42018-03-20 16:37:29 -070022import org.onlab.packet.IpAddress;
23import org.onosproject.cli.AbstractShellCommand;
Ray Milkey8a636bb2018-10-09 14:35:13 -070024import org.onosproject.cli.net.HostIdCompleter;
Andrea Campanella545edb42018-03-20 16:37:29 -070025import org.onosproject.mcast.api.McastRoute;
26import org.onosproject.mcast.api.MulticastRouteService;
Andrea Campanella545edb42018-03-20 16:37:29 -070027import org.onosproject.net.HostId;
28
Andrea Campanella545edb42018-03-20 16:37:29 -070029/**
30 * Deletes a multicast route.
31 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070032@Service
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020033@Command(scope = "onos", name = "mcast-sink-delete",
34 description = "Delete a sink from multicast route flow. If no sin is specified removes the whole route.")
35public class McastSinkDeleteCommand extends AbstractShellCommand {
Andrea Campanella545edb42018-03-20 16:37:29 -070036
37 // Delete format for group line
38 private static final String D_FORMAT_MAPPING = "Deleted the mcast route: " +
39 "origin=%s, group=%s, source=%s";
40
41 // Update format for group line
42 private static final String U_FORMAT_MAPPING = "Updated the mcast route: " +
43 "origin=%s, group=%s, source=%s";
44
45 @Option(name = "-sAddr", aliases = "--sourceAddress",
46 description = "IP Address of the multicast source. '*' can be used for any source (*, G) entry",
47 valueToShowInHelp = "1.1.1.1",
48 required = true, multiValued = false)
49 String sAddr = null;
50
51 @Option(name = "-gAddr", aliases = "--groupAddress",
52 description = "IP Address of the multicast group",
53 valueToShowInHelp = "224.0.0.0",
54 required = true, multiValued = false)
Ray Milkey8a636bb2018-10-09 14:35:13 -070055 @Completion(McastGroupCompleter.class)
Andrea Campanella545edb42018-03-20 16:37:29 -070056 String gAddr = null;
57
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020058 @Option(name = "-s", aliases = "--sinks",
Andrea Campanella545edb42018-03-20 16:37:29 -070059 description = "Host sink format: MAC/VLAN",
60 valueToShowInHelp = "00:00:00:00:00:00/None")
Ray Milkey8a636bb2018-10-09 14:35:13 -070061 @Completion(HostIdCompleter.class)
Andrea Campanella545edb42018-03-20 16:37:29 -070062 String host = null;
63
Andrea Campanella545edb42018-03-20 16:37:29 -070064 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070065 protected void doExecute() {
Andrea Campanella545edb42018-03-20 16:37:29 -070066 MulticastRouteService mcastRouteManager = get(MulticastRouteService.class);
Pier139babb2018-03-23 14:59:49 -070067 // Clear all routes
Andrea Campanella545edb42018-03-20 16:37:29 -070068 if ("*".equals(sAddr) && "*".equals(gAddr)) {
Andrea Campanella545edb42018-03-20 16:37:29 -070069 mcastRouteManager.getRoutes().forEach(mcastRouteManager::remove);
70 return;
71 }
Pier139babb2018-03-23 14:59:49 -070072 // Removing/updating a specific entry
73 IpAddress sAddrIp = null;
74 //If the source Ip is * we want ASM so we leave it as null and the route will have it as an optional.empty()
75 if (!sAddr.equals("*")) {
76 sAddrIp = IpAddress.valueOf(sAddr);
77 }
78 McastRoute mRoute = new McastRoute(sAddrIp, IpAddress.valueOf(gAddr),
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020079 McastRoute.Type.STATIC);
Pier139babb2018-03-23 14:59:49 -070080 // If the user provides only sAddr and gAddr, we have to remove the route
81 if (host == null || host.isEmpty()) {
82 mcastRouteManager.remove(mRoute);
83 printMcastRoute(D_FORMAT_MAPPING, mRoute);
Andrea Campanella545edb42018-03-20 16:37:29 -070084 return;
85 }
Pier139babb2018-03-23 14:59:49 -070086 // Otherwise we need to remove a specific sink
Andrea Campanella545edb42018-03-20 16:37:29 -070087 HostId hostId = HostId.hostId(host);
Andrea Campanella545edb42018-03-20 16:37:29 -070088 if (!mcastRouteManager.getRoutes().contains(mRoute)) {
89 print("Route is not present, store it first");
Andrea Campanella545edb42018-03-20 16:37:29 -070090 return;
91 }
Ray Milkey6fc64c12018-04-12 09:35:33 -070092 // Remove the entire host id
93 mcastRouteManager.removeSink(mRoute, hostId);
94
Pier139babb2018-03-23 14:59:49 -070095 // We have done
96 printMcastRoute(U_FORMAT_MAPPING, mRoute);
97 }
98
99 private void printMcastRoute(String format, McastRoute mcastRoute) {
100 // If the source is present let's use it, otherwise we need to print *
101 print(format, mcastRoute.type(), mcastRoute.group(),
Andrea Campanella0ddf9b82018-04-27 15:54:42 +0200102 mcastRoute.source().isPresent() ? mcastRoute.source().get() : "*");
Andrea Campanella545edb42018-03-20 16:37:29 -0700103 }
104}