blob: e5a8e3b0da7a7c757d68c36ea087b7979db62162 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
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 */
Sho SHIMIZU6c28f832015-02-20 16:12:19 -080016package org.onosproject.net.intent.impl.compiler;
weibitf32383b2014-10-22 10:17:31 -070017
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070018import java.util.Arrays;
19import java.util.HashSet;
Ray Milkeye076c792015-03-24 09:38:30 -070020import java.util.List;
21import java.util.Set;
22
weibitf32383b2014-10-22 10:17:31 -070023import org.apache.felix.scr.annotations.Activate;
24import org.apache.felix.scr.annotations.Component;
25import org.apache.felix.scr.annotations.Deactivate;
26import org.apache.felix.scr.annotations.Reference;
27import org.apache.felix.scr.annotations.ReferenceCardinality;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070028import org.onlab.util.Frequency;
Marc De Leenheer723f5532015-06-03 20:16:17 -070029import org.onosproject.net.AnnotationKeys;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070030import org.onosproject.net.ChannelSpacing;
Brian O'Connorabafb502014-12-02 22:26:20 -080031import org.onosproject.net.ConnectPoint;
Marc De Leenheer723f5532015-06-03 20:16:17 -070032import org.onosproject.net.DeviceId;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070033import org.onosproject.net.GridType;
Brian O'Connorabafb502014-12-02 22:26:20 -080034import org.onosproject.net.Link;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070035import org.onosproject.net.OchPort;
36import org.onosproject.net.OchSignal;
Marc De Leenheerd24420f2015-05-27 09:40:59 -070037import org.onosproject.net.OchSignalType;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070038import org.onosproject.net.OmsPort;
Brian O'Connorabafb502014-12-02 22:26:20 -080039import org.onosproject.net.Path;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070040import org.onosproject.net.Port;
41import org.onosproject.net.device.DeviceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080042import org.onosproject.net.intent.Intent;
43import org.onosproject.net.intent.IntentCompiler;
44import org.onosproject.net.intent.IntentExtensionService;
45import org.onosproject.net.intent.OpticalConnectivityIntent;
46import org.onosproject.net.intent.OpticalPathIntent;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070047import org.onosproject.net.intent.impl.IntentCompilationException;
Brian O'Connor6de2e202015-05-21 14:30:41 -070048import org.onosproject.net.resource.link.DefaultLinkResourceRequest;
49import org.onosproject.net.resource.device.DeviceResourceService;
50import org.onosproject.net.resource.link.LambdaResource;
51import org.onosproject.net.resource.link.LambdaResourceAllocation;
52import org.onosproject.net.resource.link.LinkResourceAllocations;
53import org.onosproject.net.resource.link.LinkResourceRequest;
54import org.onosproject.net.resource.link.LinkResourceService;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070055import org.onosproject.net.resource.ResourceAllocation;
56import org.onosproject.net.resource.ResourceType;
Brian O'Connorabafb502014-12-02 22:26:20 -080057import org.onosproject.net.topology.LinkWeight;
58import org.onosproject.net.topology.Topology;
59import org.onosproject.net.topology.TopologyEdge;
60import org.onosproject.net.topology.TopologyService;
Thomas Vachuska425a2d72014-10-29 11:28:28 -070061
Ray Milkeye076c792015-03-24 09:38:30 -070062import com.google.common.collect.ImmutableList;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070063import org.slf4j.Logger;
64import org.slf4j.LoggerFactory;
weibitf32383b2014-10-22 10:17:31 -070065
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070066import static com.google.common.base.Preconditions.checkArgument;
67
weibitf32383b2014-10-22 10:17:31 -070068/**
Brian O'Connorabafb502014-12-02 22:26:20 -080069 * An intent compiler for {@link org.onosproject.net.intent.OpticalConnectivityIntent}.
weibitf32383b2014-10-22 10:17:31 -070070 */
71@Component(immediate = true)
72public class OpticalConnectivityIntentCompiler implements IntentCompiler<OpticalConnectivityIntent> {
73
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070074 protected static final Logger log = LoggerFactory.getLogger(OpticalConnectivityIntentCompiler.class);
75
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070076 private static final GridType DEFAULT_OCH_GRIDTYPE = GridType.DWDM;
77 private static final ChannelSpacing DEFAULT_CHANNEL_SPACING = ChannelSpacing.CHL_50GHZ;
78
weibitf32383b2014-10-22 10:17:31 -070079 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
80 protected IntentExtensionService intentManager;
81
82 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
weibit7e583462014-10-23 10:14:05 -070083 protected TopologyService topologyService;
weibitf32383b2014-10-22 10:17:31 -070084
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070085 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
86 protected DeviceService deviceService;
87
88 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
89 protected LinkResourceService linkResourceService;
90
91 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
92 protected DeviceResourceService deviceResourceService;
93
weibitf32383b2014-10-22 10:17:31 -070094 @Activate
95 public void activate() {
weibitf32383b2014-10-22 10:17:31 -070096 intentManager.registerCompiler(OpticalConnectivityIntent.class, this);
97 }
98
99 @Deactivate
100 public void deactivate() {
101 intentManager.unregisterCompiler(OpticalConnectivityIntent.class);
102 }
103
104 @Override
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700105 public List<Intent> compile(OpticalConnectivityIntent intent,
106 List<Intent> installable,
107 Set<LinkResourceAllocations> resources) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700108 // Check if source and destination are optical OCh ports
109 ConnectPoint src = intent.getSrc();
110 ConnectPoint dst = intent.getDst();
111 Port srcPort = deviceService.getPort(src.deviceId(), src.port());
112 Port dstPort = deviceService.getPort(dst.deviceId(), dst.port());
113 checkArgument(srcPort instanceof OchPort);
114 checkArgument(dstPort instanceof OchPort);
115
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700116 log.debug("Compiling optical connectivity intent between {} and {}", src, dst);
117
118 // Reserve OCh ports
119 if (!deviceResourceService.requestPorts(new HashSet(Arrays.asList(srcPort, dstPort)), intent)) {
120 throw new IntentCompilationException("Unable to reserve ports for intent " + intent);
121 }
122
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700123 // Calculate available light paths
124 Set<Path> paths = getOpticalPaths(intent);
125
126 // Use first path that can be successfully reserved
127 for (Path path : paths) {
Marc De Leenheer723f5532015-06-03 20:16:17 -0700128
129 // Static or dynamic lambda allocation
130 LambdaResourceAllocation lambdaAlloc;
131 String staticLambda = srcPort.annotations().value(AnnotationKeys.STATIC_LAMBDA);
132 if (staticLambda != null) {
133 // FIXME: need to actually reserve the lambda
134 lambdaAlloc = new LambdaResourceAllocation(LambdaResource.valueOf(Integer.parseInt(staticLambda)));
135 } else {
136 // Request and reserve lambda on path
137 LinkResourceAllocations linkAllocs = assignWavelength(intent, path);
138 if (linkAllocs == null) {
139 continue;
140 }
141 lambdaAlloc = getWavelength(path, linkAllocs);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700142 }
143
144 OmsPort omsPort = (OmsPort) deviceService.getPort(path.src().deviceId(), path.src().port());
145
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700146 // Create installable optical path intent
Marc De Leenheer723f5532015-06-03 20:16:17 -0700147 OchSignal ochSignal = getOchSignal(lambdaAlloc, omsPort.maxFrequency(), omsPort.grid());
Marc De Leenheerd24420f2015-05-27 09:40:59 -0700148 // Only support fixed grid for now
149 OchSignalType signalType = OchSignalType.FIXED_GRID;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700150
151 Intent newIntent = OpticalPathIntent.builder()
152 .appId(intent.appId())
153 .src(intent.getSrc())
154 .dst(intent.getDst())
155 .path(path)
156 .lambda(ochSignal)
Marc De Leenheerd24420f2015-05-27 09:40:59 -0700157 .signalType(signalType)
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700158 .bidirectional(intent.isBidirectional())
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700159 .build();
160
161 return ImmutableList.of(newIntent);
162 }
163
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700164 // Release port allocations if unsuccessful
165 deviceResourceService.releasePorts(intent.id());
166
167 throw new IntentCompilationException("Unable to find suitable lightpath for intent " + intent);
weibitf32383b2014-10-22 10:17:31 -0700168 }
169
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700170 /**
171 * Find the lambda allocated to the path.
172 *
173 * @param path the path
174 * @param linkAllocs the link allocations
175 * @return
176 */
177 private LambdaResourceAllocation getWavelength(Path path, LinkResourceAllocations linkAllocs) {
178 for (Link link : path.links()) {
179 for (ResourceAllocation alloc : linkAllocs.getResourceAllocation(link)) {
180 if (alloc.type() == ResourceType.LAMBDA) {
181 return (LambdaResourceAllocation) alloc;
182 }
183 }
184 }
185
186 return null;
187 }
188
189 /**
190 * Request and reserve first available wavelength across path.
191 *
192 * @param path path in WDM topology
193 * @return first available lambda resource allocation
194 */
195 private LinkResourceAllocations assignWavelength(Intent intent, Path path) {
196 LinkResourceRequest.Builder request =
197 DefaultLinkResourceRequest.builder(intent.id(), path.links())
198 .addLambdaRequest();
199
200 LinkResourceAllocations allocations = linkResourceService.requestResources(request.build());
201
Marc De Leenheer723f5532015-06-03 20:16:17 -0700202 if (!checkWavelengthContinuity(allocations, path)) {
203 linkResourceService.releaseResources(allocations);
204 return null;
205 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700206
207 return allocations;
208 }
209
210 /**
211 * Checks wavelength continuity constraint across path, i.e., an identical lambda is used on all links.
212 * @return true if wavelength continuity is met, false otherwise
213 */
214 private boolean checkWavelengthContinuity(LinkResourceAllocations allocations, Path path) {
215 if (allocations == null) {
216 return false;
217 }
218
219 LambdaResource lambda = null;
220
221 for (Link link : path.links()) {
222 for (ResourceAllocation alloc : allocations.getResourceAllocation(link)) {
223 if (alloc.type() == ResourceType.LAMBDA) {
224 LambdaResource nextLambda = ((LambdaResourceAllocation) alloc).lambda();
225 if (nextLambda == null) {
226 return false;
227 }
228 if (lambda == null) {
229 lambda = nextLambda;
230 continue;
231 }
232 if (!lambda.equals(nextLambda)) {
233 return false;
234 }
235 }
236 }
237 }
238
239 return true;
240 }
241
242 /**
243 * Convert lambda resource allocation in OCh signal.
244 *
245 * @param alloc lambda resource allocation
Marc De Leenheer723f5532015-06-03 20:16:17 -0700246 * @param maxFrequency maximum frequency
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700247 * @param grid grid spacing frequency
248 * @return OCh signal
249 */
Marc De Leenheer723f5532015-06-03 20:16:17 -0700250 private OchSignal getOchSignal(LambdaResourceAllocation alloc, Frequency maxFrequency, Frequency grid) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700251 int channel = alloc.lambda().toInt();
252
253 // Calculate center frequency
Marc De Leenheer723f5532015-06-03 20:16:17 -0700254 Frequency centerFrequency = maxFrequency.subtract(grid.multiply(channel - 1));
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700255
256 // Build OCh signal object
257 int spacingMultiplier = (int) (centerFrequency.subtract(OchSignal.CENTER_FREQUENCY).asHz() / grid.asHz());
258 int slotGranularity = (int) (grid.asHz() / ChannelSpacing.CHL_12P5GHZ.frequency().asHz());
259 OchSignal ochSignal = new OchSignal(DEFAULT_OCH_GRIDTYPE, DEFAULT_CHANNEL_SPACING,
260 spacingMultiplier, slotGranularity);
261
262 return ochSignal;
263 }
264
Marc De Leenheer723f5532015-06-03 20:16:17 -0700265 private ConnectPoint staticPort(ConnectPoint connectPoint) {
266 Port port = deviceService.getPort(connectPoint.deviceId(), connectPoint.port());
267
268 String staticPort = port.annotations().value(AnnotationKeys.STATIC_PORT);
269
270 // FIXME: need a better way to match the port
271 if (staticPort != null) {
272 for (Port p : deviceService.getPorts(connectPoint.deviceId())) {
273 if (staticPort.equals(p.number().name())) {
274 return new ConnectPoint(p.element().id(), p.number());
275 }
276 }
277 }
278
279 return null;
280 }
281
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700282 /**
283 * Calculates optical paths in WDM topology.
284 *
285 * @param intent optical connectivity intent
286 * @return set of paths in WDM topology
287 */
288 private Set<Path> getOpticalPaths(OpticalConnectivityIntent intent) {
289 // Route in WDM topology
weibit7e583462014-10-23 10:14:05 -0700290 Topology topology = topologyService.currentTopology();
291 LinkWeight weight = new LinkWeight() {
292 @Override
293 public double weight(TopologyEdge edge) {
Marc De Leenheer723f5532015-06-03 20:16:17 -0700294 // Disregard inactive or non-optical links
Praseed Balakrishnan00dd1f92014-11-19 17:12:36 -0800295 if (edge.link().state() == Link.State.INACTIVE) {
296 return -1;
297 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700298 if (edge.link().type() != Link.Type.OPTICAL) {
299 return -1;
300 }
Marc De Leenheer723f5532015-06-03 20:16:17 -0700301 // Adhere to static port mappings
302 DeviceId srcDeviceId = edge.link().src().deviceId();
303 if (srcDeviceId.equals(intent.getSrc().deviceId())) {
304 ConnectPoint srcStaticPort = staticPort(intent.getSrc());
305 if (srcStaticPort != null) {
306 return srcStaticPort.equals(edge.link().src()) ? 1 : -1;
307 }
308 }
309 DeviceId dstDeviceId = edge.link().dst().deviceId();
310 if (dstDeviceId.equals(intent.getDst().deviceId())) {
311 ConnectPoint dstStaticPort = staticPort(intent.getDst());
312 if (dstStaticPort != null) {
313 return dstStaticPort.equals(edge.link().dst()) ? 1 : -1;
314 }
315 }
316
Marc De Leenheer88194c32015-05-29 22:10:59 -0700317 return 1;
weibit7e583462014-10-23 10:14:05 -0700318 }
319 };
weibitf32383b2014-10-22 10:17:31 -0700320
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700321 ConnectPoint start = intent.getSrc();
322 ConnectPoint end = intent.getDst();
Thomas Vachuska425a2d72014-10-29 11:28:28 -0700323 Set<Path> paths = topologyService.getPaths(topology, start.deviceId(),
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700324 end.deviceId(), weight);
weibit7e583462014-10-23 10:14:05 -0700325
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700326 return paths;
weibitf32383b2014-10-22 10:17:31 -0700327 }
weibitf32383b2014-10-22 10:17:31 -0700328}