379bf71ea03546ed21b4c8212feca7fac43f179f
[onosfw.git] /
1 /*
2  * Copyright 2014 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  */
16 package org.onosproject.net.resource.link;
17
18 import static com.google.common.base.Preconditions.checkNotNull;
19
20 import com.google.common.base.MoreObjects;
21 import com.google.common.collect.ImmutableMap;
22 import com.google.common.collect.ImmutableSet;
23
24 import org.onosproject.net.Link;
25 import org.onosproject.net.intent.IntentId;
26 import org.onosproject.net.resource.ResourceAllocation;
27 import org.onosproject.net.resource.ResourceRequest;
28 import org.onosproject.net.resource.ResourceType;
29
30 import java.util.Collection;
31 import java.util.Collections;
32 import java.util.Map;
33 import java.util.Objects;
34 import java.util.Map.Entry;
35 import java.util.Set;
36
37 /**
38  * Implementation of {@link LinkResourceAllocations}.
39  */
40 public class DefaultLinkResourceAllocations implements LinkResourceAllocations {
41     private final LinkResourceRequest request;
42     // TODO: probably should be using LinkKey instead
43     private final Map<Link, Set<ResourceAllocation>> allocations;
44
45     /**
46      * Creates a new link resource allocations.
47      *
48      * @param request     requested resources
49      * @param allocations allocated resources
50      */
51     public DefaultLinkResourceAllocations(LinkResourceRequest request,
52                                    Map<Link, Set<ResourceAllocation>> allocations) {
53         this.request = checkNotNull(request);
54         ImmutableMap.Builder<Link, Set<ResourceAllocation>> builder
55             = ImmutableMap.builder();
56         for (Entry<Link, Set<ResourceAllocation>> e : allocations.entrySet()) {
57             builder.put(e.getKey(), ImmutableSet.copyOf(e.getValue()));
58         }
59         this.allocations = builder.build();
60     }
61
62     public IntentId intentId() {
63         return request.intentId();
64     }
65
66     public Collection<Link> links() {
67         return request.links();
68     }
69
70     public Set<ResourceRequest> resources() {
71         return request.resources();
72     }
73
74     @Override
75     public ResourceType type() {
76         return null;
77     }
78
79     @Override
80     public Set<ResourceAllocation> getResourceAllocation(Link link) {
81         Set<ResourceAllocation> result = allocations.get(link);
82         if (result == null) {
83             result = Collections.emptySet();
84         }
85         return result;
86     }
87
88     @Override
89     public int hashCode() {
90         return Objects.hash(request, allocations);
91     }
92
93     @Override
94     public boolean equals(Object obj) {
95         if (this == obj) {
96             return true;
97         }
98         if (obj == null || getClass() != obj.getClass()) {
99             return false;
100         }
101         final DefaultLinkResourceAllocations other = (DefaultLinkResourceAllocations) obj;
102         return Objects.equals(this.request, other.request)
103                 && Objects.equals(this.allocations, other.allocations);
104     }
105
106     @Override
107     public String toString() {
108         return MoreObjects.toStringHelper(this)
109                 .add("allocations", allocations)
110                 .toString();
111     }
112 }