blob: 14db5472a709d45c37637cb513f0d15d40c73e66 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska7d693f52014-10-21 19:17:57 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska7d693f52014-10-21 19:17:57 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska7d693f52014-10-21 19:17:57 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli.net;
Ray Milkeya058c732014-10-08 13:52:34 -070017
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
helenyrwu2a674902016-07-20 09:48:04 -070020import org.apache.karaf.shell.commands.Option;
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.Intent;
26import org.onosproject.net.intent.IntentService;
27import org.onosproject.net.intent.PointToPointIntent;
helenyrwu2a674902016-07-20 09:48:04 -070028import org.onosproject.net.intent.constraint.ProtectionConstraint;
Thomas Vachuskab97cf282014-10-20 23:31:12 -070029
Jonathan Hartc3af35a2015-04-30 22:20:29 -070030import java.util.List;
Ray Milkey5b3717e2015-02-05 11:44:08 -080031
Ray Milkeya058c732014-10-08 13:52:34 -070032/**
33 * Installs point-to-point connectivity intents.
34 */
35@Command(scope = "onos", name = "add-point-intent",
36 description = "Installs point-to-point connectivity intent")
Ray Milkey9fdf1ea2014-10-21 09:48:02 -070037public class AddPointToPointIntentCommand extends ConnectivityIntentCommand {
Ray Milkeya058c732014-10-08 13:52:34 -070038
39 @Argument(index = 0, name = "ingressDevice",
40 description = "Ingress Device/Port Description",
41 required = true, multiValued = false)
42 String ingressDeviceString = null;
43
44 @Argument(index = 1, name = "egressDevice",
45 description = "Egress Device/Port Description",
46 required = true, multiValued = false)
47 String egressDeviceString = null;
48
helenyrwu2a674902016-07-20 09:48:04 -070049 @Option(name = "-p", aliases = "--protect",
50 description = "Utilize path protection",
51 required = false, multiValued = false)
52 private boolean backup = false;
53
Ray Milkeya058c732014-10-08 13:52:34 -070054 @Override
55 protected void execute() {
56 IntentService service = get(IntentService.class);
57
Jonathan Hartc3af35a2015-04-30 22:20:29 -070058 ConnectPoint ingress = ConnectPoint.deviceConnectPoint(ingressDeviceString);
Ray Milkeya058c732014-10-08 13:52:34 -070059
Jonathan Hartc3af35a2015-04-30 22:20:29 -070060 ConnectPoint egress = ConnectPoint.deviceConnectPoint(egressDeviceString);
Ray Milkeya058c732014-10-08 13:52:34 -070061
Ray Milkey9fdf1ea2014-10-21 09:48:02 -070062 TrafficSelector selector = buildTrafficSelector();
Ray Milkeyac1441d2014-11-13 09:31:47 -080063 TrafficTreatment treatment = buildTrafficTreatment();
Ray Milkeya058c732014-10-08 13:52:34 -070064
Ray Milkey460f4022014-11-05 15:41:43 -080065 List<Constraint> constraints = buildConstraints();
helenyrwu2a674902016-07-20 09:48:04 -070066 if (backup) {
67 constraints.add(new ProtectionConstraint());
68 }
Ray Milkey460f4022014-11-05 15:41:43 -080069
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070070 Intent intent = PointToPointIntent.builder()
71 .appId(appId())
72 .key(key())
73 .selector(selector)
74 .treatment(treatment)
75 .ingressPoint(ingress)
76 .egressPoint(egress)
77 .constraints(constraints)
78 .priority(priority())
79 .build();
Ray Milkeya058c732014-10-08 13:52:34 -070080 service.submit(intent);
Ray Milkeycb33a132015-02-02 10:05:12 -080081 print("Point to point intent submitted:\n%s", intent.toString());
Ray Milkeya058c732014-10-08 13:52:34 -070082 }
Ray Milkeya058c732014-10-08 13:52:34 -070083}