blob: 8fc0bba9e55a59c6d32f6ddd3365c8c20938782b [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.List;
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070022import java.util.Optional;
23import java.util.Set;
24
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070025/**
26 * A common API for a set of discrete resources.
27 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070028interface DiscreteResources {
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070029 /**
30 * Returns an instance representing an empty set.
31 *
32 * @return a empty set.
33 */
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070034 static DiscreteResources empty() {
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070035 return NonEncodableDiscreteResources.empty();
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070036 }
37
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070038 /**
39 * Look up a discrete resource instance by ID.
40 *
41 * @param id id
42 * @return found instance enclosed by Optional
43 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070044 Optional<DiscreteResource> lookup(DiscreteResourceId id);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070045
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070046 /**
47 * Returns a difference set of this instance and the given instance.
48 *
49 * @param other other instance
50 * @return a new DiscreteResources instance representing a difference set
51 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070052 DiscreteResources difference(DiscreteResources other);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070053
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070054 /**
55 * Checks that this instance is empty.
56 *
57 * @return true if this instance is empty, otherwise false.
58 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070059 boolean isEmpty();
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070060
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070061 /**
62 * Checks that this instance contains any of the given resources.
63 *
64 * @param other resources
65 * @return true this instance contains a resource included in the given resources,
66 * otherwise false.
67 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070068 boolean containsAny(List<DiscreteResource> other);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070069
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070070 /**
71 * Returns a union set of this instance and the given instance.
72 * Note: This method returns a new instance, not mutate the current instance
73 *
74 * @param other other instance
75 * @return a new DiscreteResources instance representing a union set
76 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070077 DiscreteResources add(DiscreteResources other);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070078
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070079 /**
80 * Returns a difference set of this instance and the given resources.
81 * Note: This method returns a new instance, not mutate the current intance.
82 *
83 * @param removed resources
84 * @return a new DiscreteResources instance representing a difference set
85 */
Sho SHIMIZU32f57e92016-05-18 10:23:06 -070086 DiscreteResources remove(List<DiscreteResource> removed);
Sho SHIMIZUb85000d2016-05-17 14:00:05 -070087
Sho SHIMIZU94e8a162016-05-19 17:09:59 -070088 /**
89 * 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 SHIMIZUb85000d2016-05-17 14:00:05 -070094}