blob: c9f1071121aebca5458f7454b53c886f7f3d3eca [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 SHIMIZU8fb4ad72016-05-13 15:53:44 -070043 // for serializer
44 private ContinuousResourceAllocation() {
45 this.original = null;
46 this.allocations = null;
47 }
48
Sho SHIMIZU0a07c072016-05-13 15:12:58 -070049 /**
50 * Checks if there is enough resource volume to allocated the requested resource
51 * against the specified resource.
52 *
Sho SHIMIZU0a07c072016-05-13 15:12:58 -070053 * @param request requested resource
Sho SHIMIZU0a07c072016-05-13 15:12:58 -070054 * @return true if there is enough resource volume. Otherwise, false.
55 */
56 // computational complexity: O(n) where n is the number of allocations
Sho SHIMIZU38bcfcf2016-05-13 15:48:54 -070057 boolean hasEnoughResource(ContinuousResource request) {
Sho SHIMIZUdffe3b82016-05-13 15:44:57 -070058 double allocated = allocations.stream()
Sho SHIMIZU0a07c072016-05-13 15:12:58 -070059 .filter(x -> x.resource() instanceof ContinuousResource)
60 .map(x -> (ContinuousResource) x.resource())
61 .mapToDouble(ContinuousResource::value)
62 .sum();
63 double left = original.value() - allocated;
64 return request.value() <= left;
65 }
66
Sho SHIMIZUdeb04422016-05-06 16:10:46 -070067 ImmutableList<ResourceAllocation> allocations() {
68 return allocations;
69 }
Sho SHIMIZUb2183962016-05-13 15:03:50 -070070
Sho SHIMIZU3120d822016-05-17 09:28:10 -070071 ContinuousResourceAllocation allocate(ResourceAllocation value) {
Sho SHIMIZUefb75112016-05-13 15:24:34 -070072 return new ContinuousResourceAllocation(original, ImmutableList.<ResourceAllocation>builder()
73 .addAll(allocations)
74 .add(value)
75 .build());
76 }
77
Sho SHIMIZUb2183962016-05-13 15:03:50 -070078 ContinuousResourceAllocation release(ContinuousResource resource, ResourceConsumerId consumerId) {
79 List<ResourceAllocation> nonMatched = allocations.stream()
80 .filter(x -> !(x.consumerId().equals(consumerId) &&
81 ((ContinuousResource) x.resource()).value() == resource.value()))
82 .collect(Collectors.toList());
83
84 List<ResourceAllocation> matched = allocations.stream()
85 .filter(x -> (x.consumerId().equals(consumerId) &&
86 ((ContinuousResource) x.resource()).value() == resource.value()))
87 .collect(Collectors.toList());
88
Sho SHIMIZU99514fbb2016-07-05 14:57:09 -070089 if (!matched.isEmpty()) {
Sho SHIMIZUb2183962016-05-13 15:03:50 -070090 matched.remove(0);
91 }
92
93 return new ContinuousResourceAllocation(original,
94 Stream.concat(nonMatched.stream(), matched.stream())
95 .collect(GuavaCollectors.toImmutableList()));
96 }
Sho SHIMIZUdeb04422016-05-06 16:10:46 -070097}