blob: f9e22dd2cf05f3b4071a95095fb2e52aebb1ff57 [file] [log] [blame]
Sho SHIMIZUdeb04422016-05-06 16:10:46 -07001/*
2 * Copyright 2016-present 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 */
16package org.onosproject.store.resource.impl;
17
18import com.google.common.collect.ImmutableList;
Sho SHIMIZUb2183962016-05-13 15:03:50 -070019import org.onlab.util.GuavaCollectors;
Sho SHIMIZUdeb04422016-05-06 16:10:46 -070020import org.onosproject.net.resource.ContinuousResource;
21import org.onosproject.net.resource.ResourceAllocation;
Sho SHIMIZUb2183962016-05-13 15:03:50 -070022import org.onosproject.net.resource.ResourceConsumerId;
23
24import java.util.List;
25import java.util.stream.Collectors;
26import java.util.stream.Stream;
Sho SHIMIZUdeb04422016-05-06 16:10:46 -070027
28// internal use only
29final class ContinuousResourceAllocation {
30 private final ContinuousResource original;
31 private final ImmutableList<ResourceAllocation> allocations;
32
Sho SHIMIZUdffe3b82016-05-13 15:44:57 -070033 static ContinuousResourceAllocation empty(ContinuousResource original) {
34 return new ContinuousResourceAllocation(original, ImmutableList.of());
35 }
36
Sho SHIMIZUdeb04422016-05-06 16:10:46 -070037 ContinuousResourceAllocation(ContinuousResource original,
38 ImmutableList<ResourceAllocation> allocations) {
39 this.original = original;
40 this.allocations = allocations;
41 }
42
Sho SHIMIZU0a07c072016-05-13 15:12:58 -070043 /**
44 * Checks if there is enough resource volume to allocated the requested resource
45 * against the specified resource.
46 *
Sho SHIMIZU0a07c072016-05-13 15:12:58 -070047 * @param request requested resource
Sho SHIMIZU0a07c072016-05-13 15:12:58 -070048 * @return true if there is enough resource volume. Otherwise, false.
49 */
50 // computational complexity: O(n) where n is the number of allocations
Sho SHIMIZU38bcfcf2016-05-13 15:48:54 -070051 boolean hasEnoughResource(ContinuousResource request) {
Sho SHIMIZUdffe3b82016-05-13 15:44:57 -070052 double allocated = allocations.stream()
Sho SHIMIZU0a07c072016-05-13 15:12:58 -070053 .filter(x -> x.resource() instanceof ContinuousResource)
54 .map(x -> (ContinuousResource) x.resource())
55 .mapToDouble(ContinuousResource::value)
56 .sum();
57 double left = original.value() - allocated;
58 return request.value() <= left;
59 }
60
Sho SHIMIZUdeb04422016-05-06 16:10:46 -070061 ContinuousResource original() {
62 return original;
63 }
64
65 ImmutableList<ResourceAllocation> allocations() {
66 return allocations;
67 }
Sho SHIMIZUb2183962016-05-13 15:03:50 -070068
Sho SHIMIZUefb75112016-05-13 15:24:34 -070069 ContinuousResourceAllocation allocate(ContinuousResource original, ResourceAllocation value) {
70 return new ContinuousResourceAllocation(original, ImmutableList.<ResourceAllocation>builder()
71 .addAll(allocations)
72 .add(value)
73 .build());
74 }
75
Sho SHIMIZUb2183962016-05-13 15:03:50 -070076 ContinuousResourceAllocation release(ContinuousResource resource, ResourceConsumerId consumerId) {
77 List<ResourceAllocation> nonMatched = allocations.stream()
78 .filter(x -> !(x.consumerId().equals(consumerId) &&
79 ((ContinuousResource) x.resource()).value() == resource.value()))
80 .collect(Collectors.toList());
81
82 List<ResourceAllocation> matched = allocations.stream()
83 .filter(x -> (x.consumerId().equals(consumerId) &&
84 ((ContinuousResource) x.resource()).value() == resource.value()))
85 .collect(Collectors.toList());
86
87 if (matched.size() > 1) {
88 matched.remove(0);
89 }
90
91 return new ContinuousResourceAllocation(original,
92 Stream.concat(nonMatched.stream(), matched.stream())
93 .collect(GuavaCollectors.toImmutableList()));
94 }
Sho SHIMIZUdeb04422016-05-06 16:10:46 -070095}