blob: c868f1976af1d268ee725410ac1834079ac225a8 [file] [log] [blame]
alshabibab984662014-12-04 18:56:18 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
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
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;
Brian O'Connorabafb502014-12-02 22:26:20 -080021import org.onosproject.net.ConnectPoint;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import 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 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070035@Service
Michele Santuari4a338072014-11-05 18:38:55 +010036@Command(scope = "onos", name = "add-single-to-multi-intent",
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070037 description = "Installs connectivity intent between a single ingress device and multiple egress devices")
Michele Santuari4a338072014-11-05 18:38:55 +010038public class AddSinglePointToMultiPointIntentCommand extends ConnectivityIntentCommand {
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070039 @Argument(index = 0, name = "ingressDevice egressDevices",
40 description = "ingressDevice/Port egressDevice/Port...egressDevice/Port",
Michele Santuari4a338072014-11-05 18:38:55 +010041 required = true, multiValued = true)
42 String[] deviceStrings = null;
43
44 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070045 protected void doExecute() {
Michele Santuari4a338072014-11-05 18:38:55 +010046 IntentService service = get(IntentService.class);
47
48 if (deviceStrings.length < 2) {
49 return;
50 }
51
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070052 String ingressDeviceString = deviceStrings[0];
Jonathan Hartc3af35a2015-04-30 22:20:29 -070053 ConnectPoint ingressPoint = ConnectPoint.deviceConnectPoint(ingressDeviceString);
Michele Santuari4a338072014-11-05 18:38:55 +010054
55 Set<ConnectPoint> egressPoints = new HashSet<>();
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070056 for (int index = 1; index < deviceStrings.length; index++) {
Michele Santuari4a338072014-11-05 18:38:55 +010057 String egressDeviceString = deviceStrings[index];
Jonathan Hartc3af35a2015-04-30 22:20:29 -070058 ConnectPoint egress = ConnectPoint.deviceConnectPoint(egressDeviceString);
Michele Santuari4a338072014-11-05 18:38:55 +010059 egressPoints.add(egress);
60 }
61
62 TrafficSelector selector = buildTrafficSelector();
Brian O'Connor406e2642016-04-18 11:45:35 -070063 TrafficTreatment treatment = buildTrafficTreatment();
Michele Santuari4a338072014-11-05 18:38:55 +010064 List<Constraint> constraints = buildConstraints();
65
Ray Milkey5b3717e2015-02-05 11:44:08 -080066 SinglePointToMultiPointIntent intent =
Ray Milkeyebc5d222015-03-18 15:45:36 -070067 SinglePointToMultiPointIntent.builder()
68 .appId(appId())
69 .key(key())
70 .selector(selector)
71 .treatment(treatment)
72 .ingressPoint(ingressPoint)
73 .egressPoints(egressPoints)
74 .constraints(constraints)
75 .priority(priority())
Luca Prete670ac5d2017-02-03 15:55:43 -080076 .resourceGroup(resourceGroup())
Ray Milkeyebc5d222015-03-18 15:45:36 -070077 .build();
Michele Santuari4a338072014-11-05 18:38:55 +010078 service.submit(intent);
Ray Milkeycb33a132015-02-02 10:05:12 -080079 print("Single point to multipoint intent submitted:\n%s", intent.toString());
Michele Santuari4a338072014-11-05 18:38:55 +010080 }
81
Michele Santuari4a338072014-11-05 18:38:55 +010082}