blob: a3af1588fa90d0d2b09b5ff3b9f6a44f0ff1afc0 [file] [log] [blame]
Marc De Leenheer8c2caac2015-05-28 16:37:33 -07001/*
Brian O'Connor0a4e6742016-09-15 23:03:10 -07002 * Copyright 2016-present Open Networking Laboratory
Marc De Leenheer8c2caac2015-05-28 16:37:33 -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;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070017
Sho SHIMIZU12d02682016-02-24 13:55:12 -080018import com.google.common.base.Strings;
Rimon Ashkenazy0c59de02016-03-21 13:23:26 +020019
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070020import org.apache.commons.lang3.tuple.Pair;
21import org.apache.felix.scr.annotations.Activate;
Sho SHIMIZU9a2b8292015-10-28 13:00:16 -070022import org.apache.felix.scr.annotations.Component;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070023import org.apache.felix.scr.annotations.Deactivate;
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -070024import org.apache.felix.scr.annotations.Modified;
25import org.apache.felix.scr.annotations.Property;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070026import org.apache.felix.scr.annotations.Reference;
27import org.apache.felix.scr.annotations.ReferenceCardinality;
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -070028import org.onlab.util.Tools;
29import org.onosproject.cfg.ComponentConfigService;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070030import org.onosproject.core.ApplicationId;
31import org.onosproject.core.CoreService;
Marc De Leenheer723f5532015-06-03 20:16:17 -070032import org.onosproject.net.AnnotationKeys;
Rimon Ashkenazyf0699702016-01-17 19:28:49 +020033import org.onosproject.net.CltSignalType;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070034import org.onosproject.net.ConnectPoint;
Rimon Ashkenazyf0699702016-01-17 19:28:49 +020035import org.onosproject.net.OduSignalId;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070036import org.onosproject.net.OduSignalType;
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +020037import org.onosproject.net.OduSignalUtils;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070038import org.onosproject.net.Port;
Rimon Ashkenazyf0699702016-01-17 19:28:49 +020039import org.onosproject.net.TributarySlot;
40import org.onosproject.net.behaviour.TributarySlotQuery;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070041import org.onosproject.net.device.DeviceService;
Rimon Ashkenazyf0699702016-01-17 19:28:49 +020042import org.onosproject.net.driver.Driver;
43import org.onosproject.net.driver.DriverService;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070044import org.onosproject.net.flow.DefaultFlowRule;
45import org.onosproject.net.flow.DefaultTrafficSelector;
46import org.onosproject.net.flow.DefaultTrafficTreatment;
47import org.onosproject.net.flow.FlowRule;
48import org.onosproject.net.flow.TrafficSelector;
49import org.onosproject.net.flow.TrafficTreatment;
Rimon Ashkenazyf0699702016-01-17 19:28:49 +020050import org.onosproject.net.flow.criteria.Criteria;
51import org.onosproject.net.flow.instructions.Instructions;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070052import org.onosproject.net.intent.FlowRuleIntent;
53import org.onosproject.net.intent.Intent;
54import org.onosproject.net.intent.IntentCompiler;
55import org.onosproject.net.intent.IntentExtensionService;
56import org.onosproject.net.intent.IntentId;
57import org.onosproject.net.intent.IntentService;
58import org.onosproject.net.intent.OpticalCircuitIntent;
59import org.onosproject.net.intent.OpticalConnectivityIntent;
Luca Prete670ac5d2017-02-03 15:55:43 -080060import org.onosproject.net.intent.PathIntent;
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -080061import org.onosproject.net.optical.OchPort;
HIGUCHI Yuta4c0ef6b2016-05-02 19:45:41 -070062import org.onosproject.net.optical.OduCltPort;
Sho SHIMIZU739873b2016-02-23 17:02:12 -080063import org.onosproject.net.intent.IntentSetMultimap;
Sho SHIMIZUe18cb122016-02-22 21:04:56 -080064import org.onosproject.net.resource.ResourceAllocation;
65import org.onosproject.net.resource.Resource;
66import org.onosproject.net.resource.ResourceService;
67import org.onosproject.net.resource.Resources;
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -070068import org.osgi.service.component.ComponentContext;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070069import org.slf4j.Logger;
70import org.slf4j.LoggerFactory;
71
Rimon Ashkenazyf0699702016-01-17 19:28:49 +020072import com.google.common.collect.ImmutableList;
73import com.google.common.collect.Sets;
74
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070075import java.util.Collections;
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -070076import java.util.Dictionary;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070077import java.util.LinkedList;
78import java.util.List;
Sho SHIMIZU5c16df82015-09-29 12:52:07 -070079import java.util.Optional;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070080import java.util.Set;
Rimon Ashkenazyf0699702016-01-17 19:28:49 +020081import java.util.stream.Collectors;
Rimon Ashkenazy0c59de02016-03-21 13:23:26 +020082import java.util.stream.Stream;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070083
84import static com.google.common.base.Preconditions.checkArgument;
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -080085import static org.onosproject.net.optical.device.OpticalDeviceServiceView.opticalView;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070086
87/**
88 * An intent compiler for {@link org.onosproject.net.intent.OpticalCircuitIntent}.
89 */
Sho SHIMIZU9a2b8292015-10-28 13:00:16 -070090@Component(immediate = true)
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070091public class OpticalCircuitIntentCompiler implements IntentCompiler<OpticalCircuitIntent> {
92
93 private static final Logger log = LoggerFactory.getLogger(OpticalCircuitIntentCompiler.class);
94
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -070095 private static final int DEFAULT_MAX_CAPACITY = 10;
96
97 @Property(name = "maxCapacity", intValue = DEFAULT_MAX_CAPACITY,
98 label = "Maximum utilization of an optical connection.")
99
100 private int maxCapacity = DEFAULT_MAX_CAPACITY;
101
102 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
103 protected ComponentConfigService cfgService;
104
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700105 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
106 protected IntentExtensionService intentManager;
107
108 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
109 protected CoreService coreService;
110
111 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
112 protected DeviceService deviceService;
113
114 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700115 protected ResourceService resourceService;
116
117 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Sho SHIMIZU7d20af12015-10-01 16:03:51 -0700118 protected IntentSetMultimap intentSetMultimap;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700119
120 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
121 protected IntentService intentService;
122
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200123 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
124 protected DriverService driverService;
125
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700126 private ApplicationId appId;
127
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -0700128 @Modified
129 public void modified(ComponentContext context) {
Rimon Ashkenazya4e3bd32016-02-22 16:12:20 +0200130 if (context == null) {
131 return;
132 }
133
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -0700134 Dictionary properties = context.getProperties();
135
136 //TODO for reduction check if the new capacity is smaller than the size of the current mapping
137 String propertyString = Tools.get(properties, "maxCapacity");
138
Sho SHIMIZU12d02682016-02-24 13:55:12 -0800139 //Ignore if propertyString is empty or null
140 if (!Strings.isNullOrEmpty(propertyString)) {
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -0700141 try {
142 int temp = Integer.parseInt(propertyString);
143 //Ensure value is non-negative but allow zero as a way to shutdown the link
144 if (temp >= 0) {
145 maxCapacity = temp;
146 }
147 } catch (NumberFormatException e) {
148 //Malformed arguments lead to no change of value (user should be notified of error)
149 log.error("The value '{}' for maxCapacity was not parsable as an integer.", propertyString, e);
150 }
151 } else {
152 //Notify of empty value but do not return (other properties will also go in this function)
153 log.error("The value for maxCapacity was set to an empty value.");
154 }
155
156 }
157
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700158 @Activate
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -0700159 public void activate(ComponentContext context) {
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -0800160 deviceService = opticalView(deviceService);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700161 appId = coreService.registerApplication("org.onosproject.net.intent");
162 intentManager.registerCompiler(OpticalCircuitIntent.class, this);
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -0700163 cfgService.registerProperties(getClass());
164 modified(context);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700165 }
166
167 @Deactivate
168 public void deactivate() {
169 intentManager.unregisterCompiler(OpticalCircuitIntent.class);
Aaron Kruglikov6490a3b2015-06-05 14:25:32 -0700170 cfgService.unregisterProperties(getClass(), false);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700171 }
172
173 @Override
Sho SHIMIZUec07ffd2016-02-22 20:45:21 -0800174 public List<Intent> compile(OpticalCircuitIntent intent, List<Intent> installable) {
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700175 // Check if ports are OduClt ports
176 ConnectPoint src = intent.getSrc();
177 ConnectPoint dst = intent.getDst();
178 Port srcPort = deviceService.getPort(src.deviceId(), src.port());
179 Port dstPort = deviceService.getPort(dst.deviceId(), dst.port());
180 checkArgument(srcPort instanceof OduCltPort);
181 checkArgument(dstPort instanceof OduCltPort);
182
183 log.debug("Compiling optical circuit intent between {} and {}", src, dst);
184
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200185 // Release of intent resources here is only a temporary solution for handling the
186 // case of recompiling due to intent restoration (when intent state is FAILED).
187 // TODO: try to release intent resources in IntentManager.
188 resourceService.release(intent.id());
189
Rimon Ashkenazy0c59de02016-03-21 13:23:26 +0200190 // Check OduClt ports availability
Sho SHIMIZU460b9722016-01-28 10:48:26 -0800191 Resource srcPortResource = Resources.discrete(src.deviceId(), src.port()).resource();
192 Resource dstPortResource = Resources.discrete(dst.deviceId(), dst.port()).resource();
Rimon Ashkenazy0c59de02016-03-21 13:23:26 +0200193 // If ports are not available, compilation fails
194 if (!Stream.of(srcPortResource, dstPortResource).allMatch(resourceService::isAvailable)) {
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700195 throw new OpticalIntentCompilationException("Ports for the intent are not available. Intent: " + intent);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700196 }
Rimon Ashkenazy0c59de02016-03-21 13:23:26 +0200197 List<Resource> ports = ImmutableList.of(srcPortResource, dstPortResource);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700198
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200199 // Check if both devices support multiplexing (usage of TributarySlots)
Sho SHIMIZUcaf0b342016-02-29 13:49:04 -0800200 boolean multiplexingSupported = isMultiplexingSupported(intent.getSrc())
201 && isMultiplexingSupported(intent.getDst());
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200202
Sho SHIMIZU6d10aed2016-02-29 11:44:42 -0800203 OpticalConnectivityIntent connIntent = findOpticalConnectivityIntent(intent.getSrc(), intent.getDst(),
204 intent.getSignalType(), multiplexingSupported);
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800205
206 if (connIntent != null && !multiplexingSupported) {
207 return compile(intent, src, dst, Optional.of(connIntent), ports, false);
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200208 }
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700209
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200210 // Create optical connectivity intent if needed - no optical intent or not enough slots available
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800211 if (connIntent == null) {
212 return compile(intent, src, dst, Optional.empty(), ports, multiplexingSupported);
213 }
214
215 List<Resource> slots = availableSlotResources(connIntent.getSrc(), connIntent.getDst(),
216 intent.getSignalType());
217 if (slots.isEmpty()) {
218 return compile(intent, src, dst, Optional.empty(), ports, true);
219 }
220
221 return compile(intent, src, dst, Optional.of(connIntent), ImmutableList.<Resource>builder()
222 .addAll(ports).addAll(slots).build(), false);
223
224 }
225
226 private List<Intent> compile(OpticalCircuitIntent intent, ConnectPoint src, ConnectPoint dst,
227 Optional<OpticalConnectivityIntent> existingConnectivity,
228 List<Resource> resources, boolean supportsMultiplexing) {
229 OpticalConnectivityIntent connectivityIntent;
230 List<Resource> required;
231 if (existingConnectivity.isPresent()) {
232 connectivityIntent = existingConnectivity.get();
233 required = resources;
234 } else {
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700235 // Find OCh ports with available resources
Sho SHIMIZU979c3d92016-02-29 11:08:57 -0800236 Pair<OchPort, OchPort> ochPorts = findPorts(intent.getSrc(), intent.getDst(), intent.getSignalType());
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700237
238 if (ochPorts == null) {
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700239 throw new OpticalIntentCompilationException("Unable to find suitable OCH ports for intent " + intent);
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200240 }
241
242 ConnectPoint srcCP = new ConnectPoint(src.elementId(), ochPorts.getLeft().number());
243 ConnectPoint dstCP = new ConnectPoint(dst.elementId(), ochPorts.getRight().number());
244
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700245 // Create optical connectivity intent
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800246 connectivityIntent = OpticalConnectivityIntent.builder()
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700247 .appId(appId)
Yuta HIGUCHI652f27f2016-10-31 16:54:30 -0700248 // TODO New top-level Intent created and submitted
249 // during compilation.
250 // We'll need to track inter-Intent dependency,
251 // but `key` field cannot be used for the purpose.
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700252 .src(srcCP)
253 .dst(dstCP)
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800254 .signalType(ochPorts.getLeft().signalType())
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700255 .bidirectional(intent.isBidirectional())
Luca Prete670ac5d2017-02-03 15:55:43 -0800256 .resourceGroup(intent.resourceGroup())
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700257 .build();
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800258
259 if (!supportsMultiplexing) {
260 required = resources;
261 } else {
262 List<Resource> slots = availableSlotResources(srcCP, dstCP, intent.getSignalType());
263 if (slots.isEmpty()) {
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700264 throw new OpticalIntentCompilationException("Unable to find Tributary Slots for intent " + intent);
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800265 }
266 required = ImmutableList.<Resource>builder().addAll(resources).addAll(slots).build();
267 }
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700268 }
269
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800270 if (resourceService.allocate(intent.id(), required).isEmpty()) {
Yuta HIGUCHId95d5902016-06-27 00:18:45 -0700271 throw new OpticalIntentCompilationException("Unable to allocate resources for intent " + intent
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800272 + ": resources=" + required);
273 }
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700274
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800275 intentService.submit(connectivityIntent);
276
277 // Save circuit to connectivity intent mapping
278 intentSetMultimap.allocateMapping(connectivityIntent.id(), intent.id());
279
280 FlowRuleIntent circuitIntent = createFlowRule(intent, connectivityIntent, required.stream().
281 flatMap(x -> Tools.stream(x.valueAs(TributarySlot.class)))
282 .collect(Collectors.toSet()));
Sho SHIMIZU953b0fb2016-02-26 16:42:13 -0800283 return ImmutableList.of(circuitIntent);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700284 }
285
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800286 private List<Resource> availableSlotResources(ConnectPoint src, ConnectPoint dst, CltSignalType signalType) {
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200287 OduSignalType oduSignalType = OduSignalUtils.mappingCltSignalTypeToOduSignalType(signalType);
Sho SHIMIZU8a4f8a12016-03-01 17:38:10 -0800288 int requestedTsNum = oduSignalType.tributarySlots();
289 Set<TributarySlot> commonTributarySlots = findCommonTributarySlotsOnCps(src, dst);
290 if (commonTributarySlots.isEmpty()) {
291 return Collections.emptyList();
292 }
293 if (commonTributarySlots.size() < requestedTsNum) {
294 return Collections.emptyList();
295 }
296
297 Set<TributarySlot> tributarySlots = commonTributarySlots.stream()
298 .limit(requestedTsNum)
299 .collect(Collectors.toSet());
300
301 final List<ConnectPoint> portsList = ImmutableList.of(src, dst);
302 List<Resource> tributarySlotResources = portsList.stream()
303 .flatMap(cp -> tributarySlots
304 .stream()
305 .map(ts-> Resources.discrete(cp.deviceId(), cp.port()).resource().child(ts)))
306 .collect(Collectors.toList());
307
308 if (!tributarySlotResources.stream().allMatch(resourceService::isAvailable)) {
309 log.debug("Resource allocation for {} on {} and {} failed (resource request: {})",
310 signalType, src, dst, tributarySlotResources);
311 return Collections.emptyList();
312 }
313 return tributarySlotResources;
314 }
315
Sho SHIMIZU874e0a32016-02-26 16:56:11 -0800316 private FlowRuleIntent createFlowRule(OpticalCircuitIntent higherIntent,
317 OpticalConnectivityIntent lowerIntent, Set<TributarySlot> slots) {
318 // Create optical circuit intent
319 List<FlowRule> rules = new LinkedList<>();
320 // at the source: ODUCLT port mapping to OCH port
321 rules.add(connectPorts(higherIntent.getSrc(), lowerIntent.getSrc(), higherIntent.priority(), slots));
322 // at the destination: OCH port mapping to ODUCLT port
323 rules.add(connectPorts(lowerIntent.getDst(), higherIntent.getDst(), higherIntent.priority(), slots));
324
325 // Create flow rules for reverse path
326 if (higherIntent.isBidirectional()) {
327 // at the destination: OCH port mapping to ODUCLT port
328 rules.add(connectPorts(lowerIntent.getSrc(), higherIntent.getSrc(), higherIntent.priority(), slots));
329 // at the source: ODUCLT port mapping to OCH port
330 rules.add(connectPorts(higherIntent.getDst(), lowerIntent.getDst(), higherIntent.priority(), slots));
331 }
332
Luca Prete670ac5d2017-02-03 15:55:43 -0800333 return new FlowRuleIntent(appId, higherIntent.key(), rules,
334 higherIntent.resources(),
335 PathIntent.ProtectionType.PRIMARY,
336 higherIntent.resourceGroup());
Sho SHIMIZU874e0a32016-02-26 16:56:11 -0800337 }
338
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700339 /**
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700340 * Returns existing and available optical connectivity intent that matches the given circuit intent.
341 *
Sho SHIMIZU6d10aed2016-02-29 11:44:42 -0800342 * @param src source connect point of optical circuit intent
343 * @param dst destination connect point of optical circuit intent
344 * @param signalType signal type of optical circuit intent
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200345 * @param multiplexingSupported indicates whether ODU multiplexing is supported
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700346 * @return existing optical connectivity intent, null otherwise.
347 */
Sho SHIMIZU6d10aed2016-02-29 11:44:42 -0800348 private OpticalConnectivityIntent findOpticalConnectivityIntent(ConnectPoint src,
349 ConnectPoint dst,
350 CltSignalType signalType,
351 boolean multiplexingSupported) {
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200352
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200353 OduSignalType oduSignalType = OduSignalUtils.mappingCltSignalTypeToOduSignalType(signalType);
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200354
Sho SHIMIZU0505f1d2016-02-29 13:31:47 -0800355 return Tools.stream(intentService.getIntents())
356 .filter(x -> x instanceof OpticalConnectivityIntent)
357 .map(x -> (OpticalConnectivityIntent) x)
358 .filter(x -> src.deviceId().equals(x.getSrc().deviceId()))
359 .filter(x -> dst.deviceId().equals(x.getDst().deviceId()))
360 .filter(x -> isAllowed(src, x.getSrc()))
361 .filter(x -> isAllowed(dst, x.getDst()))
362 .filter(x -> isAvailable(x.id()))
363 .filter(x -> !multiplexingSupported ||
364 isAvailableTributarySlots(x.getSrc(), x.getDst(), oduSignalType.tributarySlots()))
365 .findFirst()
366 .orElse(null);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700367 }
368
Sho SHIMIZU98de57a2016-02-29 17:20:44 -0800369 private boolean isAllowed(ConnectPoint circuitCp, ConnectPoint connectivityCp) {
370 ConnectPoint staticPort = staticPort(circuitCp);
371 return staticPort == null || staticPort.equals(connectivityCp);
372 }
373
374 /**
375 * Checks if current allocations on given resource can satisfy request.
376 * If the resource is null, return true.
377 *
378 * @param resource the resource on which to map the intent
379 * @return true if the resource can accept the request, false otherwise
380 */
381 private boolean isAvailable(IntentId resource) {
382 if (resource == null) {
383 return true;
384 }
385
386 Set<IntentId> mapping = intentSetMultimap.getMapping(resource);
387
388 if (mapping == null) {
389 return true;
390 }
391
392 return mapping.size() < maxCapacity;
393 }
394
Sho SHIMIZU64339fe2016-02-29 11:21:29 -0800395 private boolean isAvailableTributarySlots(ConnectPoint src, ConnectPoint dst, int requestedTsNum) {
396 Set<TributarySlot> common = findCommonTributarySlotsOnCps(src, dst);
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200397 if (common.isEmpty()) {
398 log.debug("No available TributarySlots");
399 return false;
400 }
401 if (common.size() < requestedTsNum) {
402 log.debug("Not enough available TributarySlots={} < requestedTsNum={}", common.size(), requestedTsNum);
403 return false;
404 }
405 return true;
406 }
407
Marc De Leenheer723f5532015-06-03 20:16:17 -0700408 private ConnectPoint staticPort(ConnectPoint connectPoint) {
409 Port port = deviceService.getPort(connectPoint.deviceId(), connectPoint.port());
410
411 String staticPort = port.annotations().value(AnnotationKeys.STATIC_PORT);
412
413 // FIXME: need a better way to match the port
414 if (staticPort != null) {
415 for (Port p : deviceService.getPorts(connectPoint.deviceId())) {
416 if (staticPort.equals(p.number().name())) {
417 return new ConnectPoint(p.element().id(), p.number());
418 }
419 }
420 }
421
422 return null;
423 }
424
Sho SHIMIZU98de57a2016-02-29 17:20:44 -0800425 private Pair<OchPort, OchPort> findPorts(ConnectPoint src, ConnectPoint dst, CltSignalType signalType) {
426 // According to the OpticalCircuitIntent's signalType find OCH ports with available TributarySlots resources
427 switch (signalType) {
428 case CLT_1GBE:
429 case CLT_10GBE:
430 // First search for OCH ports with OduSignalType of ODU2. If not found - search for those with ODU4
431 return findPorts(src, dst, OduSignalType.ODU2)
432 .orElse(findPorts(src, dst, OduSignalType.ODU4).orElse(null));
433 case CLT_100GBE:
434 return findPorts(src, dst, OduSignalType.ODU4).orElse(null);
435 case CLT_40GBE:
436 default:
437 return null;
438 }
439 }
440
441 private Optional<Pair<OchPort, OchPort>> findPorts(ConnectPoint src, ConnectPoint dst,
442 OduSignalType ochPortSignalType) {
443 return findAvailableOchPort(src, ochPortSignalType)
444 .flatMap(srcOch ->
445 findAvailableOchPort(dst, ochPortSignalType).map(dstOch -> Pair.of(srcOch, dstOch)));
446 }
447
Sho SHIMIZUaa00e502016-02-29 16:21:54 -0800448 private Optional<OchPort> findAvailableOchPort(ConnectPoint oduPort, OduSignalType ochPortSignalType) {
Marc De Leenheer723f5532015-06-03 20:16:17 -0700449 // First see if the port mappings are constrained
450 ConnectPoint ochCP = staticPort(oduPort);
451
452 if (ochCP != null) {
453 OchPort ochPort = (OchPort) deviceService.getPort(ochCP.deviceId(), ochCP.port());
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700454 Optional<IntentId> intentId =
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800455 resourceService.getResourceAllocations(Resources.discrete(ochCP.deviceId(), ochCP.port()).id())
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800456 .stream()
Naoki Shiotabd1974c2016-04-29 18:44:17 -0700457 .map(ResourceAllocation::consumerId)
458 .map(ResourceHelper::getIntentId)
459 .flatMap(Tools::stream)
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800460 .findAny();
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700461
462 if (isAvailable(intentId.orElse(null))) {
Sho SHIMIZUaa00e502016-02-29 16:21:54 -0800463 return Optional.of(ochPort);
Marc De Leenheer723f5532015-06-03 20:16:17 -0700464 }
Sho SHIMIZUaa00e502016-02-29 16:21:54 -0800465 return Optional.empty();
Marc De Leenheer723f5532015-06-03 20:16:17 -0700466 }
467
468 // No port constraints, so find any port that works
469 List<Port> ports = deviceService.getPorts(oduPort.deviceId());
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700470
471 for (Port port : ports) {
472 if (!(port instanceof OchPort)) {
473 continue;
474 }
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200475 // This should be the first allocation on the OCH port
476 if (!resourceService.isAvailable(Resources.discrete(oduPort.deviceId(), port.number()).resource())) {
477 continue;
478 }
479 // OchPort is required to have the requested oduSignalType
480 if (((OchPort) port).signalType() != ochPortSignalType) {
481 continue;
482 }
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700483
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700484 Optional<IntentId> intentId =
Sho SHIMIZUdd3750c2016-02-01 11:37:04 -0800485 resourceService.getResourceAllocations(Resources.discrete(oduPort.deviceId(), port.number()).id())
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800486 .stream()
Naoki Shiotabd1974c2016-04-29 18:44:17 -0700487 .map(ResourceAllocation::consumerId)
488 .map(ResourceHelper::getIntentId)
489 .flatMap(Tools::stream)
Sho SHIMIZU6c9e33a2016-01-07 18:45:27 -0800490 .findAny();
491
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700492 if (isAvailable(intentId.orElse(null))) {
Sho SHIMIZUaa00e502016-02-29 16:21:54 -0800493 return Optional.of((OchPort) port);
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700494 }
495 }
496
Sho SHIMIZUaa00e502016-02-29 16:21:54 -0800497 return Optional.empty();
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700498 }
499
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700500 /**
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700501 * Builds flow rule for mapping between two ports.
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700502 *
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700503 * @param src source port
504 * @param dst destination port
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200505 * @param priority
506 * @param slots Set of TributarySlots
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700507 * @return flow rules
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700508 */
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200509 private FlowRule connectPorts(ConnectPoint src, ConnectPoint dst, int priority, Set<TributarySlot> slots) {
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700510 checkArgument(src.deviceId().equals(dst.deviceId()));
511
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700512 TrafficSelector.Builder selectorBuilder = DefaultTrafficSelector.builder();
513 TrafficTreatment.Builder treatmentBuilder = DefaultTrafficTreatment.builder();
514
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700515 selectorBuilder.matchInPort(src.port());
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200516 if (!slots.isEmpty()) {
517 Port srcPort = deviceService.getPort(src.deviceId(), src.port());
518 Port dstPort = deviceService.getPort(dst.deviceId(), dst.port());
519 OduSignalType oduCltPortOduSignalType;
520 OduSignalType ochPortOduSignalType;
521
522 if (srcPort instanceof OduCltPort) {
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200523 oduCltPortOduSignalType =
524 OduSignalUtils.mappingCltSignalTypeToOduSignalType(((OduCltPort) srcPort).signalType());
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200525 ochPortOduSignalType = ((OchPort) dstPort).signalType();
526
527 selectorBuilder.add(Criteria.matchOduSignalType(oduCltPortOduSignalType));
528 // use Instruction of OduSignalId only in case of ODU Multiplexing
529 if (oduCltPortOduSignalType != ochPortOduSignalType) {
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200530 OduSignalId oduSignalId = OduSignalUtils.buildOduSignalId(ochPortOduSignalType, slots);
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200531 treatmentBuilder.add(Instructions.modL1OduSignalId(oduSignalId));
532 }
533 } else { // srcPort is OchPort
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200534 oduCltPortOduSignalType =
535 OduSignalUtils.mappingCltSignalTypeToOduSignalType(((OduCltPort) dstPort).signalType());
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200536 ochPortOduSignalType = ((OchPort) srcPort).signalType();
537
538 selectorBuilder.add(Criteria.matchOduSignalType(oduCltPortOduSignalType));
539 // use Criteria of OduSignalId only in case of ODU Multiplexing
540 if (oduCltPortOduSignalType != ochPortOduSignalType) {
Rimon Ashkenazy27438ff2016-03-22 15:57:45 +0200541 OduSignalId oduSignalId = OduSignalUtils.buildOduSignalId(ochPortOduSignalType, slots);
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200542 selectorBuilder.add(Criteria.matchOduSignalId(oduSignalId));
543 }
544 }
545 }
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700546 treatmentBuilder.setOutput(dst.port());
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700547
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700548 FlowRule flowRule = DefaultFlowRule.builder()
549 .forDevice(src.deviceId())
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700550 .withSelector(selectorBuilder.build())
551 .withTreatment(treatmentBuilder.build())
Brian O'Connor81134662015-06-25 17:23:33 -0400552 .withPriority(priority)
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700553 .fromApp(appId)
554 .makePermanent()
555 .build();
556
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700557 return flowRule;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700558 }
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200559
Sho SHIMIZUcaf0b342016-02-29 13:49:04 -0800560 private boolean isMultiplexingSupported(ConnectPoint cp) {
Sho SHIMIZU0a8332c2016-02-29 13:54:08 -0800561 Driver driver = driverService.getDriver(cp.deviceId());
562 return driver != null
563 && driver.hasBehaviour(TributarySlotQuery.class)
564 && staticPort(cp) == null;
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200565 }
566
567 /**
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200568 * Finds the common TributarySlots available on the two connect points.
569 *
Sho SHIMIZU3763a022016-02-29 11:10:17 -0800570 * @param src source connect point
571 * @param dst dest connect point
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200572 * @return set of common TributarySlots on both connect points
573 */
Sho SHIMIZU3763a022016-02-29 11:10:17 -0800574 Set<TributarySlot> findCommonTributarySlotsOnCps(ConnectPoint src, ConnectPoint dst) {
575 Set<TributarySlot> forward = findTributarySlotsOnCp(src);
576 Set<TributarySlot> backward = findTributarySlotsOnCp(dst);
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200577 return Sets.intersection(forward, backward);
578 }
579
580 /**
581 * Finds the TributarySlots available on the connect point.
582 *
583 * @param cp connect point
584 * @return set of TributarySlots available on the connect point
585 */
586 Set<TributarySlot> findTributarySlotsOnCp(ConnectPoint cp) {
Sho SHIMIZUc4ae4d52016-02-19 15:15:31 -0800587 return resourceService.getAvailableResourceValues(
588 Resources.discrete(cp.deviceId(), cp.port()).id(),
589 TributarySlot.class);
Rimon Ashkenazyf0699702016-01-17 19:28:49 +0200590 }
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700591}