blob: 30133bd4420d89091457f1509847cf40a3c057f7 [file] [log] [blame]
alshabibab984662014-12-04 18:56:18 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
alshabibab984662014-12-04 18:56:18 -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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli.net;
Michele Santuari4a338072014-11-05 18:38:55 +010017
Michele Santuari4a338072014-11-05 18:38:55 +010018import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.net.ConnectPoint;
Brian O'Connorabafb502014-12-02 22:26:20 -080021import org.onosproject.net.flow.DefaultTrafficTreatment;
22import org.onosproject.net.flow.TrafficSelector;
23import org.onosproject.net.flow.TrafficTreatment;
24import org.onosproject.net.intent.Constraint;
25import org.onosproject.net.intent.IntentService;
26import org.onosproject.net.intent.SinglePointToMultiPointIntent;
Michele Santuari4a338072014-11-05 18:38:55 +010027
Jonathan Hartc3af35a2015-04-30 22:20:29 -070028import java.util.HashSet;
29import java.util.List;
30import java.util.Set;
Jonathan Hart9a4157b2015-02-05 10:19:29 -080031
Charles M.C. Chan6f5bdc62015-04-22 01:21:09 +080032/**
33 * Installs connectivity intent between a single ingress device and multiple egress devices.
34 */
Michele Santuari4a338072014-11-05 18:38:55 +010035@Command(scope = "onos", name = "add-single-to-multi-intent",
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070036 description = "Installs connectivity intent between a single ingress device and multiple egress devices")
Michele Santuari4a338072014-11-05 18:38:55 +010037public class AddSinglePointToMultiPointIntentCommand extends ConnectivityIntentCommand {
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070038 @Argument(index = 0, name = "ingressDevice egressDevices",
39 description = "ingressDevice/Port egressDevice/Port...egressDevice/Port",
Michele Santuari4a338072014-11-05 18:38:55 +010040 required = true, multiValued = true)
41 String[] deviceStrings = null;
42
43 @Override
44 protected void execute() {
45 IntentService service = get(IntentService.class);
46
47 if (deviceStrings.length < 2) {
48 return;
49 }
50
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070051 String ingressDeviceString = deviceStrings[0];
Jonathan Hartc3af35a2015-04-30 22:20:29 -070052 ConnectPoint ingressPoint = ConnectPoint.deviceConnectPoint(ingressDeviceString);
Michele Santuari4a338072014-11-05 18:38:55 +010053
54 Set<ConnectPoint> egressPoints = new HashSet<>();
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070055 for (int index = 1; index < deviceStrings.length; index++) {
Michele Santuari4a338072014-11-05 18:38:55 +010056 String egressDeviceString = deviceStrings[index];
Jonathan Hartc3af35a2015-04-30 22:20:29 -070057 ConnectPoint egress = ConnectPoint.deviceConnectPoint(egressDeviceString);
Michele Santuari4a338072014-11-05 18:38:55 +010058 egressPoints.add(egress);
59 }
60
61 TrafficSelector selector = buildTrafficSelector();
Brian O'Connor6b528132015-03-10 16:39:52 -070062 TrafficTreatment treatment = DefaultTrafficTreatment.emptyTreatment();
Michele Santuari4a338072014-11-05 18:38:55 +010063 List<Constraint> constraints = buildConstraints();
64
Ray Milkey5b3717e2015-02-05 11:44:08 -080065 SinglePointToMultiPointIntent intent =
Ray Milkeyebc5d222015-03-18 15:45:36 -070066 SinglePointToMultiPointIntent.builder()
67 .appId(appId())
68 .key(key())
69 .selector(selector)
70 .treatment(treatment)
71 .ingressPoint(ingressPoint)
72 .egressPoints(egressPoints)
73 .constraints(constraints)
74 .priority(priority())
75 .build();
Michele Santuari4a338072014-11-05 18:38:55 +010076 service.submit(intent);
Ray Milkeycb33a132015-02-02 10:05:12 -080077 print("Single point to multipoint intent submitted:\n%s", intent.toString());
Michele Santuari4a338072014-11-05 18:38:55 +010078 }
79
Michele Santuari4a338072014-11-05 18:38:55 +010080}