blob: c76bc3d528727179d8b249468ed21d2bdfc07e15 [file] [log] [blame]
Brian O'Connor5296b322014-10-23 14:59:05 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 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;
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.net.ConnectPoint;
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070021import org.onosproject.net.OchPort;
22import org.onosproject.net.OduCltPort;
Marc De Leenheer88194c32015-05-29 22:10:59 -070023import org.onosproject.net.DeviceId;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070024import org.onosproject.net.OduSignalType;
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070025import org.onosproject.net.Port;
26import org.onosproject.net.device.DeviceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080027import org.onosproject.net.intent.Intent;
28import org.onosproject.net.intent.IntentService;
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070029import org.onosproject.net.intent.OpticalCircuitIntent;
Brian O'Connorabafb502014-12-02 22:26:20 -080030import org.onosproject.net.intent.OpticalConnectivityIntent;
Brian O'Connor5296b322014-10-23 14:59:05 -070031
Marc De Leenheer88194c32015-05-29 22:10:59 -070032import java.util.List;
33
34import static com.google.common.base.Preconditions.checkArgument;
35
Brian O'Connor5296b322014-10-23 14:59:05 -070036/**
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070037 * Installs optical connectivity or circuit intents, depending on given port types.
Brian O'Connor5296b322014-10-23 14:59:05 -070038 */
39@Command(scope = "onos", name = "add-optical-intent",
40 description = "Installs optical connectivity intent")
41public class AddOpticalIntentCommand extends ConnectivityIntentCommand {
42
43 @Argument(index = 0, name = "ingressDevice",
44 description = "Ingress Device/Port Description",
45 required = true, multiValued = false)
46 String ingressDeviceString = null;
47
48 @Argument(index = 1, name = "egressDevice",
49 description = "Egress Device/Port Description",
50 required = true, multiValued = false)
51 String egressDeviceString = null;
52
Marc De Leenheer88194c32015-05-29 22:10:59 -070053 private ConnectPoint createConnectPoint(String devicePortString) {
54 String[] splitted = devicePortString.split("/");
55
56 checkArgument(splitted.length == 2,
57 "Connect point must be in \"deviceUri/portNumber\" format");
58
59 DeviceId deviceId = DeviceId.deviceId(splitted[0]);
60
61 DeviceService deviceService = get(DeviceService.class);
62
63 List<Port> ports = deviceService.getPorts(deviceId);
64
65 for (Port port : ports) {
66 if (splitted[1].equals(port.number().name())) {
67 return new ConnectPoint(deviceId, port.number());
68 }
69 }
70
71 return null;
72 }
73
Brian O'Connor5296b322014-10-23 14:59:05 -070074 @Override
75 protected void execute() {
76 IntentService service = get(IntentService.class);
77
Marc De Leenheer88194c32015-05-29 22:10:59 -070078 ConnectPoint ingress = createConnectPoint(ingressDeviceString);
79 ConnectPoint egress = createConnectPoint(egressDeviceString);
Brian O'Connor5296b322014-10-23 14:59:05 -070080
Marc De Leenheer88194c32015-05-29 22:10:59 -070081 if (ingress == null || egress == null) {
82 print("Could not create optical intent");
83 }
Brian O'Connor5296b322014-10-23 14:59:05 -070084
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070085 DeviceService deviceService = get(DeviceService.class);
86 Port srcPort = deviceService.getPort(ingress.deviceId(), ingress.port());
87 Port dstPort = deviceService.getPort(egress.deviceId(), egress.port());
88
89 Intent intent;
90 // FIXME: Hardcoded signal types
91 if (srcPort instanceof OduCltPort && dstPort instanceof OduCltPort) {
92 intent = OpticalCircuitIntent.builder()
93 .appId(appId())
94 .key(key())
95 .src(ingress)
96 .dst(egress)
97 .signalType(OduCltPort.SignalType.CLT_10GBE)
98 .build();
99 } else if (srcPort instanceof OchPort && dstPort instanceof OchPort) {
100 intent = OpticalConnectivityIntent.builder()
101 .appId(appId())
102 .key(key())
103 .src(ingress)
104 .dst(egress)
105 .signalType(OduSignalType.ODU4)
106 .build();
107 } else {
108 print("Unable to create optical intent between connect points {} and {}", ingress, egress);
109 return;
110 }
111
Brian O'Connor5296b322014-10-23 14:59:05 -0700112 service.submit(intent);
Ray Milkeycb33a132015-02-02 10:05:12 -0800113 print("Optical intent submitted:\n%s", intent.toString());
Brian O'Connor5296b322014-10-23 14:59:05 -0700114 }
Brian O'Connor5296b322014-10-23 14:59:05 -0700115}