blob: 51984b332b743e519d9ca21a2bb894d86e3860d8 [file] [log] [blame]
Naoki Shiota5a056062016-05-05 18:43:59 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Naoki Shiota5a056062016-05-05 18:43:59 -07003 *
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 */
16package org.onosproject.newoptical.cli;
17
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
Naoki Shiota5a056062016-05-05 18:43:59 -070020import org.onlab.util.Bandwidth;
21import org.onosproject.cli.AbstractShellCommand;
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080022import org.onosproject.cli.net.ConnectPointCompleter;
Naoki Shiota5a056062016-05-05 18:43:59 -070023import org.onosproject.newoptical.api.OpticalConnectivityId;
24import org.onosproject.newoptical.api.OpticalPathService;
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080025import org.slf4j.Logger;
26import org.slf4j.LoggerFactory;
Naoki Shiota5a056062016-05-05 18:43:59 -070027import org.onosproject.net.ConnectPoint;
28import org.onosproject.net.DeviceId;
29import org.onosproject.net.PortNumber;
30
31@Command(scope = "onos", name = "add-optical-connectivity",
32 description = "Configure optical domain connectivity")
33public class AddOpticalConnectivityCommand extends AbstractShellCommand {
34
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080035 private final Logger log = LoggerFactory.getLogger(getClass());
36
37 // for OSGi import workaround
38 ConnectPointCompleter portCompleter;
39
Naoki Shiota5a056062016-05-05 18:43:59 -070040 @Argument(index = 0, name = "ingress", description = "Ingress connect point",
41 required = true, multiValued = false)
42 String ingressStr = null;
43
44 @Argument(index = 1, name = "egress", description = "Egress connect point",
45 required = true, multiValued = false)
46 String egressStr = null;
47
48 @Argument(index = 2, name = "bandwidth", description = "Bandwidth",
49 required = false, multiValued = false)
50 String bandwidthStr = null;
51
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080052 // not supported yet
Naoki Shiota5a056062016-05-05 18:43:59 -070053 @Argument(index = 3, name = "latency", description = "Latency",
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080054 required = false, multiValued = false)
Naoki Shiota5a056062016-05-05 18:43:59 -070055 String latencyStr = null;
56
57
58 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070059 protected void doExecute() {
Naoki Shiota5a056062016-05-05 18:43:59 -070060 OpticalPathService opticalPathService = get(OpticalPathService.class);
61
62 ConnectPoint ingress = readConnectPoint(ingressStr);
63 ConnectPoint egress = readConnectPoint(egressStr);
64 if (ingress == null || egress == null) {
65 print("Invalid connect points: %s, %s", ingressStr, egressStr);
66 return;
67 }
68
69 Bandwidth bandwidth = (bandwidthStr == null || bandwidthStr.isEmpty()) ? null :
70 Bandwidth.bps(Long.valueOf(bandwidthStr));
71
72 print("Trying to setup connectivity between %s and %s.", ingress, egress);
73 OpticalConnectivityId id = opticalPathService.setupConnectivity(ingress, egress, bandwidth, null);
74 if (id == null) {
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080075 print("Failed. See ONOS log for more details.");
76 print(" log:set TRACE org.onosproject.newoptical.OpticalPathProvisioner");
Naoki Shiota5a056062016-05-05 18:43:59 -070077 return;
78 }
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080079 // FIXME This is the last chance to know the Optical path ID.
80 // there's no other way to know existing Optical Path ID
Naoki Shiota5a056062016-05-05 18:43:59 -070081 print("Optical path ID : %s", id.id());
Yuta HIGUCHI031247c2017-03-14 20:56:04 -070082 log.info("Optical path ID {} for connectivity between {} and {}",
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080083 id.id(), ingress, egress);
Naoki Shiota5a056062016-05-05 18:43:59 -070084 }
85
86 private ConnectPoint readConnectPoint(String str) {
87 String[] strings = str.split("/");
88 if (strings.length != 2) {
89 return null;
90 }
91
92 DeviceId devId = DeviceId.deviceId(strings[0]);
93 PortNumber port = PortNumber.portNumber(strings[1]);
94
95 return new ConnectPoint(devId, port);
96 }
97
98}