blob: 2f52471a8703ffdba33b4e75faf7cd8b3cb63937 [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;
19import com.google.common.collect.ImmutableList;
20
Sho SHIMIZU2a704512016-01-26 14:41:34 -080021import java.util.Objects;
Sho SHIMIZU7dac8a42016-01-27 12:04:39 -080022import java.util.Optional;
Sho SHIMIZU2a704512016-01-26 14:41:34 -080023
24import static com.google.common.base.Preconditions.checkArgument;
25import static com.google.common.base.Preconditions.checkNotNull;
26
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080027/**
28 * ResourceId for {@link DiscreteResource}.
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080029 */
30@Beta
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080031public final class DiscreteResourceId extends ResourceId {
Sho SHIMIZU42ac51f2016-01-27 12:59:31 -080032 private final ImmutableList<Object> components;
Sho SHIMIZU2a704512016-01-26 14:41:34 -080033
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080034 DiscreteResourceId(ImmutableList<Object> components) {
Sho SHIMIZU2a704512016-01-26 14:41:34 -080035 this.components = components;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080036 }
37
38 DiscreteResourceId() {
Sho SHIMIZU2a704512016-01-26 14:41:34 -080039 this.components = ImmutableList.of();
40 }
41
Sho SHIMIZU2486ddd2016-01-29 11:51:12 -080042 @Override
Sho SHIMIZU42ac51f2016-01-27 12:59:31 -080043 ImmutableList<Object> components() {
44 return components;
45 }
46
Sho SHIMIZU2a704512016-01-26 14:41:34 -080047 @Override
Sho SHIMIZU74ac9012016-02-12 10:03:21 -080048 String simpleTypeName() {
Sho SHIMIZUcaa2f7b2016-02-12 17:38:49 -080049 if (isRoot()) {
Sho SHIMIZU74ac9012016-02-12 10:03:21 -080050 return "Root";
51 }
52
Sho SHIMIZUcaa2f7b2016-02-12 17:38:49 -080053 return lastComponent().getClass().getSimpleName();
54 }
55
56 @Override
57 boolean isTypeOf(Class<?> type) {
58 if (isRoot()) {
59 return false;
60 }
61
62 return type.isAssignableFrom(lastComponent().getClass());
63 }
64
65 @Override
66 boolean isSubTypeOf(Class<?> ancestor) {
67 return components.stream()
68 .filter(x -> ancestor.isAssignableFrom(x.getClass()))
69 .findAny()
70 .isPresent();
Sho SHIMIZU74ac9012016-02-12 10:03:21 -080071 }
72
73 @Override
Sho SHIMIZU2a704512016-01-26 14:41:34 -080074 public DiscreteResourceId child(Object child) {
75 checkArgument(!(child instanceof Class<?>));
76
Sho SHIMIZU460b9722016-01-28 10:48:26 -080077 return Resources.discrete(this, child).id();
Sho SHIMIZU2a704512016-01-26 14:41:34 -080078 }
79
80 @Override
81 public ContinuousResourceId child(Class<?> child) {
82 checkNotNull(child);
83
Sho SHIMIZU460b9722016-01-28 10:48:26 -080084 return Resources.continuous(this, child).id();
Sho SHIMIZU2a704512016-01-26 14:41:34 -080085 }
86
87 @Override
Sho SHIMIZU7dac8a42016-01-27 12:04:39 -080088 public Optional<DiscreteResourceId> parent() {
Sho SHIMIZUcaa2f7b2016-02-12 17:38:49 -080089 if (isRoot()) {
Sho SHIMIZU7dac8a42016-01-27 12:04:39 -080090 return Optional.empty();
Sho SHIMIZU2a704512016-01-26 14:41:34 -080091 }
92 if (components.size() == 1) {
Sho SHIMIZU7dac8a42016-01-27 12:04:39 -080093 return Optional.of(ROOT);
Sho SHIMIZU2a704512016-01-26 14:41:34 -080094 } else {
Sho SHIMIZU7dac8a42016-01-27 12:04:39 -080095 return Optional.of(new DiscreteResourceId(components.subList(0, components.size() - 1)));
Sho SHIMIZU2a704512016-01-26 14:41:34 -080096 }
97 }
98
Sho SHIMIZUcaa2f7b2016-02-12 17:38:49 -080099 <T> Optional<T> lastComponentAs(Class<T> type) {
100 if (!isTypeOf(type)) {
101 return Optional.empty();
102 }
103
104 @SuppressWarnings("unchecked")
105 T value = (T) lastComponent();
106 return Optional.of(value);
107 }
108
109
110 private boolean isRoot() {
111 return components.isEmpty();
112 }
113
114 private Object lastComponent() {
115 return components.get(components.size() - 1);
116 }
117
Sho SHIMIZU2a704512016-01-26 14:41:34 -0800118 @Override
119 public int hashCode() {
120 return components.hashCode();
121 }
122
123 @Override
124 public boolean equals(Object obj) {
125 if (this == obj) {
126 return true;
127 }
128 if (obj == null || getClass() != obj.getClass()) {
129 return false;
130 }
131 final DiscreteResourceId other = (DiscreteResourceId) obj;
132 return Objects.equals(this.components, other.components);
133 }
134
135 @Override
136 public String toString() {
137 return components.toString();
Sho SHIMIZUf33b8932016-01-25 18:43:32 -0800138 }
139}