blob: acedda2ea44e443e0a5f5bc1b03d79d43a81674f [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;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070037import org.osgi.service.component.annotations.Activate;
38import org.osgi.service.component.annotations.Component;
39import org.osgi.service.component.annotations.Deactivate;
40import org.osgi.service.component.annotations.Reference;
41import org.osgi.service.component.annotations.ReferenceCardinality;
Ray Milkey7483e1b2018-02-07 15:43:01 -080042import org.onlab.graph.ScalarWeight;
43import org.onlab.graph.Weight;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070044import 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())
alessio0a0f3342019-10-28 16:58:01 +0100185 .priority(parentIntent.priority())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800186 .src(parentIntent.getSrc())
187 .dst(parentIntent.getDst())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800188 .path(path)
189 .lambda(lambda)
190 .signalType(signalType)
191 .bidirectional(parentIntent.isBidirectional())
Luca Prete670ac5d2017-02-03 15:55:43 -0800192 .resourceGroup(parentIntent.resourceGroup())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800193 .build();
194 }
195
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700196 /**
197 * Convert given lambda as discrete resource of all path ports.
198 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800199 * @param path the path
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700200 * @param lambda the lambda
201 * @return list of discrete resources
202 */
203 private List<Resource> convertToResources(Path path, Collection<OchSignal> lambda) {
204 return path.links().stream()
205 .flatMap(x -> Stream.of(
206 Resources.discrete(x.src().deviceId(), x.src().port()).resource(),
207 Resources.discrete(x.dst().deviceId(), x.dst().port()).resource()
208 ))
209 .flatMap(x -> lambda.stream().map(x::child))
210 .collect(Collectors.toList());
211 }
212
213 /**
214 * Reserve all required resources for this intent.
215 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800216 * @param intent the intent
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700217 * @param resources list of resources to reserve
218 */
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800219 private void allocateResources(Intent intent, List<Resource> resources) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700220 List<ResourceAllocation> allocations = resourceService.allocate(intent.key(), resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800221 if (allocations.isEmpty()) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700222 log.error("Resource allocation for {} failed (resource request: {})", intent.key(), resources);
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700223 if (log.isDebugEnabled()) {
224 log.debug("requested resources:\n\t{}", resources.stream()
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700225 .map(Resource::toString)
226 .collect(Collectors.joining("\n\t")));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700227 }
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700228 throw new OpticalIntentCompilationException("Unable to allocate resources: " + resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800229 }
230 }
231
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700232 /**
233 * Find the first available lambda on the given path by checking all the port resources.
234 *
235 * @param path the path
236 * @return list of consecutive and available OChSignals
237 */
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700238 private List<OchSignal> findFirstAvailableLambda(OpticalConnectivityIntent intent, Path path) {
239 if (intent.ochSignal().isPresent()) {
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700240 //create lambdas w.r.t. slotGanularity/slotWidth
241 OchSignal ochSignal = intent.ochSignal().get();
242 if (ochSignal.gridType() == GridType.FLEX) {
243 // multiplier sits in the middle of slots
244 int startMultiplier = ochSignal.spacingMultiplier() - (ochSignal.slotGranularity() / 2);
245 return IntStream.range(0, ochSignal.slotGranularity())
246 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
247 .collect(Collectors.toList());
248 } else if (ochSignal.gridType() == GridType.DWDM) {
249 int startMultiplier = (int) (1 - ochSignal.slotGranularity() +
250 ochSignal.spacingMultiplier() * ochSignal.channelSpacing().frequency().asHz() /
251 ChannelSpacing.CHL_6P25GHZ.frequency().asHz());
252 return IntStream.range(0, ochSignal.slotGranularity())
253 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
254 .collect(Collectors.toList());
255 }
256 //TODO: add support for other gridTypes
257 log.error("Grid type: {} not supported for user defined signal intents", ochSignal.gridType());
258 return Collections.emptyList();
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700259 }
260
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700261 Set<OchSignal> lambdas = findCommonLambdas(path);
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700262 if (lambdas.isEmpty()) {
Marc De Leenheer2c305302015-12-07 21:37:44 -0800263 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700264 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700265
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800266 return findFirstLambda(lambdas, slotCount());
267 }
268
Marc De Leenheer2c305302015-12-07 21:37:44 -0800269 /**
270 * Get the number of 12.5 GHz slots required for the path.
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800271 * <p>
Marc De Leenheer2c305302015-12-07 21:37:44 -0800272 * For now this returns a constant value of 4 (i.e., fixed grid 50 GHz slot),
273 * but in the future can depend on optical reach, line rate, transponder port capabilities, etc.
274 *
275 * @return number of slots
276 */
277 private int slotCount() {
278 return SLOT_COUNT;
279 }
280
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700281 /**
282 * Find common lambdas on all ports that compose the path.
283 *
284 * @param path the path
285 * @return set of common lambdas
286 */
287 private Set<OchSignal> findCommonLambdas(Path path) {
288 return path.links().stream()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800289 .flatMap(x -> Stream.of(
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800290 Resources.discrete(x.src().deviceId(), x.src().port()).id(),
291 Resources.discrete(x.dst().deviceId(), x.dst().port()).id()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800292 ))
Sho SHIMIZU7332fe42016-02-15 14:58:33 -0800293 .map(x -> resourceService.getAvailableResourceValues(x, OchSignal.class))
Marc De Leenheer2c305302015-12-07 21:37:44 -0800294 .map(x -> (Set<OchSignal>) ImmutableSet.copyOf(x))
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700295 .reduce(Sets::intersection)
296 .orElse(Collections.emptySet());
297 }
298
Marc De Leenheer2c305302015-12-07 21:37:44 -0800299 /**
300 * Returns list of consecutive resources in given set of lambdas.
301 *
302 * @param lambdas list of lambdas
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800303 * @param count number of consecutive lambdas to return
Marc De Leenheer2c305302015-12-07 21:37:44 -0800304 * @return list of consecutive lambdas
305 */
306 private List<OchSignal> findFirstLambda(Set<OchSignal> lambdas, int count) {
307 // Sort available lambdas
308 List<OchSignal> lambdaList = new ArrayList<>(lambdas);
309 lambdaList.sort(new DefaultOchSignalComparator());
Andrea Campanellae4b2c682019-08-23 15:42:55 +0200310 //Means there is only exactly one set of lambdas available
311 if (lambdaList.size() == count) {
312 return lambdaList;
313 }
Marc De Leenheer2c305302015-12-07 21:37:44 -0800314 // Look ahead by count and ensure spacing multiplier is as expected (i.e., no gaps)
315 for (int i = 0; i < lambdaList.size() - count; i++) {
316 if (lambdaList.get(i).spacingMultiplier() + 2 * count ==
317 lambdaList.get(i + count).spacingMultiplier()) {
318 return lambdaList.subList(i, i + count);
319 }
320 }
321
322 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700323 }
324
Marc De Leenheer723f5532015-06-03 20:16:17 -0700325 private ConnectPoint staticPort(ConnectPoint connectPoint) {
326 Port port = deviceService.getPort(connectPoint.deviceId(), connectPoint.port());
327
328 String staticPort = port.annotations().value(AnnotationKeys.STATIC_PORT);
329
330 // FIXME: need a better way to match the port
331 if (staticPort != null) {
332 for (Port p : deviceService.getPorts(connectPoint.deviceId())) {
333 if (staticPort.equals(p.number().name())) {
334 return new ConnectPoint(p.element().id(), p.number());
335 }
336 }
337 }
338
339 return null;
340 }
341
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700342 /**
343 * Calculates optical paths in WDM topology.
344 *
345 * @param intent optical connectivity intent
346 * @return set of paths in WDM topology
347 */
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700348 private Stream<Path> getOpticalPaths(OpticalConnectivityIntent intent) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700349 // Route in WDM topology
weibit7e583462014-10-23 10:14:05 -0700350 Topology topology = topologyService.currentTopology();
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700351 //TODO: refactor with LinkWeigher class Implementation
Ray Milkey7483e1b2018-02-07 15:43:01 -0800352 LinkWeigher weight = new LinkWeigher() {
Sho SHIMIZU74626412015-09-11 11:46:27 -0700353
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700354 @Override
Ray Milkey7483e1b2018-02-07 15:43:01 -0800355 public Weight getInitialWeight() {
356 return ScalarWeight.toWeight(0.0);
357 }
358
359 @Override
360 public Weight getNonViableWeight() {
361 return ScalarWeight.NON_VIABLE_WEIGHT;
362 }
363
alessio3039bdb2018-11-29 14:12:32 +0100364 /**
365 *
366 * @param edge edge to be weighed
367 * @return the metric retrieved from the annotations otherwise 1
368 */
Ray Milkey7483e1b2018-02-07 15:43:01 -0800369 @Override
370 public Weight weight(TopologyEdge edge) {
alessio3039bdb2018-11-29 14:12:32 +0100371
372 log.debug("Link {} metric {}", edge.link(), edge.link().annotations().value("metric"));
373
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700374 // Disregard inactive or non-optical links
375 if (edge.link().state() == Link.State.INACTIVE) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800376 return ScalarWeight.toWeight(-1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700377 }
378 if (edge.link().type() != Link.Type.OPTICAL) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800379 return ScalarWeight.toWeight(-1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700380 }
381 // Adhere to static port mappings
382 DeviceId srcDeviceId = edge.link().src().deviceId();
383 if (srcDeviceId.equals(intent.getSrc().deviceId())) {
384 ConnectPoint srcStaticPort = staticPort(intent.getSrc());
385 if (srcStaticPort != null) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800386 return ScalarWeight.toWeight(srcStaticPort.equals(edge.link().src()) ? 1 : -1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700387 }
388 }
389 DeviceId dstDeviceId = edge.link().dst().deviceId();
390 if (dstDeviceId.equals(intent.getDst().deviceId())) {
391 ConnectPoint dstStaticPort = staticPort(intent.getDst());
392 if (dstStaticPort != null) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800393 return ScalarWeight.toWeight(dstStaticPort.equals(edge.link().dst()) ? 1 : -1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700394 }
395 }
396
Boyuan Yan10822382019-02-22 09:45:42 -0800397 Annotations annotations = edge.link().annotations();
Jan Kundrát12eb26a2019-11-08 10:47:10 +0100398 if (annotations != null &&
399 annotations.value("metric") != null && !annotations.value("metric").isEmpty()) {
Boyuan Yan10822382019-02-22 09:45:42 -0800400 double metric = Double.parseDouble(annotations.value("metric"));
alessio3039bdb2018-11-29 14:12:32 +0100401 return ScalarWeight.toWeight(metric);
402 } else {
403 return ScalarWeight.toWeight(1);
404 }
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700405 }
weibit7e583462014-10-23 10:14:05 -0700406 };
weibitf32383b2014-10-22 10:17:31 -0700407
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700408 ConnectPoint start = intent.getSrc();
409 ConnectPoint end = intent.getDst();
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800410
411 // 0 hop case
412 if (start.deviceId().equals(end.deviceId())) {
413 log.debug("install optical intent for 0 hop i.e srcDeviceId=dstDeviceId");
414 DefaultLink defaultLink = DefaultLink.builder()
415 .providerId(PROVIDER_ID)
416 .src(start)
417 .dst(end)
418 .state(Link.State.ACTIVE)
419 .type(Link.Type.DIRECT)
420 .isExpected(true)
421 .build();
422 List<Link> links = ImmutableList.<Link>builder().add(defaultLink).build();
423 Annotations annotations = DefaultAnnotations.builder().build();
424 DefaultPath defaultPath = new DefaultPath(PROVIDER_ID, links, null, annotations);
425 return ImmutableList.<Path>builder().add(defaultPath).build().stream();
426 }
427
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700428 //head link's src port should be same as intent src port and tail link dst port
429 //should be same as intent dst port in the path.
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700430 Stream<Path> paths = topologyService.getKShortestPaths(topology,
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700431 start.deviceId(),
432 end.deviceId(),
Ray Milkey7483e1b2018-02-07 15:43:01 -0800433 weight)
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700434 .filter(p -> p.links().get(0).src().port().equals(start.port()) &&
435 p.links().get(p.links().size() - 1).dst().port().equals(end.port()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700436 if (log.isDebugEnabled()) {
437 return paths
438 .map(path -> {
439 // no-op map stage to add debug logging
440 log.debug("Candidate path: {}",
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800441 path.links().stream()
442 .map(lk -> lk.src() + "-" + lk.dst())
443 .collect(Collectors.toList()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700444 return path;
445 });
446 }
alessio3039bdb2018-11-29 14:12:32 +0100447
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700448 return paths;
weibitf32383b2014-10-22 10:17:31 -0700449 }
weibitf32383b2014-10-22 10:17:31 -0700450}