blob: 482bf7816e7af0f75921881b262e31b464bf40eb [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;
20import org.apache.felix.scr.annotations.Component;
21import 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 */
66@Component(immediate = true)
67public class OpticalConnectivityIntentCompiler implements IntentCompiler<OpticalConnectivityIntent> {
68
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070069 protected static final Logger log = LoggerFactory.getLogger(OpticalConnectivityIntentCompiler.class);
70
weibitf32383b2014-10-22 10:17:31 -070071 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
72 protected IntentExtensionService intentManager;
73
74 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
weibit7e583462014-10-23 10:14:05 -070075 protected TopologyService topologyService;
weibitf32383b2014-10-22 10:17:31 -070076
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070077 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
78 protected DeviceService deviceService;
79
80 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Sho SHIMIZU5c16df82015-09-29 12:52:07 -070081 protected ResourceService resourceService;
82
83 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070084 protected LinkResourceService linkResourceService;
85
weibitf32383b2014-10-22 10:17:31 -070086 @Activate
87 public void activate() {
weibitf32383b2014-10-22 10:17:31 -070088 intentManager.registerCompiler(OpticalConnectivityIntent.class, this);
89 }
90
91 @Deactivate
92 public void deactivate() {
93 intentManager.unregisterCompiler(OpticalConnectivityIntent.class);
94 }
95
96 @Override
Brian O'Connorfa81eae2014-10-30 13:20:05 -070097 public List<Intent> compile(OpticalConnectivityIntent intent,
98 List<Intent> installable,
99 Set<LinkResourceAllocations> resources) {
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700100 // Check if source and destination are optical OCh ports
101 ConnectPoint src = intent.getSrc();
102 ConnectPoint dst = intent.getDst();
103 Port srcPort = deviceService.getPort(src.deviceId(), src.port());
104 Port dstPort = deviceService.getPort(dst.deviceId(), dst.port());
105 checkArgument(srcPort instanceof OchPort);
106 checkArgument(dstPort instanceof OchPort);
107
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700108 log.debug("Compiling optical connectivity intent between {} and {}", src, dst);
109
110 // Reserve OCh ports
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700111 ResourcePath srcPortPath = new ResourcePath(src.deviceId(), src.port());
112 ResourcePath dstPortPath = new ResourcePath(dst.deviceId(), dst.port());
113 List<org.onosproject.net.newresource.ResourceAllocation> allocation =
114 resourceService.allocate(intent.id(), srcPortPath, dstPortPath);
115 if (allocation.isEmpty()) {
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700116 throw new IntentCompilationException("Unable to reserve ports for intent " + intent);
117 }
118
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700119 // Calculate available light paths
120 Set<Path> paths = getOpticalPaths(intent);
121
122 // Use first path that can be successfully reserved
123 for (Path path : paths) {
Marc De Leenheer723f5532015-06-03 20:16:17 -0700124
125 // Static or dynamic lambda allocation
Marc De Leenheer723f5532015-06-03 20:16:17 -0700126 String staticLambda = srcPort.annotations().value(AnnotationKeys.STATIC_LAMBDA);
Marc De Leenheerc9733082015-06-04 12:22:38 -0700127 OchPort srcOchPort = (OchPort) srcPort;
128 OchPort dstOchPort = (OchPort) dstPort;
129 OchSignal ochSignal;
130
131 // FIXME: need to actually reserve the lambda for static lambda's
Marc De Leenheer723f5532015-06-03 20:16:17 -0700132 if (staticLambda != null) {
HIGUCHI Yuta4a6a70a2015-09-04 14:42:10 -0700133 ochSignal = new OchSignal(Frequency.ofHz(Long.parseLong(staticLambda)),
Marc De Leenheerc9733082015-06-04 12:22:38 -0700134 srcOchPort.lambda().channelSpacing(),
135 srcOchPort.lambda().slotGranularity());
136 } else if (!srcOchPort.isTunable() || !dstOchPort.isTunable()) {
137 // FIXME: also check OCh port
138 ochSignal = srcOchPort.lambda();
Marc De Leenheer723f5532015-06-03 20:16:17 -0700139 } else {
140 // Request and reserve lambda on path
141 LinkResourceAllocations linkAllocs = assignWavelength(intent, path);
142 if (linkAllocs == null) {
143 continue;
144 }
Marc De Leenheerc9733082015-06-04 12:22:38 -0700145 LambdaResourceAllocation lambdaAlloc = getWavelength(path, linkAllocs);
146 OmsPort omsPort = (OmsPort) deviceService.getPort(path.src().deviceId(), path.src().port());
Marc De Leenheer0b8b2ef2015-08-03 15:39:00 -0700147 ochSignal = new OchSignal(lambdaAlloc.lambda().toInt(), omsPort.maxFrequency(), omsPort.grid());
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700148 }
149
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700150 // Create installable optical path intent
Marc De Leenheerd24420f2015-05-27 09:40:59 -0700151 // Only support fixed grid for now
152 OchSignalType signalType = OchSignalType.FIXED_GRID;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700153
154 Intent newIntent = OpticalPathIntent.builder()
155 .appId(intent.appId())
156 .src(intent.getSrc())
157 .dst(intent.getDst())
158 .path(path)
159 .lambda(ochSignal)
Marc De Leenheerd24420f2015-05-27 09:40:59 -0700160 .signalType(signalType)
Marc De Leenheer4a1c1fa2015-06-01 18:08:56 -0700161 .bidirectional(intent.isBidirectional())
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700162 .build();
163
164 return ImmutableList.of(newIntent);
165 }
166
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700167 // Release port allocations if unsuccessful
Sho SHIMIZU5c16df82015-09-29 12:52:07 -0700168 resourceService.release(intent.id());
Marc De Leenheer8c2caac2015-05-28 16:37:33 -0700169
170 throw new IntentCompilationException("Unable to find suitable lightpath for intent " + intent);
weibitf32383b2014-10-22 10:17:31 -0700171 }
172
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700173 /**
174 * Find the lambda allocated to the path.
175 *
176 * @param path the path
177 * @param linkAllocs the link allocations
Sho SHIMIZU5a6e2e52015-09-09 15:04:12 -0700178 * @return lambda allocated to the given path
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700179 */
180 private LambdaResourceAllocation getWavelength(Path path, LinkResourceAllocations linkAllocs) {
Sho SHIMIZU280e7912015-09-29 13:42:03 -0700181 return path.links().stream()
182 .flatMap(x -> linkAllocs.getResourceAllocation(x).stream())
183 .filter(x -> x.type() == ResourceType.LAMBDA)
184 .findFirst()
185 .map(x -> (LambdaResourceAllocation) x)
186 .orElse(null);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700187 }
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
Sho SHIMIZU280e7912015-09-29 13:42:03 -0700219 List<LambdaResource> lambdas = path.links().stream()
220 .flatMap(x -> allocations.getResourceAllocation(x).stream())
221 .filter(x -> x.type() == ResourceType.LAMBDA)
222 .map(x -> ((LambdaResourceAllocation) x).lambda())
223 .collect(Collectors.toList());
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700224
Sho SHIMIZU280e7912015-09-29 13:42:03 -0700225 LambdaResource lambda = null;
226 for (LambdaResource nextLambda: lambdas) {
227 if (nextLambda == null) {
228 return false;
229 }
230 if (lambda == null) {
231 lambda = nextLambda;
232 continue;
233 }
234 if (!lambda.equals(nextLambda)) {
235 return false;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700236 }
237 }
238
239 return true;
240 }
241
Marc De Leenheer723f5532015-06-03 20:16:17 -0700242 private ConnectPoint staticPort(ConnectPoint connectPoint) {
243 Port port = deviceService.getPort(connectPoint.deviceId(), connectPoint.port());
244
245 String staticPort = port.annotations().value(AnnotationKeys.STATIC_PORT);
246
247 // FIXME: need a better way to match the port
248 if (staticPort != null) {
249 for (Port p : deviceService.getPorts(connectPoint.deviceId())) {
250 if (staticPort.equals(p.number().name())) {
251 return new ConnectPoint(p.element().id(), p.number());
252 }
253 }
254 }
255
256 return null;
257 }
258
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700259 /**
260 * Calculates optical paths in WDM topology.
261 *
262 * @param intent optical connectivity intent
263 * @return set of paths in WDM topology
264 */
265 private Set<Path> getOpticalPaths(OpticalConnectivityIntent intent) {
266 // Route in WDM topology
weibit7e583462014-10-23 10:14:05 -0700267 Topology topology = topologyService.currentTopology();
Sho SHIMIZU74626412015-09-11 11:46:27 -0700268 LinkWeight weight = edge -> {
269 // Disregard inactive or non-optical links
270 if (edge.link().state() == Link.State.INACTIVE) {
271 return -1;
weibit7e583462014-10-23 10:14:05 -0700272 }
Sho SHIMIZU74626412015-09-11 11:46:27 -0700273 if (edge.link().type() != Link.Type.OPTICAL) {
274 return -1;
275 }
276 // Adhere to static port mappings
277 DeviceId srcDeviceId = edge.link().src().deviceId();
278 if (srcDeviceId.equals(intent.getSrc().deviceId())) {
279 ConnectPoint srcStaticPort = staticPort(intent.getSrc());
280 if (srcStaticPort != null) {
281 return srcStaticPort.equals(edge.link().src()) ? 1 : -1;
282 }
283 }
284 DeviceId dstDeviceId = edge.link().dst().deviceId();
285 if (dstDeviceId.equals(intent.getDst().deviceId())) {
286 ConnectPoint dstStaticPort = staticPort(intent.getDst());
287 if (dstStaticPort != null) {
288 return dstStaticPort.equals(edge.link().dst()) ? 1 : -1;
289 }
290 }
291
292 return 1;
weibit7e583462014-10-23 10:14:05 -0700293 };
weibitf32383b2014-10-22 10:17:31 -0700294
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700295 ConnectPoint start = intent.getSrc();
296 ConnectPoint end = intent.getDst();
Thomas Vachuska425a2d72014-10-29 11:28:28 -0700297 Set<Path> paths = topologyService.getPaths(topology, start.deviceId(),
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700298 end.deviceId(), weight);
weibit7e583462014-10-23 10:14:05 -0700299
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700300 return paths;
weibitf32383b2014-10-22 10:17:31 -0700301 }
weibitf32383b2014-10-22 10:17:31 -0700302}