blob: 3ad3c0e81342ec78fc068249f7d50a989a297505 [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;
weibitf32383b2014-10-22 10:17:31 -070022import org.apache.felix.scr.annotations.Activate;
Sho SHIMIZU9a2b8292015-10-28 13:00:16 -070023import org.apache.felix.scr.annotations.Component;
weibitf32383b2014-10-22 10:17:31 -070024import org.apache.felix.scr.annotations.Deactivate;
25import org.apache.felix.scr.annotations.Reference;
26import org.apache.felix.scr.annotations.ReferenceCardinality;
Marc De Leenheer723f5532015-06-03 20:16:17 -070027import org.onosproject.net.AnnotationKeys;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080028import org.onosproject.net.Annotations;
Marc De Leenheer2c305302015-12-07 21:37:44 -080029import org.onosproject.net.ChannelSpacing;
Brian O'Connorabafb502014-12-02 22:26:20 -080030import org.onosproject.net.ConnectPoint;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080031import org.onosproject.net.DefaultAnnotations;
32import org.onosproject.net.DefaultLink;
Marc De Leenheer2c305302015-12-07 21:37:44 -080033import org.onosproject.net.DefaultOchSignalComparator;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080034import org.onosproject.net.DefaultPath;
Marc De Leenheer723f5532015-06-03 20:16:17 -070035import org.onosproject.net.DeviceId;
fahadnaeemkhanffc917f2017-10-03 14:04:46 -070036import org.onosproject.net.GridType;
Brian O'Connorabafb502014-12-02 22:26:20 -080037import org.onosproject.net.Link;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070038import org.onosproject.net.OchSignal;
Marc De Leenheerd24420f2015-05-27 09:40:59 -070039import org.onosproject.net.OchSignalType;
Brian O'Connorabafb502014-12-02 22:26:20 -080040import org.onosproject.net.Path;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070041import org.onosproject.net.Port;
42import org.onosproject.net.device.DeviceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080043import org.onosproject.net.intent.Intent;
44import org.onosproject.net.intent.IntentCompiler;
45import org.onosproject.net.intent.IntentExtensionService;
46import org.onosproject.net.intent.OpticalConnectivityIntent;
47import org.onosproject.net.intent.OpticalPathIntent;
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -080048import org.onosproject.net.optical.OchPort;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080049import org.onosproject.net.provider.ProviderId;
Sho SHIMIZUe18cb122016-02-22 21:04:56 -080050import org.onosproject.net.resource.Resource;
Marc De Leenheer03a52b02017-06-05 20:36:23 -070051import org.onosproject.net.resource.ResourceAllocation;
Sho SHIMIZUe18cb122016-02-22 21:04:56 -080052import org.onosproject.net.resource.ResourceService;
53import org.onosproject.net.resource.Resources;
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -070054import org.onosproject.net.topology.AdapterLinkWeigher;
Brian O'Connorabafb502014-12-02 22:26:20 -080055import org.onosproject.net.topology.LinkWeight;
56import org.onosproject.net.topology.Topology;
Yuta HIGUCHId95d5902016-06-27 00:18:45 -070057import org.onosproject.net.topology.TopologyEdge;
Brian O'Connorabafb502014-12-02 22:26:20 -080058import org.onosproject.net.topology.TopologyService;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070059import org.slf4j.Logger;
60import org.slf4j.LoggerFactory;
weibitf32383b2014-10-22 10:17:31 -070061
Marc De Leenheer2c305302015-12-07 21:37:44 -080062import java.util.ArrayList;
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -070063import java.util.Collection;
Sho SHIMIZUc25a0082015-10-27 17:06:29 -070064import java.util.Collections;
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -070065import java.util.LinkedList;
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070066import java.util.List;
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -080067import java.util.Map;
68import java.util.Optional;
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070069import java.util.Set;
Sho SHIMIZU280e7912015-09-29 13:42:03 -070070import java.util.stream.Collectors;
fahadnaeemkhanffc917f2017-10-03 14:04:46 -070071import java.util.stream.IntStream;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080072import java.util.stream.Stream;
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070073
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070074import static com.google.common.base.Preconditions.checkArgument;
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -080075import static org.onosproject.net.optical.device.OpticalDeviceServiceView.opticalView;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070076
weibitf32383b2014-10-22 10:17:31 -070077/**
Brian O'Connorabafb502014-12-02 22:26:20 -080078 * An intent compiler for {@link org.onosproject.net.intent.OpticalConnectivityIntent}.
weibitf32383b2014-10-22 10:17:31 -070079 */
Sho SHIMIZU9a2b8292015-10-28 13:00:16 -070080@Component(immediate = true)
weibitf32383b2014-10-22 10:17:31 -070081public class OpticalConnectivityIntentCompiler implements IntentCompiler<OpticalConnectivityIntent> {
82
Ray Milkey9c9cde42018-01-12 14:22:06 -080083 private static final Logger log = LoggerFactory.getLogger(OpticalConnectivityIntentCompiler.class);
Marc De Leenheer2c305302015-12-07 21:37:44 -080084 // By default, allocate 50 GHz lambdas (4 slots of 12.5 GHz) for each intent.
85 private static final int SLOT_COUNT = 4;
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -080086 private static final ProviderId PROVIDER_ID = new ProviderId("opticalConnectivityIntent",
87 "org.onosproject.net.optical.intent");
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070088
weibitf32383b2014-10-22 10:17:31 -070089 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
90 protected IntentExtensionService intentManager;
91
92 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
weibit7e583462014-10-23 10:14:05 -070093 protected TopologyService topologyService;
weibitf32383b2014-10-22 10:17:31 -070094
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070095 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
96 protected DeviceService deviceService;
97
98 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Sho SHIMIZU5c16df82015-09-29 12:52:07 -070099 protected ResourceService resourceService;
100
weibitf32383b2014-10-22 10:17:31 -0700101 @Activate
102 public void activate() {
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -0800103 deviceService = opticalView(deviceService);
weibitf32383b2014-10-22 10:17:31 -0700104 intentManager.registerCompiler(OpticalConnectivityIntent.class, this);
105 }
106
107 @Deactivate
108 public void deactivate() {
109 intentManager.unregisterCompiler(OpticalConnectivityIntent.class);
110 }
111
112 @Override
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700113 public List<Intent> compile(OpticalConnectivityIntent intent,
Sho SHIMIZUec07ffd2016-02-22 20:45:21 -0800114 List<Intent> installable) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700115 // Check if source and destination are optical OCh ports
116 ConnectPoint src = intent.getSrc();
117 ConnectPoint dst = intent.getDst();
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700118 checkArgument(deviceService.getPort(src.deviceId(), src.port()) instanceof OchPort);
119 checkArgument(deviceService.getPort(dst.deviceId(), dst.port()) instanceof OchPort);
120 List<Resource> resources = new LinkedList<>();
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700121
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700122 log.debug("Compiling optical connectivity intent between {} and {}", src, dst);
123
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200124 // Release of intent resources here is only a temporary solution for handling the
125 // case of recompiling due to intent restoration (when intent state is FAILED).
126 // TODO: try to release intent resources in IntentManager.
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700127 resourceService.release(intent.key());
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200128
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800129 // Check OCh port availability
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700130 // If ports are not available, compilation fails
131 // Else add port to resource reservation list
Sho SHIMIZU460b9722016-01-28 10:48:26 -0800132 Resource srcPortResource = Resources.discrete(src.deviceId(), src.port()).resource();
133 Resource dstPortResource = Resources.discrete(dst.deviceId(), dst.port()).resource();
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800134 if (!Stream.of(srcPortResource, dstPortResource).allMatch(resourceService::isAvailable)) {
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -0700135 log.error("Ports for the intent are not available. Intent: {}", intent);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700136 throw new OpticalIntentCompilationException("Ports for the intent are not available. Intent: " + intent);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700137 }
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800138 resources.add(srcPortResource);
139 resources.add(dstPortResource);
140
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700141 // Find first path that has the required resources
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700142 Stream<Path> paths = getOpticalPaths(intent);
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700143 Optional<Map.Entry<Path, List<OchSignal>>> found = paths
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700144 .map(path -> Maps.immutableEntry(path, findFirstAvailableLambda(intent, path)))
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800145 .filter(entry -> !entry.getValue().isEmpty())
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700146 .filter(entry -> convertToResources(entry.getKey(),
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800147 entry.getValue()).stream().allMatch(resourceService::isAvailable))
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800148 .findFirst();
149
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700150 // Allocate resources and create optical path intent
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800151 if (found.isPresent()) {
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700152 resources.addAll(convertToResources(found.get().getKey(), found.get().getValue()));
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800153 allocateResources(intent, resources);
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800154 OchSignal ochSignal = OchSignal.toFixedGrid(found.get().getValue(), ChannelSpacing.CHL_50GHZ);
155 return ImmutableList.of(createIntent(intent, found.get().getKey(), ochSignal));
156 } else {
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -0700157 log.error("Unable to find suitable lightpath for intent {}", intent);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700158 throw new OpticalIntentCompilationException("Unable to find suitable lightpath for intent " + intent);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700159 }
weibitf32383b2014-10-22 10:17:31 -0700160 }
161
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700162 /**
163 * Create installable optical path intent.
164 * Only supports fixed grid for now.
165 *
166 * @param parentIntent this intent (used for resource tracking)
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800167 * @param path the path to use
168 * @param lambda the lambda to use
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700169 * @return optical path intent
170 */
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800171 private Intent createIntent(OpticalConnectivityIntent parentIntent, Path path, OchSignal lambda) {
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800172 OchSignalType signalType = OchSignalType.FIXED_GRID;
173
174 return OpticalPathIntent.builder()
175 .appId(parentIntent.appId())
Yuta HIGUCHI652f27f2016-10-31 16:54:30 -0700176 .key(parentIntent.key())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800177 .src(parentIntent.getSrc())
178 .dst(parentIntent.getDst())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800179 .path(path)
180 .lambda(lambda)
181 .signalType(signalType)
182 .bidirectional(parentIntent.isBidirectional())
Luca Prete670ac5d2017-02-03 15:55:43 -0800183 .resourceGroup(parentIntent.resourceGroup())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800184 .build();
185 }
186
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700187 /**
188 * Convert given lambda as discrete resource of all path ports.
189 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800190 * @param path the path
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700191 * @param lambda the lambda
192 * @return list of discrete resources
193 */
194 private List<Resource> convertToResources(Path path, Collection<OchSignal> lambda) {
195 return path.links().stream()
196 .flatMap(x -> Stream.of(
197 Resources.discrete(x.src().deviceId(), x.src().port()).resource(),
198 Resources.discrete(x.dst().deviceId(), x.dst().port()).resource()
199 ))
200 .flatMap(x -> lambda.stream().map(x::child))
201 .collect(Collectors.toList());
202 }
203
204 /**
205 * Reserve all required resources for this intent.
206 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800207 * @param intent the intent
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700208 * @param resources list of resources to reserve
209 */
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800210 private void allocateResources(Intent intent, List<Resource> resources) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700211 List<ResourceAllocation> allocations = resourceService.allocate(intent.key(), resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800212 if (allocations.isEmpty()) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700213 log.error("Resource allocation for {} failed (resource request: {})", intent.key(), resources);
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700214 if (log.isDebugEnabled()) {
215 log.debug("requested resources:\n\t{}", resources.stream()
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700216 .map(Resource::toString)
217 .collect(Collectors.joining("\n\t")));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700218 }
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700219 throw new OpticalIntentCompilationException("Unable to allocate resources: " + resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800220 }
221 }
222
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700223 /**
224 * Find the first available lambda on the given path by checking all the port resources.
225 *
226 * @param path the path
227 * @return list of consecutive and available OChSignals
228 */
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700229 private List<OchSignal> findFirstAvailableLambda(OpticalConnectivityIntent intent, Path path) {
230 if (intent.ochSignal().isPresent()) {
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700231 //create lambdas w.r.t. slotGanularity/slotWidth
232 OchSignal ochSignal = intent.ochSignal().get();
233 if (ochSignal.gridType() == GridType.FLEX) {
234 // multiplier sits in the middle of slots
235 int startMultiplier = ochSignal.spacingMultiplier() - (ochSignal.slotGranularity() / 2);
236 return IntStream.range(0, ochSignal.slotGranularity())
237 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
238 .collect(Collectors.toList());
239 } else if (ochSignal.gridType() == GridType.DWDM) {
240 int startMultiplier = (int) (1 - ochSignal.slotGranularity() +
241 ochSignal.spacingMultiplier() * ochSignal.channelSpacing().frequency().asHz() /
242 ChannelSpacing.CHL_6P25GHZ.frequency().asHz());
243 return IntStream.range(0, ochSignal.slotGranularity())
244 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
245 .collect(Collectors.toList());
246 }
247 //TODO: add support for other gridTypes
248 log.error("Grid type: {} not supported for user defined signal intents", ochSignal.gridType());
249 return Collections.emptyList();
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700250 }
251
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700252 Set<OchSignal> lambdas = findCommonLambdas(path);
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700253 if (lambdas.isEmpty()) {
Marc De Leenheer2c305302015-12-07 21:37:44 -0800254 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700255 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700256
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800257 return findFirstLambda(lambdas, slotCount());
258 }
259
Marc De Leenheer2c305302015-12-07 21:37:44 -0800260 /**
261 * Get the number of 12.5 GHz slots required for the path.
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800262 * <p>
Marc De Leenheer2c305302015-12-07 21:37:44 -0800263 * For now this returns a constant value of 4 (i.e., fixed grid 50 GHz slot),
264 * but in the future can depend on optical reach, line rate, transponder port capabilities, etc.
265 *
266 * @return number of slots
267 */
268 private int slotCount() {
269 return SLOT_COUNT;
270 }
271
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700272 /**
273 * Find common lambdas on all ports that compose the path.
274 *
275 * @param path the path
276 * @return set of common lambdas
277 */
278 private Set<OchSignal> findCommonLambdas(Path path) {
279 return path.links().stream()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800280 .flatMap(x -> Stream.of(
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800281 Resources.discrete(x.src().deviceId(), x.src().port()).id(),
282 Resources.discrete(x.dst().deviceId(), x.dst().port()).id()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800283 ))
Sho SHIMIZU7332fe42016-02-15 14:58:33 -0800284 .map(x -> resourceService.getAvailableResourceValues(x, OchSignal.class))
Marc De Leenheer2c305302015-12-07 21:37:44 -0800285 .map(x -> (Set<OchSignal>) ImmutableSet.copyOf(x))
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700286 .reduce(Sets::intersection)
287 .orElse(Collections.emptySet());
288 }
289
Marc De Leenheer2c305302015-12-07 21:37:44 -0800290 /**
291 * Returns list of consecutive resources in given set of lambdas.
292 *
293 * @param lambdas list of lambdas
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800294 * @param count number of consecutive lambdas to return
Marc De Leenheer2c305302015-12-07 21:37:44 -0800295 * @return list of consecutive lambdas
296 */
297 private List<OchSignal> findFirstLambda(Set<OchSignal> lambdas, int count) {
298 // Sort available lambdas
299 List<OchSignal> lambdaList = new ArrayList<>(lambdas);
300 lambdaList.sort(new DefaultOchSignalComparator());
301
302 // Look ahead by count and ensure spacing multiplier is as expected (i.e., no gaps)
303 for (int i = 0; i < lambdaList.size() - count; i++) {
304 if (lambdaList.get(i).spacingMultiplier() + 2 * count ==
305 lambdaList.get(i + count).spacingMultiplier()) {
306 return lambdaList.subList(i, i + count);
307 }
308 }
309
310 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700311 }
312
Marc De Leenheer723f5532015-06-03 20:16:17 -0700313 private ConnectPoint staticPort(ConnectPoint connectPoint) {
314 Port port = deviceService.getPort(connectPoint.deviceId(), connectPoint.port());
315
316 String staticPort = port.annotations().value(AnnotationKeys.STATIC_PORT);
317
318 // FIXME: need a better way to match the port
319 if (staticPort != null) {
320 for (Port p : deviceService.getPorts(connectPoint.deviceId())) {
321 if (staticPort.equals(p.number().name())) {
322 return new ConnectPoint(p.element().id(), p.number());
323 }
324 }
325 }
326
327 return null;
328 }
329
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700330 /**
331 * Calculates optical paths in WDM topology.
332 *
333 * @param intent optical connectivity intent
334 * @return set of paths in WDM topology
335 */
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700336 private Stream<Path> getOpticalPaths(OpticalConnectivityIntent intent) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700337 // Route in WDM topology
weibit7e583462014-10-23 10:14:05 -0700338 Topology topology = topologyService.currentTopology();
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700339 //TODO: refactor with LinkWeigher class Implementation
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700340 LinkWeight weight = new LinkWeight() {
Sho SHIMIZU74626412015-09-11 11:46:27 -0700341
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700342 @Override
343 public double weight(TopologyEdge edge) {
344 // Disregard inactive or non-optical links
345 if (edge.link().state() == Link.State.INACTIVE) {
346 return -1;
347 }
348 if (edge.link().type() != Link.Type.OPTICAL) {
349 return -1;
350 }
351 // Adhere to static port mappings
352 DeviceId srcDeviceId = edge.link().src().deviceId();
353 if (srcDeviceId.equals(intent.getSrc().deviceId())) {
354 ConnectPoint srcStaticPort = staticPort(intent.getSrc());
355 if (srcStaticPort != null) {
356 return srcStaticPort.equals(edge.link().src()) ? 1 : -1;
357 }
358 }
359 DeviceId dstDeviceId = edge.link().dst().deviceId();
360 if (dstDeviceId.equals(intent.getDst().deviceId())) {
361 ConnectPoint dstStaticPort = staticPort(intent.getDst());
362 if (dstStaticPort != null) {
363 return dstStaticPort.equals(edge.link().dst()) ? 1 : -1;
364 }
365 }
366
367 return 1;
368 }
weibit7e583462014-10-23 10:14:05 -0700369 };
weibitf32383b2014-10-22 10:17:31 -0700370
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700371 ConnectPoint start = intent.getSrc();
372 ConnectPoint end = intent.getDst();
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800373
374 // 0 hop case
375 if (start.deviceId().equals(end.deviceId())) {
376 log.debug("install optical intent for 0 hop i.e srcDeviceId=dstDeviceId");
377 DefaultLink defaultLink = DefaultLink.builder()
378 .providerId(PROVIDER_ID)
379 .src(start)
380 .dst(end)
381 .state(Link.State.ACTIVE)
382 .type(Link.Type.DIRECT)
383 .isExpected(true)
384 .build();
385 List<Link> links = ImmutableList.<Link>builder().add(defaultLink).build();
386 Annotations annotations = DefaultAnnotations.builder().build();
387 DefaultPath defaultPath = new DefaultPath(PROVIDER_ID, links, null, annotations);
388 return ImmutableList.<Path>builder().add(defaultPath).build().stream();
389 }
390
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700391 //head link's src port should be same as intent src port and tail link dst port
392 //should be same as intent dst port in the path.
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700393 Stream<Path> paths = topologyService.getKShortestPaths(topology,
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700394 start.deviceId(),
395 end.deviceId(),
396 AdapterLinkWeigher.adapt(weight))
397 .filter(p -> p.links().get(0).src().port().equals(start.port()) &&
398 p.links().get(p.links().size() - 1).dst().port().equals(end.port()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700399 if (log.isDebugEnabled()) {
400 return paths
401 .map(path -> {
402 // no-op map stage to add debug logging
403 log.debug("Candidate path: {}",
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800404 path.links().stream()
405 .map(lk -> lk.src() + "-" + lk.dst())
406 .collect(Collectors.toList()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700407 return path;
408 });
409 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700410 return paths;
weibitf32383b2014-10-22 10:17:31 -0700411 }
weibitf32383b2014-10-22 10:17:31 -0700412}