blob: c332ada5aad40fc7a46ec977f4877a2b8106318c [file] [log] [blame]
Thomas Vachuska58de4162015-09-10 16:15:33 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 */
Ayaka Koshibee114f042015-05-01 11:43:00 -070016package org.onosproject.store.resource.impl;
17
18import java.util.ArrayList;
19import java.util.Collection;
20import java.util.Collections;
21import java.util.HashMap;
22import java.util.HashSet;
23import java.util.List;
24import java.util.Map;
25import java.util.Set;
26import java.util.stream.Collectors;
27
28import org.apache.felix.scr.annotations.Component;
29import org.apache.felix.scr.annotations.Reference;
30import org.apache.felix.scr.annotations.ReferenceCardinality;
31import org.apache.felix.scr.annotations.Service;
32import org.apache.felix.scr.annotations.Activate;
33import org.apache.felix.scr.annotations.Deactivate;
Sho SHIMIZU6d01d3d2015-05-08 14:08:36 -070034import org.onlab.util.Bandwidth;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070035import org.onosproject.net.OmsPort;
36import org.onosproject.net.device.DeviceService;
Ayaka Koshibee114f042015-05-01 11:43:00 -070037import org.slf4j.Logger;
Ayaka Koshibee114f042015-05-01 11:43:00 -070038import org.onlab.util.PositionalParameterStringFormatter;
39import org.onosproject.net.Link;
40import org.onosproject.net.LinkKey;
Ayaka Koshibe8117f362015-06-02 13:44:01 -070041import org.onosproject.net.Port;
Ayaka Koshibee114f042015-05-01 11:43:00 -070042import org.onosproject.net.intent.IntentId;
Brian O'Connor6de2e202015-05-21 14:30:41 -070043import org.onosproject.net.resource.link.BandwidthResource;
44import org.onosproject.net.resource.link.BandwidthResourceAllocation;
45import org.onosproject.net.resource.link.LambdaResource;
46import org.onosproject.net.resource.link.LambdaResourceAllocation;
47import org.onosproject.net.resource.link.LinkResourceAllocations;
48import org.onosproject.net.resource.link.LinkResourceEvent;
49import org.onosproject.net.resource.link.LinkResourceStore;
50import org.onosproject.net.resource.link.LinkResourceStoreDelegate;
51import org.onosproject.net.resource.link.MplsLabel;
52import org.onosproject.net.resource.link.MplsLabelResourceAllocation;
Ayaka Koshibee114f042015-05-01 11:43:00 -070053import org.onosproject.net.resource.ResourceAllocation;
54import org.onosproject.net.resource.ResourceAllocationException;
55import org.onosproject.net.resource.ResourceType;
56import org.onosproject.store.AbstractStore;
57import org.onosproject.store.serializers.KryoNamespaces;
58import org.onosproject.store.service.ConsistentMap;
59import org.onosproject.store.service.Serializer;
60import org.onosproject.store.service.StorageService;
61import org.onosproject.store.service.TransactionContext;
62import org.onosproject.store.service.TransactionException;
63import org.onosproject.store.service.TransactionalMap;
64import org.onosproject.store.service.Versioned;
65
66import com.google.common.collect.ImmutableList;
67import com.google.common.collect.ImmutableSet;
68import com.google.common.collect.Sets;
69
70import static com.google.common.base.Preconditions.checkNotNull;
Ayaka Koshibee114f042015-05-01 11:43:00 -070071import static org.slf4j.LoggerFactory.getLogger;
72import static org.onosproject.net.AnnotationKeys.BANDWIDTH;
Ayaka Koshibee114f042015-05-01 11:43:00 -070073
74/**
75 * Store that manages link resources using Copycat-backed TransactionalMaps.
76 */
Ayaka Koshibe474ef5f2015-05-01 15:24:51 -070077@Component(immediate = true, enabled = true)
Ayaka Koshibee114f042015-05-01 11:43:00 -070078@Service
79public class ConsistentLinkResourceStore extends
80 AbstractStore<LinkResourceEvent, LinkResourceStoreDelegate> implements
81 LinkResourceStore {
82
83 private final Logger log = getLogger(getClass());
84
Sho SHIMIZU6d01d3d2015-05-08 14:08:36 -070085 private static final BandwidthResource DEFAULT_BANDWIDTH = new BandwidthResource(Bandwidth.mbps(1_000));
86 private static final BandwidthResource EMPTY_BW = new BandwidthResource(Bandwidth.bps(0));
Ayaka Koshibee114f042015-05-01 11:43:00 -070087
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;
92
93 // table to store current allocations
94 /** LinkKey -> List<LinkResourceAllocations>. */
Ayaka Koshibebcb02372015-06-01 10:56:42 -070095 private static final String LINK_RESOURCE_ALLOCATIONS = "LinkAllocations";
Ayaka Koshibee114f042015-05-01 11:43:00 -070096
97 /** IntentId -> LinkResourceAllocations. */
Ayaka Koshibebcb02372015-06-01 10:56:42 -070098 private static final String INTENT_ALLOCATIONS = "LinkIntentAllocations";
Ayaka Koshibee114f042015-05-01 11:43:00 -070099
Sho SHIMIZU200a7392015-07-23 16:28:35 -0700100 private static final Serializer SERIALIZER = Serializer.using(KryoNamespaces.API);
Ayaka Koshibee114f042015-05-01 11:43:00 -0700101
102 // for reading committed values.
103 private ConsistentMap<IntentId, LinkResourceAllocations> intentAllocMap;
104
105 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
106 protected StorageService storageService;
107
108 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700109 protected DeviceService deviceService;
110
Ayaka Koshibee114f042015-05-01 11:43:00 -0700111 @Activate
112 public void activate() {
113 intentAllocMap = storageService.<IntentId, LinkResourceAllocations>consistentMapBuilder()
114 .withName(INTENT_ALLOCATIONS)
115 .withSerializer(SERIALIZER)
116 .build();
117 log.info("Started");
118 }
119
120 @Deactivate
121 public void deactivate() {
122 log.info("Stopped");
123 }
124
125 private TransactionalMap<IntentId, LinkResourceAllocations> getIntentAllocs(TransactionContext tx) {
126 return tx.getTransactionalMap(INTENT_ALLOCATIONS, SERIALIZER);
127 }
128
129 private TransactionalMap<LinkKey, List<LinkResourceAllocations>> getLinkAllocs(TransactionContext tx) {
130 return tx.getTransactionalMap(LINK_RESOURCE_ALLOCATIONS, SERIALIZER);
131 }
132
133 private TransactionContext getTxContext() {
134 return storageService.transactionContextBuilder().build();
135 }
136
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700137 private Set<ResourceAllocation> getResourceCapacity(ResourceType type, Link link) {
Sho SHIMIZU04ae54a2015-10-05 15:46:28 -0700138 switch (type) {
139 case BANDWIDTH:
140 return ImmutableSet.of(getBandwidthResourceCapacity(link));
141 case LAMBDA:
142 return getLambdaResourceCapacity(link);
143 case MPLS_LABEL:
144 return getMplsResourceCapacity();
145 default:
146 return ImmutableSet.of();
Ayaka Koshibee114f042015-05-01 11:43:00 -0700147 }
Ayaka Koshibee114f042015-05-01 11:43:00 -0700148 }
149
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700150 private Set<ResourceAllocation> getLambdaResourceCapacity(Link link) {
Ayaka Koshibe8117f362015-06-02 13:44:01 -0700151 Port port = deviceService.getPort(link.src().deviceId(), link.src().port());
Sho SHIMIZUa005a6e52015-10-02 15:13:27 -0700152 if (!(port instanceof OmsPort)) {
153 return Collections.emptySet();
154 }
Marc De Leenheer1afa2a02015-05-13 09:18:07 -0700155
Sho SHIMIZUa005a6e52015-10-02 15:13:27 -0700156 OmsPort omsPort = (OmsPort) port;
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700157 Set<ResourceAllocation> allocations = new HashSet<>();
Sho SHIMIZUa005a6e52015-10-02 15:13:27 -0700158 // Assume fixed grid for now
159 for (int i = 0; i < omsPort.totalChannels(); i++) {
160 allocations.add(new LambdaResourceAllocation(LambdaResource.valueOf(i)));
Ayaka Koshibee114f042015-05-01 11:43:00 -0700161 }
162 return allocations;
163 }
164
165 private BandwidthResourceAllocation getBandwidthResourceCapacity(Link link) {
166
167 // if Link annotation exist, use them
168 // if all fails, use DEFAULT_BANDWIDTH
Sho SHIMIZUa890e7c2015-10-02 14:48:13 -0700169 BandwidthResource bandwidth = DEFAULT_BANDWIDTH;
Ayaka Koshibee114f042015-05-01 11:43:00 -0700170 String strBw = link.annotations().value(BANDWIDTH);
Sho SHIMIZUa005a6e52015-10-02 15:13:27 -0700171 if (strBw == null) {
172 return new BandwidthResourceAllocation(bandwidth);
Ayaka Koshibee114f042015-05-01 11:43:00 -0700173 }
174
Sho SHIMIZUa005a6e52015-10-02 15:13:27 -0700175 try {
176 bandwidth = new BandwidthResource(Bandwidth.mbps(Double.parseDouble(strBw)));
177 } catch (NumberFormatException e) {
178 // do nothings, use default bandwidth
179 bandwidth = DEFAULT_BANDWIDTH;
180 }
Ayaka Koshibee114f042015-05-01 11:43:00 -0700181 return new BandwidthResourceAllocation(bandwidth);
182 }
183
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700184 private Set<ResourceAllocation> getMplsResourceCapacity() {
185 Set<ResourceAllocation> allocations = new HashSet<>();
Ayaka Koshibee114f042015-05-01 11:43:00 -0700186 //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
189 .valueOf(i)));
190
191 }
192 return allocations;
193 }
194
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700195 private Map<ResourceType, Set<ResourceAllocation>> getResourceCapacity(Link link) {
196 Map<ResourceType, Set<ResourceAllocation>> caps = new HashMap<>();
Ayaka Koshibee114f042015-05-01 11:43:00 -0700197 for (ResourceType type : ResourceType.values()) {
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700198 Set<ResourceAllocation> cap = getResourceCapacity(type, link);
Sho SHIMIZUf618cb02015-10-02 14:43:50 -0700199 caps.put(type, cap);
Ayaka Koshibee114f042015-05-01 11:43:00 -0700200 }
201 return caps;
202 }
203
204 @Override
205 public Set<ResourceAllocation> getFreeResources(Link link) {
206 TransactionContext tx = getTxContext();
207
208 tx.begin();
209 try {
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700210 Map<ResourceType, Set<ResourceAllocation>> freeResources = getFreeResourcesEx(tx, link);
Sho SHIMIZUeca9f352015-10-05 15:55:24 -0700211 return freeResources.values().stream()
212 .flatMap(Collection::stream)
213 .collect(Collectors.toSet());
Ayaka Koshibee114f042015-05-01 11:43:00 -0700214 } finally {
215 tx.abort();
216 }
217 }
218
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700219 private Map<ResourceType, Set<ResourceAllocation>> getFreeResourcesEx(TransactionContext tx, Link link) {
Ayaka Koshibee114f042015-05-01 11:43:00 -0700220 checkNotNull(tx);
221 checkNotNull(link);
222
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700223 Map<ResourceType, Set<ResourceAllocation>> free = new HashMap<>();
224 final Map<ResourceType, Set<ResourceAllocation>> caps = getResourceCapacity(link);
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700225 final List<LinkResourceAllocations> allocations = ImmutableList.copyOf(getAllocations(tx, link));
Ayaka Koshibee114f042015-05-01 11:43:00 -0700226
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700227 Set<ResourceAllocation> bw = caps.get(ResourceType.BANDWIDTH);
228 Set<ResourceAllocation> value = getFreeBandwidthResources(link, bw, allocations);
229 free.put(ResourceType.BANDWIDTH, value);
Ayaka Koshibee114f042015-05-01 11:43:00 -0700230
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700231 Set<ResourceAllocation> lmd = caps.get(ResourceType.LAMBDA);
Sho SHIMIZU1bd72c22015-10-06 10:52:12 -0700232 Set<ResourceAllocation> freeL = getFreeResources(link, lmd, allocations,
233 LambdaResourceAllocation.class);
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700234 free.put(ResourceType.LAMBDA, freeL);
Ayaka Koshibee114f042015-05-01 11:43:00 -0700235
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700236 Set<ResourceAllocation> mpls = caps.get(ResourceType.MPLS_LABEL);
Sho SHIMIZU1bd72c22015-10-06 10:52:12 -0700237 Set<ResourceAllocation> freeLabel = getFreeResources(link, mpls, allocations,
238 MplsLabelResourceAllocation.class);
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700239 free.put(ResourceType.MPLS_LABEL, freeLabel);
Ayaka Koshibee114f042015-05-01 11:43:00 -0700240
Ayaka Koshibee114f042015-05-01 11:43:00 -0700241 return free;
242 }
243
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700244 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));
248 }
249
250 BandwidthResourceAllocation cap = (BandwidthResourceAllocation) bw.iterator().next();
251 double freeBw = cap.bandwidth().toDouble();
252
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())
259 .sum();
260 freeBw -= allocatedBw;
261 return Sets.newHashSet(
262 new BandwidthResourceAllocation(new BandwidthResource(Bandwidth.bps(freeBw))));
263 }
264
Sho SHIMIZU1bd72c22015-10-06 10:52:12 -0700265 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()) {
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700270 // nothing left
271 return Collections.emptySet();
272 }
Sho SHIMIZU1bd72c22015-10-06 10:52:12 -0700273 Set<ResourceAllocation> freeL = resources.stream()
274 .filter(cls::isInstance)
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700275 .collect(Collectors.toSet());
276
277 // enumerate current allocations, removing resources
Sho SHIMIZU1bd72c22015-10-06 10:52:12 -0700278 List<ResourceAllocation> allocated = allocations.stream()
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700279 .flatMap(x -> x.getResourceAllocation(link).stream())
Sho SHIMIZU1bd72c22015-10-06 10:52:12 -0700280 .filter(cls::isInstance)
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700281 .collect(Collectors.toList());
Sho SHIMIZU1bd72c22015-10-06 10:52:12 -0700282 freeL.removeAll(allocated);
Sho SHIMIZU48588a72015-10-05 17:00:48 -0700283 return freeL;
284 }
285
Ayaka Koshibee114f042015-05-01 11:43:00 -0700286 @Override
287 public void allocateResources(LinkResourceAllocations allocations) {
288 checkNotNull(allocations);
289 TransactionContext tx = getTxContext();
290
291 tx.begin();
292 try {
293 TransactionalMap<IntentId, LinkResourceAllocations> intentAllocs = getIntentAllocs(tx);
294 intentAllocs.put(allocations.intentId(), allocations);
295 allocations.links().forEach(link -> allocateLinkResource(tx, link, allocations));
296 tx.commit();
Sho SHIMIZUe289f432015-10-06 19:33:16 -0700297 } catch (TransactionException | ResourceAllocationException e) {
298 log.error("Exception thrown, rolling back", e);
299 tx.abort();
Ayaka Koshibee114f042015-05-01 11:43:00 -0700300 } catch (Exception e) {
301 log.error("Exception thrown, rolling back", e);
302 tx.abort();
303 throw e;
304 }
305 }
306
307 private void allocateLinkResource(TransactionContext tx, Link link,
308 LinkResourceAllocations allocations) {
309 // requested resources
310 Set<ResourceAllocation> reqs = allocations.getResourceAllocation(link);
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700311 Map<ResourceType, Set<ResourceAllocation>> available = getFreeResourcesEx(tx, link);
Ayaka Koshibee114f042015-05-01 11:43:00 -0700312 for (ResourceAllocation req : reqs) {
Sho SHIMIZUe1b463b2015-10-05 15:39:19 -0700313 Set<ResourceAllocation> avail = available.get(req.type());
Ayaka Koshibee114f042015-05-01 11:43:00 -0700314 if (req instanceof BandwidthResourceAllocation) {
315 // check if allocation should be accepted
316 if (avail.isEmpty()) {
Sho SHIMIZUe289f432015-10-06 19:33:16 -0700317 throw new ResourceAllocationException(String.format("There's no Bandwidth resource on %s?", link));
Ayaka Koshibee114f042015-05-01 11:43:00 -0700318 }
319 BandwidthResourceAllocation bw = (BandwidthResourceAllocation) avail.iterator().next();
320 double bwLeft = bw.bandwidth().toDouble();
321 BandwidthResourceAllocation bwReq = ((BandwidthResourceAllocation) req);
322 bwLeft -= bwReq.bandwidth().toDouble();
323 if (bwLeft < 0) {
324 throw new ResourceAllocationException(
325 PositionalParameterStringFormatter.format(
326 "Unable to allocate bandwidth for link {} "
327 + " requested amount is {} current allocation is {}",
328 link,
329 bwReq.bandwidth().toDouble(),
330 bw));
331 }
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 {}",
340 link,
341 lambdaAllocation.lambda().toInt()));
342 }
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 {}",
350 link,
351 mplsAllocation
352 .mplsLabel()
353 .toString()));
354 }
355 }
356 }
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);
Sho SHIMIZU1dcef072015-10-07 17:52:39 -0700364 linkAllocs.putIfAbsent(linkKey, after);
Ayaka Koshibee114f042015-05-01 11:43:00 -0700365 } else {
Sho SHIMIZU0d037612015-10-07 15:36:31 -0700366 boolean overlapped = before.stream()
367 .flatMap(x -> x.getResourceAllocation(link).stream())
368 .anyMatch(x -> allocations.getResourceAllocation(link).contains(x));
369 if (overlapped) {
370 throw new ResourceAllocationException(
371 String.format("Resource allocations are overlapped between %s and %s",
372 before, allocations)
373 );
374 }
Ayaka Koshibee114f042015-05-01 11:43:00 -0700375 List<LinkResourceAllocations> after = new ArrayList<>(before.size() + 1);
376 after.addAll(before);
377 after.add(allocations);
378 linkAllocs.replace(linkKey, before, after);
379 }
380 }
381
382 @Override
383 public LinkResourceEvent releaseResources(LinkResourceAllocations allocations) {
384 checkNotNull(allocations);
385
386 final IntentId intentId = allocations.intentId();
387 final Collection<Link> links = allocations.links();
388 boolean success = false;
389 do {
390 TransactionContext tx = getTxContext();
391 tx.begin();
392 try {
393 TransactionalMap<IntentId, LinkResourceAllocations> intentAllocs = getIntentAllocs(tx);
394 intentAllocs.remove(intentId);
395
396 TransactionalMap<LinkKey, List<LinkResourceAllocations>> linkAllocs = getLinkAllocs(tx);
397 links.forEach(link -> {
398 final LinkKey linkId = LinkKey.linkKey(link);
399
400 List<LinkResourceAllocations> before = linkAllocs.get(linkId);
401 if (before == null || before.isEmpty()) {
402 // something is wrong, but it is already freed
403 log.warn("There was no resource left to release on {}", linkId);
404 return;
405 }
406 List<LinkResourceAllocations> after = new ArrayList<>(before);
407 after.remove(allocations);
408 linkAllocs.replace(linkId, before, after);
409 });
410 tx.commit();
411 success = true;
412 } catch (TransactionException e) {
413 log.debug("Transaction failed, retrying", e);
414 tx.abort();
415 } catch (Exception e) {
416 log.error("Exception thrown during releaseResource {}", allocations, e);
417 tx.abort();
418 throw e;
419 }
420 } while (!success);
421
422 // Issue events to force recompilation of intents.
423 final List<LinkResourceAllocations> releasedResources = ImmutableList.of(allocations);
424 return new LinkResourceEvent(
425 LinkResourceEvent.Type.ADDITIONAL_RESOURCES_AVAILABLE,
426 releasedResources);
427
428 }
429
430 @Override
431 public LinkResourceAllocations getAllocations(IntentId intentId) {
432 checkNotNull(intentId);
433 Versioned<LinkResourceAllocations> alloc = null;
434 try {
435 alloc = intentAllocMap.get(intentId);
436 } catch (Exception e) {
437 log.warn("Could not read resource allocation information", e);
438 }
439 return alloc == null ? null : alloc.value();
440 }
441
442 @Override
443 public Iterable<LinkResourceAllocations> getAllocations(Link link) {
444 checkNotNull(link);
445 TransactionContext tx = getTxContext();
446 Iterable<LinkResourceAllocations> res = null;
447 tx.begin();
448 try {
449 res = getAllocations(tx, link);
450 } finally {
451 tx.abort();
452 }
453 return res == null ? Collections.emptyList() : res;
454 }
455
456 @Override
457 public Iterable<LinkResourceAllocations> getAllocations() {
458 try {
459 Set<LinkResourceAllocations> allocs =
460 intentAllocMap.values().stream().map(Versioned::value).collect(Collectors.toSet());
461 return ImmutableSet.copyOf(allocs);
462 } catch (Exception e) {
463 log.warn("Could not read resource allocation information", e);
464 }
465 return ImmutableSet.of();
466 }
467
468 private Iterable<LinkResourceAllocations> getAllocations(TransactionContext tx, Link link) {
469 checkNotNull(tx);
470 checkNotNull(link);
471 final LinkKey key = LinkKey.linkKey(link);
472 TransactionalMap<LinkKey, List<LinkResourceAllocations>> linkAllocs = getLinkAllocs(tx);
Ayaka Koshibee114f042015-05-01 11:43:00 -0700473
Sho SHIMIZU88d36e22015-10-02 14:23:46 -0700474 List<LinkResourceAllocations> res = linkAllocs.get(key);
475 if (res != null) {
476 return res;
Ayaka Koshibee114f042015-05-01 11:43:00 -0700477 }
Sho SHIMIZU88d36e22015-10-02 14:23:46 -0700478
479 res = linkAllocs.putIfAbsent(key, new ArrayList<>());
480 if (res == null) {
481 return Collections.emptyList();
482 } else {
483 return res;
484 }
Ayaka Koshibee114f042015-05-01 11:43:00 -0700485 }
486
487}