2 * Copyright 2015 Open Networking Laboratory
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onosproject.store.resource.impl;
18 import java.util.ArrayList;
19 import java.util.Collection;
20 import java.util.Collections;
21 import java.util.HashMap;
22 import java.util.HashSet;
23 import java.util.List;
26 import java.util.stream.Collectors;
28 import org.apache.felix.scr.annotations.Component;
29 import org.apache.felix.scr.annotations.Reference;
30 import org.apache.felix.scr.annotations.ReferenceCardinality;
31 import org.apache.felix.scr.annotations.Service;
32 import org.apache.felix.scr.annotations.Activate;
33 import org.apache.felix.scr.annotations.Deactivate;
34 import org.onlab.util.Bandwidth;
35 import org.onosproject.net.OmsPort;
36 import org.onosproject.net.device.DeviceService;
37 import org.slf4j.Logger;
38 import org.onlab.util.PositionalParameterStringFormatter;
39 import org.onosproject.net.Link;
40 import org.onosproject.net.LinkKey;
41 import org.onosproject.net.Port;
42 import org.onosproject.net.intent.IntentId;
43 import org.onosproject.net.resource.link.BandwidthResource;
44 import org.onosproject.net.resource.link.BandwidthResourceAllocation;
45 import org.onosproject.net.resource.link.LambdaResource;
46 import org.onosproject.net.resource.link.LambdaResourceAllocation;
47 import org.onosproject.net.resource.link.LinkResourceAllocations;
48 import org.onosproject.net.resource.link.LinkResourceEvent;
49 import org.onosproject.net.resource.link.LinkResourceStore;
50 import org.onosproject.net.resource.link.LinkResourceStoreDelegate;
51 import org.onosproject.net.resource.link.MplsLabel;
52 import org.onosproject.net.resource.link.MplsLabelResourceAllocation;
53 import org.onosproject.net.resource.ResourceAllocation;
54 import org.onosproject.net.resource.ResourceAllocationException;
55 import org.onosproject.net.resource.ResourceType;
56 import org.onosproject.store.AbstractStore;
57 import org.onosproject.store.serializers.KryoNamespaces;
58 import org.onosproject.store.service.ConsistentMap;
59 import org.onosproject.store.service.Serializer;
60 import org.onosproject.store.service.StorageService;
61 import org.onosproject.store.service.TransactionContext;
62 import org.onosproject.store.service.TransactionException;
63 import org.onosproject.store.service.TransactionalMap;
64 import org.onosproject.store.service.Versioned;
66 import com.google.common.collect.ImmutableList;
67 import com.google.common.collect.ImmutableSet;
68 import com.google.common.collect.Sets;
70 import static com.google.common.base.Preconditions.checkNotNull;
71 import static org.slf4j.LoggerFactory.getLogger;
72 import static org.onosproject.net.AnnotationKeys.BANDWIDTH;
75 * Store that manages link resources using Copycat-backed TransactionalMaps.
77 @Component(immediate = true, enabled = true)
79 public class ConsistentLinkResourceStore extends
80 AbstractStore<LinkResourceEvent, LinkResourceStoreDelegate> implements
83 private final Logger log = getLogger(getClass());
85 private static final BandwidthResource DEFAULT_BANDWIDTH = new BandwidthResource(Bandwidth.mbps(1_000));
86 private static final BandwidthResource EMPTY_BW = new BandwidthResource(Bandwidth.bps(0));
88 // Smallest non-reserved MPLS label
89 private static final int MIN_UNRESERVED_LABEL = 0x10;
90 // Max non-reserved MPLS label = 239
91 private static final int MAX_UNRESERVED_LABEL = 0xEF;
93 // table to store current allocations
94 /** LinkKey -> List<LinkResourceAllocations>. */
95 private static final String LINK_RESOURCE_ALLOCATIONS = "LinkAllocations";
97 /** IntentId -> LinkResourceAllocations. */
98 private static final String INTENT_ALLOCATIONS = "LinkIntentAllocations";
100 private static final Serializer SERIALIZER = Serializer.using(KryoNamespaces.API);
102 // for reading committed values.
103 private ConsistentMap<IntentId, LinkResourceAllocations> intentAllocMap;
105 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
106 protected StorageService storageService;
108 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
109 protected DeviceService deviceService;
112 public void activate() {
113 intentAllocMap = storageService.<IntentId, LinkResourceAllocations>consistentMapBuilder()
114 .withName(INTENT_ALLOCATIONS)
115 .withSerializer(SERIALIZER)
121 public void deactivate() {
125 private TransactionalMap<IntentId, LinkResourceAllocations> getIntentAllocs(TransactionContext tx) {
126 return tx.getTransactionalMap(INTENT_ALLOCATIONS, SERIALIZER);
129 private TransactionalMap<LinkKey, List<LinkResourceAllocations>> getLinkAllocs(TransactionContext tx) {
130 return tx.getTransactionalMap(LINK_RESOURCE_ALLOCATIONS, SERIALIZER);
133 private TransactionContext getTxContext() {
134 return storageService.transactionContextBuilder().build();
137 private Set<ResourceAllocation> getResourceCapacity(ResourceType type, Link link) {
140 return ImmutableSet.of(getBandwidthResourceCapacity(link));
142 return getLambdaResourceCapacity(link);
144 return getMplsResourceCapacity();
146 return ImmutableSet.of();
150 private Set<ResourceAllocation> getLambdaResourceCapacity(Link link) {
151 Port port = deviceService.getPort(link.src().deviceId(), link.src().port());
152 if (!(port instanceof OmsPort)) {
153 return Collections.emptySet();
156 OmsPort omsPort = (OmsPort) port;
157 Set<ResourceAllocation> allocations = new HashSet<>();
158 // Assume fixed grid for now
159 for (int i = 0; i < omsPort.totalChannels(); i++) {
160 allocations.add(new LambdaResourceAllocation(LambdaResource.valueOf(i)));
165 private BandwidthResourceAllocation getBandwidthResourceCapacity(Link link) {
167 // if Link annotation exist, use them
168 // if all fails, use DEFAULT_BANDWIDTH
169 BandwidthResource bandwidth = DEFAULT_BANDWIDTH;
170 String strBw = link.annotations().value(BANDWIDTH);
172 return new BandwidthResourceAllocation(bandwidth);
176 bandwidth = new BandwidthResource(Bandwidth.mbps(Double.parseDouble(strBw)));
177 } catch (NumberFormatException e) {
178 // do nothings, use default bandwidth
179 bandwidth = DEFAULT_BANDWIDTH;
181 return new BandwidthResourceAllocation(bandwidth);
184 private Set<ResourceAllocation> getMplsResourceCapacity() {
185 Set<ResourceAllocation> allocations = new HashSet<>();
186 //Ignoring reserved labels of 0 through 15
187 for (int i = MIN_UNRESERVED_LABEL; i <= MAX_UNRESERVED_LABEL; i++) {
188 allocations.add(new MplsLabelResourceAllocation(MplsLabel
195 private Map<ResourceType, Set<ResourceAllocation>> getResourceCapacity(Link link) {
196 Map<ResourceType, Set<ResourceAllocation>> caps = new HashMap<>();
197 for (ResourceType type : ResourceType.values()) {
198 Set<ResourceAllocation> cap = getResourceCapacity(type, link);
205 public Set<ResourceAllocation> getFreeResources(Link link) {
206 TransactionContext tx = getTxContext();
210 Map<ResourceType, Set<ResourceAllocation>> freeResources = getFreeResourcesEx(tx, link);
211 return freeResources.values().stream()
212 .flatMap(Collection::stream)
213 .collect(Collectors.toSet());
219 private Map<ResourceType, Set<ResourceAllocation>> getFreeResourcesEx(TransactionContext tx, Link link) {
223 Map<ResourceType, Set<ResourceAllocation>> free = new HashMap<>();
224 final Map<ResourceType, Set<ResourceAllocation>> caps = getResourceCapacity(link);
225 final List<LinkResourceAllocations> allocations = ImmutableList.copyOf(getAllocations(tx, link));
227 Set<ResourceAllocation> bw = caps.get(ResourceType.BANDWIDTH);
228 Set<ResourceAllocation> value = getFreeBandwidthResources(link, bw, allocations);
229 free.put(ResourceType.BANDWIDTH, value);
231 Set<ResourceAllocation> lmd = caps.get(ResourceType.LAMBDA);
232 Set<ResourceAllocation> freeL = getFreeResources(link, lmd, allocations,
233 LambdaResourceAllocation.class);
234 free.put(ResourceType.LAMBDA, freeL);
236 Set<ResourceAllocation> mpls = caps.get(ResourceType.MPLS_LABEL);
237 Set<ResourceAllocation> freeLabel = getFreeResources(link, mpls, allocations,
238 MplsLabelResourceAllocation.class);
239 free.put(ResourceType.MPLS_LABEL, freeLabel);
244 private Set<ResourceAllocation> getFreeBandwidthResources(Link link, Set<ResourceAllocation> bw,
245 List<LinkResourceAllocations> allocations) {
246 if (bw == null || bw.isEmpty()) {
247 bw = Sets.newHashSet(new BandwidthResourceAllocation(EMPTY_BW));
250 BandwidthResourceAllocation cap = (BandwidthResourceAllocation) bw.iterator().next();
251 double freeBw = cap.bandwidth().toDouble();
253 // enumerate current allocations, subtracting resources
254 double allocatedBw = allocations.stream()
255 .flatMap(x -> x.getResourceAllocation(link).stream())
256 .filter(x -> x instanceof BandwidthResourceAllocation)
257 .map(x -> (BandwidthResourceAllocation) x)
258 .mapToDouble(x -> x.bandwidth().toDouble())
260 freeBw -= allocatedBw;
261 return Sets.newHashSet(
262 new BandwidthResourceAllocation(new BandwidthResource(Bandwidth.bps(freeBw))));
265 private Set<ResourceAllocation> getFreeResources(Link link,
266 Set<ResourceAllocation> resources,
267 List<LinkResourceAllocations> allocations,
268 Class<? extends ResourceAllocation> cls) {
269 if (resources == null || resources.isEmpty()) {
271 return Collections.emptySet();
273 Set<ResourceAllocation> freeL = resources.stream()
274 .filter(cls::isInstance)
275 .collect(Collectors.toSet());
277 // enumerate current allocations, removing resources
278 List<ResourceAllocation> allocated = allocations.stream()
279 .flatMap(x -> x.getResourceAllocation(link).stream())
280 .filter(cls::isInstance)
281 .collect(Collectors.toList());
282 freeL.removeAll(allocated);
287 public void allocateResources(LinkResourceAllocations allocations) {
288 checkNotNull(allocations);
289 TransactionContext tx = getTxContext();
293 TransactionalMap<IntentId, LinkResourceAllocations> intentAllocs = getIntentAllocs(tx);
294 intentAllocs.put(allocations.intentId(), allocations);
295 allocations.links().forEach(link -> allocateLinkResource(tx, link, allocations));
297 } catch (TransactionException | ResourceAllocationException e) {
298 log.error("Exception thrown, rolling back", e);
300 } catch (Exception e) {
301 log.error("Exception thrown, rolling back", e);
307 private void allocateLinkResource(TransactionContext tx, Link link,
308 LinkResourceAllocations allocations) {
309 // requested resources
310 Set<ResourceAllocation> reqs = allocations.getResourceAllocation(link);
311 Map<ResourceType, Set<ResourceAllocation>> available = getFreeResourcesEx(tx, link);
312 for (ResourceAllocation req : reqs) {
313 Set<ResourceAllocation> avail = available.get(req.type());
314 if (req instanceof BandwidthResourceAllocation) {
315 // check if allocation should be accepted
316 if (avail.isEmpty()) {
317 throw new ResourceAllocationException(String.format("There's no Bandwidth resource on %s?", link));
319 BandwidthResourceAllocation bw = (BandwidthResourceAllocation) avail.iterator().next();
320 double bwLeft = bw.bandwidth().toDouble();
321 BandwidthResourceAllocation bwReq = ((BandwidthResourceAllocation) req);
322 bwLeft -= bwReq.bandwidth().toDouble();
324 throw new ResourceAllocationException(
325 PositionalParameterStringFormatter.format(
326 "Unable to allocate bandwidth for link {} "
327 + " requested amount is {} current allocation is {}",
329 bwReq.bandwidth().toDouble(),
332 } else if (req instanceof LambdaResourceAllocation) {
333 LambdaResourceAllocation lambdaAllocation = (LambdaResourceAllocation) req;
334 // check if allocation should be accepted
335 if (!avail.contains(req)) {
336 // requested lambda was not available
337 throw new ResourceAllocationException(
338 PositionalParameterStringFormatter.format(
339 "Unable to allocate lambda for link {} lambda is {}",
341 lambdaAllocation.lambda().toInt()));
343 } else if (req instanceof MplsLabelResourceAllocation) {
344 MplsLabelResourceAllocation mplsAllocation = (MplsLabelResourceAllocation) req;
345 if (!avail.contains(req)) {
346 throw new ResourceAllocationException(
347 PositionalParameterStringFormatter
348 .format("Unable to allocate MPLS label for link "
349 + "{} MPLS label is {}",
357 // all requests allocatable => add allocation
358 final LinkKey linkKey = LinkKey.linkKey(link);
359 TransactionalMap<LinkKey, List<LinkResourceAllocations>> linkAllocs = getLinkAllocs(tx);
360 List<LinkResourceAllocations> before = linkAllocs.get(linkKey);
361 if (before == null) {
362 List<LinkResourceAllocations> after = new ArrayList<>();
363 after.add(allocations);
364 linkAllocs.putIfAbsent(linkKey, after);
366 List<LinkResourceAllocations> after = new ArrayList<>(before.size() + 1);
367 after.addAll(before);
368 after.add(allocations);
369 linkAllocs.replace(linkKey, before, after);
374 public LinkResourceEvent releaseResources(LinkResourceAllocations allocations) {
375 checkNotNull(allocations);
377 final IntentId intentId = allocations.intentId();
378 final Collection<Link> links = allocations.links();
379 boolean success = false;
381 TransactionContext tx = getTxContext();
384 TransactionalMap<IntentId, LinkResourceAllocations> intentAllocs = getIntentAllocs(tx);
385 intentAllocs.remove(intentId);
387 TransactionalMap<LinkKey, List<LinkResourceAllocations>> linkAllocs = getLinkAllocs(tx);
388 links.forEach(link -> {
389 final LinkKey linkId = LinkKey.linkKey(link);
391 List<LinkResourceAllocations> before = linkAllocs.get(linkId);
392 if (before == null || before.isEmpty()) {
393 // something is wrong, but it is already freed
394 log.warn("There was no resource left to release on {}", linkId);
397 List<LinkResourceAllocations> after = new ArrayList<>(before);
398 after.remove(allocations);
399 linkAllocs.replace(linkId, before, after);
403 } catch (TransactionException e) {
404 log.debug("Transaction failed, retrying", e);
406 } catch (Exception e) {
407 log.error("Exception thrown during releaseResource {}", allocations, e);
413 // Issue events to force recompilation of intents.
414 final List<LinkResourceAllocations> releasedResources = ImmutableList.of(allocations);
415 return new LinkResourceEvent(
416 LinkResourceEvent.Type.ADDITIONAL_RESOURCES_AVAILABLE,
422 public LinkResourceAllocations getAllocations(IntentId intentId) {
423 checkNotNull(intentId);
424 Versioned<LinkResourceAllocations> alloc = null;
426 alloc = intentAllocMap.get(intentId);
427 } catch (Exception e) {
428 log.warn("Could not read resource allocation information", e);
430 return alloc == null ? null : alloc.value();
434 public Iterable<LinkResourceAllocations> getAllocations(Link link) {
436 TransactionContext tx = getTxContext();
437 Iterable<LinkResourceAllocations> res = null;
440 res = getAllocations(tx, link);
444 return res == null ? Collections.emptyList() : res;
448 public Iterable<LinkResourceAllocations> getAllocations() {
450 Set<LinkResourceAllocations> allocs =
451 intentAllocMap.values().stream().map(Versioned::value).collect(Collectors.toSet());
452 return ImmutableSet.copyOf(allocs);
453 } catch (Exception e) {
454 log.warn("Could not read resource allocation information", e);
456 return ImmutableSet.of();
459 private Iterable<LinkResourceAllocations> getAllocations(TransactionContext tx, Link link) {
462 final LinkKey key = LinkKey.linkKey(link);
463 TransactionalMap<LinkKey, List<LinkResourceAllocations>> linkAllocs = getLinkAllocs(tx);
465 List<LinkResourceAllocations> res = linkAllocs.get(key);
470 res = linkAllocs.putIfAbsent(key, new ArrayList<>());
472 return Collections.emptyList();