blob: 685fa709fbf25471fc50288ed54f7b696ed0c362 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent.impl;
Brian O'Connor66630c82014-10-02 21:08:19 -070017
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080018import com.google.common.collect.ImmutableList;
19import com.google.common.collect.ImmutableMap;
20import com.google.common.collect.Lists;
21import com.google.common.collect.Maps;
Brian O'Connor66630c82014-10-02 21:08:19 -070022import org.apache.felix.scr.annotations.Activate;
23import org.apache.felix.scr.annotations.Component;
24import org.apache.felix.scr.annotations.Deactivate;
25import org.apache.felix.scr.annotations.Reference;
26import org.apache.felix.scr.annotations.ReferenceCardinality;
27import org.apache.felix.scr.annotations.Service;
Brian O'Connorabafb502014-12-02 22:26:20 -080028import org.onosproject.core.ApplicationId;
29import org.onosproject.core.CoreService;
30import org.onosproject.core.IdGenerator;
31import org.onosproject.event.AbstractListenerRegistry;
32import org.onosproject.event.EventDeliveryService;
33import org.onosproject.net.flow.CompletedBatchOperation;
34import org.onosproject.net.flow.FlowRuleBatchOperation;
35import org.onosproject.net.flow.FlowRuleService;
36import org.onosproject.net.intent.Intent;
37import org.onosproject.net.intent.IntentBatchDelegate;
38import org.onosproject.net.intent.IntentBatchService;
39import org.onosproject.net.intent.IntentCompiler;
40import org.onosproject.net.intent.IntentEvent;
41import org.onosproject.net.intent.IntentException;
42import org.onosproject.net.intent.IntentExtensionService;
43import org.onosproject.net.intent.IntentId;
44import org.onosproject.net.intent.IntentInstaller;
45import org.onosproject.net.intent.IntentListener;
46import org.onosproject.net.intent.IntentOperation;
47import org.onosproject.net.intent.IntentOperations;
48import org.onosproject.net.intent.IntentService;
49import org.onosproject.net.intent.IntentState;
50import org.onosproject.net.intent.IntentStore;
Sho SHIMIZU64ae11c2014-12-03 15:17:47 -080051import org.onosproject.net.intent.BatchWrite;
Brian O'Connorabafb502014-12-02 22:26:20 -080052import org.onosproject.net.intent.IntentStoreDelegate;
Brian O'Connor66630c82014-10-02 21:08:19 -070053import org.slf4j.Logger;
54
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080055import java.util.ArrayList;
56import java.util.Collections;
57import java.util.EnumSet;
Sho SHIMIZUadf8c482014-12-12 18:23:29 -080058import java.util.LinkedList;
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080059import java.util.List;
60import java.util.Map;
Sho SHIMIZUadf8c482014-12-12 18:23:29 -080061import java.util.Optional;
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080062import java.util.concurrent.ConcurrentHashMap;
63import java.util.concurrent.ConcurrentMap;
64import java.util.concurrent.ExecutionException;
65import java.util.concurrent.ExecutorService;
66import java.util.concurrent.Future;
67import java.util.concurrent.TimeUnit;
68import java.util.concurrent.TimeoutException;
Sho SHIMIZUadf8c482014-12-12 18:23:29 -080069import java.util.stream.Collectors;
Brian O'Connorfa81eae2014-10-30 13:20:05 -070070
Brian O'Connorfa81eae2014-10-30 13:20:05 -070071import static com.google.common.base.Preconditions.checkNotNull;
Sho SHIMIZUadf8c482014-12-12 18:23:29 -080072import static com.google.common.base.Preconditions.checkState;
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080073import static java.util.concurrent.Executors.newFixedThreadPool;
Brian O'Connorabafb502014-12-02 22:26:20 -080074import static org.onosproject.net.intent.IntentState.*;
Brian O'Connorfa81eae2014-10-30 13:20:05 -070075import static org.onlab.util.Tools.namedThreads;
76import static org.slf4j.LoggerFactory.getLogger;
Brian O'Connor66630c82014-10-02 21:08:19 -070077
78/**
79 * An implementation of Intent Manager.
80 */
81@Component(immediate = true)
82@Service
83public class IntentManager
84 implements IntentService, IntentExtensionService {
Sho SHIMIZU8b5051d2014-11-05 11:24:13 -080085 private static final Logger log = getLogger(IntentManager.class);
Brian O'Connor66630c82014-10-02 21:08:19 -070086
87 public static final String INTENT_NULL = "Intent cannot be null";
88 public static final String INTENT_ID_NULL = "Intent ID cannot be null";
89
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080090 private static final int NUM_THREADS = 12;
91
Brian O'Connor7a71d5d2014-12-02 00:12:27 -080092 private static final EnumSet<IntentState> RECOMPILE
93 = EnumSet.of(INSTALL_REQ, FAILED, WITHDRAW_REQ);
Brian O'Connor7a71d5d2014-12-02 00:12:27 -080094
95
Brian O'Connor66630c82014-10-02 21:08:19 -070096 // Collections for compiler, installer, and listener are ONOS instance local
97 private final ConcurrentMap<Class<? extends Intent>,
98 IntentCompiler<? extends Intent>> compilers = new ConcurrentHashMap<>();
Thomas Vachuskab97cf282014-10-20 23:31:12 -070099 private final ConcurrentMap<Class<? extends Intent>,
100 IntentInstaller<? extends Intent>> installers = new ConcurrentHashMap<>();
Brian O'Connor66630c82014-10-02 21:08:19 -0700101
102 private final AbstractListenerRegistry<IntentEvent, IntentListener>
tom95329eb2014-10-06 08:40:06 -0700103 listenerRegistry = new AbstractListenerRegistry<>();
Brian O'Connor66630c82014-10-02 21:08:19 -0700104
Brian O'Connor520c0522014-11-23 23:50:47 -0800105 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
106 protected CoreService coreService;
Brian O'Connor66630c82014-10-02 21:08:19 -0700107
108 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
109 protected IntentStore store;
110
111 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700112 protected IntentBatchService batchService;
113
114 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
tom85258ee2014-10-07 00:10:02 -0700115 protected ObjectiveTrackerService trackerService;
tom95329eb2014-10-06 08:40:06 -0700116
117 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Brian O'Connor66630c82014-10-02 21:08:19 -0700118 protected EventDeliveryService eventDispatcher;
119
Brian O'Connorf2dbde52014-10-10 16:20:24 -0700120 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
121 protected FlowRuleService flowRuleService;
122
Brian O'Connor520c0522014-11-23 23:50:47 -0800123
124 private ExecutorService executor;
Brian O'Connor520c0522014-11-23 23:50:47 -0800125
126 private final IntentStoreDelegate delegate = new InternalStoreDelegate();
127 private final TopologyChangeDelegate topoDelegate = new InternalTopoChangeDelegate();
128 private final IntentBatchDelegate batchDelegate = new InternalBatchDelegate();
129 private IdGenerator idGenerator;
130
Brian O'Connor66630c82014-10-02 21:08:19 -0700131 @Activate
132 public void activate() {
133 store.setDelegate(delegate);
tom95329eb2014-10-06 08:40:06 -0700134 trackerService.setDelegate(topoDelegate);
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700135 batchService.setDelegate(batchDelegate);
Brian O'Connor66630c82014-10-02 21:08:19 -0700136 eventDispatcher.addSink(IntentEvent.class, listenerRegistry);
Yuta HIGUCHI7a9fddd2014-12-03 15:30:25 -0800137 executor = newFixedThreadPool(NUM_THREADS, namedThreads("onos-intent-%d"));
Brian O'Connor520c0522014-11-23 23:50:47 -0800138 idGenerator = coreService.getIdGenerator("intent-ids");
139 Intent.bindIdGenerator(idGenerator);
Brian O'Connor66630c82014-10-02 21:08:19 -0700140 log.info("Started");
141 }
142
143 @Deactivate
144 public void deactivate() {
145 store.unsetDelegate(delegate);
tom95329eb2014-10-06 08:40:06 -0700146 trackerService.unsetDelegate(topoDelegate);
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700147 batchService.unsetDelegate(batchDelegate);
Brian O'Connor66630c82014-10-02 21:08:19 -0700148 eventDispatcher.removeSink(IntentEvent.class);
Brian O'Connorcb900f42014-10-07 21:55:33 -0700149 executor.shutdown();
Brian O'Connor520c0522014-11-23 23:50:47 -0800150 Intent.unbindIdGenerator(idGenerator);
Brian O'Connor66630c82014-10-02 21:08:19 -0700151 log.info("Stopped");
152 }
153
154 @Override
155 public void submit(Intent intent) {
156 checkNotNull(intent, INTENT_NULL);
Brian O'Connor72a034c2014-11-26 18:24:23 -0800157 execute(IntentOperations.builder(intent.appId())
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800158 .addSubmitOperation(intent).build());
Brian O'Connor66630c82014-10-02 21:08:19 -0700159 }
160
161 @Override
162 public void withdraw(Intent intent) {
163 checkNotNull(intent, INTENT_NULL);
Brian O'Connor72a034c2014-11-26 18:24:23 -0800164 execute(IntentOperations.builder(intent.appId())
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800165 .addWithdrawOperation(intent.id()).build());
Brian O'Connor66630c82014-10-02 21:08:19 -0700166 }
167
Brian O'Connor66630c82014-10-02 21:08:19 -0700168 @Override
Thomas Vachuska83e090e2014-10-22 14:25:35 -0700169 public void replace(IntentId oldIntentId, Intent newIntent) {
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700170 checkNotNull(oldIntentId, INTENT_ID_NULL);
171 checkNotNull(newIntent, INTENT_NULL);
Brian O'Connor72a034c2014-11-26 18:24:23 -0800172 execute(IntentOperations.builder(newIntent.appId())
Ray Milkeye97ede92014-11-20 10:43:12 -0800173 .addReplaceOperation(oldIntentId, newIntent)
174 .build());
Thomas Vachuska83e090e2014-10-22 14:25:35 -0700175 }
176
Thomas Vachuska83e090e2014-10-22 14:25:35 -0700177 @Override
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700178 public void execute(IntentOperations operations) {
Brian O'Connore2ff25a2014-11-18 19:25:43 -0800179 if (operations.operations().isEmpty()) {
180 return;
181 }
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700182 batchService.addIntentOperations(operations);
Brian O'Connor66630c82014-10-02 21:08:19 -0700183 }
184
185 @Override
186 public Iterable<Intent> getIntents() {
187 return store.getIntents();
188 }
189
190 @Override
191 public long getIntentCount() {
192 return store.getIntentCount();
193 }
194
195 @Override
196 public Intent getIntent(IntentId id) {
197 checkNotNull(id, INTENT_ID_NULL);
198 return store.getIntent(id);
199 }
200
201 @Override
202 public IntentState getIntentState(IntentId id) {
203 checkNotNull(id, INTENT_ID_NULL);
204 return store.getIntentState(id);
205 }
206
207 @Override
Thomas Vachuska10d4abc2014-10-21 12:47:26 -0700208 public List<Intent> getInstallableIntents(IntentId intentId) {
209 checkNotNull(intentId, INTENT_ID_NULL);
210 return store.getInstallableIntents(intentId);
211 }
212
213 @Override
Brian O'Connor66630c82014-10-02 21:08:19 -0700214 public void addListener(IntentListener listener) {
215 listenerRegistry.addListener(listener);
216 }
217
218 @Override
219 public void removeListener(IntentListener listener) {
220 listenerRegistry.removeListener(listener);
221 }
222
223 @Override
224 public <T extends Intent> void registerCompiler(Class<T> cls, IntentCompiler<T> compiler) {
225 compilers.put(cls, compiler);
226 }
227
228 @Override
229 public <T extends Intent> void unregisterCompiler(Class<T> cls) {
230 compilers.remove(cls);
231 }
232
233 @Override
234 public Map<Class<? extends Intent>, IntentCompiler<? extends Intent>> getCompilers() {
235 return ImmutableMap.copyOf(compilers);
236 }
237
238 @Override
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700239 public <T extends Intent> void registerInstaller(Class<T> cls, IntentInstaller<T> installer) {
Brian O'Connor66630c82014-10-02 21:08:19 -0700240 installers.put(cls, installer);
241 }
242
243 @Override
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700244 public <T extends Intent> void unregisterInstaller(Class<T> cls) {
Brian O'Connor66630c82014-10-02 21:08:19 -0700245 installers.remove(cls);
246 }
247
248 @Override
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700249 public Map<Class<? extends Intent>, IntentInstaller<? extends Intent>> getInstallers() {
Brian O'Connor66630c82014-10-02 21:08:19 -0700250 return ImmutableMap.copyOf(installers);
251 }
252
253 /**
Brian O'Connor66630c82014-10-02 21:08:19 -0700254 * Returns the corresponding intent compiler to the specified intent.
255 *
256 * @param intent intent
tom95329eb2014-10-06 08:40:06 -0700257 * @param <T> the type of intent
Brian O'Connor66630c82014-10-02 21:08:19 -0700258 * @return intent compiler corresponding to the specified intent
259 */
260 private <T extends Intent> IntentCompiler<T> getCompiler(T intent) {
261 @SuppressWarnings("unchecked")
262 IntentCompiler<T> compiler = (IntentCompiler<T>) compilers.get(intent.getClass());
263 if (compiler == null) {
264 throw new IntentException("no compiler for class " + intent.getClass());
265 }
266 return compiler;
267 }
268
269 /**
270 * Returns the corresponding intent installer to the specified installable intent.
tom95329eb2014-10-06 08:40:06 -0700271 *
Brian O'Connor66630c82014-10-02 21:08:19 -0700272 * @param intent intent
tom95329eb2014-10-06 08:40:06 -0700273 * @param <T> the type of installable intent
Brian O'Connor66630c82014-10-02 21:08:19 -0700274 * @return intent installer corresponding to the specified installable intent
275 */
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700276 private <T extends Intent> IntentInstaller<T> getInstaller(T intent) {
Brian O'Connor66630c82014-10-02 21:08:19 -0700277 @SuppressWarnings("unchecked")
278 IntentInstaller<T> installer = (IntentInstaller<T>) installers.get(intent.getClass());
279 if (installer == null) {
280 throw new IntentException("no installer for class " + intent.getClass());
281 }
282 return installer;
283 }
284
285 /**
Brian O'Connorcb900f42014-10-07 21:55:33 -0700286 * Compiles an intent recursively.
287 *
288 * @param intent intent
289 * @return result of compilation
290 */
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800291 private List<Intent> compileIntent(Intent intent, List<Intent> previousInstallables) {
Thomas Vachuska4926c1b2014-10-21 00:44:10 -0700292 if (intent.isInstallable()) {
293 return ImmutableList.of(intent);
Brian O'Connor66630c82014-10-02 21:08:19 -0700294 }
Brian O'Connorcb900f42014-10-07 21:55:33 -0700295
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700296 registerSubclassCompilerIfNeeded(intent);
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700297 // FIXME: get previous resources
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700298 List<Intent> installable = new ArrayList<>();
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800299 for (Intent compiled : getCompiler(intent).compile(intent, previousInstallables, null)) {
300 installable.addAll(compileIntent(compiled, previousInstallables));
Brian O'Connorcb900f42014-10-07 21:55:33 -0700301 }
tom85258ee2014-10-07 00:10:02 -0700302 return installable;
Brian O'Connor66630c82014-10-02 21:08:19 -0700303 }
304
305 /**
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700306 * Uninstalls all installable intents associated with the given intent.
307 *
Brian O'Connor427a1762014-11-19 18:40:32 -0800308 * @param intent intent
309 * @param installables installable intents
310 * @return list of batches to uninstall intent
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700311 */
Brian O'Connor427a1762014-11-19 18:40:32 -0800312 private List<FlowRuleBatchOperation> uninstallIntent(Intent intent, List<Intent> installables) {
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700313 List<FlowRuleBatchOperation> batches = Lists.newArrayList();
Brian O'Connor427a1762014-11-19 18:40:32 -0800314 for (Intent installable : installables) {
315 trackerService.removeTrackedResources(intent.id(),
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800316 installable.resources());
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700317 try {
318 batches.addAll(getInstaller(installable).uninstall(installable));
319 } catch (IntentException e) {
Brian O'Connor427a1762014-11-19 18:40:32 -0800320 log.warn("Unable to uninstall intent {} due to:", intent.id(), e);
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700321 // TODO: this should never happen. but what if it does?
322 }
323 }
Brian O'Connor427a1762014-11-19 18:40:32 -0800324 return batches;
tom85258ee2014-10-07 00:10:02 -0700325 }
326
327 /**
Brian O'Connor66630c82014-10-02 21:08:19 -0700328 * Registers an intent compiler of the specified intent if an intent compiler
329 * for the intent is not registered. This method traverses the class hierarchy of
330 * the intent. Once an intent compiler for a parent type is found, this method
331 * registers the found intent compiler.
332 *
333 * @param intent intent
334 */
335 private void registerSubclassCompilerIfNeeded(Intent intent) {
336 if (!compilers.containsKey(intent.getClass())) {
337 Class<?> cls = intent.getClass();
338 while (cls != Object.class) {
339 // As long as we're within the Intent class descendants
340 if (Intent.class.isAssignableFrom(cls)) {
341 IntentCompiler<?> compiler = compilers.get(cls);
342 if (compiler != null) {
343 compilers.put(intent.getClass(), compiler);
344 return;
345 }
346 }
347 cls = cls.getSuperclass();
348 }
349 }
350 }
351
352 /**
353 * Registers an intent installer of the specified intent if an intent installer
354 * for the intent is not registered. This method traverses the class hierarchy of
355 * the intent. Once an intent installer for a parent type is found, this method
356 * registers the found intent installer.
357 *
358 * @param intent intent
359 */
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700360 private void registerSubclassInstallerIfNeeded(Intent intent) {
Brian O'Connor66630c82014-10-02 21:08:19 -0700361 if (!installers.containsKey(intent.getClass())) {
362 Class<?> cls = intent.getClass();
363 while (cls != Object.class) {
Thomas Vachuskab97cf282014-10-20 23:31:12 -0700364 // As long as we're within the Intent class descendants
365 if (Intent.class.isAssignableFrom(cls)) {
Brian O'Connor66630c82014-10-02 21:08:19 -0700366 IntentInstaller<?> installer = installers.get(cls);
367 if (installer != null) {
368 installers.put(intent.getClass(), installer);
369 return;
370 }
371 }
372 cls = cls.getSuperclass();
373 }
374 }
375 }
376
Brian O'Connor66630c82014-10-02 21:08:19 -0700377 // Store delegate to re-post events emitted from the store.
378 private class InternalStoreDelegate implements IntentStoreDelegate {
379 @Override
380 public void notify(IntentEvent event) {
tom85258ee2014-10-07 00:10:02 -0700381 eventDispatcher.post(event);
Brian O'Connor66630c82014-10-02 21:08:19 -0700382 }
Brian O'Connorea4d7d12015-01-28 16:37:46 -0800383
384 @Override
385 public void process(IntentOperation op) {
386 //FIXME
387 }
Brian O'Connor66630c82014-10-02 21:08:19 -0700388 }
389
Brian O'Connor72a034c2014-11-26 18:24:23 -0800390 private void buildAndSubmitBatches(Iterable<IntentId> intentIds,
391 boolean compileAllFailed) {
392 Map<ApplicationId, IntentOperations.Builder> batches = Maps.newHashMap();
393 // Attempt recompilation of the specified intents first.
394 for (IntentId id : intentIds) {
395 Intent intent = store.getIntent(id);
396 if (intent == null) {
397 continue;
398 }
399 IntentOperations.Builder builder = batches.get(intent.appId());
400 if (builder == null) {
401 builder = IntentOperations.builder(intent.appId());
402 batches.put(intent.appId(), builder);
403 }
404 builder.addUpdateOperation(id);
405 }
406
407 if (compileAllFailed) {
408 // If required, compile all currently failed intents.
409 for (Intent intent : getIntents()) {
Brian O'Connor7a71d5d2014-12-02 00:12:27 -0800410 IntentState state = getIntentState(intent.id());
411 if (RECOMPILE.contains(state)) {
Brian O'Connor72a034c2014-11-26 18:24:23 -0800412 IntentOperations.Builder builder = batches.get(intent.appId());
413 if (builder == null) {
414 builder = IntentOperations.builder(intent.appId());
415 batches.put(intent.appId(), builder);
416 }
Brian O'Connor7a71d5d2014-12-02 00:12:27 -0800417 if (state == WITHDRAW_REQ) {
418 builder.addWithdrawOperation(intent.id());
419 } else {
420 builder.addUpdateOperation(intent.id());
421 }
Brian O'Connor72a034c2014-11-26 18:24:23 -0800422 }
423 }
424 }
425
426 for (ApplicationId appId : batches.keySet()) {
427 if (batchService.isLocalLeader(appId)) {
428 execute(batches.get(appId).build());
429 }
430 }
431 }
432
tom95329eb2014-10-06 08:40:06 -0700433 // Topology change delegate
434 private class InternalTopoChangeDelegate implements TopologyChangeDelegate {
435 @Override
tom85258ee2014-10-07 00:10:02 -0700436 public void triggerCompile(Iterable<IntentId> intentIds,
437 boolean compileAllFailed) {
Brian O'Connor72a034c2014-11-26 18:24:23 -0800438 buildAndSubmitBatches(intentIds, compileAllFailed);
tom95329eb2014-10-06 08:40:06 -0700439 }
tom95329eb2014-10-06 08:40:06 -0700440 }
tom85258ee2014-10-07 00:10:02 -0700441
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800442 // TODO: simplify the branching statements
443 private IntentUpdate createIntentUpdate(IntentOperation operation) {
444 switch (operation.type()) {
445 case SUBMIT:
446 return new InstallRequest(operation.intent());
447 case WITHDRAW: {
448 Intent oldIntent = store.getIntent(operation.intentId());
449 if (oldIntent == null) {
450 return new DoNothing();
451 }
452 List<Intent> installables = store.getInstallableIntents(oldIntent.id());
453 if (installables == null) {
454 return new WithdrawStateChange1(oldIntent);
455 }
456 return new WithdrawRequest(oldIntent, installables);
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700457 }
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800458 case REPLACE: {
459 Intent newIntent = operation.intent();
460 Intent oldIntent = store.getIntent(operation.intentId());
461 if (oldIntent == null) {
462 return new InstallRequest(newIntent);
463 }
464 List<Intent> installables = store.getInstallableIntents(oldIntent.id());
465 if (installables == null) {
466 if (newIntent.equals(oldIntent)) {
467 return new InstallRequest(newIntent);
468 } else {
469 return new WithdrawStateChange2(oldIntent);
470 }
471 }
472 return new ReplaceRequest(newIntent, oldIntent, installables);
473 }
474 case UPDATE: {
475 Intent oldIntent = store.getIntent(operation.intentId());
476 if (oldIntent == null) {
477 return new DoNothing();
478 }
479 List<Intent> installables = getInstallableIntents(oldIntent.id());
480 if (installables == null) {
481 return new InstallRequest(oldIntent);
482 }
483 return new ReplaceRequest(oldIntent, oldIntent, installables);
484 }
485 default:
486 // illegal state
487 return new DoNothing();
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700488 }
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700489 }
490
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800491 private class InstallRequest implements IntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800492
493 private final Intent intent;
494
495 InstallRequest(Intent intent) {
496 this.intent = checkNotNull(intent);
497 }
498
499 @Override
500 public void writeBeforeExecution(BatchWrite batchWrite) {
501 // TODO consider only "creating" intent if it does not exist
502 // Note: We need to set state to INSTALL_REQ regardless.
503 batchWrite.createIntent(intent);
504 }
505
506 @Override
507 public Optional<IntentUpdate> execute() {
508 return Optional.of(new Compiling(intent));
509 }
510 }
511
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800512 private class WithdrawRequest implements IntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800513
514 private final Intent intent;
515 private final List<Intent> installables;
516
517 WithdrawRequest(Intent intent, List<Intent> installables) {
518 this.intent = checkNotNull(intent);
519 this.installables = ImmutableList.copyOf(checkNotNull(installables));
520 }
521
522 @Override
523 public void writeBeforeExecution(BatchWrite batchWrite) {
524 batchWrite.setState(intent, WITHDRAW_REQ);
525 }
526
527 @Override
528 public Optional<IntentUpdate> execute() {
529 return Optional.of(new Withdrawing(intent, installables));
530 }
531 }
532
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800533 private class ReplaceRequest implements IntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800534
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700535 private final Intent newIntent;
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800536 private final Intent oldIntent;
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700537 private final List<Intent> oldInstallables;
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700538
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800539 ReplaceRequest(Intent newIntent, Intent oldIntent, List<Intent> oldInstallables) {
540 this.newIntent = checkNotNull(newIntent);
541 this.oldIntent = checkNotNull(oldIntent);
542 this.oldInstallables = ImmutableList.copyOf(oldInstallables);
543 }
544
545 @Override
546 public void writeBeforeExecution(BatchWrite batchWrite) {
547 // TODO consider only "creating" intent if it does not exist
548 // Note: We need to set state to INSTALL_REQ regardless.
549 batchWrite.createIntent(newIntent);
550 }
551
552 @Override
553 public Optional<IntentUpdate> execute() {
554 try {
555 List<Intent> installables = compileIntent(newIntent, oldInstallables);
556 return Optional.of(new Replacing(newIntent, oldIntent, installables, oldInstallables));
557 } catch (PathNotFoundException e) {
558 log.debug("Path not found for intent {}", newIntent);
559 return Optional.of(new Withdrawing(oldIntent, oldInstallables));
560 } catch (IntentException e) {
561 log.warn("Unable to compile intent {} due to:", newIntent.id(), e);
562 return Optional.of(new Withdrawing(oldIntent, oldInstallables));
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700563 }
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800564 }
565 }
566
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800567 // TODO: better naming
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800568 private class WithdrawStateChange1 implements CompletedIntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800569
570 private final Intent intent;
571
572 WithdrawStateChange1(Intent intent) {
573 this.intent = checkNotNull(intent);
574 }
575
576 @Override
577 public void writeBeforeExecution(BatchWrite batchWrite) {
578 batchWrite.setState(intent, WITHDRAW_REQ);
579 }
580
581 @Override
582 public void writeAfterExecution(BatchWrite batchWrite) {
583 batchWrite.setState(intent, WITHDRAWN);
584 batchWrite.removeInstalledIntents(intent.id());
585 batchWrite.removeIntent(intent.id());
586 }
587 }
588
589 // TODO: better naming
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800590 private class WithdrawStateChange2 implements CompletedIntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800591
592 private final Intent intent;
593
594 WithdrawStateChange2(Intent intent) {
595 this.intent = checkNotNull(intent);
596 }
597
598 @Override
599 public void writeBeforeExecution(BatchWrite batchWrite) {
600 // TODO consider only "creating" intent if it does not exist
601 // Note: We need to set state to INSTALL_REQ regardless.
602 batchWrite.createIntent(intent);
603 }
604
605 @Override
606 public void writeAfterExecution(BatchWrite batchWrite) {
607 batchWrite.setState(intent, WITHDRAWN);
608 batchWrite.removeInstalledIntents(intent.id());
609 batchWrite.removeIntent(intent.id());
610 }
611 }
612
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800613 private class Compiling implements IntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800614
615 private final Intent intent;
616
617 Compiling(Intent intent) {
618 this.intent = checkNotNull(intent);
619 }
620
621 @Override
622 public Optional<IntentUpdate> execute() {
623 try {
624 // Compile the intent into installable derivatives.
625 // If all went well, associate the resulting list of installable
626 // intents with the top-level intent and proceed to install.
627 return Optional.of(new Installing(intent, compileIntent(intent, null)));
628 } catch (PathNotFoundException e) {
Sho SHIMIZUfd0cd8c2015-01-28 08:16:58 -0800629 log.debug("Path not found for intent {}", intent);
630 return Optional.of(new CompilingFailed(intent));
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800631 } catch (IntentException e) {
Sho SHIMIZUfd0cd8c2015-01-28 08:16:58 -0800632 log.warn("Unable to compile intent {} due to:", intent.id(), e);
633 return Optional.of(new CompilingFailed(intent));
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800634 }
635 }
636 }
637
638 // TODO: better naming because install() method actually generate FlowRuleBatchOperations
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800639 private class Installing implements IntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800640
641 private final Intent intent;
642 private final List<Intent> installables;
643
644 Installing(Intent intent, List<Intent> installables) {
645 this.intent = checkNotNull(intent);
646 this.installables = ImmutableList.copyOf(checkNotNull(installables));
647 }
648
649 @Override
650 public Optional<IntentUpdate> execute() {
651 Exception exception = null;
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800652
653 List<FlowRuleBatchOperation> batches = Lists.newArrayList();
654 for (Intent installable : installables) {
655 registerSubclassInstallerIfNeeded(installable);
656 trackerService.addTrackedResources(intent.id(), installable.resources());
657 try {
658 batches.addAll(getInstaller(installable).install(installable));
659 } catch (Exception e) { // TODO this should be IntentException
660 log.warn("Unable to install intent {} due to:", intent.id(), e);
661 trackerService.removeTrackedResources(intent.id(), installable.resources());
662 //TODO we failed; intent should be recompiled
663 exception = e;
Brian O'Connor5d55ed42014-12-01 18:27:47 -0800664 }
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700665 }
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700666
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800667 if (exception != null) {
668 return Optional.of(new InstallingFailed(intent, installables, batches));
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800669 }
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800670
671 return Optional.of(new Installed(intent, installables, batches));
672 }
673 }
674
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800675 private class Withdrawing implements IntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800676
677 private final Intent intent;
678 private final List<Intent> installables;
679
680 Withdrawing(Intent intent, List<Intent> installables) {
681 this.intent = checkNotNull(intent);
682 this.installables = ImmutableList.copyOf(installables);
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800683 }
684
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800685 @Override
686 public Optional<IntentUpdate> execute() {
687 List<FlowRuleBatchOperation> batches = uninstallIntent(intent, installables);
688
689 return Optional.of(new Withdrawn(intent, installables, batches));
690 }
691 }
692
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800693 private class Replacing implements IntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800694
695 private final Intent newIntent;
696 private final Intent oldIntent;
697 private final List<Intent> newInstallables;
698 private final List<Intent> oldInstallables;
699
700 private Exception exception;
701
702 Replacing(Intent newIntent, Intent oldIntent,
703 List<Intent> newInstallables, List<Intent> oldInstallables) {
704 this.newIntent = checkNotNull(newIntent);
705 this.oldIntent = checkNotNull(oldIntent);
706 this.newInstallables = ImmutableList.copyOf(checkNotNull(newInstallables));
707 this.oldInstallables = ImmutableList.copyOf(checkNotNull(oldInstallables));
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700708 }
709
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800710 @Override
711 public Optional<IntentUpdate> execute() {
712 List<FlowRuleBatchOperation> batches = replace();
713
714 if (exception == null) {
715 return Optional.of(
716 new Replaced(newIntent, oldIntent, newInstallables, oldInstallables, batches));
717 }
718
719 return Optional.of(
720 new ReplacingFailed(newIntent, oldIntent, newInstallables, oldInstallables, batches));
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700721 }
722
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800723 protected List<FlowRuleBatchOperation> replace() {
724 checkState(oldInstallables.size() == newInstallables.size(),
725 "Old and New Intent must have equivalent installable intents.");
726
727 List<FlowRuleBatchOperation> batches = Lists.newArrayList();
728 for (int i = 0; i < oldInstallables.size(); i++) {
729 Intent oldInstallable = oldInstallables.get(i);
730 Intent newInstallable = newInstallables.get(i);
731 //FIXME revisit this
732// if (oldInstallable.equals(newInstallable)) {
733// continue;
734// }
735 checkState(oldInstallable.getClass().equals(newInstallable.getClass()),
736 "Installable Intent type mismatch.");
737 trackerService.removeTrackedResources(oldIntent.id(), oldInstallable.resources());
738 trackerService.addTrackedResources(newIntent.id(), newInstallable.resources());
739 try {
740 batches.addAll(getInstaller(newInstallable).replace(oldInstallable, newInstallable));
741 } catch (IntentException e) {
742 log.warn("Unable to update intent {} due to:", oldIntent.id(), e);
743 //FIXME... we failed. need to uninstall (if same) or revert (if different)
744 trackerService.removeTrackedResources(newIntent.id(), newInstallable.resources());
745 exception = e;
746 batches = uninstallIntent(oldIntent, oldInstallables);
747 }
748 }
749 return batches;
750 }
751 }
752
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800753 private class Installed implements CompletedIntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800754
755 private final Intent intent;
756 private final List<Intent> installables;
757 private IntentState intentState;
758 private final List<FlowRuleBatchOperation> batches;
759 private int currentBatch = 0;
760
761 Installed(Intent intent, List<Intent> installables, List<FlowRuleBatchOperation> batches) {
762 this.intent = checkNotNull(intent);
763 this.installables = ImmutableList.copyOf(checkNotNull(installables));
764 this.batches = new LinkedList<>(checkNotNull(batches));
765 this.intentState = INSTALLING;
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700766 }
767
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800768 @Override
769 public void batchSuccess() {
Ray Milkey93508c22014-12-02 11:35:56 -0800770 currentBatch++;
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800771 }
772
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800773 @Override
774 public List<Intent> allInstallables() {
775 return installables;
776 }
777
778 @Override
779 public void writeAfterExecution(BatchWrite batchWrite) {
780 switch (intentState) {
781 case INSTALLING:
782 batchWrite.setState(intent, INSTALLED);
783 batchWrite.setInstallableIntents(intent.id(), this.installables);
784 break;
785 case FAILED:
786 batchWrite.setState(intent, FAILED);
787 batchWrite.removeInstalledIntents(intent.id());
788 break;
789 default:
790 break;
791 }
792 }
793
794 @Override
795 public FlowRuleBatchOperation currentBatch() {
796 return currentBatch < batches.size() ? batches.get(currentBatch) : null;
797 }
798
799 @Override
800 public void batchFailed() {
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800801 // the current batch has failed, so recompile
802 // remove the current batch and all remaining
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800803 for (int i = batches.size() - 1; i >= currentBatch; i--) {
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800804 batches.remove(i);
805 }
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800806 intentState = FAILED;
807 batches.addAll(uninstallIntent(intent, installables));
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800808
Brian O'Connor7a71d5d2014-12-02 00:12:27 -0800809 // TODO we might want to try to recompile the new intent
Brian O'Connor427a1762014-11-19 18:40:32 -0800810 }
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800811 }
Brian O'Connor427a1762014-11-19 18:40:32 -0800812
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800813 private class Withdrawn implements CompletedIntentUpdate {
Brian O'Connor427a1762014-11-19 18:40:32 -0800814
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800815 private final Intent intent;
816 private final List<Intent> installables;
817 private final List<FlowRuleBatchOperation> batches;
818 private int currentBatch;
819
820 Withdrawn(Intent intent, List<Intent> installables, List<FlowRuleBatchOperation> batches) {
821 this.intent = checkNotNull(intent);
822 this.installables = ImmutableList.copyOf(installables);
823 this.batches = new LinkedList<>(batches);
824 this.currentBatch = 0;
825 }
826
827 @Override
828 public List<Intent> allInstallables() {
829 return installables;
830 }
831
832 @Override
833 public void batchSuccess() {
834 currentBatch++;
835 }
836
837 @Override
838 public void writeAfterExecution(BatchWrite batchWrite) {
839 batchWrite.setState(intent, WITHDRAWN);
840 batchWrite.removeInstalledIntents(intent.id());
841 batchWrite.removeIntent(intent.id());
842 }
843
844 @Override
845 public FlowRuleBatchOperation currentBatch() {
846 return currentBatch < batches.size() ? batches.get(currentBatch) : null;
847 }
848
849 @Override
850 public void batchFailed() {
851 // the current batch has failed, so recompile
852 // remove the current batch and all remaining
853 for (int i = batches.size() - 1; i >= currentBatch; i--) {
854 batches.remove(i);
Brian O'Connor427a1762014-11-19 18:40:32 -0800855 }
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800856 batches.addAll(uninstallIntent(intent, installables));
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700857 }
858 }
859
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800860 private class Replaced implements CompletedIntentUpdate {
Brian O'Connorcb900f42014-10-07 21:55:33 -0700861
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800862 private final Intent newIntent;
863 private final Intent oldIntent;
Brian O'Connorcb900f42014-10-07 21:55:33 -0700864
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800865 private final List<Intent> newInstallables;
866 private final List<Intent> oldInstallables;
867 private final List<FlowRuleBatchOperation> batches;
868 private int currentBatch;
Brian O'Connor427a1762014-11-19 18:40:32 -0800869
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800870 Replaced(Intent newIntent, Intent oldIntent,
871 List<Intent> newInstallables, List<Intent> oldInstallables,
872 List<FlowRuleBatchOperation> batches) {
873 this.newIntent = checkNotNull(newIntent);
874 this.oldIntent = checkNotNull(oldIntent);
875 this.newInstallables = ImmutableList.copyOf(checkNotNull(newInstallables));
876 this.oldInstallables = ImmutableList.copyOf(checkNotNull(oldInstallables));
877 this.batches = new LinkedList<>(batches);
878 this.currentBatch = 0;
Sho SHIMIZU8cd9fb82014-12-11 13:19:18 -0800879 }
880
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800881 @Override
882 public List<Intent> allInstallables() {
883 LinkedList<Intent> allInstallables = new LinkedList<>();
884 allInstallables.addAll(newInstallables);
885 allInstallables.addAll(oldInstallables);
Sho SHIMIZU8cd9fb82014-12-11 13:19:18 -0800886
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800887 return allInstallables;
Yuta HIGUCHI82e53262014-11-27 10:28:51 -0800888 }
889
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800890 @Override
891 public void batchSuccess() {
892 currentBatch++;
Brian O'Connor427a1762014-11-19 18:40:32 -0800893 }
894
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800895 @Override
896 public void writeAfterExecution(BatchWrite batchWrite) {
897 batchWrite.setState(newIntent, INSTALLED);
898 batchWrite.setInstallableIntents(newIntent.id(), newInstallables);
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -0800899
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800900 batchWrite.setState(oldIntent, WITHDRAWN);
901 batchWrite.removeInstalledIntents(oldIntent.id());
902 batchWrite.removeIntent(oldIntent.id());
903 }
904
905 @Override
906 public FlowRuleBatchOperation currentBatch() {
907 return currentBatch < batches.size() ? batches.get(currentBatch) : null;
908 }
909
910 @Override
911 public void batchFailed() {
912 // the current batch has failed, so recompile
913 // remove the current batch and all remaining
914 for (int i = batches.size() - 1; i >= currentBatch; i--) {
915 batches.remove(i);
916 }
917 batches.addAll(uninstallIntent(oldIntent, oldInstallables));
918
919 batches.addAll(uninstallIntent(newIntent, newInstallables));
920
921 // TODO we might want to try to recompile the new intent
922 }
923 }
924
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800925 private class InstallingFailed implements CompletedIntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800926
927 private final Intent intent;
928 private final List<Intent> installables;
929 private final List<FlowRuleBatchOperation> batches;
930 private int currentBatch = 0;
931
932 InstallingFailed(Intent intent, List<Intent> installables, List<FlowRuleBatchOperation> batches) {
933 this.intent = checkNotNull(intent);
934 this.installables = ImmutableList.copyOf(checkNotNull(installables));
935 this.batches = new LinkedList<>(checkNotNull(batches));
936 }
937
938 @Override
939 public List<Intent> allInstallables() {
940 return installables;
941 }
942
943 @Override
944 public void batchSuccess() {
945 currentBatch++;
946 }
947
948 @Override
949 public void writeAfterExecution(BatchWrite batchWrite) {
950 batchWrite.setState(intent, FAILED);
951 batchWrite.removeInstalledIntents(intent.id());
952 }
953
954 @Override
955 public FlowRuleBatchOperation currentBatch() {
956 return currentBatch < batches.size() ? batches.get(currentBatch) : null;
957 }
958
959 @Override
960 public void batchFailed() {
961 // the current batch has failed, so recompile
962 // remove the current batch and all remaining
963 for (int i = batches.size() - 1; i >= currentBatch; i--) {
964 batches.remove(i);
965 }
966 batches.addAll(uninstallIntent(intent, installables));
967
968 // TODO we might want to try to recompile the new intent
969 }
970 }
971
Sho SHIMIZU28e72712015-01-27 17:03:41 -0800972 private class ReplacingFailed implements CompletedIntentUpdate {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -0800973
974 private final Intent newIntent;
975 private final Intent oldIntent;
976 private final List<Intent> newInstallables;
977 private final List<Intent> oldInstallables;
978 private final List<FlowRuleBatchOperation> batches;
979 private int currentBatch;
980
981 ReplacingFailed(Intent newIntent, Intent oldIntent,
982 List<Intent> newInstallables, List<Intent> oldInstallables,
983 List<FlowRuleBatchOperation> batches) {
984 this.newIntent = checkNotNull(newIntent);
985 this.oldIntent = checkNotNull(oldIntent);
986 this.newInstallables = ImmutableList.copyOf(checkNotNull(newInstallables));
987 this.oldInstallables = ImmutableList.copyOf(checkNotNull(oldInstallables));
988 this.batches = new LinkedList<>(batches);
989 this.currentBatch = 0;
990 }
991
992 @Override
993 public List<Intent> allInstallables() {
994 LinkedList<Intent> allInstallables = new LinkedList<>();
995 allInstallables.addAll(newInstallables);
996 allInstallables.addAll(oldInstallables);
997
998 return allInstallables;
999 }
1000
1001 @Override
1002 public void batchSuccess() {
1003 currentBatch++;
1004 }
1005
1006 @Override
1007 public void writeAfterExecution(BatchWrite batchWrite) {
1008 batchWrite.setState(newIntent, FAILED);
1009 batchWrite.removeInstalledIntents(newIntent.id());
1010
1011 batchWrite.setState(oldIntent, WITHDRAWN);
1012 batchWrite.removeInstalledIntents(oldIntent.id());
1013 batchWrite.removeIntent(oldIntent.id());
1014 }
1015
1016 @Override
1017 public FlowRuleBatchOperation currentBatch() {
1018 return currentBatch < batches.size() ? batches.get(currentBatch) : null;
1019 }
1020
1021 @Override
1022 public void batchFailed() {
1023 // the current batch has failed, so recompile
1024 // remove the current batch and all remaining
1025 for (int i = batches.size() - 1; i >= currentBatch; i--) {
1026 batches.remove(i);
1027 }
1028 batches.addAll(uninstallIntent(oldIntent, oldInstallables));
1029
1030 batches.addAll(uninstallIntent(newIntent, newInstallables));
1031
1032 // TODO we might want to try to recompile the new intent
1033 }
1034 }
1035
1036 private class IntentBatchPreprocess implements Runnable {
1037
1038 // TODO make this configurable
1039 private static final int TIMEOUT_PER_OP = 500; // ms
1040 protected static final int MAX_ATTEMPTS = 3;
1041
1042 protected final IntentOperations ops;
1043
1044 // future holding current FlowRuleBatch installation result
1045 protected final long startTime = System.currentTimeMillis();
1046 protected final long endTime;
1047
1048 private IntentBatchPreprocess(IntentOperations ops, long endTime) {
1049 this.ops = checkNotNull(ops);
1050 this.endTime = endTime;
1051 }
1052
1053 public IntentBatchPreprocess(IntentOperations ops) {
1054 this(ops, System.currentTimeMillis() + ops.operations().size() * TIMEOUT_PER_OP);
1055 }
1056
1057 // FIXME compute reasonable timeouts
1058 protected long calculateTimeoutLimit() {
1059 return System.currentTimeMillis() + ops.operations().size() * TIMEOUT_PER_OP;
1060 }
1061
1062 @Override
1063 public void run() {
1064 try {
1065 // this should only be called on the first iteration
1066 // note: this a "expensive", so it is not done in the constructor
1067
1068 // - creates per Intent installation context (IntentUpdate)
1069 // - write Intents to store
1070 // - process (compile, install, etc.) each Intents
1071 // - generate FlowRuleBatch for this phase
1072 // build IntentUpdates
1073 List<IntentUpdate> updates = createIntentUpdates();
1074
1075 // Write batch information
1076 BatchWrite batchWrite = createBatchWrite(updates);
Sho SHIMIZU9ea34532015-01-28 12:28:00 -08001077 store.batchWrite(batchWrite);
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001078
1079 new IntentBatchApplyFirst(ops, processIntentUpdates(updates), endTime, 0, null).run();
1080 } catch (Exception e) {
1081 log.error("Error submitting batches:", e);
1082 // FIXME incomplete Intents should be cleaned up
1083 // (transition to FAILED, etc.)
1084
1085 // TODO: remove duplicate due to inlining
1086 // the batch has failed
1087 // TODO: maybe we should do more?
1088 log.error("Walk the plank, matey...");
1089 batchService.removeIntentOperations(ops);
1090 }
1091 }
1092
1093 private List<IntentUpdate> createIntentUpdates() {
1094 return ops.operations().stream()
1095 .map(IntentManager.this::createIntentUpdate)
1096 .collect(Collectors.toList());
1097 }
1098
1099 private BatchWrite createBatchWrite(List<IntentUpdate> updates) {
1100 BatchWrite batchWrite = BatchWrite.newInstance();
1101 updates.forEach(update -> update.writeBeforeExecution(batchWrite));
1102 return batchWrite;
1103 }
1104
1105 private List<CompletedIntentUpdate> processIntentUpdates(List<IntentUpdate> updates) {
1106 // start processing each Intents
1107 List<CompletedIntentUpdate> completed = new ArrayList<>();
1108 for (IntentUpdate update : updates) {
1109 Optional<IntentUpdate> phase = Optional.of(update);
1110 IntentUpdate previous = update;
1111 while (true) {
1112 if (!phase.isPresent()) {
1113 // FIXME: not type safe cast
1114 completed.add((CompletedIntentUpdate) previous);
1115 break;
1116 }
1117 previous = phase.get();
1118 phase = previous.execute();
1119 }
1120 }
1121
1122 return completed;
1123 }
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001124 }
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -08001125
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001126 // TODO: better naming
1127 private class IntentBatchApplyFirst extends IntentBatchPreprocess {
1128
1129 protected final List<CompletedIntentUpdate> intentUpdates;
1130 protected final int installAttempt;
1131 protected Future<CompletedBatchOperation> future;
1132
1133 IntentBatchApplyFirst(IntentOperations operations, List<CompletedIntentUpdate> intentUpdates,
1134 long endTime, int installAttempt, Future<CompletedBatchOperation> future) {
1135 super(operations, endTime);
1136 this.intentUpdates = ImmutableList.copyOf(intentUpdates);
1137 this.future = future;
1138 this.installAttempt = installAttempt;
1139 }
1140
1141 @Override
1142 public void run() {
1143 Future<CompletedBatchOperation> future = applyNextBatch(intentUpdates);
1144 new IntentBatchProcessFutures(ops, intentUpdates, endTime, installAttempt, future).run();
Brian O'Connorcb900f42014-10-07 21:55:33 -07001145 }
1146
Brian O'Connorf2dbde52014-10-10 16:20:24 -07001147 /**
Brian O'Connor427a1762014-11-19 18:40:32 -08001148 * Builds and applies the next batch, and returns the future.
Brian O'Connorfa81eae2014-10-30 13:20:05 -07001149 *
1150 * @return Future for next batch
Brian O'Connorf2dbde52014-10-10 16:20:24 -07001151 */
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001152 protected Future<CompletedBatchOperation> applyNextBatch(List<CompletedIntentUpdate> updates) {
Brian O'Connor427a1762014-11-19 18:40:32 -08001153 //TODO test this. (also, maybe save this batch)
Brian O'Connor72cb19a2015-01-16 16:14:41 -08001154
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001155 FlowRuleBatchOperation batch = createFlowRuleBatchOperation(updates);
Ray Milkey93508c22014-12-02 11:35:56 -08001156 if (batch.size() > 0) {
1157 //FIXME apply batch might throw an exception
1158 return flowRuleService.applyBatch(batch);
1159 } else {
1160 // there are no flow rule batches; finalize the intent update
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001161 BatchWrite batchWrite = createFinalizedBatchWrite(updates);
1162
Sho SHIMIZU9ea34532015-01-28 12:28:00 -08001163 store.batchWrite(batchWrite);
Ray Milkey93508c22014-12-02 11:35:56 -08001164 return null;
1165 }
1166 }
1167
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001168 private FlowRuleBatchOperation createFlowRuleBatchOperation(List<CompletedIntentUpdate> intentUpdates) {
Brian O'Connor72cb19a2015-01-16 16:14:41 -08001169 FlowRuleBatchOperation batch = new FlowRuleBatchOperation(Collections.emptyList(), null, 0);
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001170 for (CompletedIntentUpdate update : intentUpdates) {
1171 FlowRuleBatchOperation currentBatch = update.currentBatch();
1172 if (currentBatch != null) {
1173 batch.addAll(currentBatch);
1174 }
1175 }
1176 return batch;
1177 }
1178
1179 private BatchWrite createFinalizedBatchWrite(List<CompletedIntentUpdate> intentUpdates) {
1180 BatchWrite batchWrite = BatchWrite.newInstance();
1181 for (CompletedIntentUpdate update : intentUpdates) {
1182 update.writeAfterExecution(batchWrite);
1183 }
1184 return batchWrite;
1185 }
1186
1187 protected void abandonShip() {
1188 // the batch has failed
1189 // TODO: maybe we should do more?
1190 log.error("Walk the plank, matey...");
1191 future = null;
1192 batchService.removeIntentOperations(ops);
1193 }
1194 }
1195
1196 // TODO: better naming
1197 private class IntentBatchProcessFutures extends IntentBatchApplyFirst {
1198
1199 IntentBatchProcessFutures(IntentOperations operations, List<CompletedIntentUpdate> intentUpdates,
1200 long endTime, int installAttempt, Future<CompletedBatchOperation> future) {
1201 super(operations, intentUpdates, endTime, installAttempt, future);
1202 }
1203
1204 @Override
1205 public void run() {
1206 try {
1207 // - peek if current FlowRuleBatch is complete
1208 // -- If complete OK:
1209 // step each IntentUpdate forward
1210 // If phase left: generate next FlowRuleBatch
1211 // If no more phase: write parking states
1212 // -- If complete FAIL:
1213 // Intent which failed: transition Intent to FAILED
1214 // Other Intents: resubmit same FlowRuleBatch for this phase
1215 Future<CompletedBatchOperation> future = processFutures();
1216 if (future == null) {
1217 // there are no outstanding batches; we are done
1218 batchService.removeIntentOperations(ops);
1219 } else if (System.currentTimeMillis() > endTime) {
1220 // - cancel current FlowRuleBatch and resubmit again
1221 retry();
1222 } else {
1223 // we are not done yet, yield the thread by resubmitting ourselves
1224 executor.submit(new IntentBatchProcessFutures(ops, intentUpdates, endTime, installAttempt, future));
1225 }
1226 } catch (Exception e) {
1227 log.error("Error submitting batches:", e);
1228 // FIXME incomplete Intents should be cleaned up
1229 // (transition to FAILED, etc.)
1230 abandonShip();
1231 }
1232 }
1233
1234 /**
1235 * Iterate through the pending futures, and remove them when they have completed.
1236 */
1237 private Future<CompletedBatchOperation> processFutures() {
1238 try {
1239 CompletedBatchOperation completed = future.get(100, TimeUnit.NANOSECONDS);
1240 updateBatches(completed);
1241 return applyNextBatch(intentUpdates);
1242 } catch (TimeoutException | InterruptedException te) {
1243 log.trace("Installation of intents are still pending: {}", ops);
1244 return future;
1245 } catch (ExecutionException e) {
1246 log.warn("Execution of batch failed: {}", ops, e);
1247 abandonShip();
1248 return future;
1249 }
1250 }
1251
Ray Milkey93508c22014-12-02 11:35:56 -08001252 private void updateBatches(CompletedBatchOperation completed) {
1253 if (completed.isSuccess()) {
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001254 for (CompletedIntentUpdate update : intentUpdates) {
Ray Milkey93508c22014-12-02 11:35:56 -08001255 update.batchSuccess();
1256 }
Brian O'Connorfa81eae2014-10-30 13:20:05 -07001257 } else {
Brian O'Connor427a1762014-11-19 18:40:32 -08001258 // entire batch has been reverted...
Ray Milkey93508c22014-12-02 11:35:56 -08001259 log.debug("Failed items: {}", completed.failedItems());
1260 log.debug("Failed ids: {}", completed.failedIds());
Brian O'Connor427a1762014-11-19 18:40:32 -08001261
1262 for (Long id : completed.failedIds()) {
1263 IntentId targetId = IntentId.valueOf(id);
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001264 for (CompletedIntentUpdate update : intentUpdates) {
1265 for (Intent intent : update.allInstallables()) {
Brian O'Connor427a1762014-11-19 18:40:32 -08001266 if (intent.id().equals(targetId)) {
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -08001267 update.batchFailed();
Brian O'Connor427a1762014-11-19 18:40:32 -08001268 break;
1269 }
1270 }
1271 }
1272 // don't increment the non-failed items, as they have been reverted.
1273 }
1274 }
Brian O'Connorfa81eae2014-10-30 13:20:05 -07001275 }
1276
Brian O'Connor427a1762014-11-19 18:40:32 -08001277 private void retry() {
Yuta HIGUCHI82e53262014-11-27 10:28:51 -08001278 log.debug("Execution timed out, retrying.");
Brian O'Connor427a1762014-11-19 18:40:32 -08001279 if (future.cancel(true)) { // cancel success; batch is reverted
1280 // reset the timer
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001281 long timeLimit = calculateTimeoutLimit();
1282 int attempts = installAttempt + 1;
1283 if (attempts == MAX_ATTEMPTS) {
Brian O'Connor427a1762014-11-19 18:40:32 -08001284 log.warn("Install request timed out: {}", ops);
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001285 for (CompletedIntentUpdate update : intentUpdates) {
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -08001286 update.batchFailed();
Brian O'Connor427a1762014-11-19 18:40:32 -08001287 }
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001288 } else if (attempts > MAX_ATTEMPTS) {
Ray Milkey93508c22014-12-02 11:35:56 -08001289 abandonShip();
1290 return;
Brian O'Connor427a1762014-11-19 18:40:32 -08001291 } // else just resubmit the work
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001292 Future<CompletedBatchOperation> future = applyNextBatch(intentUpdates);
1293 executor.submit(new IntentBatchProcessFutures(ops, intentUpdates, timeLimit, attempts, future));
Brian O'Connor427a1762014-11-19 18:40:32 -08001294 } else {
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -08001295 log.error("Cancelling FlowRuleBatch failed.");
Brian O'Connor427a1762014-11-19 18:40:32 -08001296 // FIXME
1297 // cancel failed... batch is broken; shouldn't happen!
1298 // we could manually reverse everything
1299 // ... or just core dump and send email to Ali
Ray Milkey93508c22014-12-02 11:35:56 -08001300 abandonShip();
Brian O'Connor427a1762014-11-19 18:40:32 -08001301 }
1302 }
Brian O'Connorcb900f42014-10-07 21:55:33 -07001303 }
Brian O'Connorfa81eae2014-10-30 13:20:05 -07001304
1305 private class InternalBatchDelegate implements IntentBatchDelegate {
1306 @Override
1307 public void execute(IntentOperations operations) {
Yuta HIGUCHIfe4367a2014-11-24 19:19:09 -08001308 log.info("Execute {} operation(s).", operations.operations().size());
1309 log.debug("Execute operations: {}", operations.operations());
Brian O'Connorfa81eae2014-10-30 13:20:05 -07001310 //FIXME: perhaps we want to track this task so that we can cancel it.
Sho SHIMIZUadf8c482014-12-12 18:23:29 -08001311 executor.execute(new IntentBatchPreprocess(operations));
Brian O'Connorfa81eae2014-10-30 13:20:05 -07001312 }
1313
1314 @Override
1315 public void cancel(IntentOperations operations) {
1316 //FIXME: implement this
1317 log.warn("NOT IMPLEMENTED -- Cancel operations: {}", operations);
1318 }
1319 }
Brian O'Connor66630c82014-10-02 21:08:19 -07001320}