blob: 3bb1f079f615b99d8a5796704606fcd75a2b1e42 [file] [log] [blame]
Sho SHIMIZUb85000d2016-05-17 14:00:05 -07001/*
2 * Copyright 2016-present 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.store.resource.impl;
17
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070018import org.onosproject.net.resource.DiscreteResource;
19import org.onosproject.net.resource.DiscreteResourceId;
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070020
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070021import java.util.Optional;
22import java.util.Set;
23
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070024/**
25 * A common API for a set of discrete resources.
26 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070027interface DiscreteResources {
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070028 /**
29 * Returns an instance representing an empty set.
30 *
31 * @return a empty set.
32 */
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070033 static DiscreteResources empty() {
Sho SHIMIZU65de9612016-05-19 12:24:20 -070034 return EmptyDiscreteResources.INSTANCE;
Sho SHIMIZU02e6e202016-05-18 10:47:47 -070035 }
36
37 /**
38 * Create an instace from the specified resources.
39 *
40 * @param resources resources
41 * @return instance
42 */
Sho SHIMIZU65de9612016-05-19 12:24:20 -070043 static DiscreteResources of(Set<DiscreteResource> resources) {
Sho SHIMIZU02e6e202016-05-18 10:47:47 -070044 return UnifiedDiscreteResources.of(resources);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070045 }
46
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070047 /**
48 * Look up a discrete resource instance by ID.
49 *
50 * @param id id
51 * @return found instance enclosed by Optional
52 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070053 Optional<DiscreteResource> lookup(DiscreteResourceId id);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070054
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070055 /**
56 * Returns a difference set of this instance and the given instance.
57 *
58 * @param other other instance
59 * @return a new DiscreteResources instance representing a difference set
60 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070061 DiscreteResources difference(DiscreteResources other);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070062
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070063 /**
64 * Checks that this instance is empty.
65 *
66 * @return true if this instance is empty, otherwise false.
67 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070068 boolean isEmpty();
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070069
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070070 /**
71 * Checks that this instance contains any of the given resources.
72 *
73 * @param other resources
74 * @return true this instance contains a resource included in the given resources,
75 * otherwise false.
76 */
Sho SHIMIZU34847b72016-06-07 14:31:54 -070077 boolean containsAny(Set<DiscreteResource> other);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070078
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070079 /**
80 * Returns a union set of this instance and the given instance.
81 * Note: This method returns a new instance, not mutate the current instance
82 *
83 * @param other other instance
84 * @return a new DiscreteResources instance representing a union set
85 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070086 DiscreteResources add(DiscreteResources other);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070087
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070088 /**
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070089 * Returns all of resources this instance holds.
90 *
91 * @return all resources
92 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070093 Set<DiscreteResource> values();
Sho SHIMIZU9cc4a242016-05-26 12:55:35 -070094
95 /**
96 * Returns all of resources this instance holds and filtered by the specified type.
97 *
98 * @param cls class instance of the resource value
99 * @param <T> type of the resource value
100 * @return all of resources this instance holds and filtered by the specified type
101 */
102 <T> Set<DiscreteResource> valuesOf(Class<T> cls);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -0700103}