blob: 8f4ab6f15f0d1d9a948c69b5f5aa443e196323b4 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska83e090e2014-10-22 14:25:35 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska83e090e2014-10-22 14:25:35 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska83e090e2014-10-22 14:25:35 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent;
Brian O'Connorb876bf12014-10-02 14:59:37 -070017
Brian O'Connor9476fa12015-06-25 15:17:17 -040018import com.google.common.annotations.Beta;
Brian O'Connorabafb502014-12-02 22:26:20 -080019import org.onosproject.core.ApplicationId;
20import org.onosproject.core.IdGenerator;
21import org.onosproject.net.NetworkResource;
Luca Prete670ac5d2017-02-03 15:55:43 -080022import org.onosproject.net.ResourceGroup;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070023
Jonathan Hartb14221c2016-03-07 09:55:50 -080024import java.util.Collection;
Jonathan Hartb14221c2016-03-07 09:55:50 -080025
Thomas Vachuska2048c1f2017-05-10 19:32:22 -070026import static com.google.common.base.Preconditions.*;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070027
Brian O'Connorb876bf12014-10-02 14:59:37 -070028/**
29 * Abstraction of an application level intent.
Thomas Vachuska4b420772014-10-30 16:46:17 -070030 * <p>
Brian O'Connorb876bf12014-10-02 14:59:37 -070031 * Make sure that an Intent should be immutable when a new type is defined.
Thomas Vachuska4b420772014-10-30 16:46:17 -070032 * </p>
Brian O'Connorb876bf12014-10-02 14:59:37 -070033 */
Brian O'Connor9476fa12015-06-25 15:17:17 -040034@Beta
Sho SHIMIZU5e5d4aa2015-01-26 16:12:11 -080035public abstract class Intent {
Thomas Vachuskac96058a2014-10-20 23:00:16 -070036
37 private final IntentId id;
Brian O'Connorea4d7d12015-01-28 16:37:46 -080038
Thomas Vachuskac96058a2014-10-20 23:00:16 -070039 private final ApplicationId appId;
Ray Milkey5b3717e2015-02-05 11:44:08 -080040 private final Key key;
Brian O'Connorea4d7d12015-01-28 16:37:46 -080041
Ray Milkeyc24cde32015-03-10 18:20:18 -070042 private final int priority;
43 public static final int DEFAULT_INTENT_PRIORITY = 100;
44 public static final int MAX_PRIORITY = (1 << 16) - 1;
45 public static final int MIN_PRIORITY = 1;
46
Thomas Vachuskac96058a2014-10-20 23:00:16 -070047 private final Collection<NetworkResource> resources;
Luca Prete670ac5d2017-02-03 15:55:43 -080048 private final ResourceGroup resourceGroup;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070049
Brian O'Connor520c0522014-11-23 23:50:47 -080050 private static IdGenerator idGenerator;
51
Thomas Vachuskac96058a2014-10-20 23:00:16 -070052 /**
53 * Constructor for serializer.
54 */
55 protected Intent() {
56 this.id = null;
57 this.appId = null;
Brian O'Connorea4d7d12015-01-28 16:37:46 -080058 this.key = null;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070059 this.resources = null;
Ray Milkeyc24cde32015-03-10 18:20:18 -070060 this.priority = DEFAULT_INTENT_PRIORITY;
Luca Prete670ac5d2017-02-03 15:55:43 -080061 this.resourceGroup = null;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070062 }
63
64 /**
65 * Creates a new intent.
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070066 * @param appId application identifier
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070067 * @param key optional key
68 * @param resources required network resources (optional)
69 * @param priority flow rule priority
Luca Prete670ac5d2017-02-03 15:55:43 -080070 * @deprecated 1.9.1
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070071 */
Luca Prete670ac5d2017-02-03 15:55:43 -080072 @Deprecated
Brian O'Connorea4d7d12015-01-28 16:37:46 -080073 protected Intent(ApplicationId appId,
Ray Milkey5b3717e2015-02-05 11:44:08 -080074 Key key,
Ray Milkeyc24cde32015-03-10 18:20:18 -070075 Collection<NetworkResource> resources,
76 int priority) {
Brian O'Connor520c0522014-11-23 23:50:47 -080077 checkState(idGenerator != null, "Id generator is not bound.");
Ray Milkeyc24cde32015-03-10 18:20:18 -070078 checkArgument(priority <= MAX_PRIORITY && priority >= MIN_PRIORITY);
Brian O'Connor520c0522014-11-23 23:50:47 -080079 this.id = IntentId.valueOf(idGenerator.getNewId());
Thomas Vachuskac96058a2014-10-20 23:00:16 -070080 this.appId = checkNotNull(appId, "Application ID cannot be null");
Ray Milkey5b3717e2015-02-05 11:44:08 -080081 this.key = (key != null) ? key : Key.of(id.fingerprint(), appId);
Ray Milkeyc24cde32015-03-10 18:20:18 -070082 this.priority = priority;
Sho SHIMIZUd7d18002015-01-21 14:37:14 -080083 this.resources = checkNotNull(resources);
Luca Prete670ac5d2017-02-03 15:55:43 -080084 this.resourceGroup = null;
85 }
86
87 /**
88 * Creates a new intent.
89 * @param appId application identifier
90 * @param key optional key
91 * @param resources required network resources (optional)
92 * @param priority flow rule priority
93 * @param resourceGroup the resource group for intent
94 */
95 protected Intent(ApplicationId appId,
96 Key key,
97 Collection<NetworkResource> resources,
98 int priority,
99 ResourceGroup resourceGroup) {
100 checkState(idGenerator != null, "Id generator is not bound.");
101 checkArgument(priority <= MAX_PRIORITY && priority >= MIN_PRIORITY);
102 this.id = IntentId.valueOf(idGenerator.getNewId());
103 this.appId = checkNotNull(appId, "Application ID cannot be null");
104 this.key = (key != null) ? key : Key.of(id.fingerprint(), appId);
105 this.priority = priority;
106 this.resources = checkNotNull(resources);
107 this.resourceGroup = resourceGroup;
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700108 }
109
Brian O'Connorb876bf12014-10-02 14:59:37 -0700110 /**
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700111 * Abstract builder for intents.
112 */
113 public abstract static class Builder {
114 protected ApplicationId appId;
115 protected Key key;
116 protected int priority = Intent.DEFAULT_INTENT_PRIORITY;
Yuta HIGUCHI6cad1792016-11-07 15:03:36 -0800117 protected Collection<NetworkResource> resources;
Luca Prete670ac5d2017-02-03 15:55:43 -0800118 protected ResourceGroup resourceGroup;
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700119
120 /**
Jonathan Hartb14221c2016-03-07 09:55:50 -0800121 * Creates a new empty builder.
122 */
123 protected Builder() {
124 }
125
126 /**
127 * Creates a new builder pre-populated with the information in the given
128 * intent.
129 *
130 * @param intent initial intent
131 */
132 protected Builder(Intent intent) {
133 this.appId(intent.appId())
134 .key(intent.key())
Luca Prete670ac5d2017-02-03 15:55:43 -0800135 .priority(intent.priority())
136 .resourceGroup(intent.resourceGroup());
Jonathan Hartb14221c2016-03-07 09:55:50 -0800137 }
138
139 /**
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700140 * Sets the application id for the intent that will be built.
141 *
142 * @param appId application id to use for built intent
143 * @return this builder
144 */
145 public Builder appId(ApplicationId appId) {
146 this.appId = appId;
147 return this;
148 }
149
150 /**
151 * Sets the key for the intent that will be built.
152 *
153 * @param key key to use for built intent
154 * @return this builder
155 */
156 public Builder key(Key key) {
157 this.key = key;
158 return this;
159 }
160
161 /**
162 * Sets the priority for the intent that will be built.
163 *
164 * @param priority priority to use for built intent
165 * @return this builder
166 */
167 public Builder priority(int priority) {
168 this.priority = priority;
169 return this;
170 }
171
Yuta HIGUCHI6cad1792016-11-07 15:03:36 -0800172 /**
173 * Sets the collection of resources required for this intent.
174 *
175 * @param resources collection of resources
176 * @return this builder
177 */
178 public Builder resources(Collection<NetworkResource> resources) {
179 this.resources = resources;
180 return this;
181 }
Luca Prete670ac5d2017-02-03 15:55:43 -0800182
183 /**
184 * Sets the resource group for this intent.
185 *
186 * @param resourceGroup the resource group
187 * @return this builder
188 */
189 public Builder resourceGroup(ResourceGroup resourceGroup) {
190 this.resourceGroup = resourceGroup;
191 return this;
192 }
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700193 }
194
195 /**
Yuta HIGUCHI652f27f2016-10-31 16:54:30 -0700196 * Returns the intent object identifier.
Brian O'Connorb876bf12014-10-02 14:59:37 -0700197 *
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700198 * @return intent fingerprint
199 */
200 public IntentId id() {
201 return id;
202 }
203
204 /**
205 * Returns the identifier of the application that requested the intent.
206 *
207 * @return application identifier
208 */
209 public ApplicationId appId() {
210 return appId;
211 }
212
213 /**
Ray Milkeyc24cde32015-03-10 18:20:18 -0700214 * Returns the priority of the intent.
215 *
216 * @return intent priority
217 */
218 public int priority() {
219 return priority;
220 }
221
222 /**
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700223 * Returns the collection of resources required for this intent.
224 *
225 * @return collection of resources; may be null
226 */
227 public Collection<NetworkResource> resources() {
228 return resources;
229 }
230
231 /**
Luca Prete670ac5d2017-02-03 15:55:43 -0800232 * Returns the resource group for this intent.
233 *
234 * @return the resource group; may be null
235 */
236 public ResourceGroup resourceGroup() {
237 return resourceGroup;
238 }
239
240 /**
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700241 * Indicates whether or not the intent is installable.
242 *
243 * @return true if installable
244 */
245 public boolean isInstallable() {
246 return false;
247 }
248
249 @Override
Thomas Vachuska46c07ad2014-10-21 16:01:01 -0700250 public final int hashCode() {
Brian O'Connor520c0522014-11-23 23:50:47 -0800251 return id.hashCode();
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700252 }
253
254 @Override
Thomas Vachuska46c07ad2014-10-21 16:01:01 -0700255 public final boolean equals(Object obj) {
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700256 if (this == obj) {
257 return true;
258 }
259 if (obj == null || getClass() != obj.getClass()) {
260 return false;
261 }
262 final Intent other = (Intent) obj;
Sho SHIMIZU23895232014-11-25 15:59:50 -0800263 return this.id().equals(other.id());
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700264 }
265
Brian O'Connor520c0522014-11-23 23:50:47 -0800266 /**
267 * Binds an id generator for unique intent id generation.
268 *
269 * Note: A generator cannot be bound if there is already a generator bound.
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700270 *
Brian O'Connor520c0522014-11-23 23:50:47 -0800271 * @param newIdGenerator id generator
272 */
Sho SHIMIZUf57a7392014-11-25 16:11:32 -0800273 public static void bindIdGenerator(IdGenerator newIdGenerator) {
Brian O'Connor520c0522014-11-23 23:50:47 -0800274 checkState(idGenerator == null, "Id generator is already bound.");
275 idGenerator = checkNotNull(newIdGenerator);
276 }
277
278 /**
279 * Unbinds an id generator.
280 *
281 * Note: The caller must provide the old id generator to succeed.
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700282 *
Brian O'Connor520c0522014-11-23 23:50:47 -0800283 * @param oldIdGenerator the current id generator
284 */
Sho SHIMIZUf57a7392014-11-25 16:11:32 -0800285 public static void unbindIdGenerator(IdGenerator oldIdGenerator) {
Thomas Vachuska2048c1f2017-05-10 19:32:22 -0700286 if (idGenerator == oldIdGenerator) {
Brian O'Connor520c0522014-11-23 23:50:47 -0800287 idGenerator = null;
288 }
289 }
Brian O'Connorcff03322015-02-03 15:28:59 -0800290
Yuta HIGUCHI652f27f2016-10-31 16:54:30 -0700291 /**
292 * Returns the key to identify an "Intent".
293 * <p>
294 * When an Intent is updated,
295 * (e.g., flow is re-routed in reaction to network topology change)
296 * related Intent object's {@link IntentId} may change,
297 * but the key will remain unchanged.
298 *
299 * @return key
300 */
Ray Milkey5b3717e2015-02-05 11:44:08 -0800301 public Key key() {
Brian O'Connorcff03322015-02-03 15:28:59 -0800302 return key;
303 }
Brian O'Connorb876bf12014-10-02 14:59:37 -0700304}