blob: 08ce4762ecdbeb2d94022f82680c3ee2849640a6 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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
Sho SHIMIZUe0981722016-01-14 16:02:48 -080018import org.onlab.util.Tools;
Sho SHIMIZUd5bf1062016-02-25 10:26:02 -080019import org.onosproject.cfg.ComponentConfigService;
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.core.CoreService;
21import org.onosproject.core.IdGenerator;
Sho SHIMIZU98c0a392016-01-14 18:40:53 -080022import org.onosproject.event.AbstractListenerManager;
helenyrwu2a674902016-07-20 09:48:04 -070023import org.onosproject.net.DeviceId;
Andreas Papazois05548962016-11-23 11:36:55 +020024import org.onosproject.net.config.NetworkConfigService;
Andreas Papazoisf00087c2016-11-23 11:36:55 +020025import org.onosproject.net.domain.DomainIntentService;
Brian O'Connorabafb502014-12-02 22:26:20 -080026import org.onosproject.net.flow.FlowRuleService;
Thomas Vachuskaf6ec97b2016-02-22 10:59:23 -080027import org.onosproject.net.flowobjective.FlowObjectiveService;
helenyrwu2a674902016-07-20 09:48:04 -070028import org.onosproject.net.group.GroupKey;
29import org.onosproject.net.group.GroupService;
Brian O'Connorabafb502014-12-02 22:26:20 -080030import org.onosproject.net.intent.Intent;
31import org.onosproject.net.intent.IntentBatchDelegate;
Brian O'Connorabafb502014-12-02 22:26:20 -080032import org.onosproject.net.intent.IntentCompiler;
Brian O'Connorcff03322015-02-03 15:28:59 -080033import org.onosproject.net.intent.IntentData;
Brian O'Connorabafb502014-12-02 22:26:20 -080034import org.onosproject.net.intent.IntentEvent;
Brian O'Connorabafb502014-12-02 22:26:20 -080035import org.onosproject.net.intent.IntentExtensionService;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070036import org.onosproject.net.intent.IntentInstallCoordinator;
Yi Tsengc927a062017-05-02 15:02:37 -070037import org.onosproject.net.intent.IntentInstaller;
Brian O'Connorabafb502014-12-02 22:26:20 -080038import org.onosproject.net.intent.IntentListener;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070039import org.onosproject.net.intent.IntentOperationContext;
Brian O'Connorabafb502014-12-02 22:26:20 -080040import org.onosproject.net.intent.IntentService;
41import org.onosproject.net.intent.IntentState;
42import org.onosproject.net.intent.IntentStore;
Brian O'Connorabafb502014-12-02 22:26:20 -080043import org.onosproject.net.intent.IntentStoreDelegate;
Ray Milkeyf9af43c2015-02-09 16:45:48 -080044import org.onosproject.net.intent.Key;
Yi Tseng24d9be72017-05-12 11:28:13 -070045import org.onosproject.net.intent.ObjectiveTrackerService;
helenyrwu2a674902016-07-20 09:48:04 -070046import org.onosproject.net.intent.PointToPointIntent;
Yi Tseng24d9be72017-05-12 11:28:13 -070047import org.onosproject.net.intent.TopologyChangeDelegate;
helenyrwu2a674902016-07-20 09:48:04 -070048import org.onosproject.net.intent.impl.compiler.PointToPointIntentCompiler;
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080049import org.onosproject.net.intent.impl.phase.FinalIntentProcessPhase;
Sho SHIMIZUce49b602015-02-23 19:15:49 -080050import org.onosproject.net.intent.impl.phase.IntentProcessPhase;
Brian O'Connorc590ebb2016-12-08 18:16:41 -080051import org.onosproject.net.intent.impl.phase.Skipped;
Luca Pretede10c782017-01-05 17:23:08 -080052import org.onosproject.net.resource.ResourceConsumer;
Sho SHIMIZUe18cb122016-02-22 21:04:56 -080053import org.onosproject.net.resource.ResourceService;
Luca Pretede10c782017-01-05 17:23:08 -080054import org.osgi.service.component.ComponentContext;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070055import org.osgi.service.component.annotations.Activate;
56import org.osgi.service.component.annotations.Component;
57import org.osgi.service.component.annotations.Deactivate;
58import org.osgi.service.component.annotations.Modified;
59import org.osgi.service.component.annotations.Reference;
60import org.osgi.service.component.annotations.ReferenceCardinality;
Brian O'Connor66630c82014-10-02 21:08:19 -070061import org.slf4j.Logger;
62
Brian O'Connorf0c5a052015-04-27 00:34:53 -070063import java.util.Collection;
64import java.util.EnumSet;
65import java.util.List;
66import java.util.Map;
Sho SHIMIZUab541a52016-01-13 23:29:32 -080067import java.util.Objects;
Brian O'Connorf0c5a052015-04-27 00:34:53 -070068import java.util.Optional;
Sho SHIMIZUad8ab272016-01-13 22:08:58 -080069import java.util.concurrent.CompletableFuture;
Brian O'Connorf0c5a052015-04-27 00:34:53 -070070import java.util.concurrent.ExecutorService;
Brian O'Connorf0c5a052015-04-27 00:34:53 -070071import java.util.stream.Collectors;
Brian O'Connorfa81eae2014-10-30 13:20:05 -070072
Brian O'Connorfa81eae2014-10-30 13:20:05 -070073import static com.google.common.base.Preconditions.checkNotNull;
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -080074import static com.google.common.base.Strings.isNullOrEmpty;
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080075import static java.util.concurrent.Executors.newFixedThreadPool;
Brian O'Connordb15b042015-02-04 14:59:28 -080076import static java.util.concurrent.Executors.newSingleThreadExecutor;
Brian O'Connorbdc7f002015-02-18 20:49:41 -080077import static org.onlab.util.Tools.groupedThreads;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070078import static org.onosproject.net.intent.IntentState.FAILED;
79import static org.onosproject.net.intent.IntentState.INSTALL_REQ;
80import static org.onosproject.net.intent.IntentState.WITHDRAWING;
81import static org.onosproject.net.intent.IntentState.WITHDRAWN;
82import static org.onosproject.net.intent.IntentState.WITHDRAW_REQ;
Jonathan Hart96c5a4a2015-07-31 14:23:33 -070083import static org.onosproject.net.intent.constraint.PartialFailureConstraint.intentAllowsPartialFailure;
Sho SHIMIZUce49b602015-02-23 19:15:49 -080084import static org.onosproject.net.intent.impl.phase.IntentProcessPhase.newInitialPhase;
Changhoon Yoon541ef712015-05-23 17:18:34 +090085import static org.onosproject.security.AppGuard.checkPermission;
Sho SHIMIZU98c0a392016-01-14 18:40:53 -080086import static org.onosproject.security.AppPermission.Type.INTENT_READ;
87import static org.onosproject.security.AppPermission.Type.INTENT_WRITE;
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070088import static org.slf4j.LoggerFactory.getLogger;
Changhoon Yoonb856b812015-08-10 03:47:19 +090089
Brian O'Connor66630c82014-10-02 21:08:19 -070090/**
Brian O'Connorce2d8b52015-07-29 16:24:13 -070091 * An implementation of intent service.
Brian O'Connor66630c82014-10-02 21:08:19 -070092 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070093@Component(immediate = true, service = { IntentService.class, IntentExtensionService.class, IntentInstallCoordinator.class })
Brian O'Connor66630c82014-10-02 21:08:19 -070094public class IntentManager
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070095 extends AbstractListenerManager<IntentEvent, IntentListener>
Yi Tsengc927a062017-05-02 15:02:37 -070096 implements IntentService, IntentExtensionService, IntentInstallCoordinator {
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070097
Sho SHIMIZU8b5051d2014-11-05 11:24:13 -080098 private static final Logger log = getLogger(IntentManager.class);
Brian O'Connor66630c82014-10-02 21:08:19 -070099
Sho SHIMIZU17c09da2016-03-31 12:54:17 -0700100 private static final String INTENT_NULL = "Intent cannot be null";
101 private static final String INTENT_ID_NULL = "Intent key cannot be null";
Brian O'Connor66630c82014-10-02 21:08:19 -0700102
Brian O'Connor7a71d5d2014-12-02 00:12:27 -0800103 private static final EnumSet<IntentState> RECOMPILE
104 = EnumSet.of(INSTALL_REQ, FAILED, WITHDRAW_REQ);
Jonathan Hart96c5a4a2015-07-31 14:23:33 -0700105 private static final EnumSet<IntentState> WITHDRAW
106 = EnumSet.of(WITHDRAW_REQ, WITHDRAWING, WITHDRAWN);
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800107
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800108 private static final boolean DEFAULT_SKIP_RELEASE_RESOURCES_ON_WITHDRAWAL = false;
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700109 //@Property(name = "skipReleaseResourcesOnWithdrawal",
110 // boolValue = DEFAULT_SKIP_RELEASE_RESOURCES_ON_WITHDRAWAL,
111 // label = "Indicates whether skipping resource releases on withdrawal is enabled or not")
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800112 private boolean skipReleaseResourcesOnWithdrawal = DEFAULT_SKIP_RELEASE_RESOURCES_ON_WITHDRAWAL;
Brian O'Connor7a71d5d2014-12-02 00:12:27 -0800113
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800114 private static final int DEFAULT_NUM_THREADS = 12;
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700115 //@Property(name = "numThreads",
116 // intValue = DEFAULT_NUM_THREADS,
117 // label = "Number of worker threads")
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800118 private int numThreads = DEFAULT_NUM_THREADS;
119
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700120 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Brian O'Connor520c0522014-11-23 23:50:47 -0800121 protected CoreService coreService;
Brian O'Connor66630c82014-10-02 21:08:19 -0700122
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700123 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Brian O'Connor66630c82014-10-02 21:08:19 -0700124 protected IntentStore store;
125
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700126 @Reference(cardinality = ReferenceCardinality.MANDATORY)
tom85258ee2014-10-07 00:10:02 -0700127 protected ObjectiveTrackerService trackerService;
tom95329eb2014-10-06 08:40:06 -0700128
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700129 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Sho SHIMIZU214ac322015-02-23 19:30:15 -0800130 protected FlowRuleService flowRuleService;
Brian O'Connorf2dbde52014-10-10 16:20:24 -0700131
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700132 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thomas Vachuskaf6ec97b2016-02-22 10:59:23 -0800133 protected FlowObjectiveService flowObjectiveService;
134
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700135 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Andreas Papazoisf00087c2016-11-23 11:36:55 +0200136 protected DomainIntentService domainIntentService;
137
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700138 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Naoki Shiotabbc7ead2016-01-20 14:10:38 -0800139 protected ResourceService resourceService;
140
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700141 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Sho SHIMIZUd5bf1062016-02-25 10:26:02 -0800142 protected ComponentConfigService configService;
143
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700144 @Reference(cardinality = ReferenceCardinality.MANDATORY)
helenyrwu2a674902016-07-20 09:48:04 -0700145 protected GroupService groupService;
146
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700147 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Andreas Papazois05548962016-11-23 11:36:55 +0200148 private NetworkConfigService networkConfigService;
149
Brian O'Connordb15b042015-02-04 14:59:28 -0800150 private ExecutorService batchExecutor;
151 private ExecutorService workerExecutor;
Brian O'Connor520c0522014-11-23 23:50:47 -0800152
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800153 private final CompilerRegistry compilerRegistry = new CompilerRegistry();
Yi Tsengc927a062017-05-02 15:02:37 -0700154 private final InstallerRegistry installerRegistry = new InstallerRegistry();
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800155 private final InternalIntentProcessor processor = new InternalIntentProcessor();
Brian O'Connor520c0522014-11-23 23:50:47 -0800156 private final IntentStoreDelegate delegate = new InternalStoreDelegate();
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800157 private final IntentStoreDelegate testOnlyDelegate = new TestOnlyIntentStoreDelegate();
Brian O'Connor520c0522014-11-23 23:50:47 -0800158 private final TopologyChangeDelegate topoDelegate = new InternalTopoChangeDelegate();
159 private final IntentBatchDelegate batchDelegate = new InternalBatchDelegate();
Yi Tsengc927a062017-05-02 15:02:37 -0700160 private InstallCoordinator installCoordinator;
Brian O'Connor520c0522014-11-23 23:50:47 -0800161 private IdGenerator idGenerator;
162
Brian O'Connorb499b352015-02-03 16:46:15 -0800163 private final IntentAccumulator accumulator = new IntentAccumulator(batchDelegate);
Brian O'Connorcff03322015-02-03 15:28:59 -0800164
Brian O'Connor66630c82014-10-02 21:08:19 -0700165 @Activate
166 public void activate() {
Sho SHIMIZUd5bf1062016-02-25 10:26:02 -0800167 configService.registerProperties(getClass());
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800168 if (skipReleaseResourcesOnWithdrawal) {
169 store.setDelegate(testOnlyDelegate);
170 } else {
171 store.setDelegate(delegate);
172 }
tom95329eb2014-10-06 08:40:06 -0700173 trackerService.setDelegate(topoDelegate);
Brian O'Connor66630c82014-10-02 21:08:19 -0700174 eventDispatcher.addSink(IntentEvent.class, listenerRegistry);
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700175 batchExecutor = newSingleThreadExecutor(groupedThreads("onos/intent", "batch", log));
176 workerExecutor = newFixedThreadPool(numThreads, groupedThreads("onos/intent", "worker-%d", log));
Brian O'Connor520c0522014-11-23 23:50:47 -0800177 idGenerator = coreService.getIdGenerator("intent-ids");
Thomas Vachuska23235962017-02-03 11:44:15 -0800178 Intent.unbindIdGenerator(idGenerator);
Brian O'Connor520c0522014-11-23 23:50:47 -0800179 Intent.bindIdGenerator(idGenerator);
Yi Tsengc927a062017-05-02 15:02:37 -0700180 installCoordinator = new InstallCoordinator(installerRegistry, store);
Brian O'Connor66630c82014-10-02 21:08:19 -0700181 log.info("Started");
182 }
183
184 @Deactivate
185 public void deactivate() {
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800186 if (skipReleaseResourcesOnWithdrawal) {
187 store.unsetDelegate(testOnlyDelegate);
188 } else {
189 store.unsetDelegate(delegate);
190 }
Sho SHIMIZUd5bf1062016-02-25 10:26:02 -0800191 configService.unregisterProperties(getClass(), false);
tom95329eb2014-10-06 08:40:06 -0700192 trackerService.unsetDelegate(topoDelegate);
Brian O'Connor66630c82014-10-02 21:08:19 -0700193 eventDispatcher.removeSink(IntentEvent.class);
Brian O'Connordb15b042015-02-04 14:59:28 -0800194 batchExecutor.shutdown();
Brian O'Connor3c58e962015-04-28 23:21:51 -0700195 workerExecutor.shutdown();
Brian O'Connor520c0522014-11-23 23:50:47 -0800196 Intent.unbindIdGenerator(idGenerator);
Brian O'Connor66630c82014-10-02 21:08:19 -0700197 log.info("Stopped");
198 }
199
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800200 @Modified
201 public void modified(ComponentContext context) {
202 if (context == null) {
203 skipReleaseResourcesOnWithdrawal = DEFAULT_SKIP_RELEASE_RESOURCES_ON_WITHDRAWAL;
204 logConfig("Default config");
205 return;
206 }
207
208 String s = Tools.get(context.getProperties(), "skipReleaseResourcesOnWithdrawal");
209 boolean newTestEnabled = isNullOrEmpty(s) ? skipReleaseResourcesOnWithdrawal : Boolean.parseBoolean(s.trim());
210 if (skipReleaseResourcesOnWithdrawal && !newTestEnabled) {
211 store.unsetDelegate(testOnlyDelegate);
212 store.setDelegate(delegate);
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800213 skipReleaseResourcesOnWithdrawal = false;
214 logConfig("Reconfigured skip release resources on withdrawal");
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800215 } else if (!skipReleaseResourcesOnWithdrawal && newTestEnabled) {
216 store.unsetDelegate(delegate);
217 store.setDelegate(testOnlyDelegate);
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800218 skipReleaseResourcesOnWithdrawal = true;
219 logConfig("Reconfigured skip release resources on withdrawal");
220 }
221
222 s = Tools.get(context.getProperties(), "numThreads");
223 int newNumThreads = isNullOrEmpty(s) ? numThreads : Integer.parseInt(s);
224 if (newNumThreads != numThreads) {
225 numThreads = newNumThreads;
226 ExecutorService oldWorkerExecutor = workerExecutor;
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -0800227 workerExecutor = newFixedThreadPool(numThreads, groupedThreads("onos/intent", "worker-%d", log));
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800228 if (oldWorkerExecutor != null) {
229 oldWorkerExecutor.shutdown();
230 }
231 logConfig("Reconfigured number of worker threads");
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800232 }
233 }
234
235 private void logConfig(String prefix) {
236 log.info("{} with skipReleaseResourcesOnWithdrawal = {}", prefix, skipReleaseResourcesOnWithdrawal);
237 }
238
Brian O'Connor66630c82014-10-02 21:08:19 -0700239 @Override
240 public void submit(Intent intent) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900241 checkPermission(INTENT_WRITE);
Brian O'Connor66630c82014-10-02 21:08:19 -0700242 checkNotNull(intent, INTENT_NULL);
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700243 IntentData data = IntentData.submit(intent);
Brian O'Connorcff03322015-02-03 15:28:59 -0800244 store.addPending(data);
Brian O'Connor66630c82014-10-02 21:08:19 -0700245 }
246
247 @Override
248 public void withdraw(Intent intent) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900249 checkPermission(INTENT_WRITE);
Brian O'Connor66630c82014-10-02 21:08:19 -0700250 checkNotNull(intent, INTENT_NULL);
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700251 IntentData data = IntentData.withdraw(intent);
Brian O'Connorcff03322015-02-03 15:28:59 -0800252 store.addPending(data);
Brian O'Connor66630c82014-10-02 21:08:19 -0700253 }
254
Brian O'Connor66630c82014-10-02 21:08:19 -0700255 @Override
Ray Milkey8c6d00e2015-03-13 14:14:34 -0700256 public void purge(Intent intent) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900257 checkPermission(INTENT_WRITE);
Ray Milkey8c6d00e2015-03-13 14:14:34 -0700258 checkNotNull(intent, INTENT_NULL);
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700259 IntentData data = IntentData.purge(intent);
Ray Milkey8c6d00e2015-03-13 14:14:34 -0700260 store.addPending(data);
helenyrwu2a674902016-07-20 09:48:04 -0700261
262 // remove associated group if there is one
263 if (intent instanceof PointToPointIntent) {
264 PointToPointIntent pointIntent = (PointToPointIntent) intent;
Ray Milkeya2cf3a12018-02-15 16:13:56 -0800265 DeviceId deviceId = pointIntent.filteredIngressPoint().connectPoint().deviceId();
helenyrwu2a674902016-07-20 09:48:04 -0700266 GroupKey groupKey = PointToPointIntentCompiler.makeGroupKey(intent.id());
267 groupService.removeGroup(deviceId, groupKey,
268 intent.appId());
269 }
Ray Milkey8c6d00e2015-03-13 14:14:34 -0700270 }
271
272 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800273 public Intent getIntent(Key key) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900274 checkPermission(INTENT_READ);
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800275 return store.getIntent(key);
276 }
277
278 @Override
Brian O'Connor66630c82014-10-02 21:08:19 -0700279 public Iterable<Intent> getIntents() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900280 checkPermission(INTENT_READ);
Brian O'Connor66630c82014-10-02 21:08:19 -0700281 return store.getIntents();
282 }
283
284 @Override
Brian O'Connor38224302016-08-02 22:03:01 -0700285 public void addPending(IntentData intentData) {
286 checkPermission(INTENT_WRITE);
287 checkNotNull(intentData, INTENT_NULL);
288 //TODO we might consider further checking / assertions
289 store.addPending(intentData);
290 }
291
292 @Override
Thomas Vachuskac46af202015-06-03 16:43:27 -0700293 public Iterable<IntentData> getIntentData() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900294 checkPermission(INTENT_READ);
Thomas Vachuskac46af202015-06-03 16:43:27 -0700295 return store.getIntentData(false, 0);
296 }
297
298 @Override
Brian O'Connor66630c82014-10-02 21:08:19 -0700299 public long getIntentCount() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900300 checkPermission(INTENT_READ);
Brian O'Connor66630c82014-10-02 21:08:19 -0700301 return store.getIntentCount();
302 }
303
304 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800305 public IntentState getIntentState(Key intentKey) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900306 checkPermission(INTENT_READ);
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800307 checkNotNull(intentKey, INTENT_ID_NULL);
308 return store.getIntentState(intentKey);
Brian O'Connor66630c82014-10-02 21:08:19 -0700309 }
310
311 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800312 public List<Intent> getInstallableIntents(Key intentKey) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900313 checkPermission(INTENT_READ);
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800314 checkNotNull(intentKey, INTENT_ID_NULL);
315 return store.getInstallableIntents(intentKey);
Thomas Vachuska10d4abc2014-10-21 12:47:26 -0700316 }
317
318 @Override
Brian O'Connorbe28a872015-02-19 21:44:37 -0800319 public boolean isLocal(Key intentKey) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900320 checkPermission(INTENT_READ);
Brian O'Connorbe28a872015-02-19 21:44:37 -0800321 return store.isMaster(intentKey);
322 }
323
324 @Override
Brian O'Connor66630c82014-10-02 21:08:19 -0700325 public <T extends Intent> void registerCompiler(Class<T> cls, IntentCompiler<T> compiler) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900326 checkPermission(INTENT_WRITE);
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800327 compilerRegistry.registerCompiler(cls, compiler);
Brian O'Connor66630c82014-10-02 21:08:19 -0700328 }
329
330 @Override
331 public <T extends Intent> void unregisterCompiler(Class<T> cls) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900332 checkPermission(INTENT_WRITE);
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800333 compilerRegistry.unregisterCompiler(cls);
Brian O'Connor66630c82014-10-02 21:08:19 -0700334 }
335
336 @Override
337 public Map<Class<? extends Intent>, IntentCompiler<? extends Intent>> getCompilers() {
Heedo Kang4a47a302016-02-29 17:40:23 +0900338 checkPermission(INTENT_READ);
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800339 return compilerRegistry.getCompilers();
Brian O'Connor66630c82014-10-02 21:08:19 -0700340 }
341
342 @Override
Yi Tsengc927a062017-05-02 15:02:37 -0700343 public <T extends Intent> void registerInstaller(Class<T> cls, IntentInstaller<T> installer) {
344 installerRegistry.registerInstaller(cls, installer);
345 }
346
347 @Override
348 public <T extends Intent> void unregisterInstaller(Class<T> cls) {
349 installerRegistry.unregisterInstaller(cls);
350 }
351
352 @Override
353 public Map<Class<? extends Intent>, IntentInstaller<? extends Intent>> getInstallers() {
354 return installerRegistry.getInstallers();
355 }
356
357 @Override
358 @SuppressWarnings("unchecked")
359 public <T extends Intent> IntentInstaller<T> getInstaller(Class<T> cls) {
360 return (IntentInstaller<T>) installerRegistry.getInstallers().get(cls);
361 }
362
363 @Override
Jonathan Hart34f1e382015-02-24 16:52:23 -0800364 public Iterable<Intent> getPending() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900365 checkPermission(INTENT_READ);
Jonathan Hart34f1e382015-02-24 16:52:23 -0800366 return store.getPending();
367 }
368
Yi Tsengc927a062017-05-02 15:02:37 -0700369 @Override
370 public void intentInstallSuccess(IntentOperationContext context) {
371 installCoordinator.success(context);
372 }
373
374 @Override
375 public void intentInstallFailed(IntentOperationContext context) {
376 installCoordinator.failed(context);
377 }
378
Brian O'Connor66630c82014-10-02 21:08:19 -0700379 // Store delegate to re-post events emitted from the store.
380 private class InternalStoreDelegate implements IntentStoreDelegate {
381 @Override
382 public void notify(IntentEvent event) {
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700383 post(event);
Naoki Shiotabbc7ead2016-01-20 14:10:38 -0800384 switch (event.type()) {
385 case WITHDRAWN:
Luca Pretede10c782017-01-05 17:23:08 -0800386 if (!skipReleaseResourcesOnWithdrawal) {
387 releaseResources(event.subject());
Naoki Shiotabbc7ead2016-01-20 14:10:38 -0800388 }
389 break;
390 default:
391 break;
392 }
Brian O'Connor66630c82014-10-02 21:08:19 -0700393 }
Brian O'Connorea4d7d12015-01-28 16:37:46 -0800394
395 @Override
Brian O'Connorcff03322015-02-03 15:28:59 -0800396 public void process(IntentData data) {
397 accumulator.add(data);
Brian O'Connorea4d7d12015-01-28 16:37:46 -0800398 }
Thomas Vachuskac46af202015-06-03 16:43:27 -0700399
400 @Override
401 public void onUpdate(IntentData intentData) {
402 trackerService.trackIntent(intentData);
403 }
Luca Pretede10c782017-01-05 17:23:08 -0800404
405 private void releaseResources(Intent intent) {
406 // If a resource group is set on the intent, the resource consumer is
407 // set equal to it. Otherwise it's set to the intent key
408 ResourceConsumer resourceConsumer =
409 intent.resourceGroup() != null ? intent.resourceGroup() : intent.key();
410
411 // By default the resource doesn't get released
412 boolean removeResource = false;
413
414 if (intent.resourceGroup() == null) {
415 // If the intent doesn't have a resource group, it means the
416 // resource was registered using the intent key, so it can be
417 // released
418 removeResource = true;
419 } else {
420 // When a resource group is set, we make sure there are no other
421 // intents using the same resource group, before deleting the
422 // related resources.
423 Long remainingIntents =
424 Tools.stream(store.getIntents())
Yi Tseng2ef80142017-02-17 15:56:32 -0800425 .filter(i -> {
426 return i.resourceGroup() != null
427 && i.resourceGroup().equals(intent.resourceGroup());
428 })
Luca Pretede10c782017-01-05 17:23:08 -0800429 .count();
430 if (remainingIntents == 0) {
431 removeResource = true;
432 }
433 }
434
435 if (removeResource) {
436 // Release resources allocated to withdrawn intent
437 if (!resourceService.release(resourceConsumer)) {
438 log.error("Failed to release resources allocated to {}", resourceConsumer);
439 }
440 }
441 }
Brian O'Connor66630c82014-10-02 21:08:19 -0700442 }
443
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800444 // Store delegate enabled only when performing intent throughput tests
445 private class TestOnlyIntentStoreDelegate implements IntentStoreDelegate {
446 @Override
447 public void process(IntentData data) {
448 accumulator.add(data);
449 }
450
451 @Override
452 public void onUpdate(IntentData data) {
453 trackerService.trackIntent(data);
454 }
455
456 @Override
457 public void notify(IntentEvent event) {
458 post(event);
459 }
460 }
461
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800462 private void buildAndSubmitBatches(Iterable<Key> intentKeys,
Brian O'Connor72a034c2014-11-26 18:24:23 -0800463 boolean compileAllFailed) {
Brian O'Connor72a034c2014-11-26 18:24:23 -0800464 // Attempt recompilation of the specified intents first.
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800465 for (Key key : intentKeys) {
Yi Tseng49a2b2e2017-05-11 14:32:16 -0700466 if (!store.isMaster(key)) {
467 continue;
468 }
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800469 Intent intent = store.getIntent(key);
Brian O'Connor72a034c2014-11-26 18:24:23 -0800470 if (intent == null) {
471 continue;
472 }
jaegonkimb914fcb2018-05-20 16:04:06 +0900473 if (store.getPendingData(key) != null) {
474 continue;
475 }
Brian O'Connor03406a42015-02-03 17:28:57 -0800476 submit(intent);
Brian O'Connor72a034c2014-11-26 18:24:23 -0800477 }
478
Jonathan Hart0cca3e82015-09-23 17:54:11 -0700479 if (compileAllFailed) {
480 // If required, compile all currently failed intents.
481 for (Intent intent : getIntents()) {
Yi Tseng49a2b2e2017-05-11 14:32:16 -0700482 if (!store.isMaster(intent.key())) {
483 continue;
484 }
jaegonkimb914fcb2018-05-20 16:04:06 +0900485 if (store.getPendingData(intent.key()) != null) {
486 continue;
487 }
Jonathan Hart0cca3e82015-09-23 17:54:11 -0700488 IntentState state = getIntentState(intent.key());
489 if (RECOMPILE.contains(state) || intentAllowsPartialFailure(intent)) {
490 if (WITHDRAW.contains(state)) {
491 withdraw(intent);
492 } else {
493 submit(intent);
494 }
Brian O'Connor72a034c2014-11-26 18:24:23 -0800495 }
496 }
497 }
Brian O'Connor72a034c2014-11-26 18:24:23 -0800498 }
499
tom95329eb2014-10-06 08:40:06 -0700500 // Topology change delegate
501 private class InternalTopoChangeDelegate implements TopologyChangeDelegate {
502 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800503 public void triggerCompile(Iterable<Key> intentKeys,
tom85258ee2014-10-07 00:10:02 -0700504 boolean compileAllFailed) {
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700505 // TODO figure out who is making excessive calls?
Jon Hall274cecb2017-08-09 12:15:48 -0700506 log.trace("submitting {} + all?:{} for compilation", intentKeys, compileAllFailed);
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800507 buildAndSubmitBatches(intentKeys, compileAllFailed);
tom95329eb2014-10-06 08:40:06 -0700508 }
tom95329eb2014-10-06 08:40:06 -0700509 }
tom85258ee2014-10-07 00:10:02 -0700510
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700511 private class InternalBatchDelegate implements IntentBatchDelegate {
512 @Override
Brian O'Connorb499b352015-02-03 16:46:15 -0800513 public void execute(Collection<IntentData> operations) {
Brian O'Connorab8ef822015-02-17 18:08:54 -0800514 log.debug("Execute {} operation(s).", operations.size());
515 log.trace("Execute operations: {}", operations);
Sho SHIMIZU94b03b12015-04-10 14:53:13 -0700516
517 // batchExecutor is single-threaded, so only one batch is in flight at a time
Sho SHIMIZU489aa9b2016-01-14 17:19:32 -0800518 CompletableFuture.runAsync(() -> {
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800519 // process intent until the phase reaches one of the final phases
520 List<CompletableFuture<IntentData>> futures = operations.stream()
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700521 .map(data -> {
522 log.debug("Start processing of {} {}@{}", data.request(), data.key(), data.version());
523 return data;
524 })
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800525 .map(x -> CompletableFuture.completedFuture(x)
526 .thenApply(IntentManager.this::createInitialPhase)
Sho SHIMIZU4a141852016-01-14 18:55:40 -0800527 .thenApplyAsync(IntentProcessPhase::process, workerExecutor)
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800528 .thenApply(FinalIntentProcessPhase::data)
529 .exceptionally(e -> {
Pier Luigi13b287f2017-01-10 15:07:52 -0800530 // When the future fails, we update the Intent to simulate the failure of
531 // the installation/withdrawal phase and we save in the current map. In
532 // the next round the CleanUp Thread will pick this Intent again.
533 log.warn("Future failed", e);
534 log.warn("Intent {} - state {} - request {}",
535 x.key(), x.state(), x.request());
536 switch (x.state()) {
537 case INSTALL_REQ:
538 case INSTALLING:
539 case WITHDRAW_REQ:
540 case WITHDRAWING:
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700541 // TODO should we swtich based on current
Pier Luigi13b287f2017-01-10 15:07:52 -0800542 IntentData current = store.getIntentData(x.key());
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700543 return IntentData.nextState(current, FAILED);
Pier Luigi13b287f2017-01-10 15:07:52 -0800544 default:
545 return null;
546 }
Brian O'Connorc590ebb2016-12-08 18:16:41 -0800547 }))
548 .collect(Collectors.toList());
Sho SHIMIZU62bbc602016-01-13 16:54:35 -0800549
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800550 // write multiple data to store in order
551 store.batchWrite(Tools.allOf(futures).join().stream()
Thomas Vachuskaf6ec97b2016-02-22 10:59:23 -0800552 .filter(Objects::nonNull)
553 .collect(Collectors.toList()));
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800554 }, batchExecutor).exceptionally(e -> {
555 log.error("Error submitting batches:", e);
556 // FIXME incomplete Intents should be cleaned up
557 // (transition to FAILED, etc.)
558
559 // the batch has failed
560 // TODO: maybe we should do more?
561 log.error("Walk the plank, matey...");
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800562 return null;
563 }).thenRun(accumulator::ready);
564
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700565 }
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700566 }
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800567
Sho SHIMIZUc88b85e2016-01-14 18:45:14 -0800568 private IntentProcessPhase createInitialPhase(IntentData data) {
Brian O'Connorc590ebb2016-12-08 18:16:41 -0800569 IntentData pending = store.getPendingData(data.key());
570 if (pending == null || pending.version().isNewerThan(data.version())) {
571 /*
572 If the pending map is null, then this intent was compiled by a
573 previous batch iteration, so we can skip it.
574 If the pending map has a newer request, it will get compiled as
575 part of the next batch, so we can skip it.
576 */
577 return Skipped.getPhase();
578 }
Sho SHIMIZUc88b85e2016-01-14 18:45:14 -0800579 IntentData current = store.getIntentData(data.key());
580 return newInitialPhase(processor, data, current);
581 }
582
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800583 private class InternalIntentProcessor implements IntentProcessor {
584 @Override
585 public List<Intent> compile(Intent intent, List<Intent> previousInstallables) {
586 return compilerRegistry.compile(intent, previousInstallables);
587 }
588
589 @Override
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700590 public void apply(Optional<IntentData> toUninstall, Optional<IntentData> toInstall) {
Yi Tsengc927a062017-05-02 15:02:37 -0700591 installCoordinator.installIntents(toUninstall, toInstall);
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800592 }
Ray Milkeyfd7931d2015-03-30 13:58:38 -0700593 }
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800594
Brian O'Connor66630c82014-10-02 21:08:19 -0700595}