blob: 5a76aefe124284beaadf5b3bce674770aa9e5b52 [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 Leenheer2c305302015-12-07 21:37:44 -080063import java.util.ArrayList;
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -070064import java.util.Collection;
Sho SHIMIZUc25a0082015-10-27 17:06:29 -070065import java.util.Collections;
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -070066import java.util.LinkedList;
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070067import java.util.List;
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -080068import java.util.Map;
69import java.util.Optional;
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
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700142 // Find first path that has the required resources
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700143 Stream<Path> paths = getOpticalPaths(intent);
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700144 Optional<Map.Entry<Path, List<OchSignal>>> found = paths
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700145 .map(path -> Maps.immutableEntry(path, findFirstAvailableLambda(intent, path)))
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800146 .filter(entry -> !entry.getValue().isEmpty())
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700147 .filter(entry -> convertToResources(entry.getKey(),
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800148 entry.getValue()).stream().allMatch(resourceService::isAvailable))
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800149 .findFirst();
150
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700151 // Allocate resources and create optical path intent
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800152 if (found.isPresent()) {
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700153 resources.addAll(convertToResources(found.get().getKey(), found.get().getValue()));
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800154 allocateResources(intent, resources);
Sho SHIMIZU07ade9b2016-01-28 19:38:50 -0800155 OchSignal ochSignal = OchSignal.toFixedGrid(found.get().getValue(), ChannelSpacing.CHL_50GHZ);
156 return ImmutableList.of(createIntent(intent, found.get().getKey(), ochSignal));
157 } else {
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -0700158 log.error("Unable to find suitable lightpath for intent {}", intent);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700159 throw new OpticalIntentCompilationException("Unable to find suitable lightpath for intent " + intent);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700160 }
weibitf32383b2014-10-22 10:17:31 -0700161 }
162
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700163 /**
164 * Create installable optical path intent.
165 * Only supports fixed grid for now.
166 *
167 * @param parentIntent this intent (used for resource tracking)
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800168 * @param path the path to use
169 * @param lambda the lambda to use
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700170 * @return optical path intent
171 */
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800172 private Intent createIntent(OpticalConnectivityIntent parentIntent, Path path, OchSignal lambda) {
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800173 OchSignalType signalType = OchSignalType.FIXED_GRID;
174
175 return OpticalPathIntent.builder()
176 .appId(parentIntent.appId())
Yuta HIGUCHI652f27f2016-10-31 16:54:30 -0700177 .key(parentIntent.key())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800178 .src(parentIntent.getSrc())
179 .dst(parentIntent.getDst())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800180 .path(path)
181 .lambda(lambda)
182 .signalType(signalType)
183 .bidirectional(parentIntent.isBidirectional())
Luca Prete670ac5d2017-02-03 15:55:43 -0800184 .resourceGroup(parentIntent.resourceGroup())
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800185 .build();
186 }
187
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700188 /**
189 * Convert given lambda as discrete resource of all path ports.
190 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800191 * @param path the path
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700192 * @param lambda the lambda
193 * @return list of discrete resources
194 */
195 private List<Resource> convertToResources(Path path, Collection<OchSignal> lambda) {
196 return path.links().stream()
197 .flatMap(x -> Stream.of(
198 Resources.discrete(x.src().deviceId(), x.src().port()).resource(),
199 Resources.discrete(x.dst().deviceId(), x.dst().port()).resource()
200 ))
201 .flatMap(x -> lambda.stream().map(x::child))
202 .collect(Collectors.toList());
203 }
204
205 /**
206 * Reserve all required resources for this intent.
207 *
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800208 * @param intent the intent
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700209 * @param resources list of resources to reserve
210 */
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800211 private void allocateResources(Intent intent, List<Resource> resources) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700212 List<ResourceAllocation> allocations = resourceService.allocate(intent.key(), resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800213 if (allocations.isEmpty()) {
Yuta HIGUCHI65d9d0e2017-05-04 12:44:32 -0700214 log.error("Resource allocation for {} failed (resource request: {})", intent.key(), resources);
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700215 if (log.isDebugEnabled()) {
216 log.debug("requested resources:\n\t{}", resources.stream()
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700217 .map(Resource::toString)
218 .collect(Collectors.joining("\n\t")));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700219 }
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700220 throw new OpticalIntentCompilationException("Unable to allocate resources: " + resources);
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800221 }
222 }
223
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700224 /**
225 * Find the first available lambda on the given path by checking all the port resources.
226 *
227 * @param path the path
228 * @return list of consecutive and available OChSignals
229 */
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700230 private List<OchSignal> findFirstAvailableLambda(OpticalConnectivityIntent intent, Path path) {
231 if (intent.ochSignal().isPresent()) {
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700232 //create lambdas w.r.t. slotGanularity/slotWidth
233 OchSignal ochSignal = intent.ochSignal().get();
234 if (ochSignal.gridType() == GridType.FLEX) {
235 // multiplier sits in the middle of slots
236 int startMultiplier = ochSignal.spacingMultiplier() - (ochSignal.slotGranularity() / 2);
237 return IntStream.range(0, ochSignal.slotGranularity())
238 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
239 .collect(Collectors.toList());
240 } else if (ochSignal.gridType() == GridType.DWDM) {
241 int startMultiplier = (int) (1 - ochSignal.slotGranularity() +
242 ochSignal.spacingMultiplier() * ochSignal.channelSpacing().frequency().asHz() /
243 ChannelSpacing.CHL_6P25GHZ.frequency().asHz());
244 return IntStream.range(0, ochSignal.slotGranularity())
245 .mapToObj(x -> OchSignal.newFlexGridSlot(startMultiplier + (2 * x)))
246 .collect(Collectors.toList());
247 }
248 //TODO: add support for other gridTypes
249 log.error("Grid type: {} not supported for user defined signal intents", ochSignal.gridType());
250 return Collections.emptyList();
Marc De Leenheeradfeffd2017-06-22 16:05:34 -0700251 }
252
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700253 Set<OchSignal> lambdas = findCommonLambdas(path);
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700254 if (lambdas.isEmpty()) {
Marc De Leenheer2c305302015-12-07 21:37:44 -0800255 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700256 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700257
Sho SHIMIZU394918d2016-01-28 16:32:10 -0800258 return findFirstLambda(lambdas, slotCount());
259 }
260
Marc De Leenheer2c305302015-12-07 21:37:44 -0800261 /**
262 * Get the number of 12.5 GHz slots required for the path.
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800263 * <p>
Marc De Leenheer2c305302015-12-07 21:37:44 -0800264 * For now this returns a constant value of 4 (i.e., fixed grid 50 GHz slot),
265 * but in the future can depend on optical reach, line rate, transponder port capabilities, etc.
266 *
267 * @return number of slots
268 */
269 private int slotCount() {
270 return SLOT_COUNT;
271 }
272
Marc De Leenheer03a52b02017-06-05 20:36:23 -0700273 /**
274 * Find common lambdas on all ports that compose the path.
275 *
276 * @param path the path
277 * @return set of common lambdas
278 */
279 private Set<OchSignal> findCommonLambdas(Path path) {
280 return path.links().stream()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800281 .flatMap(x -> Stream.of(
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800282 Resources.discrete(x.src().deviceId(), x.src().port()).id(),
283 Resources.discrete(x.dst().deviceId(), x.dst().port()).id()
Sho SHIMIZU44f37612015-11-25 16:23:22 -0800284 ))
Sho SHIMIZU7332fe42016-02-15 14:58:33 -0800285 .map(x -> resourceService.getAvailableResourceValues(x, OchSignal.class))
Marc De Leenheer2c305302015-12-07 21:37:44 -0800286 .map(x -> (Set<OchSignal>) ImmutableSet.copyOf(x))
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700287 .reduce(Sets::intersection)
288 .orElse(Collections.emptySet());
289 }
290
Marc De Leenheer2c305302015-12-07 21:37:44 -0800291 /**
292 * Returns list of consecutive resources in given set of lambdas.
293 *
294 * @param lambdas list of lambdas
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800295 * @param count number of consecutive lambdas to return
Marc De Leenheer2c305302015-12-07 21:37:44 -0800296 * @return list of consecutive lambdas
297 */
298 private List<OchSignal> findFirstLambda(Set<OchSignal> lambdas, int count) {
299 // Sort available lambdas
300 List<OchSignal> lambdaList = new ArrayList<>(lambdas);
301 lambdaList.sort(new DefaultOchSignalComparator());
302
303 // Look ahead by count and ensure spacing multiplier is as expected (i.e., no gaps)
304 for (int i = 0; i < lambdaList.size() - count; i++) {
305 if (lambdaList.get(i).spacingMultiplier() + 2 * count ==
306 lambdaList.get(i + count).spacingMultiplier()) {
307 return lambdaList.subList(i, i + count);
308 }
309 }
310
311 return Collections.emptyList();
Sho SHIMIZUc25a0082015-10-27 17:06:29 -0700312 }
313
Marc De Leenheer723f5532015-06-03 20:16:17 -0700314 private ConnectPoint staticPort(ConnectPoint connectPoint) {
315 Port port = deviceService.getPort(connectPoint.deviceId(), connectPoint.port());
316
317 String staticPort = port.annotations().value(AnnotationKeys.STATIC_PORT);
318
319 // FIXME: need a better way to match the port
320 if (staticPort != null) {
321 for (Port p : deviceService.getPorts(connectPoint.deviceId())) {
322 if (staticPort.equals(p.number().name())) {
323 return new ConnectPoint(p.element().id(), p.number());
324 }
325 }
326 }
327
328 return null;
329 }
330
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700331 /**
332 * Calculates optical paths in WDM topology.
333 *
334 * @param intent optical connectivity intent
335 * @return set of paths in WDM topology
336 */
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700337 private Stream<Path> getOpticalPaths(OpticalConnectivityIntent intent) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700338 // Route in WDM topology
weibit7e583462014-10-23 10:14:05 -0700339 Topology topology = topologyService.currentTopology();
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700340 //TODO: refactor with LinkWeigher class Implementation
Ray Milkey7483e1b2018-02-07 15:43:01 -0800341 LinkWeigher weight = new LinkWeigher() {
Sho SHIMIZU74626412015-09-11 11:46:27 -0700342
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700343 @Override
Ray Milkey7483e1b2018-02-07 15:43:01 -0800344 public Weight getInitialWeight() {
345 return ScalarWeight.toWeight(0.0);
346 }
347
348 @Override
349 public Weight getNonViableWeight() {
350 return ScalarWeight.NON_VIABLE_WEIGHT;
351 }
352
353 @Override
354 public Weight weight(TopologyEdge edge) {
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700355 // Disregard inactive or non-optical links
356 if (edge.link().state() == Link.State.INACTIVE) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800357 return ScalarWeight.toWeight(-1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700358 }
359 if (edge.link().type() != Link.Type.OPTICAL) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800360 return ScalarWeight.toWeight(-1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700361 }
362 // Adhere to static port mappings
363 DeviceId srcDeviceId = edge.link().src().deviceId();
364 if (srcDeviceId.equals(intent.getSrc().deviceId())) {
365 ConnectPoint srcStaticPort = staticPort(intent.getSrc());
366 if (srcStaticPort != null) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800367 return ScalarWeight.toWeight(srcStaticPort.equals(edge.link().src()) ? 1 : -1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700368 }
369 }
370 DeviceId dstDeviceId = edge.link().dst().deviceId();
371 if (dstDeviceId.equals(intent.getDst().deviceId())) {
372 ConnectPoint dstStaticPort = staticPort(intent.getDst());
373 if (dstStaticPort != null) {
Ray Milkey7483e1b2018-02-07 15:43:01 -0800374 return ScalarWeight.toWeight(dstStaticPort.equals(edge.link().dst()) ? 1 : -1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700375 }
376 }
377
Ray Milkey7483e1b2018-02-07 15:43:01 -0800378 return ScalarWeight.toWeight(1);
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700379 }
weibit7e583462014-10-23 10:14:05 -0700380 };
weibitf32383b2014-10-22 10:17:31 -0700381
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700382 ConnectPoint start = intent.getSrc();
383 ConnectPoint end = intent.getDst();
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800384
385 // 0 hop case
386 if (start.deviceId().equals(end.deviceId())) {
387 log.debug("install optical intent for 0 hop i.e srcDeviceId=dstDeviceId");
388 DefaultLink defaultLink = DefaultLink.builder()
389 .providerId(PROVIDER_ID)
390 .src(start)
391 .dst(end)
392 .state(Link.State.ACTIVE)
393 .type(Link.Type.DIRECT)
394 .isExpected(true)
395 .build();
396 List<Link> links = ImmutableList.<Link>builder().add(defaultLink).build();
397 Annotations annotations = DefaultAnnotations.builder().build();
398 DefaultPath defaultPath = new DefaultPath(PROVIDER_ID, links, null, annotations);
399 return ImmutableList.<Path>builder().add(defaultPath).build().stream();
400 }
401
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700402 //head link's src port should be same as intent src port and tail link dst port
403 //should be same as intent dst port in the path.
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700404 Stream<Path> paths = topologyService.getKShortestPaths(topology,
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700405 start.deviceId(),
406 end.deviceId(),
Ray Milkey7483e1b2018-02-07 15:43:01 -0800407 weight)
fahadnaeemkhanffc917f2017-10-03 14:04:46 -0700408 .filter(p -> p.links().get(0).src().port().equals(start.port()) &&
409 p.links().get(p.links().size() - 1).dst().port().equals(end.port()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700410 if (log.isDebugEnabled()) {
411 return paths
412 .map(path -> {
413 // no-op map stage to add debug logging
414 log.debug("Candidate path: {}",
fahadnaeemkhan0e1b4d92018-02-08 16:40:08 -0800415 path.links().stream()
416 .map(lk -> lk.src() + "-" + lk.dst())
417 .collect(Collectors.toList()));
Yuta HIGUCHI02f8d2e2017-04-14 17:00:12 -0700418 return path;
419 });
420 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700421 return paths;
weibitf32383b2014-10-22 10:17:31 -0700422 }
weibitf32383b2014-10-22 10:17:31 -0700423}