blob: 4df13a6936974c9fc26b8ed8cb4157b738e6cd5a [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;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070022
Jonathan Hartb14221c2016-03-07 09:55:50 -080023import java.util.Collection;
24import java.util.Objects;
25
Ray Milkeyc24cde32015-03-10 18:20:18 -070026import static com.google.common.base.Preconditions.checkArgument;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070027import static com.google.common.base.Preconditions.checkNotNull;
Brian O'Connor520c0522014-11-23 23:50:47 -080028import static com.google.common.base.Preconditions.checkState;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070029
Brian O'Connorb876bf12014-10-02 14:59:37 -070030/**
31 * Abstraction of an application level intent.
Thomas Vachuska4b420772014-10-30 16:46:17 -070032 * <p>
Brian O'Connorb876bf12014-10-02 14:59:37 -070033 * Make sure that an Intent should be immutable when a new type is defined.
Thomas Vachuska4b420772014-10-30 16:46:17 -070034 * </p>
Brian O'Connorb876bf12014-10-02 14:59:37 -070035 */
Brian O'Connor9476fa12015-06-25 15:17:17 -040036@Beta
Sho SHIMIZU5e5d4aa2015-01-26 16:12:11 -080037public abstract class Intent {
Thomas Vachuskac96058a2014-10-20 23:00:16 -070038
39 private final IntentId id;
Brian O'Connorea4d7d12015-01-28 16:37:46 -080040
Thomas Vachuskac96058a2014-10-20 23:00:16 -070041 private final ApplicationId appId;
Ray Milkey5b3717e2015-02-05 11:44:08 -080042 private final Key key;
Brian O'Connorea4d7d12015-01-28 16:37:46 -080043
Ray Milkeyc24cde32015-03-10 18:20:18 -070044 private final int priority;
45 public static final int DEFAULT_INTENT_PRIORITY = 100;
46 public static final int MAX_PRIORITY = (1 << 16) - 1;
47 public static final int MIN_PRIORITY = 1;
48
Thomas Vachuskac96058a2014-10-20 23:00:16 -070049 private final Collection<NetworkResource> resources;
50
Brian O'Connor520c0522014-11-23 23:50:47 -080051 private static IdGenerator idGenerator;
52
Thomas Vachuskac96058a2014-10-20 23:00:16 -070053 /**
54 * Constructor for serializer.
55 */
56 protected Intent() {
57 this.id = null;
58 this.appId = null;
Brian O'Connorea4d7d12015-01-28 16:37:46 -080059 this.key = null;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070060 this.resources = null;
Ray Milkeyc24cde32015-03-10 18:20:18 -070061 this.priority = DEFAULT_INTENT_PRIORITY;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070062 }
63
64 /**
65 * Creates a new intent.
66 *
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070067 * @param appId application identifier
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070068 * @param key optional key
69 * @param resources required network resources (optional)
70 * @param priority flow rule priority
71 */
Brian O'Connorea4d7d12015-01-28 16:37:46 -080072 protected Intent(ApplicationId appId,
Ray Milkey5b3717e2015-02-05 11:44:08 -080073 Key key,
Ray Milkeyc24cde32015-03-10 18:20:18 -070074 Collection<NetworkResource> resources,
75 int priority) {
Brian O'Connor520c0522014-11-23 23:50:47 -080076 checkState(idGenerator != null, "Id generator is not bound.");
Ray Milkeyc24cde32015-03-10 18:20:18 -070077 checkArgument(priority <= MAX_PRIORITY && priority >= MIN_PRIORITY);
Brian O'Connor520c0522014-11-23 23:50:47 -080078 this.id = IntentId.valueOf(idGenerator.getNewId());
Thomas Vachuskac96058a2014-10-20 23:00:16 -070079 this.appId = checkNotNull(appId, "Application ID cannot be null");
Ray Milkey5b3717e2015-02-05 11:44:08 -080080 this.key = (key != null) ? key : Key.of(id.fingerprint(), appId);
Ray Milkeyc24cde32015-03-10 18:20:18 -070081 this.priority = priority;
Sho SHIMIZUd7d18002015-01-21 14:37:14 -080082 this.resources = checkNotNull(resources);
Thomas Vachuskac96058a2014-10-20 23:00:16 -070083 }
84
Brian O'Connorb876bf12014-10-02 14:59:37 -070085 /**
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070086 * Abstract builder for intents.
87 */
88 public abstract static class Builder {
89 protected ApplicationId appId;
90 protected Key key;
91 protected int priority = Intent.DEFAULT_INTENT_PRIORITY;
Yuta HIGUCHI6cad1792016-11-07 15:03:36 -080092 protected Collection<NetworkResource> resources;
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070093
94 /**
Jonathan Hartb14221c2016-03-07 09:55:50 -080095 * Creates a new empty builder.
96 */
97 protected Builder() {
98 }
99
100 /**
101 * Creates a new builder pre-populated with the information in the given
102 * intent.
103 *
104 * @param intent initial intent
105 */
106 protected Builder(Intent intent) {
107 this.appId(intent.appId())
108 .key(intent.key())
109 .priority(intent.priority());
110 }
111
112 /**
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700113 * Sets the application id for the intent that will be built.
114 *
115 * @param appId application id to use for built intent
116 * @return this builder
117 */
118 public Builder appId(ApplicationId appId) {
119 this.appId = appId;
120 return this;
121 }
122
123 /**
124 * Sets the key for the intent that will be built.
125 *
126 * @param key key to use for built intent
127 * @return this builder
128 */
129 public Builder key(Key key) {
130 this.key = key;
131 return this;
132 }
133
134 /**
135 * Sets the priority for the intent that will be built.
136 *
137 * @param priority priority to use for built intent
138 * @return this builder
139 */
140 public Builder priority(int priority) {
141 this.priority = priority;
142 return this;
143 }
144
Yuta HIGUCHI6cad1792016-11-07 15:03:36 -0800145 /**
146 * Sets the collection of resources required for this intent.
147 *
148 * @param resources collection of resources
149 * @return this builder
150 */
151 public Builder resources(Collection<NetworkResource> resources) {
152 this.resources = resources;
153 return this;
154 }
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700155 }
156
157 /**
Yuta HIGUCHI652f27f2016-10-31 16:54:30 -0700158 * Returns the intent object identifier.
Brian O'Connorb876bf12014-10-02 14:59:37 -0700159 *
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700160 * @return intent fingerprint
161 */
162 public IntentId id() {
163 return id;
164 }
165
166 /**
167 * Returns the identifier of the application that requested the intent.
168 *
169 * @return application identifier
170 */
171 public ApplicationId appId() {
172 return appId;
173 }
174
175 /**
Ray Milkeyc24cde32015-03-10 18:20:18 -0700176 * Returns the priority of the intent.
177 *
178 * @return intent priority
179 */
180 public int priority() {
181 return priority;
182 }
183
184 /**
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700185 * Returns the collection of resources required for this intent.
186 *
187 * @return collection of resources; may be null
188 */
189 public Collection<NetworkResource> resources() {
190 return resources;
191 }
192
193 /**
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700194 * Indicates whether or not the intent is installable.
195 *
196 * @return true if installable
197 */
198 public boolean isInstallable() {
199 return false;
200 }
201
202 @Override
Thomas Vachuska46c07ad2014-10-21 16:01:01 -0700203 public final int hashCode() {
Brian O'Connor520c0522014-11-23 23:50:47 -0800204 return id.hashCode();
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700205 }
206
207 @Override
Thomas Vachuska46c07ad2014-10-21 16:01:01 -0700208 public final boolean equals(Object obj) {
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700209 if (this == obj) {
210 return true;
211 }
212 if (obj == null || getClass() != obj.getClass()) {
213 return false;
214 }
215 final Intent other = (Intent) obj;
Sho SHIMIZU23895232014-11-25 15:59:50 -0800216 return this.id().equals(other.id());
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700217 }
218
Brian O'Connor520c0522014-11-23 23:50:47 -0800219 /**
220 * Binds an id generator for unique intent id generation.
221 *
222 * Note: A generator cannot be bound if there is already a generator bound.
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700223 *
Brian O'Connor520c0522014-11-23 23:50:47 -0800224 * @param newIdGenerator id generator
225 */
Sho SHIMIZUf57a7392014-11-25 16:11:32 -0800226 public static void bindIdGenerator(IdGenerator newIdGenerator) {
Brian O'Connor520c0522014-11-23 23:50:47 -0800227 checkState(idGenerator == null, "Id generator is already bound.");
228 idGenerator = checkNotNull(newIdGenerator);
229 }
230
231 /**
232 * Unbinds an id generator.
233 *
234 * Note: The caller must provide the old id generator to succeed.
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700235 *
Brian O'Connor520c0522014-11-23 23:50:47 -0800236 * @param oldIdGenerator the current id generator
237 */
Sho SHIMIZUf57a7392014-11-25 16:11:32 -0800238 public static void unbindIdGenerator(IdGenerator oldIdGenerator) {
Brian O'Connor520c0522014-11-23 23:50:47 -0800239 if (Objects.equals(idGenerator, oldIdGenerator)) {
240 idGenerator = null;
241 }
242 }
Brian O'Connorcff03322015-02-03 15:28:59 -0800243
Yuta HIGUCHI652f27f2016-10-31 16:54:30 -0700244 /**
245 * Returns the key to identify an "Intent".
246 * <p>
247 * When an Intent is updated,
248 * (e.g., flow is re-routed in reaction to network topology change)
249 * related Intent object's {@link IntentId} may change,
250 * but the key will remain unchanged.
251 *
252 * @return key
253 */
Ray Milkey5b3717e2015-02-05 11:44:08 -0800254 public Key key() {
Brian O'Connorcff03322015-02-03 15:28:59 -0800255 return key;
256 }
Brian O'Connorb876bf12014-10-02 14:59:37 -0700257}