blob: f1876d508e7e35d69a7a472d311b88dd7117ab5c [file] [log] [blame]
Sho SHIMIZUf33b8932016-01-25 18:43:32 -08001/*
2 * Copyright 2016 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.net.newresource;
17
18import com.google.common.annotations.Beta;
Sho SHIMIZU2a704512016-01-26 14:41:34 -080019import com.google.common.base.MoreObjects;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080020
Sho SHIMIZU2a704512016-01-26 14:41:34 -080021import java.util.List;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080022import java.util.Objects;
Sho SHIMIZU2a704512016-01-26 14:41:34 -080023import java.util.Optional;
24
25import static com.google.common.base.Preconditions.checkArgument;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080026
27/**
28 * Represents a resource path which specifies a resource which can be measured
29 * as a discrete unit. A VLAN ID and a MPLS label of a link are examples of the resource.
30 * <p>
31 * Note: This class is exposed to the public, but intended to be used in the resource API
32 * implementation only. It is not for resource API user.
33 * </p>
34 */
35@Beta
Sho SHIMIZU2a704512016-01-26 14:41:34 -080036public final class DiscreteResource implements Resource {
37 private final DiscreteResourceId id;
38
39 DiscreteResource(DiscreteResourceId id) {
40 this.id = id;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080041 }
42
Sho SHIMIZUf95b96e2016-01-25 19:35:15 -080043 DiscreteResource() {
Sho SHIMIZU2a704512016-01-26 14:41:34 -080044 this.id = ResourceId.ROOT;
45 }
46
47 @Override
48 public DiscreteResourceId id() {
49 return id;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080050 }
51
52 /**
53 * The user of this methods must receive the return value as the correct type.
54 * Otherwise, this methods throws an exception.
55 *
56 * @param <T> type of the return value
57 * @return the volume of this resource
58 */
59 @SuppressWarnings("unchecked")
60 @Override
61 // TODO: consider receiving Class<T> as an argument. Which approach is convenient?
62 public <T> T volume() {
63 return (T) last();
64 }
65
66 @Override
Sho SHIMIZU2a704512016-01-26 14:41:34 -080067 public List<Object> components() {
Sho SHIMIZU42ac51f2016-01-27 12:59:31 -080068 return id.components();
Sho SHIMIZU2a704512016-01-26 14:41:34 -080069 }
70
71 @Override
72 public Object last() {
Sho SHIMIZU42ac51f2016-01-27 12:59:31 -080073 if (id.components().isEmpty()) {
Sho SHIMIZU2a704512016-01-26 14:41:34 -080074 return null;
75 }
Sho SHIMIZU42ac51f2016-01-27 12:59:31 -080076 return id.components().get(id.components().size() - 1);
Sho SHIMIZU2a704512016-01-26 14:41:34 -080077 }
78
79 @Override
80 public DiscreteResource child(Object child) {
81 checkArgument(!(child instanceof Class<?>));
82
Sho SHIMIZUf95b96e2016-01-25 19:35:15 -080083 return Resource.discrete(id.child(child)).resource();
Sho SHIMIZU2a704512016-01-26 14:41:34 -080084 }
85
86 @Override
87 public ContinuousResource child(Class<?> child, double value) {
Sho SHIMIZUf95b96e2016-01-25 19:35:15 -080088 return Resource.continuous(id.child(child)).resource(value);
Sho SHIMIZU2a704512016-01-26 14:41:34 -080089 }
90
91 @Override
92 public Optional<DiscreteResource> parent() {
Sho SHIMIZUf95b96e2016-01-25 19:35:15 -080093 return id.parent().map(x -> Resource.discrete(x).resource());
Sho SHIMIZU2a704512016-01-26 14:41:34 -080094 }
95
96 @Override
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080097 public int hashCode() {
98 // the value returing from volume() is excluded due to optimization
Sho SHIMIZU34b55b62016-01-27 12:49:43 -080099 return id.hashCode();
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800100 }
101
102 @Override
103 public boolean equals(Object obj) {
104 if (this == obj) {
105 return true;
106 }
107 if (obj == null || getClass() != obj.getClass()) {
108 return false;
109 }
110 final DiscreteResource other = (DiscreteResource) obj;
111 // the value returing from volume() is excluded due to optimization
Sho SHIMIZU34b55b62016-01-27 12:49:43 -0800112 return Objects.equals(this.id, other.id);
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800113 }
Sho SHIMIZU2a704512016-01-26 14:41:34 -0800114
115 @Override
116 public String toString() {
117 return MoreObjects.toStringHelper(this)
118 .add("id", id)
119 .add("volume", volume())
120 .toString();
121 }
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800122}