blob: 13553375586903c5216f762b9b325df3444c244b [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;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070022import org.osgi.service.component.annotations.Activate;
23import org.osgi.service.component.annotations.Component;
24import org.osgi.service.component.annotations.Deactivate;
25import org.osgi.service.component.annotations.Reference;
26import org.osgi.service.component.annotations.ReferenceCardinality;
Ray Milkey7483e1b2018-02-07 15:43:01 -080027import org.onlab.graph.ScalarWeight;
28import org.onlab.graph.Weight;
Marc De Leenheer723f5532015-06-03 20:16:17 -070029import org.onosproject.net.AnnotationKeys;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080030import org.onosproject.net.Annotations;
Marc De Leenheer2c305302015-12-07 21:37:44 -080031import org.onosproject.net.ChannelSpacing;
Brian O'Connorabafb502014-12-02 22:26:20 -080032import org.onosproject.net.ConnectPoint;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080033import org.onosproject.net.DefaultAnnotations;
34import org.onosproject.net.DefaultLink;
Marc De Leenheer2c305302015-12-07 21:37:44 -080035import org.onosproject.net.DefaultOchSignalComparator;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080036import org.onosproject.net.DefaultPath;
Marc De Leenheer723f5532015-06-03 20:16:17 -070037import org.onosproject.net.DeviceId;
fahadnaeemkhanffc917f2017-10-03 14:04:46 -070038import org.onosproject.net.GridType;
Brian O'Connorabafb502014-12-02 22:26:20 -080039import org.onosproject.net.Link;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070040import org.onosproject.net.OchSignal;
Marc De Leenheerd24420f2015-05-27 09:40:59 -070041import org.onosproject.net.OchSignalType;
Brian O'Connorabafb502014-12-02 22:26:20 -080042import org.onosproject.net.Path;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070043import org.onosproject.net.Port;
44import org.onosproject.net.device.DeviceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080045import org.onosproject.net.intent.Intent;
46import org.onosproject.net.intent.IntentCompiler;
47import org.onosproject.net.intent.IntentExtensionService;
48import org.onosproject.net.intent.OpticalConnectivityIntent;
49import org.onosproject.net.intent.OpticalPathIntent;
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -080050import org.onosproject.net.optical.OchPort;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080051import org.onosproject.net.provider.ProviderId;
Sho SHIMIZUe18cb122016-02-22 21:04:56 -080052import org.onosproject.net.resource.Resource;
Marc De Leenheer03a52b02017-06-05 20:36:23 -070053import org.onosproject.net.resource.ResourceAllocation;
Sho SHIMIZUe18cb122016-02-22 21:04:56 -080054import org.onosproject.net.resource.ResourceService;
55import org.onosproject.net.resource.Resources;
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.
86 private static final int SLOT_COUNT = 4;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080087 private static final ProviderId PROVIDER_ID = new ProviderId("opticalConnectivityIntent",
88 "org.onosproject.net.optical.intent");
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070089
Ray Milkeyd84f89b2018-08-17 14:54:17 -070090 @Reference(cardinality = ReferenceCardinality.MANDATORY)
weibitf32383b2014-10-22 10:17:31 -070091 protected IntentExtensionService intentManager;
92
Ray Milkeyd84f89b2018-08-17 14:54:17 -070093 @Reference(cardinality = ReferenceCardinality.MANDATORY)
weibit7e583462014-10-23 10:14:05 -070094 protected TopologyService topologyService;
weibitf32383b2014-10-22 10:17:31 -070095
Ray Milkeyd84f89b2018-08-17 14:54:17 -070096 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070097 protected DeviceService deviceService;
98
Ray Milkeyd84f89b2018-08-17 14:54:17 -070099 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700100 protected ResourceService resourceService;
101
weibitf32383b2014-10-22 10:17:31 -0700102 @Activate
103 public void activate() {
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -0800104 deviceService = opticalView(deviceService);
weibitf32383b2014-10-22 10:17:31 -0700105 intentManager.registerCompiler(OpticalConnectivityIntent.class, this);
106 }
107
108 @Deactivate
109 public void deactivate() {
110 intentManager.unregisterCompiler(OpticalConnectivityIntent.class);
111 }
112
113 @Override
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700114 public List<Intent> compile(OpticalConnectivityIntent intent,
Sho SHIMIZUec07ffd2016-02-22 20:45:21 -0800115 List<Intent> installable) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700116 // Check if source and destination are optical OCh ports
117 ConnectPoint src = intent.getSrc();
118 ConnectPoint dst = intent.getDst();
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700119 checkArgument(deviceService.getPort(src.deviceId(), src.port()) instanceof OchPort);
120 checkArgument(deviceService.getPort(dst.deviceId(), dst.port()) instanceof OchPort);
121 List<Resource> resources = new LinkedList<>();
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700122
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700123 log.debug("Compiling optical connectivity intent between {} and {}", src, dst);
124
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200125 // Release of intent resources here is only a temporary solution for handling the
126 // case of recompiling due to intent restoration (when intent state is FAILED).
127 // TODO: try to release intent resources in IntentManager.
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700128 resourceService.release(intent.key());
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200129
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800130 // Check OCh port availability
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700131 // If ports are not available, compilation fails
132 // Else add port to resource reservation list
Sho SHIMIZU460b9722016-01-28 10:48:26 -0800133 Resource srcPortResource = Resources.discrete(src.deviceId(), src.port()).resource();
134 Resource dstPortResource = Resources.discrete(dst.deviceId(), dst.port()).resource();
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800135 if (!Stream.of(srcPortResource, dstPortResource).allMatch(resourceService::isAvailable)) {
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -0700136 log.error("Ports for the intent are not available. Intent: {}", intent);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700137 throw new OpticalIntentCompilationException("Ports for the intent are not available. Intent: " + intent);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700138 }
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800139 resources.add(srcPortResource);
140 resources.add(dstPortResource);
141
alessio3039bdb2018-11-29 14:12:32 +0100142 // If there is a suggestedPath, use this path without further checking, otherwise trigger path computation
143 Stream<Path> paths;
144 if (intent.suggestedPath().isPresent()) {
145 paths = Stream.of(intent.suggestedPath().get());
146 } else {
147 paths = getOpticalPaths(intent);
148 }
149
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700150 // Find first path that has the required resources
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700151 Optional<Map.Entry<Path, List<OchSignal>>> found = paths
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700152 .map(path -> Maps.immutableEntry(path, findFirstAvailableLambda(intent, path)))
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800153 .filter(entry -> !entry.getValue().isEmpty())
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700154 .filter(entry -> convertToResources(entry.getKey(),
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800155 entry.getValue()).stream().allMatch(resourceService::isAvailable))
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800156 .findFirst();
157
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700158 // Allocate resources and create optical path intent
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800159 if (found.isPresent()) {
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700160 resources.addAll(convertToResources(found.get().getKey(), found.get().getValue()));
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800161 allocateResources(intent, resources);
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800162 OchSignal ochSignal = OchSignal.toFixedGrid(found.get().getValue(), ChannelSpacing.CHL_50GHZ);
163 return ImmutableList.of(createIntent(intent, found.get().getKey(), ochSignal));
164 } else {
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -0700165 log.error("Unable to find suitable lightpath for intent {}", intent);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700166 throw new OpticalIntentCompilationException("Unable to find suitable lightpath for intent " + intent);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700167 }
weibitf32383b2014-10-22 10:17:31 -0700168 }
169
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700170 /**
171 * Create installable optical path intent.
172 * Only supports fixed grid for now.
173 *
174 * @param parentIntent this intent (used for resource tracking)
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800175 * @param path the path to use
176 * @param lambda the lambda to use
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700177 * @return optical path intent
178 */
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800179 private Intent createIntent(OpticalConnectivityIntent parentIntent, Path path, OchSignal lambda) {
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800180 OchSignalType signalType = OchSignalType.FIXED_GRID;
181
182 return OpticalPathIntent.builder()
183 .appId(parentIntent.appId())
Yuta HIGUCHI652f27f2016-10-31 16:54:30 -0700184 .key(parentIntent.key())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800185 .src(parentIntent.getSrc())
186 .dst(parentIntent.getDst())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800187 .path(path)
188 .lambda(lambda)
189 .signalType(signalType)
190 .bidirectional(parentIntent.isBidirectional())
Luca Prete670ac5d2017-02-03 15:55:43 -0800191 .resourceGroup(parentIntent.resourceGroup())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800192 .build();
193 }
194
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700195 /**
196 * Convert given lambda as discrete resource of all path ports.
197 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800198 * @param path the path
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700199 * @param lambda the lambda
200 * @return list of discrete resources
201 */
202 private List<Resource> convertToResources(Path path, Collection<OchSignal> lambda) {
203 return path.links().stream()
204 .flatMap(x -> Stream.of(
205 Resources.discrete(x.src().deviceId(), x.src().port()).resource(),
206 Resources.discrete(x.dst().deviceId(), x.dst().port()).resource()
207 ))
208 .flatMap(x -> lambda.stream().map(x::child))
209 .collect(Collectors.toList());
210 }
211
212 /**
213 * Reserve all required resources for this intent.
214 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800215 * @param intent the intent
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700216 * @param resources list of resources to reserve
217 */
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800218 private void allocateResources(Intent intent, List<Resource> resources) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700219 List<ResourceAllocation> allocations = resourceService.allocate(intent.key(), resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800220 if (allocations.isEmpty()) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700221 log.error("Resource allocation for {} failed (resource request: {})", intent.key(), resources);
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700222 if (log.isDebugEnabled()) {
223 log.debug("requested resources:\n\t{}", resources.stream()
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700224 .map(Resource::toString)
225 .collect(Collectors.joining("\n\t")));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700226 }
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700227 throw new OpticalIntentCompilationException("Unable to allocate resources: " + resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800228 }
229 }
230
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700231 /**
232 * Find the first available lambda on the given path by checking all the port resources.
233 *
234 * @param path the path
235 * @return list of consecutive and available OChSignals
236 */
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700237 private List<OchSignal> findFirstAvailableLambda(OpticalConnectivityIntent intent, Path path) {
238 if (intent.ochSignal().isPresent()) {
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700239 //create lambdas w.r.t. slotGanularity/slotWidth
240 OchSignal ochSignal = intent.ochSignal().get();
241 if (ochSignal.gridType() == GridType.FLEX) {
242 // multiplier sits in the middle of slots
243 int startMultiplier = ochSignal.spacingMultiplier() - (ochSignal.slotGranularity() / 2);
244 return IntStream.range(0, ochSignal.slotGranularity())
245 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
246 .collect(Collectors.toList());
247 } else if (ochSignal.gridType() == GridType.DWDM) {
248 int startMultiplier = (int) (1 - ochSignal.slotGranularity() +
249 ochSignal.spacingMultiplier() * ochSignal.channelSpacing().frequency().asHz() /
250 ChannelSpacing.CHL_6P25GHZ.frequency().asHz());
251 return IntStream.range(0, ochSignal.slotGranularity())
252 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
253 .collect(Collectors.toList());
254 }
255 //TODO: add support for other gridTypes
256 log.error("Grid type: {} not supported for user defined signal intents", ochSignal.gridType());
257 return Collections.emptyList();
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700258 }
259
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700260 Set<OchSignal> lambdas = findCommonLambdas(path);
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700261 if (lambdas.isEmpty()) {
Marc De Leenheer2c305302015-12-07 21:37:44 -0800262 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700263 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700264
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800265 return findFirstLambda(lambdas, slotCount());
266 }
267
Marc De Leenheer2c305302015-12-07 21:37:44 -0800268 /**
269 * Get the number of 12.5 GHz slots required for the path.
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800270 * <p>
Marc De Leenheer2c305302015-12-07 21:37:44 -0800271 * For now this returns a constant value of 4 (i.e., fixed grid 50 GHz slot),
272 * but in the future can depend on optical reach, line rate, transponder port capabilities, etc.
273 *
274 * @return number of slots
275 */
276 private int slotCount() {
277 return SLOT_COUNT;
278 }
279
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700280 /**
281 * Find common lambdas on all ports that compose the path.
282 *
283 * @param path the path
284 * @return set of common lambdas
285 */
286 private Set<OchSignal> findCommonLambdas(Path path) {
287 return path.links().stream()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800288 .flatMap(x -> Stream.of(
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800289 Resources.discrete(x.src().deviceId(), x.src().port()).id(),
290 Resources.discrete(x.dst().deviceId(), x.dst().port()).id()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800291 ))
Sho SHIMIZU7332fe42016-02-15 14:58:33 -0800292 .map(x -> resourceService.getAvailableResourceValues(x, OchSignal.class))
Marc De Leenheer2c305302015-12-07 21:37:44 -0800293 .map(x -> (Set<OchSignal>) ImmutableSet.copyOf(x))
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700294 .reduce(Sets::intersection)
295 .orElse(Collections.emptySet());
296 }
297
Marc De Leenheer2c305302015-12-07 21:37:44 -0800298 /**
299 * Returns list of consecutive resources in given set of lambdas.
300 *
301 * @param lambdas list of lambdas
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800302 * @param count number of consecutive lambdas to return
Marc De Leenheer2c305302015-12-07 21:37:44 -0800303 * @return list of consecutive lambdas
304 */
305 private List<OchSignal> findFirstLambda(Set<OchSignal> lambdas, int count) {
306 // Sort available lambdas
307 List<OchSignal> lambdaList = new ArrayList<>(lambdas);
308 lambdaList.sort(new DefaultOchSignalComparator());
309
310 // Look ahead by count and ensure spacing multiplier is as expected (i.e., no gaps)
311 for (int i = 0; i < lambdaList.size() - count; i++) {
312 if (lambdaList.get(i).spacingMultiplier() + 2 * count ==
313 lambdaList.get(i + count).spacingMultiplier()) {
314 return lambdaList.subList(i, i + count);
315 }
316 }
317
318 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700319 }
320
Marc De Leenheer723f5532015-06-03 20:16:17 -0700321 private ConnectPoint staticPort(ConnectPoint connectPoint) {
322 Port port = deviceService.getPort(connectPoint.deviceId(), connectPoint.port());
323
324 String staticPort = port.annotations().value(AnnotationKeys.STATIC_PORT);
325
326 // FIXME: need a better way to match the port
327 if (staticPort != null) {
328 for (Port p : deviceService.getPorts(connectPoint.deviceId())) {
329 if (staticPort.equals(p.number().name())) {
330 return new ConnectPoint(p.element().id(), p.number());
331 }
332 }
333 }
334
335 return null;
336 }
337
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700338 /**
339 * Calculates optical paths in WDM topology.
340 *
341 * @param intent optical connectivity intent
342 * @return set of paths in WDM topology
343 */
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700344 private Stream<Path> getOpticalPaths(OpticalConnectivityIntent intent) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700345 // Route in WDM topology
weibit7e583462014-10-23 10:14:05 -0700346 Topology topology = topologyService.currentTopology();
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700347 //TODO: refactor with LinkWeigher class Implementation
Ray Milkey7483e1b2018-02-07 15:43:01 -0800348 LinkWeigher weight = new LinkWeigher() {
Sho SHIMIZU74626412015-09-11 11:46:27 -0700349
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700350 @Override
Ray Milkey7483e1b2018-02-07 15:43:01 -0800351 public Weight getInitialWeight() {
352 return ScalarWeight.toWeight(0.0);
353 }
354
355 @Override
356 public Weight getNonViableWeight() {
357 return ScalarWeight.NON_VIABLE_WEIGHT;
358 }
359
alessio3039bdb2018-11-29 14:12:32 +0100360 /**
361 *
362 * @param edge edge to be weighed
363 * @return the metric retrieved from the annotations otherwise 1
364 */
Ray Milkey7483e1b2018-02-07 15:43:01 -0800365 @Override
366 public Weight weight(TopologyEdge edge) {
alessio3039bdb2018-11-29 14:12:32 +0100367
368 log.debug("Link {} metric {}", edge.link(), edge.link().annotations().value("metric"));
369
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700370 // Disregard inactive or non-optical links
371 if (edge.link().state() == Link.State.INACTIVE) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800372 return ScalarWeight.toWeight(-1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700373 }
374 if (edge.link().type() != Link.Type.OPTICAL) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800375 return ScalarWeight.toWeight(-1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700376 }
377 // Adhere to static port mappings
378 DeviceId srcDeviceId = edge.link().src().deviceId();
379 if (srcDeviceId.equals(intent.getSrc().deviceId())) {
380 ConnectPoint srcStaticPort = staticPort(intent.getSrc());
381 if (srcStaticPort != null) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800382 return ScalarWeight.toWeight(srcStaticPort.equals(edge.link().src()) ? 1 : -1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700383 }
384 }
385 DeviceId dstDeviceId = edge.link().dst().deviceId();
386 if (dstDeviceId.equals(intent.getDst().deviceId())) {
387 ConnectPoint dstStaticPort = staticPort(intent.getDst());
388 if (dstStaticPort != null) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800389 return ScalarWeight.toWeight(dstStaticPort.equals(edge.link().dst()) ? 1 : -1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700390 }
391 }
392
alessio3039bdb2018-11-29 14:12:32 +0100393 String metricString = edge.link().annotations().value("metric");
394 if (!metricString.isEmpty()) {
395 double metric = Double.parseDouble(metricString);
396 return ScalarWeight.toWeight(metric);
397 } else {
398 return ScalarWeight.toWeight(1);
399 }
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700400 }
weibit7e583462014-10-23 10:14:05 -0700401 };
weibitf32383b2014-10-22 10:17:31 -0700402
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700403 ConnectPoint start = intent.getSrc();
404 ConnectPoint end = intent.getDst();
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800405
406 // 0 hop case
407 if (start.deviceId().equals(end.deviceId())) {
408 log.debug("install optical intent for 0 hop i.e srcDeviceId=dstDeviceId");
409 DefaultLink defaultLink = DefaultLink.builder()
410 .providerId(PROVIDER_ID)
411 .src(start)
412 .dst(end)
413 .state(Link.State.ACTIVE)
414 .type(Link.Type.DIRECT)
415 .isExpected(true)
416 .build();
417 List<Link> links = ImmutableList.<Link>builder().add(defaultLink).build();
418 Annotations annotations = DefaultAnnotations.builder().build();
419 DefaultPath defaultPath = new DefaultPath(PROVIDER_ID, links, null, annotations);
420 return ImmutableList.<Path>builder().add(defaultPath).build().stream();
421 }
422
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700423 //head link's src port should be same as intent src port and tail link dst port
424 //should be same as intent dst port in the path.
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700425 Stream<Path> paths = topologyService.getKShortestPaths(topology,
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700426 start.deviceId(),
427 end.deviceId(),
Ray Milkey7483e1b2018-02-07 15:43:01 -0800428 weight)
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700429 .filter(p -> p.links().get(0).src().port().equals(start.port()) &&
430 p.links().get(p.links().size() - 1).dst().port().equals(end.port()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700431 if (log.isDebugEnabled()) {
432 return paths
433 .map(path -> {
434 // no-op map stage to add debug logging
435 log.debug("Candidate path: {}",
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800436 path.links().stream()
437 .map(lk -> lk.src() + "-" + lk.dst())
438 .collect(Collectors.toList()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700439 return path;
440 });
441 }
alessio3039bdb2018-11-29 14:12:32 +0100442
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700443 return paths;
weibitf32383b2014-10-22 10:17:31 -0700444 }
weibitf32383b2014-10-22 10:17:31 -0700445}