blob: 743e34960b43340487a2f98887ab5e300e8690ce [file] [log] [blame]
Brian O'Connorcff03322015-02-03 15:28:59 -08001/*
2 * Copyright 2015 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.intent;
17
Brian O'Connor9476fa12015-06-25 15:17:17 -040018import com.google.common.annotations.Beta;
Ray Milkey65cb59a2015-02-10 15:18:26 -080019import com.google.common.base.MoreObjects;
Brian O'Connorcff03322015-02-03 15:28:59 -080020import com.google.common.collect.ImmutableList;
Brian O'Connor5eb77c82015-03-02 18:09:39 -080021import org.onosproject.cluster.NodeId;
Brian O'Connorcff03322015-02-03 15:28:59 -080022import org.onosproject.store.Timestamp;
Jonathan Hart72175c22015-03-24 18:55:58 -070023import org.slf4j.Logger;
24import org.slf4j.LoggerFactory;
Brian O'Connorcff03322015-02-03 15:28:59 -080025
Brian O'Connorf0c5a052015-04-27 00:34:53 -070026import java.util.Collections;
Brian O'Connorcff03322015-02-03 15:28:59 -080027import java.util.List;
28import java.util.Objects;
29
Jonathan Hart0d18df32015-03-21 08:42:59 -070030import static com.google.common.base.Preconditions.checkNotNull;
Brian O'Connorf0c5a052015-04-27 00:34:53 -070031import static org.onosproject.net.intent.IntentState.*;
Jonathan Hart0d18df32015-03-21 08:42:59 -070032
Brian O'Connorcff03322015-02-03 15:28:59 -080033/**
34 * A wrapper class that contains an intents, its state, and other metadata for
35 * internal use.
36 */
Brian O'Connor9476fa12015-06-25 15:17:17 -040037@Beta
Brian O'Connorcff03322015-02-03 15:28:59 -080038public class IntentData { //FIXME need to make this "immutable"
39 // manager should be able to mutate a local copy while processing
Jonathan Hart72175c22015-03-24 18:55:58 -070040
41 private static final Logger log = LoggerFactory.getLogger(IntentData.class);
42
Jonathan Hart0d18df32015-03-21 08:42:59 -070043 private final Intent intent;
Brian O'Connorcff03322015-02-03 15:28:59 -080044
Brian O'Connorf0c5a052015-04-27 00:34:53 -070045 private final IntentState request; //TODO perhaps we want a full fledged object for requests
Brian O'Connorcff03322015-02-03 15:28:59 -080046 private IntentState state;
47 private Timestamp version;
Brian O'Connor5eb77c82015-03-02 18:09:39 -080048 private NodeId origin;
Brian O'Connor6d8e3172015-04-30 15:43:57 -070049 private int errorCount;
Brian O'Connorcff03322015-02-03 15:28:59 -080050
51 private List<Intent> installables;
52
Jonathan Hart0d18df32015-03-21 08:42:59 -070053 /**
54 * Creates a new intent data object.
55 *
56 * @param intent intent this metadata references
57 * @param state intent state
58 * @param version version of the intent for this key
59 */
Brian O'Connorcff03322015-02-03 15:28:59 -080060 public IntentData(Intent intent, IntentState state, Timestamp version) {
Sho SHIMIZU70b88d82016-01-19 14:27:22 -080061 checkNotNull(intent);
62 checkNotNull(state);
63
Brian O'Connorcff03322015-02-03 15:28:59 -080064 this.intent = intent;
65 this.state = state;
Brian O'Connorf0c5a052015-04-27 00:34:53 -070066 this.request = state;
Brian O'Connorcff03322015-02-03 15:28:59 -080067 this.version = version;
68 }
69
Jonathan Hart0d18df32015-03-21 08:42:59 -070070 /**
Sho SHIMIZU2f26fb22016-01-19 14:04:46 -080071 * Creates a new intent data object.
72 *
73 * @param intent intent this metadata references
74 * @param state intent state
75 * @param version version of the intent for this key
76 * @param origin ID of the node where the data was originally created
77 */
78 public IntentData(Intent intent, IntentState state, Timestamp version, NodeId origin) {
79 checkNotNull(intent);
80 checkNotNull(state);
81 checkNotNull(version);
82 checkNotNull(origin);
83
84 this.intent = intent;
85 this.state = state;
86 this.request = state;
87 this.version = version;
88 this.origin = origin;
89 }
90
91 /**
Jonathan Hart0d18df32015-03-21 08:42:59 -070092 * Copy constructor.
93 *
94 * @param intentData intent data to copy
95 */
96 public IntentData(IntentData intentData) {
97 checkNotNull(intentData);
98
99 intent = intentData.intent;
100 state = intentData.state;
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700101 request = intentData.request;
Jonathan Hart0d18df32015-03-21 08:42:59 -0700102 version = intentData.version;
103 origin = intentData.origin;
104 installables = intentData.installables;
Brian O'Connor6d8e3172015-04-30 15:43:57 -0700105 errorCount = intentData.errorCount;
Brian O'Connorcff03322015-02-03 15:28:59 -0800106 }
107
Sho SHIMIZU2f26fb22016-01-19 14:04:46 -0800108 /**
109 * Create a new instance based on the original instance with new installables.
110 *
111 * @param original original data
112 * @param installables new installable intents to set
113 */
114 public IntentData(IntentData original, List<Intent> installables) {
115 this(original);
116
117 this.installables = ImmutableList.copyOf(checkNotNull(installables));
118 }
119
Jonathan Hart0d18df32015-03-21 08:42:59 -0700120 // kryo constructor
121 protected IntentData() {
122 intent = null;
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700123 request = null;
Jonathan Hart0d18df32015-03-21 08:42:59 -0700124 }
125
126 /**
127 * Returns the intent this metadata references.
128 *
129 * @return intent
130 */
Brian O'Connorcff03322015-02-03 15:28:59 -0800131 public Intent intent() {
132 return intent;
133 }
134
Jonathan Hart0d18df32015-03-21 08:42:59 -0700135 /**
136 * Returns the state of the intent.
137 *
138 * @return intent state
139 */
Brian O'Connorcff03322015-02-03 15:28:59 -0800140 public IntentState state() {
141 return state;
142 }
143
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700144 public IntentState request() {
145 return request;
146 }
147
Jonathan Hart0d18df32015-03-21 08:42:59 -0700148 /**
149 * Returns the intent key.
150 *
151 * @return intent key
152 */
Ray Milkey5b3717e2015-02-05 11:44:08 -0800153 public Key key() {
Brian O'Connorcff03322015-02-03 15:28:59 -0800154 return intent.key();
155 }
156
Jonathan Hart0d18df32015-03-21 08:42:59 -0700157 /**
158 * Returns the version of the intent for this key.
159 *
160 * @return intent version
161 */
Brian O'Connor2ba63fd2015-02-09 22:48:11 -0800162 public Timestamp version() {
163 return version;
164 }
165
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800166 /**
Jonathan Hart0d18df32015-03-21 08:42:59 -0700167 * Returns the origin node that created this intent.
168 *
169 * @return origin node ID
170 */
Brian O'Connor5eb77c82015-03-02 18:09:39 -0800171 public NodeId origin() {
172 return origin;
173 }
174
Jonathan Hart0d18df32015-03-21 08:42:59 -0700175 /**
176 * Updates the state of the intent to the given new state.
177 *
178 * @param newState new state of the intent
179 */
Brian O'Connorcff03322015-02-03 15:28:59 -0800180 public void setState(IntentState newState) {
181 this.state = newState;
182 }
183
Brian O'Connor2ba63fd2015-02-09 22:48:11 -0800184 /**
Brian O'Connor6d8e3172015-04-30 15:43:57 -0700185 * Increments the error count for this intent.
186 */
187 public void incrementErrorCount() {
188 errorCount++;
189 }
190
191 /**
192 * Sets the error count for this intent.
193 *
194 * @param newCount new count
195 */
196 public void setErrorCount(int newCount) {
197 errorCount = newCount;
198 }
199
200 /**
201 * Returns the number of times that this intent has encountered an error
202 * during installation or withdrawal.
203 *
204 * @return error count
205 */
206 public int errorCount() {
207 return errorCount;
208 }
209
210 /**
Jonathan Hart0d18df32015-03-21 08:42:59 -0700211 * Returns the installables associated with this intent.
212 *
213 * @return list of installable intents
214 */
Brian O'Connorcff03322015-02-03 15:28:59 -0800215 public List<Intent> installables() {
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700216 return installables != null ? installables : Collections.emptyList();
Brian O'Connorcff03322015-02-03 15:28:59 -0800217 }
218
Jonathan Hart72175c22015-03-24 18:55:58 -0700219 /**
220 * Determines whether an intent data update is allowed. The update must
221 * either have a higher version than the current data, or the state
222 * transition between two updates of the same version must be sane.
223 *
224 * @param currentData existing intent data in the store
225 * @param newData new intent data update proposal
226 * @return true if we can apply the update, otherwise false
227 */
228 public static boolean isUpdateAcceptable(IntentData currentData, IntentData newData) {
229
230 if (currentData == null) {
231 return true;
Sho SHIMIZU2c05f912015-04-10 14:23:16 -0700232 } else if (currentData.version().isOlderThan(newData.version())) {
Jonathan Hart72175c22015-03-24 18:55:58 -0700233 return true;
Sho SHIMIZU2c05f912015-04-10 14:23:16 -0700234 } else if (currentData.version().isNewerThan(newData.version())) {
Jonathan Hart72175c22015-03-24 18:55:58 -0700235 return false;
236 }
237
238 // current and new data versions are the same
239 IntentState currentState = currentData.state();
240 IntentState newState = newData.state();
241
242 switch (newState) {
243 case INSTALLING:
244 if (currentState == INSTALLING) {
245 return false;
246 }
247 // FALLTHROUGH
248 case INSTALLED:
249 if (currentState == INSTALLED) {
250 return false;
251 } else if (currentState == WITHDRAWING || currentState == WITHDRAWN
252 || currentState == PURGE_REQ) {
253 log.warn("Invalid state transition from {} to {} for intent {}",
254 currentState, newState, newData.key());
255 return false;
256 }
257 return true;
258
259 case WITHDRAWING:
260 if (currentState == WITHDRAWING) {
261 return false;
262 }
263 // FALLTHROUGH
264 case WITHDRAWN:
265 if (currentState == WITHDRAWN) {
266 return false;
267 } else if (currentState == INSTALLING || currentState == INSTALLED
268 || currentState == PURGE_REQ) {
269 log.warn("Invalid state transition from {} to {} for intent {}",
270 currentState, newState, newData.key());
271 return false;
272 }
273 return true;
274
275 case FAILED:
276 if (currentState == FAILED) {
277 return false;
278 }
279 return true;
280
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700281 case CORRUPT:
282 if (currentState == CORRUPT) {
283 return false;
284 }
285 return true;
286
Jonathan Hart72175c22015-03-24 18:55:58 -0700287 case PURGE_REQ:
Brian O'Connor597934f2015-07-16 11:44:03 -0700288 // TODO we should enforce that only WITHDRAWN intents can be purged
Jonathan Hart72175c22015-03-24 18:55:58 -0700289 return true;
290
291 case COMPILING:
292 case RECOMPILING:
293 case INSTALL_REQ:
294 case WITHDRAW_REQ:
295 default:
296 log.warn("Invalid state {} for intent {}", newState, newData.key());
297 return false;
298 }
299 }
300
Brian O'Connorcff03322015-02-03 15:28:59 -0800301 @Override
302 public int hashCode() {
303 return Objects.hash(intent, version);
304 }
305
306 @Override
307 public boolean equals(Object obj) {
308 if (this == obj) {
309 return true;
310 }
311 if (obj == null || getClass() != obj.getClass()) {
312 return false;
313 }
314 final IntentData other = (IntentData) obj;
315 return Objects.equals(this.intent, other.intent)
316 && Objects.equals(this.version, other.version);
317 }
Ray Milkey65cb59a2015-02-10 15:18:26 -0800318
Jonathan Hart0d18df32015-03-21 08:42:59 -0700319 @Override
Ray Milkey65cb59a2015-02-10 15:18:26 -0800320 public String toString() {
321 return MoreObjects.toStringHelper(getClass())
322 .add("key", key())
323 .add("state", state())
324 .add("version", version())
Ray Milkey9f74c082015-02-11 15:40:16 -0800325 .add("intent", intent())
Jonathan Hart0d18df32015-03-21 08:42:59 -0700326 .add("origin", origin())
Jonathan Hartd0ba2172015-02-11 13:54:33 -0800327 .add("installables", installables())
Ray Milkey65cb59a2015-02-10 15:18:26 -0800328 .toString();
329 }
330
Brian O'Connorcff03322015-02-03 15:28:59 -0800331}