blob: b2b4b8218079031fbba033b35109e90a1fe26a8c [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;
Yuta HIGUCHI23547b32016-09-01 16:02:40 -070028import static org.onosproject.net.intent.constraint.ProtectionConstraint.protection;
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
Yuta HIGUCHIcd318502016-09-01 14:25:58 -070049 // -p already defined in ConnectivityIntentCommand
50 @Option(name = "-r", aliases = "--protect",
helenyrwu2a674902016-07-20 09:48:04 -070051 description = "Utilize path protection",
52 required = false, multiValued = false)
53 private boolean backup = false;
54
Ray Milkeya058c732014-10-08 13:52:34 -070055 @Override
56 protected void execute() {
57 IntentService service = get(IntentService.class);
58
Jonathan Hartc3af35a2015-04-30 22:20:29 -070059 ConnectPoint ingress = ConnectPoint.deviceConnectPoint(ingressDeviceString);
Ray Milkeya058c732014-10-08 13:52:34 -070060
Jonathan Hartc3af35a2015-04-30 22:20:29 -070061 ConnectPoint egress = ConnectPoint.deviceConnectPoint(egressDeviceString);
Ray Milkeya058c732014-10-08 13:52:34 -070062
Ray Milkey9fdf1ea2014-10-21 09:48:02 -070063 TrafficSelector selector = buildTrafficSelector();
Ray Milkeyac1441d2014-11-13 09:31:47 -080064 TrafficTreatment treatment = buildTrafficTreatment();
Ray Milkeya058c732014-10-08 13:52:34 -070065
Ray Milkey460f4022014-11-05 15:41:43 -080066 List<Constraint> constraints = buildConstraints();
helenyrwu2a674902016-07-20 09:48:04 -070067 if (backup) {
Yuta HIGUCHI23547b32016-09-01 16:02:40 -070068 constraints.add(protection());
helenyrwu2a674902016-07-20 09:48:04 -070069 }
Ray Milkey460f4022014-11-05 15:41:43 -080070
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070071 Intent intent = PointToPointIntent.builder()
72 .appId(appId())
73 .key(key())
74 .selector(selector)
75 .treatment(treatment)
76 .ingressPoint(ingress)
77 .egressPoint(egress)
78 .constraints(constraints)
79 .priority(priority())
80 .build();
Ray Milkeya058c732014-10-08 13:52:34 -070081 service.submit(intent);
Ray Milkeycb33a132015-02-02 10:05:12 -080082 print("Point to point intent submitted:\n%s", intent.toString());
Ray Milkeya058c732014-10-08 13:52:34 -070083 }
Ray Milkeya058c732014-10-08 13:52:34 -070084}