blob: 3d3bca4883ff3e1953c3c64d21c5251caaaebdc6 [file] [log] [blame]
Brian O'Connor5296b322014-10-23 14:59:05 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Brian O'Connor5296b322014-10-23 14:59:05 -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
Brian O'Connor5296b322014-10-23 14:59:05 -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.
Brian O'Connor5296b322014-10-23 14:59:05 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli.net;
Brian O'Connor5296b322014-10-23 14:59:05 -070017
Brian O'Connor5296b322014-10-23 14:59:05 -070018import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
Aaron Kruglikov0a4da0d2015-06-10 14:40:48 -070020import org.apache.karaf.shell.commands.Option;
Toru Furusawa72ee30c2016-01-08 13:29:04 -080021import org.onosproject.net.CltSignalType;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import org.onosproject.net.ConnectPoint;
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +020023import org.onosproject.net.Device;
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070024import org.onosproject.net.OchPort;
25import org.onosproject.net.OduCltPort;
Marc De Leenheer88194c32015-05-29 22:10:59 -070026import org.onosproject.net.DeviceId;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070027import org.onosproject.net.OduSignalType;
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070028import org.onosproject.net.Port;
29import org.onosproject.net.device.DeviceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080030import org.onosproject.net.intent.Intent;
31import org.onosproject.net.intent.IntentService;
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070032import org.onosproject.net.intent.OpticalCircuitIntent;
Brian O'Connorabafb502014-12-02 22:26:20 -080033import org.onosproject.net.intent.OpticalConnectivityIntent;
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +020034import org.onosproject.net.intent.OpticalOduIntent;
Brian O'Connor5296b322014-10-23 14:59:05 -070035
Marc De Leenheer88194c32015-05-29 22:10:59 -070036import java.util.List;
37
38import static com.google.common.base.Preconditions.checkArgument;
39
Brian O'Connor5296b322014-10-23 14:59:05 -070040/**
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070041 * Installs optical connectivity or circuit intents, depending on given port types.
Brian O'Connor5296b322014-10-23 14:59:05 -070042 */
43@Command(scope = "onos", name = "add-optical-intent",
44 description = "Installs optical connectivity intent")
45public class AddOpticalIntentCommand extends ConnectivityIntentCommand {
46
47 @Argument(index = 0, name = "ingressDevice",
48 description = "Ingress Device/Port Description",
49 required = true, multiValued = false)
Ayaka Koshibeafb546f2015-10-23 17:13:58 -070050 String ingressDeviceString = "";
Brian O'Connor5296b322014-10-23 14:59:05 -070051
52 @Argument(index = 1, name = "egressDevice",
53 description = "Egress Device/Port Description",
54 required = true, multiValued = false)
Ayaka Koshibeafb546f2015-10-23 17:13:58 -070055 String egressDeviceString = "";
Aaron Kruglikov0a4da0d2015-06-10 14:40:48 -070056
57 @Option(name = "-b", aliases = "--bidirectional",
58 description = "If this argument is passed the optical link created will be bidirectional, " +
59 "else the link will be unidirectional.",
60 required = false, multiValued = false)
61 private boolean bidirectional = false;
62
Brian O'Connor5296b322014-10-23 14:59:05 -070063
Marc De Leenheer88194c32015-05-29 22:10:59 -070064 private ConnectPoint createConnectPoint(String devicePortString) {
65 String[] splitted = devicePortString.split("/");
66
67 checkArgument(splitted.length == 2,
68 "Connect point must be in \"deviceUri/portNumber\" format");
69
70 DeviceId deviceId = DeviceId.deviceId(splitted[0]);
Marc De Leenheer88194c32015-05-29 22:10:59 -070071 DeviceService deviceService = get(DeviceService.class);
72
73 List<Port> ports = deviceService.getPorts(deviceId);
74
75 for (Port port : ports) {
76 if (splitted[1].equals(port.number().name())) {
77 return new ConnectPoint(deviceId, port.number());
78 }
79 }
80
81 return null;
82 }
83
Brian O'Connor5296b322014-10-23 14:59:05 -070084 @Override
85 protected void execute() {
86 IntentService service = get(IntentService.class);
87
Marc De Leenheer88194c32015-05-29 22:10:59 -070088 ConnectPoint ingress = createConnectPoint(ingressDeviceString);
89 ConnectPoint egress = createConnectPoint(egressDeviceString);
Brian O'Connor5296b322014-10-23 14:59:05 -070090
Marc De Leenheer88194c32015-05-29 22:10:59 -070091 if (ingress == null || egress == null) {
Ayaka Koshibeafb546f2015-10-23 17:13:58 -070092 print("Invalid endpoint(s); could not create optical intent");
93 return;
Marc De Leenheer88194c32015-05-29 22:10:59 -070094 }
Brian O'Connor5296b322014-10-23 14:59:05 -070095
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070096 DeviceService deviceService = get(DeviceService.class);
97 Port srcPort = deviceService.getPort(ingress.deviceId(), ingress.port());
98 Port dstPort = deviceService.getPort(egress.deviceId(), egress.port());
99
100 Intent intent;
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200101
Marc De Leenheer9f7d1892015-05-30 13:22:24 -0700102 if (srcPort instanceof OduCltPort && dstPort instanceof OduCltPort) {
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200103 Device srcDevice = deviceService.getDevice(ingress.deviceId());
104 Device dstDevice = deviceService.getDevice(egress.deviceId());
105
106 // continue only if both OduClt port's Devices are of the same type
107 if (!(srcDevice.type().equals(dstDevice.type()))) {
108 print("Devices without same deviceType: SRC=%s and DST=%s", srcDevice.type(), dstDevice.type());
109 return;
110 }
111
112 CltSignalType signalType = ((OduCltPort) srcPort).signalType();
113 if (Device.Type.ROADM.equals(srcDevice.type())) {
114 intent = OpticalCircuitIntent.builder()
115 .appId(appId())
116 .key(key())
117 .src(ingress)
118 .dst(egress)
119 .signalType(signalType)
120 .bidirectional(bidirectional)
121 .build();
122 } else if (Device.Type.OTN.equals(srcDevice.type())) {
123 intent = OpticalOduIntent.builder()
124 .appId(appId())
125 .key(key())
126 .src(ingress)
127 .dst(egress)
128 .signalType(signalType)
129 .bidirectional(bidirectional)
130 .build();
131 } else {
132 print("Wrong Device Type for connect points %s and %s", ingress, egress);
133 return;
134 }
Marc De Leenheer9f7d1892015-05-30 13:22:24 -0700135 } else if (srcPort instanceof OchPort && dstPort instanceof OchPort) {
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200136 OduSignalType signalType = ((OchPort) srcPort).signalType();
Marc De Leenheer9f7d1892015-05-30 13:22:24 -0700137 intent = OpticalConnectivityIntent.builder()
138 .appId(appId())
139 .key(key())
140 .src(ingress)
141 .dst(egress)
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200142 .signalType(signalType)
Aaron Kruglikov0a4da0d2015-06-10 14:40:48 -0700143 .bidirectional(bidirectional)
Marc De Leenheer9f7d1892015-05-30 13:22:24 -0700144 .build();
145 } else {
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200146 print("Unable to create optical intent between connect points %s and %s", ingress, egress);
Marc De Leenheer9f7d1892015-05-30 13:22:24 -0700147 return;
148 }
149
Brian O'Connor5296b322014-10-23 14:59:05 -0700150 service.submit(intent);
Ray Milkeycb33a132015-02-02 10:05:12 -0800151 print("Optical intent submitted:\n%s", intent.toString());
Brian O'Connor5296b322014-10-23 14:59:05 -0700152 }
Brian O'Connor5296b322014-10-23 14:59:05 -0700153}