blob: 88f94c06a515ab5d6364b6986c8e44d5d0363c0d [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 Leenheer0b8b2ef2015-08-03 15:39:00 -070018import com.google.common.collect.ImmutableList;
weibitf32383b2014-10-22 10:17:31 -070019import org.apache.felix.scr.annotations.Activate;
Sho SHIMIZU9a2b8292015-10-28 13:00:16 -070020import org.apache.felix.scr.annotations.Component;
weibitf32383b2014-10-22 10:17:31 -070021import org.apache.felix.scr.annotations.Deactivate;
22import org.apache.felix.scr.annotations.Reference;
23import org.apache.felix.scr.annotations.ReferenceCardinality;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070024import org.onlab.util.Frequency;
Marc De Leenheer723f5532015-06-03 20:16:17 -070025import org.onosproject.net.AnnotationKeys;
Brian O'Connorabafb502014-12-02 22:26:20 -080026import org.onosproject.net.ConnectPoint;
Marc De Leenheer723f5532015-06-03 20:16:17 -070027import org.onosproject.net.DeviceId;
Brian O'Connorabafb502014-12-02 22:26:20 -080028import org.onosproject.net.Link;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070029import org.onosproject.net.OchPort;
30import org.onosproject.net.OchSignal;
Marc De Leenheerd24420f2015-05-27 09:40:59 -070031import org.onosproject.net.OchSignalType;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070032import org.onosproject.net.OmsPort;
Brian O'Connorabafb502014-12-02 22:26:20 -080033import org.onosproject.net.Path;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070034import org.onosproject.net.Port;
35import org.onosproject.net.device.DeviceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080036import org.onosproject.net.intent.Intent;
37import org.onosproject.net.intent.IntentCompiler;
38import org.onosproject.net.intent.IntentExtensionService;
39import org.onosproject.net.intent.OpticalConnectivityIntent;
40import org.onosproject.net.intent.OpticalPathIntent;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070041import org.onosproject.net.intent.impl.IntentCompilationException;
Sho SHIMIZU5c16df82015-09-29 12:52:07 -070042import org.onosproject.net.newresource.ResourcePath;
43import org.onosproject.net.newresource.ResourceService;
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070044import org.onosproject.net.resource.ResourceType;
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070045import org.onosproject.net.resource.link.DefaultLinkResourceRequest;
Brian O'Connor6de2e202015-05-21 14:30:41 -070046import org.onosproject.net.resource.link.LambdaResource;
47import org.onosproject.net.resource.link.LambdaResourceAllocation;
48import org.onosproject.net.resource.link.LinkResourceAllocations;
49import org.onosproject.net.resource.link.LinkResourceRequest;
50import org.onosproject.net.resource.link.LinkResourceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080051import org.onosproject.net.topology.LinkWeight;
52import org.onosproject.net.topology.Topology;
Brian O'Connorabafb502014-12-02 22:26:20 -080053import org.onosproject.net.topology.TopologyService;
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070054import org.slf4j.Logger;
55import org.slf4j.LoggerFactory;
weibitf32383b2014-10-22 10:17:31 -070056
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070057import java.util.List;
58import java.util.Set;
Sho SHIMIZU280e7912015-09-29 13:42:03 -070059import java.util.stream.Collectors;
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -070060
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070061import static com.google.common.base.Preconditions.checkArgument;
62
weibitf32383b2014-10-22 10:17:31 -070063/**
Brian O'Connorabafb502014-12-02 22:26:20 -080064 * An intent compiler for {@link org.onosproject.net.intent.OpticalConnectivityIntent}.
weibitf32383b2014-10-22 10:17:31 -070065 */
Ray Milkeye6099412015-10-05 10:53:17 -070066// For now, remove component designation until dependency on the new resource manager is available.
Sho SHIMIZU9a2b8292015-10-28 13:00:16 -070067@Component(immediate = true)
weibitf32383b2014-10-22 10:17:31 -070068public class OpticalConnectivityIntentCompiler implements IntentCompiler<OpticalConnectivityIntent> {
69
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070070 protected static final Logger log = LoggerFactory.getLogger(OpticalConnectivityIntentCompiler.class);
71
weibitf32383b2014-10-22 10:17:31 -070072 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
73 protected IntentExtensionService intentManager;
74
75 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
weibit7e583462014-10-23 10:14:05 -070076 protected TopologyService topologyService;
weibitf32383b2014-10-22 10:17:31 -070077
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070078 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
79 protected DeviceService deviceService;
80
81 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Sho SHIMIZU5c16df82015-09-29 12:52:07 -070082 protected ResourceService resourceService;
83
84 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070085 protected LinkResourceService linkResourceService;
86
weibitf32383b2014-10-22 10:17:31 -070087 @Activate
88 public void activate() {
weibitf32383b2014-10-22 10:17:31 -070089 intentManager.registerCompiler(OpticalConnectivityIntent.class, this);
90 }
91
92 @Deactivate
93 public void deactivate() {
94 intentManager.unregisterCompiler(OpticalConnectivityIntent.class);
95 }
96
97 @Override
Brian O'Connorfa81eae2014-10-30 13:20:05 -070098 public List<Intent> compile(OpticalConnectivityIntent intent,
99 List<Intent> installable,
100 Set<LinkResourceAllocations> resources) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700101 // Check if source and destination are optical OCh ports
102 ConnectPoint src = intent.getSrc();
103 ConnectPoint dst = intent.getDst();
104 Port srcPort = deviceService.getPort(src.deviceId(), src.port());
105 Port dstPort = deviceService.getPort(dst.deviceId(), dst.port());
106 checkArgument(srcPort instanceof OchPort);
107 checkArgument(dstPort instanceof OchPort);
108
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700109 log.debug("Compiling optical connectivity intent between {} and {}", src, dst);
110
111 // Reserve OCh ports
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700112 ResourcePath srcPortPath = new ResourcePath(src.deviceId(), src.port());
113 ResourcePath dstPortPath = new ResourcePath(dst.deviceId(), dst.port());
114 List<org.onosproject.net.newresource.ResourceAllocation> allocation =
115 resourceService.allocate(intent.id(), srcPortPath, dstPortPath);
116 if (allocation.isEmpty()) {
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700117 throw new IntentCompilationException("Unable to reserve ports for intent " + intent);
118 }
119
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700120 // Calculate available light paths
121 Set<Path> paths = getOpticalPaths(intent);
122
123 // Use first path that can be successfully reserved
124 for (Path path : paths) {
Marc De Leenheer723f5532015-06-03 20:16:17 -0700125
126 // Static or dynamic lambda allocation
Marc De Leenheer723f5532015-06-03 20:16:17 -0700127 String staticLambda = srcPort.annotations().value(AnnotationKeys.STATIC_LAMBDA);
Marc De Leenheerc9733082015-06-04 12:22:38 -0700128 OchPort srcOchPort = (OchPort) srcPort;
129 OchPort dstOchPort = (OchPort) dstPort;
130 OchSignal ochSignal;
131
132 // FIXME: need to actually reserve the lambda for static lambda's
Marc De Leenheer723f5532015-06-03 20:16:17 -0700133 if (staticLambda != null) {
HIGUCHI Yuta4a6a70a2015-09-04 14:42:10 -0700134 ochSignal = new OchSignal(Frequency.ofHz(Long.parseLong(staticLambda)),
Marc De Leenheerc9733082015-06-04 12:22:38 -0700135 srcOchPort.lambda().channelSpacing(),
136 srcOchPort.lambda().slotGranularity());
137 } else if (!srcOchPort.isTunable() || !dstOchPort.isTunable()) {
138 // FIXME: also check OCh port
139 ochSignal = srcOchPort.lambda();
Marc De Leenheer723f5532015-06-03 20:16:17 -0700140 } else {
141 // Request and reserve lambda on path
142 LinkResourceAllocations linkAllocs = assignWavelength(intent, path);
143 if (linkAllocs == null) {
144 continue;
145 }
Marc De Leenheerc9733082015-06-04 12:22:38 -0700146 LambdaResourceAllocation lambdaAlloc = getWavelength(path, linkAllocs);
147 OmsPort omsPort = (OmsPort) deviceService.getPort(path.src().deviceId(), path.src().port());
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -0700148 ochSignal = new OchSignal(lambdaAlloc.lambda().toInt(), omsPort.maxFrequency(), omsPort.grid());
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700149 }
150
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700151 // Create installable optical path intent
Marc De Leenheerd24420f2015-05-27 09:40:59 -0700152 // Only support fixed grid for now
153 OchSignalType signalType = OchSignalType.FIXED_GRID;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700154
155 Intent newIntent = OpticalPathIntent.builder()
156 .appId(intent.appId())
157 .src(intent.getSrc())
158 .dst(intent.getDst())
159 .path(path)
160 .lambda(ochSignal)
Marc De Leenheerd24420f2015-05-27 09:40:59 -0700161 .signalType(signalType)
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700162 .bidirectional(intent.isBidirectional())
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700163 .build();
164
165 return ImmutableList.of(newIntent);
166 }
167
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700168 // Release port allocations if unsuccessful
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700169 resourceService.release(intent.id());
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700170
171 throw new IntentCompilationException("Unable to find suitable lightpath for intent " + intent);
weibitf32383b2014-10-22 10:17:31 -0700172 }
173
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700174 /**
175 * Find the lambda allocated to the path.
176 *
177 * @param path the path
178 * @param linkAllocs the link allocations
Sho SHIMIZU5a6e2e52015-09-09 15:04:12 -0700179 * @return lambda allocated to the given path
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700180 */
181 private LambdaResourceAllocation getWavelength(Path path, LinkResourceAllocations linkAllocs) {
Sho SHIMIZU280e7912015-09-29 13:42:03 -0700182 return path.links().stream()
183 .flatMap(x -> linkAllocs.getResourceAllocation(x).stream())
184 .filter(x -> x.type() == ResourceType.LAMBDA)
185 .findFirst()
186 .map(x -> (LambdaResourceAllocation) x)
187 .orElse(null);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700188 }
189
190 /**
191 * Request and reserve first available wavelength across path.
192 *
193 * @param path path in WDM topology
194 * @return first available lambda resource allocation
195 */
196 private LinkResourceAllocations assignWavelength(Intent intent, Path path) {
197 LinkResourceRequest.Builder request =
198 DefaultLinkResourceRequest.builder(intent.id(), path.links())
199 .addLambdaRequest();
200
201 LinkResourceAllocations allocations = linkResourceService.requestResources(request.build());
202
Marc De Leenheer723f5532015-06-03 20:16:17 -0700203 if (!checkWavelengthContinuity(allocations, path)) {
204 linkResourceService.releaseResources(allocations);
205 return null;
206 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700207
208 return allocations;
209 }
210
211 /**
212 * Checks wavelength continuity constraint across path, i.e., an identical lambda is used on all links.
213 * @return true if wavelength continuity is met, false otherwise
214 */
215 private boolean checkWavelengthContinuity(LinkResourceAllocations allocations, Path path) {
216 if (allocations == null) {
217 return false;
218 }
219
Sho SHIMIZU280e7912015-09-29 13:42:03 -0700220 List<LambdaResource> lambdas = path.links().stream()
221 .flatMap(x -> allocations.getResourceAllocation(x).stream())
222 .filter(x -> x.type() == ResourceType.LAMBDA)
223 .map(x -> ((LambdaResourceAllocation) x).lambda())
224 .collect(Collectors.toList());
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700225
Sho SHIMIZU280e7912015-09-29 13:42:03 -0700226 LambdaResource lambda = null;
227 for (LambdaResource nextLambda: lambdas) {
228 if (nextLambda == null) {
229 return false;
230 }
231 if (lambda == null) {
232 lambda = nextLambda;
233 continue;
234 }
235 if (!lambda.equals(nextLambda)) {
236 return false;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700237 }
238 }
239
240 return true;
241 }
242
Marc De Leenheer723f5532015-06-03 20:16:17 -0700243 private ConnectPoint staticPort(ConnectPoint connectPoint) {
244 Port port = deviceService.getPort(connectPoint.deviceId(), connectPoint.port());
245
246 String staticPort = port.annotations().value(AnnotationKeys.STATIC_PORT);
247
248 // FIXME: need a better way to match the port
249 if (staticPort != null) {
250 for (Port p : deviceService.getPorts(connectPoint.deviceId())) {
251 if (staticPort.equals(p.number().name())) {
252 return new ConnectPoint(p.element().id(), p.number());
253 }
254 }
255 }
256
257 return null;
258 }
259
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700260 /**
261 * Calculates optical paths in WDM topology.
262 *
263 * @param intent optical connectivity intent
264 * @return set of paths in WDM topology
265 */
266 private Set<Path> getOpticalPaths(OpticalConnectivityIntent intent) {
267 // Route in WDM topology
weibit7e583462014-10-23 10:14:05 -0700268 Topology topology = topologyService.currentTopology();
Sho SHIMIZU74626412015-09-11 11:46:27 -0700269 LinkWeight weight = edge -> {
270 // Disregard inactive or non-optical links
271 if (edge.link().state() == Link.State.INACTIVE) {
272 return -1;
weibit7e583462014-10-23 10:14:05 -0700273 }
Sho SHIMIZU74626412015-09-11 11:46:27 -0700274 if (edge.link().type() != Link.Type.OPTICAL) {
275 return -1;
276 }
277 // Adhere to static port mappings
278 DeviceId srcDeviceId = edge.link().src().deviceId();
279 if (srcDeviceId.equals(intent.getSrc().deviceId())) {
280 ConnectPoint srcStaticPort = staticPort(intent.getSrc());
281 if (srcStaticPort != null) {
282 return srcStaticPort.equals(edge.link().src()) ? 1 : -1;
283 }
284 }
285 DeviceId dstDeviceId = edge.link().dst().deviceId();
286 if (dstDeviceId.equals(intent.getDst().deviceId())) {
287 ConnectPoint dstStaticPort = staticPort(intent.getDst());
288 if (dstStaticPort != null) {
289 return dstStaticPort.equals(edge.link().dst()) ? 1 : -1;
290 }
291 }
292
293 return 1;
weibit7e583462014-10-23 10:14:05 -0700294 };
weibitf32383b2014-10-22 10:17:31 -0700295
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700296 ConnectPoint start = intent.getSrc();
297 ConnectPoint end = intent.getDst();
Thomas Vachuska425a2d72014-10-29 11:28:28 -0700298 Set<Path> paths = topologyService.getPaths(topology, start.deviceId(),
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700299 end.deviceId(), weight);
weibit7e583462014-10-23 10:14:05 -0700300
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700301 return paths;
weibitf32383b2014-10-22 10:17:31 -0700302 }
weibitf32383b2014-10-22 10:17:31 -0700303}