blob: 1c32d426b196f6bbe566d13837c6e92dc67f77e4 [file] [log] [blame]
Madan Jampanic27b6b22016-02-05 11:36:31 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Madan Jampanic27b6b22016-02-05 11:36:31 -08003 *
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 */
Jonathan Hart1d006392016-02-11 09:12:56 -080016package org.onosproject.cli.net;
Madan Jampanic27b6b22016-02-05 11:36:31 -080017
Ray Milkeyd84f89b2018-08-17 14:54:17 -070018import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
Jonathan Hart1d006392016-02-11 09:12:56 -080021import org.onlab.packet.IpAddress;
Madan Jampanic27b6b22016-02-05 11:36:31 -080022import org.onosproject.cli.AbstractShellCommand;
Madan Jampanic27b6b22016-02-05 11:36:31 -080023import org.onosproject.net.ConnectPoint;
24import org.onosproject.net.mcast.McastRoute;
25import org.onosproject.net.mcast.MulticastRouteService;
26
27/**
28 * Installs a source, multicast group flow.
29 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070030@Service
Madan Jampanic27b6b22016-02-05 11:36:31 -080031@Command(scope = "onos", name = "mcast-join",
32 description = "Installs a source, multicast group flow")
33public class McastJoinCommand extends AbstractShellCommand {
34
Pier Luigib29144d2018-01-15 18:06:43 +010035 // Format for group line
36 private static final String FORMAT_MAPPING = "Added the mcast route: " +
37 "origin=%s, group=%s, source=%s";
38
Madan Jampanic27b6b22016-02-05 11:36:31 -080039 @Argument(index = 0, name = "sAddr",
40 description = "IP Address of the multicast source. '*' can be used for any source (*, G) entry",
41 required = true, multiValued = false)
42 String sAddr = null;
43
44 @Argument(index = 1, name = "gAddr",
45 description = "IP Address of the multicast group",
46 required = true, multiValued = false)
47 String gAddr = null;
48
49 @Argument(index = 2, name = "ingressPort",
50 description = "Ingress port of:XXXXXXXXXX/XX",
51 required = false, multiValued = false)
52 String ingressPort = null;
53
54 @Argument(index = 3, name = "ports",
55 description = "Egress ports of:XXXXXXXXXX/XX...",
56 required = false, multiValued = true)
57 String[] ports = null;
58
59 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070060 protected void doExecute() {
Jonathan Hart1d006392016-02-11 09:12:56 -080061 MulticastRouteService mcastRouteManager = get(MulticastRouteService.class);
Madan Jampanic27b6b22016-02-05 11:36:31 -080062
Jonathan Hart1d006392016-02-11 09:12:56 -080063 McastRoute mRoute = new McastRoute(IpAddress.valueOf(sAddr),
64 IpAddress.valueOf(gAddr), McastRoute.Type.STATIC);
Madan Jampanic27b6b22016-02-05 11:36:31 -080065 mcastRouteManager.add(mRoute);
66
Jonathan Hart1d006392016-02-11 09:12:56 -080067 if (ingressPort != null) {
68 ConnectPoint ingress = ConnectPoint.deviceConnectPoint(ingressPort);
69 mcastRouteManager.addSource(mRoute, ingress);
Madan Jampanic27b6b22016-02-05 11:36:31 -080070 }
Jonathan Hart1d006392016-02-11 09:12:56 -080071
72 if (ports != null) {
73 for (String egCP : ports) {
Jonathan Hart1d006392016-02-11 09:12:56 -080074 ConnectPoint egress = ConnectPoint.deviceConnectPoint(egCP);
75 mcastRouteManager.addSink(mRoute, egress);
76
77 }
78 }
Pier Luigib29144d2018-01-15 18:06:43 +010079 printMcastRoute(mRoute);
80 }
81
82 private void printMcastRoute(McastRoute mcastRoute) {
83 print(FORMAT_MAPPING, mcastRoute.type(), mcastRoute.group(), mcastRoute.source());
Madan Jampanic27b6b22016-02-05 11:36:31 -080084 }
85}