blob: f1d686db348d973169f43c3884f34180b717a458 [file] [log] [blame]
/*
* Copyright 2016-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.net.optical.cli;
import org.apache.karaf.shell.commands.Argument;
import org.apache.karaf.shell.commands.Command;
import org.apache.karaf.shell.commands.Option;
import org.onosproject.cli.app.AllApplicationNamesCompleter;
import org.onosproject.cli.net.ConnectPointCompleter;
import org.onosproject.cli.net.ConnectivityIntentCommand;
import org.onosproject.net.ChannelSpacing;
import org.onosproject.net.CltSignalType;
import org.onosproject.net.ConnectPoint;
import org.onosproject.net.Device;
import org.onosproject.net.DeviceId;
import org.onosproject.net.GridType;
import org.onosproject.net.OchSignal;
import org.onosproject.net.OduSignalType;
import org.onosproject.net.Port;
import org.onosproject.net.device.DeviceService;
import org.onosproject.net.intent.Intent;
import org.onosproject.net.intent.IntentService;
import org.onosproject.net.intent.OpticalCircuitIntent;
import org.onosproject.net.intent.OpticalConnectivityIntent;
import org.onosproject.net.intent.OpticalOduIntent;
import org.onosproject.net.optical.OchPort;
import org.onosproject.net.optical.OduCltPort;
import java.util.Map;
import java.util.HashMap;
import java.util.AbstractMap.SimpleEntry;
import java.util.List;
import java.util.stream.Stream;
import java.util.stream.Collectors;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static org.onosproject.net.optical.device.OpticalDeviceServiceView.opticalView;
/**
* Installs optical connectivity or circuit intents, depending on given port types.
*/
@Command(scope = "onos", name = "add-optical-intent",
description = "Installs optical connectivity intent")
public class AddOpticalIntentCommand extends ConnectivityIntentCommand {
private static final String SIGNAL_FORMAT = "slotGranularity/channelSpacing(in GHz e.g 6.25,12.5,25,50,100)/" +
"spaceMultiplier/gridType(cwdm, flex, dwdm) " + "e.g 1/6.25/1/flex";
private static final String FLEX = "FLEX";
private static final String DWDM = "DWDM";
private static final String CWDM = "CWDM";
private static final String CH_6P25 = "6.25";
private static final String CH_12P5 = "12.5";
private static final String CH_25 = "25";
private static final String CH_50 = "50";
private static final String CH_100 = "100";
private static final Map<String, ChannelSpacing> CHANNEL_SPACING_MAP = createChannelSpacingMap();
private static final Map<String, GridType> GRID_TYPE_MAP = createGridTypeMap();
// OSGi workaround
@SuppressWarnings("unused")
private ConnectPointCompleter cpCompleter;
// OSGi workaround
@SuppressWarnings("unused")
private AllApplicationNamesCompleter appCompleter;
@Argument(index = 0, name = "ingress",
description = "Ingress Device/Port Description",
required = true, multiValued = false)
String ingressString = "";
@Argument(index = 1, name = "egress",
description = "Egress Device/Port Description",
required = true, multiValued = false)
String egressString = "";
@Option(name = "-b", aliases = "--bidirectional",
description = "If this argument is passed the optical link created will be bidirectional, " +
"else the link will be unidirectional.",
required = false, multiValued = false)
private boolean bidirectional = false;
@Option(name = "-s", aliases = "--signal",
description = "Optical Signal. Format = " + SIGNAL_FORMAT,
required = false, multiValued = false)
private String signal;
private static final Map<String, ChannelSpacing> createChannelSpacingMap() {
return new HashMap(Stream.of(
new SimpleEntry(CH_6P25, ChannelSpacing.CHL_6P25GHZ),
new SimpleEntry(CH_12P5, ChannelSpacing.CHL_12P5GHZ),
new SimpleEntry(CH_25, ChannelSpacing.CHL_25GHZ),
new SimpleEntry(CH_50, ChannelSpacing.CHL_50GHZ),
new SimpleEntry(CH_100, ChannelSpacing.CHL_100GHZ))
.collect(Collectors.toMap((e) -> e.getKey(), (e) -> e.getValue())));
}
private static final Map<String, GridType> createGridTypeMap() {
return new HashMap(Stream.of(
new SimpleEntry(FLEX, GridType.FLEX),
new SimpleEntry(DWDM, GridType.DWDM),
new SimpleEntry(CWDM, GridType.CWDM))
.collect(Collectors.toMap((e) -> e.getKey(), (e) -> e.getValue())));
}
private ConnectPoint createConnectPoint(String devicePortString) {
String[] splitted = devicePortString.split("/");
checkArgument(splitted.length == 2,
"Connect point must be in \"deviceUri/portNumber\" format");
DeviceId deviceId = DeviceId.deviceId(splitted[0]);
DeviceService deviceService = get(DeviceService.class);
List<Port> ports = deviceService.getPorts(deviceId);
for (Port port : ports) {
if (splitted[1].equals(port.number().name())) {
return new ConnectPoint(deviceId, port.number());
}
}
return null;
}
private OchSignal createOchSignal() throws IllegalArgumentException {
if (signal == null) {
return null;
}
try {
String[] splitted = signal.split("/");
checkArgument(splitted.length == 4,
"signal requires 4 parameters: " + SIGNAL_FORMAT);
int slotGranularity = Integer.parseInt(splitted[0]);
String chSpacing = splitted[1];
ChannelSpacing channelSpacing = checkNotNull(CHANNEL_SPACING_MAP.get(chSpacing),
String.format("invalid channel spacing: %s", chSpacing));
int multiplier = Integer.parseInt(splitted[2]);
String gdType = splitted[3].toUpperCase();
GridType gridType = checkNotNull(GRID_TYPE_MAP.get(gdType),
String.format("invalid grid type: %s", gdType));
return new OchSignal(gridType, channelSpacing, multiplier, slotGranularity);
} catch (RuntimeException e) {
/* catching RuntimeException as both NullPointerException (thrown by
* checkNotNull) and IllegalArgumentException (thrown by checkArgument)
* are subclasses of RuntimeException.
*/
String msg = String.format("Invalid signal format: %s, expected format is %s.",
signal, SIGNAL_FORMAT);
print(msg);
throw new IllegalArgumentException(msg, e);
}
}
@Override
protected void execute() {
IntentService service = get(IntentService.class);
ConnectPoint ingress = createConnectPoint(ingressString);
ConnectPoint egress = createConnectPoint(egressString);
if (ingress == null || egress == null) {
print("Invalid endpoint(s); could not create optical intent");
return;
}
DeviceService deviceService = opticalView(get(DeviceService.class));
Port srcPort = deviceService.getPort(ingress.deviceId(), ingress.port());
Port dstPort = deviceService.getPort(egress.deviceId(), egress.port());
Intent intent;
if (srcPort instanceof OduCltPort && dstPort instanceof OduCltPort) {
Device srcDevice = deviceService.getDevice(ingress.deviceId());
Device dstDevice = deviceService.getDevice(egress.deviceId());
// continue only if both OduClt port's Devices are of the same type
if (!(srcDevice.type().equals(dstDevice.type()))) {
print("Devices without same deviceType: SRC=%s and DST=%s", srcDevice.type(), dstDevice.type());
return;
}
CltSignalType signalType = ((OduCltPort) srcPort).signalType();
if (Device.Type.ROADM.equals(srcDevice.type()) ||
Device.Type.ROADM_OTN.equals(srcDevice.type())) {
intent = OpticalCircuitIntent.builder()
.appId(appId())
.key(key())
.src(ingress)
.dst(egress)
.signalType(signalType)
.bidirectional(bidirectional)
.build();
} else if (Device.Type.OTN.equals(srcDevice.type())) {
intent = OpticalOduIntent.builder()
.appId(appId())
.key(key())
.src(ingress)
.dst(egress)
.signalType(signalType)
.bidirectional(bidirectional)
.build();
} else {
print("Wrong Device Type for connect points %s and %s", ingress, egress);
return;
}
} else if (srcPort instanceof OchPort && dstPort instanceof OchPort) {
OduSignalType signalType = ((OchPort) srcPort).signalType();
intent = OpticalConnectivityIntent.builder()
.appId(appId())
.key(key())
.src(ingress)
.dst(egress)
.signalType(signalType)
.bidirectional(bidirectional)
.ochSignal(createOchSignal())
.build();
} else {
print("Unable to create optical intent between connect points %s and %s", ingress, egress);
return;
}
service.submit(intent);
print("Optical intent submitted:\n%s", intent.toString());
}
}