blob: 68ccd455662dea97cd643e4db603acd429864911 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -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 */
Yuta HIGUCHId95d5902016-06-27 00:18:45 -070016package org.onosproject.net.optical.intent.impl.compiler;
weibitf32383b2014-10-22 10:17:31 -070017
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070018import com.google.common.collect.ImmutableList;
Sho SHIMIZUc25a0082015-10-27 17:06:29 -070019import com.google.common.collect.ImmutableSet;
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -080020import com.google.common.collect.Maps;
Sho SHIMIZUc25a0082015-10-27 17:06:29 -070021import com.google.common.collect.Sets;
Boyuan Yan10822382019-02-22 09:45:42 -080022import org.onosproject.net.ConnectPoint;
23import org.onosproject.net.GridType;
24import org.onosproject.net.OchSignal;
25import org.onosproject.net.Path;
26import org.onosproject.net.ChannelSpacing;
27import org.onosproject.net.Port;
28import org.onosproject.net.Link;
29import org.onosproject.net.DeviceId;
30import org.onosproject.net.Annotations;
31import org.onosproject.net.AnnotationKeys;
32import org.onosproject.net.DefaultAnnotations;
33import org.onosproject.net.DefaultPath;
34import org.onosproject.net.OchSignalType;
35import org.onosproject.net.DefaultOchSignalComparator;
36import org.onosproject.net.DefaultLink;
alessiof3beff22020-07-17 17:17:11 +020037import org.onosproject.net.resource.Resource;
38import org.onosproject.net.resource.ResourceAllocation;
39import org.onosproject.net.resource.ResourceService;
40import org.onosproject.net.resource.Resources;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070041import org.osgi.service.component.annotations.Activate;
42import org.osgi.service.component.annotations.Component;
43import org.osgi.service.component.annotations.Deactivate;
44import org.osgi.service.component.annotations.Reference;
45import org.osgi.service.component.annotations.ReferenceCardinality;
Ray Milkey7483e1b2018-02-07 15:43:01 -080046import org.onlab.graph.ScalarWeight;
47import org.onlab.graph.Weight;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070048import org.onosproject.net.device.DeviceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080049import org.onosproject.net.intent.Intent;
50import org.onosproject.net.intent.IntentCompiler;
51import org.onosproject.net.intent.IntentExtensionService;
52import org.onosproject.net.intent.OpticalConnectivityIntent;
53import org.onosproject.net.intent.OpticalPathIntent;
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -080054import org.onosproject.net.optical.OchPort;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080055import org.onosproject.net.provider.ProviderId;
Ray Milkey7483e1b2018-02-07 15:43:01 -080056import org.onosproject.net.topology.LinkWeigher;
Brian O'Connorabafb502014-12-02 22:26:20 -080057import org.onosproject.net.topology.Topology;
Yuta HIGUCHId95d5902016-06-27 00:18:45 -070058import org.onosproject.net.topology.TopologyEdge;
Brian O'Connorabafb502014-12-02 22:26:20 -080059import org.onosproject.net.topology.TopologyService;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070060import org.slf4j.Logger;
61import org.slf4j.LoggerFactory;
weibitf32383b2014-10-22 10:17:31 -070062
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070063import java.util.List;
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -080064import java.util.Map;
65import java.util.Optional;
alessio3039bdb2018-11-29 14:12:32 +010066import java.util.Collection;
67import java.util.LinkedList;
68import java.util.ArrayList;
69import java.util.Collections;
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070070import java.util.Set;
Sho SHIMIZU280e7912015-09-29 13:42:03 -070071import java.util.stream.Collectors;
fahadnaeemkhanffc917f2017-10-03 14:04:46 -070072import java.util.stream.IntStream;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080073import java.util.stream.Stream;
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070074
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070075import static com.google.common.base.Preconditions.checkArgument;
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -080076import static org.onosproject.net.optical.device.OpticalDeviceServiceView.opticalView;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070077
weibitf32383b2014-10-22 10:17:31 -070078/**
Brian O'Connorabafb502014-12-02 22:26:20 -080079 * An intent compiler for {@link org.onosproject.net.intent.OpticalConnectivityIntent}.
weibitf32383b2014-10-22 10:17:31 -070080 */
Sho SHIMIZU9a2b8292015-10-28 13:00:16 -070081@Component(immediate = true)
weibitf32383b2014-10-22 10:17:31 -070082public class OpticalConnectivityIntentCompiler implements IntentCompiler<OpticalConnectivityIntent> {
83
Ray Milkey9c9cde42018-01-12 14:22:06 -080084 private static final Logger log = LoggerFactory.getLogger(OpticalConnectivityIntentCompiler.class);
Marc De Leenheer2c305302015-12-07 21:37:44 -080085 // By default, allocate 50 GHz lambdas (4 slots of 12.5 GHz) for each intent.
alessio13a3f682023-02-09 15:39:31 +010086 private static final int DEFAULT_SLOT_GRANULARITY = 4;
87 private static final GridType DEFAULT_GRID_TYPE = GridType.DWDM;
88 private static final ChannelSpacing DEFAULT_CHANNEL_SPACING = ChannelSpacing.CHL_50GHZ;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080089 private static final ProviderId PROVIDER_ID = new ProviderId("opticalConnectivityIntent",
90 "org.onosproject.net.optical.intent");
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070091
Ray Milkeyd84f89b2018-08-17 14:54:17 -070092 @Reference(cardinality = ReferenceCardinality.MANDATORY)
weibitf32383b2014-10-22 10:17:31 -070093 protected IntentExtensionService intentManager;
94
Ray Milkeyd84f89b2018-08-17 14:54:17 -070095 @Reference(cardinality = ReferenceCardinality.MANDATORY)
weibit7e583462014-10-23 10:14:05 -070096 protected TopologyService topologyService;
weibitf32383b2014-10-22 10:17:31 -070097
Ray Milkeyd84f89b2018-08-17 14:54:17 -070098 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070099 protected DeviceService deviceService;
100
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700101 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700102 protected ResourceService resourceService;
103
weibitf32383b2014-10-22 10:17:31 -0700104 @Activate
105 public void activate() {
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -0800106 deviceService = opticalView(deviceService);
weibitf32383b2014-10-22 10:17:31 -0700107 intentManager.registerCompiler(OpticalConnectivityIntent.class, this);
108 }
109
110 @Deactivate
111 public void deactivate() {
112 intentManager.unregisterCompiler(OpticalConnectivityIntent.class);
113 }
114
alessio13a3f682023-02-09 15:39:31 +0100115 /**
116 * Path computation and spectrum assignment.
117 * Supports fixed and flex grids.
118 *
119 * Path and signal can be provided within the intent.
120 * If not provided they are computed in this function.
121 * If signal is not provided a default channel is allocated with width 50 GHz, on the 50 GHz spacing.
122 *
123 * @param intent this intent (used for resource tracking)
124 * @param installable intents
125 * @return list of optical path intents (one per direction)
126 */
weibitf32383b2014-10-22 10:17:31 -0700127 @Override
alessio13a3f682023-02-09 15:39:31 +0100128 public List<Intent> compile(OpticalConnectivityIntent intent, List<Intent> installable) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700129 // Check if source and destination are optical OCh ports
130 ConnectPoint src = intent.getSrc();
131 ConnectPoint dst = intent.getDst();
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700132 checkArgument(deviceService.getPort(src.deviceId(), src.port()) instanceof OchPort);
133 checkArgument(deviceService.getPort(dst.deviceId(), dst.port()) instanceof OchPort);
134 List<Resource> resources = new LinkedList<>();
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700135
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700136 log.debug("Compiling optical connectivity intent between {} and {}", src, dst);
137
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200138 // Release of intent resources here is only a temporary solution for handling the
139 // case of recompiling due to intent restoration (when intent state is FAILED).
140 // TODO: try to release intent resources in IntentManager.
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700141 resourceService.release(intent.key());
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200142
alessio13a3f682023-02-09 15:39:31 +0100143 // Check OCH src and dst port availability
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700144 // If ports are not available, compilation fails
145 // Else add port to resource reservation list
Sho SHIMIZU460b9722016-01-28 10:48:26 -0800146 Resource srcPortResource = Resources.discrete(src.deviceId(), src.port()).resource();
147 Resource dstPortResource = Resources.discrete(dst.deviceId(), dst.port()).resource();
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800148 if (!Stream.of(srcPortResource, dstPortResource).allMatch(resourceService::isAvailable)) {
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -0700149 log.error("Ports for the intent are not available. Intent: {}", intent);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700150 throw new OpticalIntentCompilationException("Ports for the intent are not available. Intent: " + intent);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700151 }
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800152 resources.add(srcPortResource);
153 resources.add(dstPortResource);
154
alessio13a3f682023-02-09 15:39:31 +0100155 // If there is a valid suggestedPath, use this path without further checking
156 // Otherwise trigger path computation
alessio3039bdb2018-11-29 14:12:32 +0100157 Stream<Path> paths;
158 if (intent.suggestedPath().isPresent()) {
159 paths = Stream.of(intent.suggestedPath().get());
160 } else {
161 paths = getOpticalPaths(intent);
162 }
163
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700164 // Find first path that has the required resources
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700165 Optional<Map.Entry<Path, List<OchSignal>>> found = paths
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700166 .map(path -> Maps.immutableEntry(path, findFirstAvailableLambda(intent, path)))
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800167 .filter(entry -> !entry.getValue().isEmpty())
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700168 .filter(entry -> convertToResources(entry.getKey(),
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800169 entry.getValue()).stream().allMatch(resourceService::isAvailable))
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800170 .findFirst();
171
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700172 // Allocate resources and create optical path intent
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800173 if (found.isPresent()) {
alessio13a3f682023-02-09 15:39:31 +0100174 log.debug("Suitable path and lambdas FOUND for intent {}", intent);
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700175 resources.addAll(convertToResources(found.get().getKey(), found.get().getValue()));
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800176 allocateResources(intent, resources);
alessio13a3f682023-02-09 15:39:31 +0100177
178 if (intent.ochSignal().isPresent()) {
179 if (intent.ochSignal().get().gridType() == GridType.FLEX) {
180 return ImmutableList.of(createIntent(intent, found.get().getKey(), intent.ochSignal().get()));
181 }
182 }
183
184 OchSignal ochSignal = OchSignal.toFixedGrid(found.get().getValue(), DEFAULT_CHANNEL_SPACING);
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800185 return ImmutableList.of(createIntent(intent, found.get().getKey(), ochSignal));
alessio13a3f682023-02-09 15:39:31 +0100186
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800187 } else {
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -0700188 log.error("Unable to find suitable lightpath for intent {}", intent);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700189 throw new OpticalIntentCompilationException("Unable to find suitable lightpath for intent " + intent);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700190 }
weibitf32383b2014-10-22 10:17:31 -0700191 }
192
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700193 /**
194 * Create installable optical path intent.
alessio13a3f682023-02-09 15:39:31 +0100195 * Supports fixed and flex grids.
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700196 *
197 * @param parentIntent this intent (used for resource tracking)
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800198 * @param path the path to use
199 * @param lambda the lambda to use
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700200 * @return optical path intent
201 */
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800202 private Intent createIntent(OpticalConnectivityIntent parentIntent, Path path, OchSignal lambda) {
alessio13a3f682023-02-09 15:39:31 +0100203 OchSignalType signalType;
204 if (lambda.gridType().equals(GridType.FLEX)) {
205 signalType = OchSignalType.FLEX_GRID;
206 } else {
207 signalType = OchSignalType.FIXED_GRID;
208 }
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800209
210 return OpticalPathIntent.builder()
211 .appId(parentIntent.appId())
Yuta HIGUCHI652f27f2016-10-31 16:54:30 -0700212 .key(parentIntent.key())
alessio0a0f3342019-10-28 16:58:01 +0100213 .priority(parentIntent.priority())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800214 .src(parentIntent.getSrc())
215 .dst(parentIntent.getDst())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800216 .path(path)
217 .lambda(lambda)
218 .signalType(signalType)
219 .bidirectional(parentIntent.isBidirectional())
Luca Prete670ac5d2017-02-03 15:55:43 -0800220 .resourceGroup(parentIntent.resourceGroup())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800221 .build();
222 }
223
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700224 /**
225 * Convert given lambda as discrete resource of all path ports.
226 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800227 * @param path the path
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700228 * @param lambda the lambda
229 * @return list of discrete resources
230 */
231 private List<Resource> convertToResources(Path path, Collection<OchSignal> lambda) {
232 return path.links().stream()
233 .flatMap(x -> Stream.of(
alessiof3beff22020-07-17 17:17:11 +0200234 Resources.discrete(x.src().deviceId(),
235 deviceService.getPort(x.src().deviceId(), x.src().port()).number()).resource(),
236 Resources.discrete(x.dst().deviceId(),
237 deviceService.getPort(x.dst().deviceId(), x.dst().port()).number()).resource()
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700238 ))
239 .flatMap(x -> lambda.stream().map(x::child))
240 .collect(Collectors.toList());
241 }
242
243 /**
244 * Reserve all required resources for this intent.
245 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800246 * @param intent the intent
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700247 * @param resources list of resources to reserve
248 */
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800249 private void allocateResources(Intent intent, List<Resource> resources) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700250 List<ResourceAllocation> allocations = resourceService.allocate(intent.key(), resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800251 if (allocations.isEmpty()) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700252 log.error("Resource allocation for {} failed (resource request: {})", intent.key(), resources);
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700253 if (log.isDebugEnabled()) {
254 log.debug("requested resources:\n\t{}", resources.stream()
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700255 .map(Resource::toString)
256 .collect(Collectors.joining("\n\t")));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700257 }
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700258 throw new OpticalIntentCompilationException("Unable to allocate resources: " + resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800259 }
260 }
261
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700262 /**
263 * Find the first available lambda on the given path by checking all the port resources.
264 *
265 * @param path the path
266 * @return list of consecutive and available OChSignals
267 */
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700268 private List<OchSignal> findFirstAvailableLambda(OpticalConnectivityIntent intent, Path path) {
269 if (intent.ochSignal().isPresent()) {
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700270 //create lambdas w.r.t. slotGanularity/slotWidth
271 OchSignal ochSignal = intent.ochSignal().get();
272 if (ochSignal.gridType() == GridType.FLEX) {
alessio13a3f682023-02-09 15:39:31 +0100273 int startMultiplier = (int) (1 - ochSignal.slotGranularity() + ochSignal.spacingMultiplier());
274
275 List<OchSignal> channels = IntStream.range(0, ochSignal.slotGranularity())
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700276 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
277 .collect(Collectors.toList());
alessio13a3f682023-02-09 15:39:31 +0100278
279 return channels;
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700280 } else if (ochSignal.gridType() == GridType.DWDM) {
281 int startMultiplier = (int) (1 - ochSignal.slotGranularity() +
282 ochSignal.spacingMultiplier() * ochSignal.channelSpacing().frequency().asHz() /
283 ChannelSpacing.CHL_6P25GHZ.frequency().asHz());
alessio13a3f682023-02-09 15:39:31 +0100284
285 List<OchSignal> channels = IntStream.range(0, ochSignal.slotGranularity())
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700286 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
287 .collect(Collectors.toList());
alessio13a3f682023-02-09 15:39:31 +0100288
289 return channels;
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700290 }
291 //TODO: add support for other gridTypes
292 log.error("Grid type: {} not supported for user defined signal intents", ochSignal.gridType());
293 return Collections.emptyList();
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700294 }
295
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700296 Set<OchSignal> lambdas = findCommonLambdas(path);
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700297 if (lambdas.isEmpty()) {
Marc De Leenheer2c305302015-12-07 21:37:44 -0800298 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700299 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700300
alessio13a3f682023-02-09 15:39:31 +0100301 return findFirstLambda(lambdas, DEFAULT_SLOT_GRANULARITY);
Marc De Leenheer2c305302015-12-07 21:37:44 -0800302 }
303
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700304 /**
305 * Find common lambdas on all ports that compose the path.
306 *
307 * @param path the path
308 * @return set of common lambdas
309 */
310 private Set<OchSignal> findCommonLambdas(Path path) {
alessiof3beff22020-07-17 17:17:11 +0200311
312 Set<OchSignal> ochSignals = path.links().stream()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800313 .flatMap(x -> Stream.of(
alessiof3beff22020-07-17 17:17:11 +0200314 Resources.discrete(x.src().deviceId(),
315 deviceService.getPort(x.src().deviceId(), x.src().port()).number()).id(),
316 Resources.discrete(x.dst().deviceId(),
317 deviceService.getPort(x.dst().deviceId(), x.dst().port()).number()).id()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800318 ))
Sho SHIMIZU7332fe42016-02-15 14:58:33 -0800319 .map(x -> resourceService.getAvailableResourceValues(x, OchSignal.class))
Marc De Leenheer2c305302015-12-07 21:37:44 -0800320 .map(x -> (Set<OchSignal>) ImmutableSet.copyOf(x))
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700321 .reduce(Sets::intersection)
322 .orElse(Collections.emptySet());
alessiof3beff22020-07-17 17:17:11 +0200323
324 if (ochSignals.isEmpty()) {
325 log.warn("Common lambdas not found");
326 } else {
327 log.debug("Common lambdas found {}", ochSignals);
328 }
329
330 return ochSignals;
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700331 }
332
Marc De Leenheer2c305302015-12-07 21:37:44 -0800333 /**
334 * Returns list of consecutive resources in given set of lambdas.
335 *
336 * @param lambdas list of lambdas
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800337 * @param count number of consecutive lambdas to return
Marc De Leenheer2c305302015-12-07 21:37:44 -0800338 * @return list of consecutive lambdas
339 */
340 private List<OchSignal> findFirstLambda(Set<OchSignal> lambdas, int count) {
341 // Sort available lambdas
342 List<OchSignal> lambdaList = new ArrayList<>(lambdas);
343 lambdaList.sort(new DefaultOchSignalComparator());
Andrea Campanellae4b2c682019-08-23 15:42:55 +0200344 //Means there is only exactly one set of lambdas available
345 if (lambdaList.size() == count) {
346 return lambdaList;
347 }
Marc De Leenheer2c305302015-12-07 21:37:44 -0800348 // Look ahead by count and ensure spacing multiplier is as expected (i.e., no gaps)
349 for (int i = 0; i < lambdaList.size() - count; i++) {
350 if (lambdaList.get(i).spacingMultiplier() + 2 * count ==
351 lambdaList.get(i + count).spacingMultiplier()) {
352 return lambdaList.subList(i, i + count);
353 }
354 }
355
356 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700357 }
358
Marc De Leenheer723f5532015-06-03 20:16:17 -0700359 private ConnectPoint staticPort(ConnectPoint connectPoint) {
360 Port port = deviceService.getPort(connectPoint.deviceId(), connectPoint.port());
361
362 String staticPort = port.annotations().value(AnnotationKeys.STATIC_PORT);
363
364 // FIXME: need a better way to match the port
365 if (staticPort != null) {
366 for (Port p : deviceService.getPorts(connectPoint.deviceId())) {
367 if (staticPort.equals(p.number().name())) {
368 return new ConnectPoint(p.element().id(), p.number());
369 }
370 }
371 }
372
373 return null;
374 }
375
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700376 /**
377 * Calculates optical paths in WDM topology.
378 *
379 * @param intent optical connectivity intent
380 * @return set of paths in WDM topology
381 */
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700382 private Stream<Path> getOpticalPaths(OpticalConnectivityIntent intent) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700383 // Route in WDM topology
weibit7e583462014-10-23 10:14:05 -0700384 Topology topology = topologyService.currentTopology();
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700385 //TODO: refactor with LinkWeigher class Implementation
Ray Milkey7483e1b2018-02-07 15:43:01 -0800386 LinkWeigher weight = new LinkWeigher() {
Sho SHIMIZU74626412015-09-11 11:46:27 -0700387
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700388 @Override
Ray Milkey7483e1b2018-02-07 15:43:01 -0800389 public Weight getInitialWeight() {
390 return ScalarWeight.toWeight(0.0);
391 }
392
393 @Override
394 public Weight getNonViableWeight() {
395 return ScalarWeight.NON_VIABLE_WEIGHT;
396 }
397
alessio3039bdb2018-11-29 14:12:32 +0100398 /**
399 *
400 * @param edge edge to be weighed
401 * @return the metric retrieved from the annotations otherwise 1
402 */
Ray Milkey7483e1b2018-02-07 15:43:01 -0800403 @Override
404 public Weight weight(TopologyEdge edge) {
alessio3039bdb2018-11-29 14:12:32 +0100405
406 log.debug("Link {} metric {}", edge.link(), edge.link().annotations().value("metric"));
407
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700408 // Disregard inactive or non-optical links
409 if (edge.link().state() == Link.State.INACTIVE) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800410 return ScalarWeight.toWeight(-1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700411 }
412 if (edge.link().type() != Link.Type.OPTICAL) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800413 return ScalarWeight.toWeight(-1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700414 }
415 // Adhere to static port mappings
416 DeviceId srcDeviceId = edge.link().src().deviceId();
417 if (srcDeviceId.equals(intent.getSrc().deviceId())) {
418 ConnectPoint srcStaticPort = staticPort(intent.getSrc());
419 if (srcStaticPort != null) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800420 return ScalarWeight.toWeight(srcStaticPort.equals(edge.link().src()) ? 1 : -1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700421 }
422 }
423 DeviceId dstDeviceId = edge.link().dst().deviceId();
424 if (dstDeviceId.equals(intent.getDst().deviceId())) {
425 ConnectPoint dstStaticPort = staticPort(intent.getDst());
426 if (dstStaticPort != null) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800427 return ScalarWeight.toWeight(dstStaticPort.equals(edge.link().dst()) ? 1 : -1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700428 }
429 }
430
Boyuan Yan10822382019-02-22 09:45:42 -0800431 Annotations annotations = edge.link().annotations();
Jan Kundrát12eb26a2019-11-08 10:47:10 +0100432 if (annotations != null &&
433 annotations.value("metric") != null && !annotations.value("metric").isEmpty()) {
Boyuan Yan10822382019-02-22 09:45:42 -0800434 double metric = Double.parseDouble(annotations.value("metric"));
alessio3039bdb2018-11-29 14:12:32 +0100435 return ScalarWeight.toWeight(metric);
436 } else {
437 return ScalarWeight.toWeight(1);
438 }
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700439 }
weibit7e583462014-10-23 10:14:05 -0700440 };
weibitf32383b2014-10-22 10:17:31 -0700441
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700442 ConnectPoint start = intent.getSrc();
443 ConnectPoint end = intent.getDst();
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800444
445 // 0 hop case
446 if (start.deviceId().equals(end.deviceId())) {
447 log.debug("install optical intent for 0 hop i.e srcDeviceId=dstDeviceId");
448 DefaultLink defaultLink = DefaultLink.builder()
449 .providerId(PROVIDER_ID)
450 .src(start)
451 .dst(end)
452 .state(Link.State.ACTIVE)
453 .type(Link.Type.DIRECT)
454 .isExpected(true)
455 .build();
456 List<Link> links = ImmutableList.<Link>builder().add(defaultLink).build();
457 Annotations annotations = DefaultAnnotations.builder().build();
458 DefaultPath defaultPath = new DefaultPath(PROVIDER_ID, links, null, annotations);
459 return ImmutableList.<Path>builder().add(defaultPath).build().stream();
460 }
461
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700462 //head link's src port should be same as intent src port and tail link dst port
463 //should be same as intent dst port in the path.
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700464 Stream<Path> paths = topologyService.getKShortestPaths(topology,
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700465 start.deviceId(),
466 end.deviceId(),
Ray Milkey7483e1b2018-02-07 15:43:01 -0800467 weight)
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700468 .filter(p -> p.links().get(0).src().port().equals(start.port()) &&
469 p.links().get(p.links().size() - 1).dst().port().equals(end.port()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700470 if (log.isDebugEnabled()) {
471 return paths
472 .map(path -> {
473 // no-op map stage to add debug logging
474 log.debug("Candidate path: {}",
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800475 path.links().stream()
476 .map(lk -> lk.src() + "-" + lk.dst())
477 .collect(Collectors.toList()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700478 return path;
479 });
480 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700481 return paths;
weibitf32383b2014-10-22 10:17:31 -0700482 }
weibitf32383b2014-10-22 10:17:31 -0700483}