blob: dde909dd20ffda780546326746a239af73408774 [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;
Ray Milkeyc53a0d22018-10-09 15:06:38 -070020import org.apache.karaf.shell.api.action.Completion;
Ray Milkey7a2dee52018-09-28 10:58:28 -070021import org.apache.karaf.shell.api.action.lifecycle.Service;
Naoki Shiota5a056062016-05-05 18:43:59 -070022import org.onlab.util.Bandwidth;
23import org.onosproject.cli.AbstractShellCommand;
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080024import org.onosproject.cli.net.ConnectPointCompleter;
Naoki Shiota5a056062016-05-05 18:43:59 -070025import org.onosproject.newoptical.api.OpticalConnectivityId;
26import org.onosproject.newoptical.api.OpticalPathService;
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080027import org.slf4j.Logger;
28import org.slf4j.LoggerFactory;
Naoki Shiota5a056062016-05-05 18:43:59 -070029import org.onosproject.net.ConnectPoint;
30import org.onosproject.net.DeviceId;
31import org.onosproject.net.PortNumber;
32
Ray Milkey7a2dee52018-09-28 10:58:28 -070033@Service
Naoki Shiota5a056062016-05-05 18:43:59 -070034@Command(scope = "onos", name = "add-optical-connectivity",
35 description = "Configure optical domain connectivity")
36public class AddOpticalConnectivityCommand extends AbstractShellCommand {
37
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080038 private final Logger log = LoggerFactory.getLogger(getClass());
39
40 // for OSGi import workaround
41 ConnectPointCompleter portCompleter;
42
Naoki Shiota5a056062016-05-05 18:43:59 -070043 @Argument(index = 0, name = "ingress", description = "Ingress connect point",
44 required = true, multiValued = false)
Ray Milkeyc53a0d22018-10-09 15:06:38 -070045 @Completion(ConnectPointCompleter.class)
Naoki Shiota5a056062016-05-05 18:43:59 -070046 String ingressStr = null;
47
48 @Argument(index = 1, name = "egress", description = "Egress connect point",
49 required = true, multiValued = false)
Ray Milkeyc53a0d22018-10-09 15:06:38 -070050 @Completion(ConnectPointCompleter.class)
Naoki Shiota5a056062016-05-05 18:43:59 -070051 String egressStr = null;
52
53 @Argument(index = 2, name = "bandwidth", description = "Bandwidth",
54 required = false, multiValued = false)
55 String bandwidthStr = null;
56
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080057 // not supported yet
Naoki Shiota5a056062016-05-05 18:43:59 -070058 @Argument(index = 3, name = "latency", description = "Latency",
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080059 required = false, multiValued = false)
Naoki Shiota5a056062016-05-05 18:43:59 -070060 String latencyStr = null;
61
62
63 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070064 protected void doExecute() {
Naoki Shiota5a056062016-05-05 18:43:59 -070065 OpticalPathService opticalPathService = get(OpticalPathService.class);
66
67 ConnectPoint ingress = readConnectPoint(ingressStr);
68 ConnectPoint egress = readConnectPoint(egressStr);
69 if (ingress == null || egress == null) {
70 print("Invalid connect points: %s, %s", ingressStr, egressStr);
71 return;
72 }
73
74 Bandwidth bandwidth = (bandwidthStr == null || bandwidthStr.isEmpty()) ? null :
75 Bandwidth.bps(Long.valueOf(bandwidthStr));
76
77 print("Trying to setup connectivity between %s and %s.", ingress, egress);
78 OpticalConnectivityId id = opticalPathService.setupConnectivity(ingress, egress, bandwidth, null);
79 if (id == null) {
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080080 print("Failed. See ONOS log for more details.");
81 print(" log:set TRACE org.onosproject.newoptical.OpticalPathProvisioner");
Naoki Shiota5a056062016-05-05 18:43:59 -070082 return;
83 }
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080084 // FIXME This is the last chance to know the Optical path ID.
85 // there's no other way to know existing Optical Path ID
Naoki Shiota5a056062016-05-05 18:43:59 -070086 print("Optical path ID : %s", id.id());
Yuta HIGUCHI031247c2017-03-14 20:56:04 -070087 log.info("Optical path ID {} for connectivity between {} and {}",
Yuta HIGUCHI806113f2017-03-07 22:46:20 -080088 id.id(), ingress, egress);
Naoki Shiota5a056062016-05-05 18:43:59 -070089 }
90
91 private ConnectPoint readConnectPoint(String str) {
92 String[] strings = str.split("/");
93 if (strings.length != 2) {
94 return null;
95 }
96
97 DeviceId devId = DeviceId.deviceId(strings[0]);
98 PortNumber port = PortNumber.portNumber(strings[1]);
99
100 return new ConnectPoint(devId, port);
101 }
102
103}