blob: 17f1072c3dfeec519bec39c3efd825d2abff639e [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;
Ray Milkey0068fd02018-10-11 15:45:39 -070020import org.apache.karaf.shell.api.action.Completion;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070021import org.apache.karaf.shell.api.action.lifecycle.Service;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import org.onosproject.net.ConnectPoint;
Brian O'Connorabafb502014-12-02 22:26:20 -080023import org.onosproject.net.flow.TrafficSelector;
24import org.onosproject.net.flow.TrafficTreatment;
25import org.onosproject.net.intent.Constraint;
26import org.onosproject.net.intent.IntentService;
27import org.onosproject.net.intent.SinglePointToMultiPointIntent;
Michele Santuari4a338072014-11-05 18:38:55 +010028
Jonathan Hartc3af35a2015-04-30 22:20:29 -070029import java.util.HashSet;
30import java.util.List;
31import java.util.Set;
Jonathan Hart9a4157b2015-02-05 10:19:29 -080032
Charles M.C. Chan6f5bdc62015-04-22 01:21:09 +080033/**
34 * Installs connectivity intent between a single ingress device and multiple egress devices.
35 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070036@Service
Michele Santuari4a338072014-11-05 18:38:55 +010037@Command(scope = "onos", name = "add-single-to-multi-intent",
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070038 description = "Installs connectivity intent between a single ingress device and multiple egress devices")
Michele Santuari4a338072014-11-05 18:38:55 +010039public class AddSinglePointToMultiPointIntentCommand extends ConnectivityIntentCommand {
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070040 @Argument(index = 0, name = "ingressDevice egressDevices",
41 description = "ingressDevice/Port egressDevice/Port...egressDevice/Port",
Michele Santuari4a338072014-11-05 18:38:55 +010042 required = true, multiValued = true)
Ray Milkey0068fd02018-10-11 15:45:39 -070043 @Completion(ConnectPointCompleter.class)
Michele Santuari4a338072014-11-05 18:38:55 +010044 String[] deviceStrings = null;
45
46 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070047 protected void doExecute() {
Michele Santuari4a338072014-11-05 18:38:55 +010048 IntentService service = get(IntentService.class);
49
50 if (deviceStrings.length < 2) {
51 return;
52 }
53
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070054 String ingressDeviceString = deviceStrings[0];
Jonathan Hartc3af35a2015-04-30 22:20:29 -070055 ConnectPoint ingressPoint = ConnectPoint.deviceConnectPoint(ingressDeviceString);
Michele Santuari4a338072014-11-05 18:38:55 +010056
57 Set<ConnectPoint> egressPoints = new HashSet<>();
Pavlin Radoslavov70761df2015-03-09 11:05:49 -070058 for (int index = 1; index < deviceStrings.length; index++) {
Michele Santuari4a338072014-11-05 18:38:55 +010059 String egressDeviceString = deviceStrings[index];
Jonathan Hartc3af35a2015-04-30 22:20:29 -070060 ConnectPoint egress = ConnectPoint.deviceConnectPoint(egressDeviceString);
Michele Santuari4a338072014-11-05 18:38:55 +010061 egressPoints.add(egress);
62 }
63
64 TrafficSelector selector = buildTrafficSelector();
Brian O'Connor406e2642016-04-18 11:45:35 -070065 TrafficTreatment treatment = buildTrafficTreatment();
Michele Santuari4a338072014-11-05 18:38:55 +010066 List<Constraint> constraints = buildConstraints();
67
Ray Milkey5b3717e2015-02-05 11:44:08 -080068 SinglePointToMultiPointIntent intent =
Ray Milkeyebc5d222015-03-18 15:45:36 -070069 SinglePointToMultiPointIntent.builder()
70 .appId(appId())
71 .key(key())
72 .selector(selector)
73 .treatment(treatment)
74 .ingressPoint(ingressPoint)
75 .egressPoints(egressPoints)
76 .constraints(constraints)
77 .priority(priority())
Luca Prete670ac5d2017-02-03 15:55:43 -080078 .resourceGroup(resourceGroup())
Ray Milkeyebc5d222015-03-18 15:45:36 -070079 .build();
Michele Santuari4a338072014-11-05 18:38:55 +010080 service.submit(intent);
Ray Milkeycb33a132015-02-02 10:05:12 -080081 print("Single point to multipoint intent submitted:\n%s", intent.toString());
Michele Santuari4a338072014-11-05 18:38:55 +010082 }
83
Michele Santuari4a338072014-11-05 18:38:55 +010084}