blob: bf4c38993a110b1d408a48c809c370016f10ffb0 [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 */
Sho SHIMIZUe18cb122016-02-22 21:04:56 -080016package org.onosproject.net.resource;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080017
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
21import java.util.Objects;
Sho SHIMIZU2a704512016-01-26 14:41:34 -080022import java.util.Optional;
23
24import static com.google.common.base.Preconditions.checkArgument;
Sho SHIMIZU0e1a4762016-02-11 13:04:41 -080025import static com.google.common.base.Preconditions.checkNotNull;
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.
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080030 */
31@Beta
Sho SHIMIZU2a704512016-01-26 14:41:34 -080032public final class DiscreteResource implements Resource {
33 private final DiscreteResourceId id;
34
35 DiscreteResource(DiscreteResourceId id) {
36 this.id = id;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080037 }
38
Sho SHIMIZUf95b96e2016-01-25 19:35:15 -080039 DiscreteResource() {
Sho SHIMIZU2a704512016-01-26 14:41:34 -080040 this.id = ResourceId.ROOT;
41 }
42
43 @Override
44 public DiscreteResourceId id() {
45 return id;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080046 }
47
Sho SHIMIZU003ed322016-02-11 12:58:42 -080048 @Override
Sho SHIMIZU74ac9012016-02-12 10:03:21 -080049 public String simpleTypeName() {
50 return id.simpleTypeName();
51 }
52
53 @Override
Sho SHIMIZU003ed322016-02-11 12:58:42 -080054 public boolean isTypeOf(Class<?> type) {
55 checkNotNull(type);
56
Sho SHIMIZUcaa2f7b2016-02-12 17:38:49 -080057 return id.isTypeOf(type);
Sho SHIMIZU003ed322016-02-11 12:58:42 -080058 }
59
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080060 @Override
Sho SHIMIZUb08d5862016-02-11 12:37:28 -080061 public boolean isSubTypeOf(Class<?> ancestor) {
Sho SHIMIZU0e1a4762016-02-11 13:04:41 -080062 checkNotNull(ancestor);
63
Sho SHIMIZUcaa2f7b2016-02-12 17:38:49 -080064 return id.isSubTypeOf(ancestor);
Sho SHIMIZU2a704512016-01-26 14:41:34 -080065 }
66
67 @Override
Sho SHIMIZUf08cb4c2016-02-11 18:35:59 -080068 public <T> Optional<T> valueAs(Class<T> type) {
69 checkNotNull(type);
70
Sho SHIMIZUcaa2f7b2016-02-12 17:38:49 -080071 return id.lastComponentAs(type);
Sho SHIMIZU003ed322016-02-11 12:58:42 -080072 }
73
Sho SHIMIZU2a704512016-01-26 14:41:34 -080074 @Override
75 public DiscreteResource child(Object child) {
76 checkArgument(!(child instanceof Class<?>));
77
Sho SHIMIZU460b9722016-01-28 10:48:26 -080078 return Resources.discrete(id.child(child)).resource();
Sho SHIMIZU2a704512016-01-26 14:41:34 -080079 }
80
81 @Override
82 public ContinuousResource child(Class<?> child, double value) {
Sho SHIMIZU460b9722016-01-28 10:48:26 -080083 return Resources.continuous(id.child(child)).resource(value);
Sho SHIMIZU2a704512016-01-26 14:41:34 -080084 }
85
86 @Override
87 public Optional<DiscreteResource> parent() {
Sho SHIMIZU460b9722016-01-28 10:48:26 -080088 return id.parent().map(x -> Resources.discrete(x).resource());
Sho SHIMIZU2a704512016-01-26 14:41:34 -080089 }
90
91 @Override
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080092 public int hashCode() {
93 // the value returing from volume() is excluded due to optimization
Sho SHIMIZU34b55b62016-01-27 12:49:43 -080094 return id.hashCode();
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080095 }
96
97 @Override
98 public boolean equals(Object obj) {
99 if (this == obj) {
100 return true;
101 }
102 if (obj == null || getClass() != obj.getClass()) {
103 return false;
104 }
105 final DiscreteResource other = (DiscreteResource) obj;
106 // the value returing from volume() is excluded due to optimization
Sho SHIMIZU34b55b62016-01-27 12:49:43 -0800107 return Objects.equals(this.id, other.id);
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800108 }
Sho SHIMIZU2a704512016-01-26 14:41:34 -0800109
110 @Override
111 public String toString() {
112 return MoreObjects.toStringHelper(this)
113 .add("id", id)
Sho SHIMIZU2a704512016-01-26 14:41:34 -0800114 .toString();
115 }
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800116}