blob: 3e5fc9363ff8865ac184dc4d61c64293156b4f36 [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}.
29 *
30 * Note: This class is exposed to the public, but intended to be used in the resource API
31 * implementation only. It is not for resource API user.
32 */
33@Beta
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080034public final class DiscreteResourceId extends ResourceId {
Sho SHIMIZU42ac51f2016-01-27 12:59:31 -080035 private final ImmutableList<Object> components;
Sho SHIMIZU2a704512016-01-26 14:41:34 -080036
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080037 DiscreteResourceId(ImmutableList<Object> components) {
Sho SHIMIZU2a704512016-01-26 14:41:34 -080038 this.components = components;
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080039 }
40
41 DiscreteResourceId() {
Sho SHIMIZU2a704512016-01-26 14:41:34 -080042 this.components = ImmutableList.of();
43 }
44
Sho SHIMIZU2486ddd2016-01-29 11:51:12 -080045 @Override
Sho SHIMIZU42ac51f2016-01-27 12:59:31 -080046 ImmutableList<Object> components() {
47 return components;
48 }
49
Sho SHIMIZU2a704512016-01-26 14:41:34 -080050 @Override
51 public DiscreteResourceId child(Object child) {
52 checkArgument(!(child instanceof Class<?>));
53
Sho SHIMIZU460b9722016-01-28 10:48:26 -080054 return Resources.discrete(this, child).id();
Sho SHIMIZU2a704512016-01-26 14:41:34 -080055 }
56
57 @Override
58 public ContinuousResourceId child(Class<?> child) {
59 checkNotNull(child);
60
Sho SHIMIZU460b9722016-01-28 10:48:26 -080061 return Resources.continuous(this, child).id();
Sho SHIMIZU2a704512016-01-26 14:41:34 -080062 }
63
64 @Override
Sho SHIMIZU7dac8a42016-01-27 12:04:39 -080065 public Optional<DiscreteResourceId> parent() {
Sho SHIMIZU2a704512016-01-26 14:41:34 -080066 if (components.size() == 0) {
Sho SHIMIZU7dac8a42016-01-27 12:04:39 -080067 return Optional.empty();
Sho SHIMIZU2a704512016-01-26 14:41:34 -080068 }
69 if (components.size() == 1) {
Sho SHIMIZU7dac8a42016-01-27 12:04:39 -080070 return Optional.of(ROOT);
Sho SHIMIZU2a704512016-01-26 14:41:34 -080071 } else {
Sho SHIMIZU7dac8a42016-01-27 12:04:39 -080072 return Optional.of(new DiscreteResourceId(components.subList(0, components.size() - 1)));
Sho SHIMIZU2a704512016-01-26 14:41:34 -080073 }
74 }
75
76 @Override
77 public int hashCode() {
78 return components.hashCode();
79 }
80
81 @Override
82 public boolean equals(Object obj) {
83 if (this == obj) {
84 return true;
85 }
86 if (obj == null || getClass() != obj.getClass()) {
87 return false;
88 }
89 final DiscreteResourceId other = (DiscreteResourceId) obj;
90 return Objects.equals(this.components, other.components);
91 }
92
93 @Override
94 public String toString() {
95 return components.toString();
Sho SHIMIZUf33b8932016-01-25 18:43:32 -080096 }
97}