blob: aee685e27d11805d05a0bdc71c3fe77403ab88da [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 Milkey86ad7bb2018-09-27 12:32:28 -070093@Component(immediate = true,
94 service = { IntentService.class, IntentExtensionService.class, IntentInstallCoordinator.class })
Brian O'Connor66630c82014-10-02 21:08:19 -070095public class IntentManager
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070096 extends AbstractListenerManager<IntentEvent, IntentListener>
Yi Tsengc927a062017-05-02 15:02:37 -070097 implements IntentService, IntentExtensionService, IntentInstallCoordinator {
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070098
Sho SHIMIZU8b5051d2014-11-05 11:24:13 -080099 private static final Logger log = getLogger(IntentManager.class);
Brian O'Connor66630c82014-10-02 21:08:19 -0700100
Sho SHIMIZU17c09da2016-03-31 12:54:17 -0700101 private static final String INTENT_NULL = "Intent cannot be null";
102 private static final String INTENT_ID_NULL = "Intent key cannot be null";
Brian O'Connor66630c82014-10-02 21:08:19 -0700103
Brian O'Connor7a71d5d2014-12-02 00:12:27 -0800104 private static final EnumSet<IntentState> RECOMPILE
105 = EnumSet.of(INSTALL_REQ, FAILED, WITHDRAW_REQ);
Jonathan Hart96c5a4a2015-07-31 14:23:33 -0700106 private static final EnumSet<IntentState> WITHDRAW
107 = EnumSet.of(WITHDRAW_REQ, WITHDRAWING, WITHDRAWN);
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800108
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800109 private static final boolean DEFAULT_SKIP_RELEASE_RESOURCES_ON_WITHDRAWAL = false;
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700110 //@Property(name = "skipReleaseResourcesOnWithdrawal",
111 // boolValue = DEFAULT_SKIP_RELEASE_RESOURCES_ON_WITHDRAWAL,
112 // label = "Indicates whether skipping resource releases on withdrawal is enabled or not")
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800113 private boolean skipReleaseResourcesOnWithdrawal = DEFAULT_SKIP_RELEASE_RESOURCES_ON_WITHDRAWAL;
Brian O'Connor7a71d5d2014-12-02 00:12:27 -0800114
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800115 private static final int DEFAULT_NUM_THREADS = 12;
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700116 //@Property(name = "numThreads",
117 // intValue = DEFAULT_NUM_THREADS,
118 // label = "Number of worker threads")
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800119 private int numThreads = DEFAULT_NUM_THREADS;
120
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700121 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Brian O'Connor520c0522014-11-23 23:50:47 -0800122 protected CoreService coreService;
Brian O'Connor66630c82014-10-02 21:08:19 -0700123
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700124 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Brian O'Connor66630c82014-10-02 21:08:19 -0700125 protected IntentStore store;
126
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700127 @Reference(cardinality = ReferenceCardinality.MANDATORY)
tom85258ee2014-10-07 00:10:02 -0700128 protected ObjectiveTrackerService trackerService;
tom95329eb2014-10-06 08:40:06 -0700129
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700130 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Sho SHIMIZU214ac322015-02-23 19:30:15 -0800131 protected FlowRuleService flowRuleService;
Brian O'Connorf2dbde52014-10-10 16:20:24 -0700132
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700133 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thomas Vachuskaf6ec97b2016-02-22 10:59:23 -0800134 protected FlowObjectiveService flowObjectiveService;
135
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700136 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Andreas Papazoisf00087c2016-11-23 11:36:55 +0200137 protected DomainIntentService domainIntentService;
138
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700139 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Naoki Shiotabbc7ead2016-01-20 14:10:38 -0800140 protected ResourceService resourceService;
141
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700142 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Sho SHIMIZUd5bf1062016-02-25 10:26:02 -0800143 protected ComponentConfigService configService;
144
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700145 @Reference(cardinality = ReferenceCardinality.MANDATORY)
helenyrwu2a674902016-07-20 09:48:04 -0700146 protected GroupService groupService;
147
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700148 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Andreas Papazois05548962016-11-23 11:36:55 +0200149 private NetworkConfigService networkConfigService;
150
Brian O'Connordb15b042015-02-04 14:59:28 -0800151 private ExecutorService batchExecutor;
152 private ExecutorService workerExecutor;
Brian O'Connor520c0522014-11-23 23:50:47 -0800153
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800154 private final CompilerRegistry compilerRegistry = new CompilerRegistry();
Yi Tsengc927a062017-05-02 15:02:37 -0700155 private final InstallerRegistry installerRegistry = new InstallerRegistry();
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800156 private final InternalIntentProcessor processor = new InternalIntentProcessor();
Brian O'Connor520c0522014-11-23 23:50:47 -0800157 private final IntentStoreDelegate delegate = new InternalStoreDelegate();
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800158 private final IntentStoreDelegate testOnlyDelegate = new TestOnlyIntentStoreDelegate();
Brian O'Connor520c0522014-11-23 23:50:47 -0800159 private final TopologyChangeDelegate topoDelegate = new InternalTopoChangeDelegate();
160 private final IntentBatchDelegate batchDelegate = new InternalBatchDelegate();
Yi Tsengc927a062017-05-02 15:02:37 -0700161 private InstallCoordinator installCoordinator;
Brian O'Connor520c0522014-11-23 23:50:47 -0800162 private IdGenerator idGenerator;
163
Brian O'Connorb499b352015-02-03 16:46:15 -0800164 private final IntentAccumulator accumulator = new IntentAccumulator(batchDelegate);
Brian O'Connorcff03322015-02-03 15:28:59 -0800165
Brian O'Connor66630c82014-10-02 21:08:19 -0700166 @Activate
167 public void activate() {
Sho SHIMIZUd5bf1062016-02-25 10:26:02 -0800168 configService.registerProperties(getClass());
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800169 if (skipReleaseResourcesOnWithdrawal) {
170 store.setDelegate(testOnlyDelegate);
171 } else {
172 store.setDelegate(delegate);
173 }
tom95329eb2014-10-06 08:40:06 -0700174 trackerService.setDelegate(topoDelegate);
Brian O'Connor66630c82014-10-02 21:08:19 -0700175 eventDispatcher.addSink(IntentEvent.class, listenerRegistry);
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700176 batchExecutor = newSingleThreadExecutor(groupedThreads("onos/intent", "batch", log));
177 workerExecutor = newFixedThreadPool(numThreads, groupedThreads("onos/intent", "worker-%d", log));
Brian O'Connor520c0522014-11-23 23:50:47 -0800178 idGenerator = coreService.getIdGenerator("intent-ids");
Thomas Vachuska23235962017-02-03 11:44:15 -0800179 Intent.unbindIdGenerator(idGenerator);
Brian O'Connor520c0522014-11-23 23:50:47 -0800180 Intent.bindIdGenerator(idGenerator);
Yi Tsengc927a062017-05-02 15:02:37 -0700181 installCoordinator = new InstallCoordinator(installerRegistry, store);
Brian O'Connor66630c82014-10-02 21:08:19 -0700182 log.info("Started");
183 }
184
185 @Deactivate
186 public void deactivate() {
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800187 if (skipReleaseResourcesOnWithdrawal) {
188 store.unsetDelegate(testOnlyDelegate);
189 } else {
190 store.unsetDelegate(delegate);
191 }
Sho SHIMIZUd5bf1062016-02-25 10:26:02 -0800192 configService.unregisterProperties(getClass(), false);
tom95329eb2014-10-06 08:40:06 -0700193 trackerService.unsetDelegate(topoDelegate);
Brian O'Connor66630c82014-10-02 21:08:19 -0700194 eventDispatcher.removeSink(IntentEvent.class);
Brian O'Connordb15b042015-02-04 14:59:28 -0800195 batchExecutor.shutdown();
Brian O'Connor3c58e962015-04-28 23:21:51 -0700196 workerExecutor.shutdown();
Brian O'Connor520c0522014-11-23 23:50:47 -0800197 Intent.unbindIdGenerator(idGenerator);
Brian O'Connor66630c82014-10-02 21:08:19 -0700198 log.info("Stopped");
199 }
200
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800201 @Modified
202 public void modified(ComponentContext context) {
203 if (context == null) {
204 skipReleaseResourcesOnWithdrawal = DEFAULT_SKIP_RELEASE_RESOURCES_ON_WITHDRAWAL;
205 logConfig("Default config");
206 return;
207 }
208
209 String s = Tools.get(context.getProperties(), "skipReleaseResourcesOnWithdrawal");
210 boolean newTestEnabled = isNullOrEmpty(s) ? skipReleaseResourcesOnWithdrawal : Boolean.parseBoolean(s.trim());
211 if (skipReleaseResourcesOnWithdrawal && !newTestEnabled) {
212 store.unsetDelegate(testOnlyDelegate);
213 store.setDelegate(delegate);
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800214 skipReleaseResourcesOnWithdrawal = false;
215 logConfig("Reconfigured skip release resources on withdrawal");
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800216 } else if (!skipReleaseResourcesOnWithdrawal && newTestEnabled) {
217 store.unsetDelegate(delegate);
218 store.setDelegate(testOnlyDelegate);
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800219 skipReleaseResourcesOnWithdrawal = true;
220 logConfig("Reconfigured skip release resources on withdrawal");
221 }
222
223 s = Tools.get(context.getProperties(), "numThreads");
224 int newNumThreads = isNullOrEmpty(s) ? numThreads : Integer.parseInt(s);
225 if (newNumThreads != numThreads) {
226 numThreads = newNumThreads;
227 ExecutorService oldWorkerExecutor = workerExecutor;
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -0800228 workerExecutor = newFixedThreadPool(numThreads, groupedThreads("onos/intent", "worker-%d", log));
Thomas Vachuskabdbdd242016-03-01 01:55:55 -0800229 if (oldWorkerExecutor != null) {
230 oldWorkerExecutor.shutdown();
231 }
232 logConfig("Reconfigured number of worker threads");
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800233 }
234 }
235
236 private void logConfig(String prefix) {
237 log.info("{} with skipReleaseResourcesOnWithdrawal = {}", prefix, skipReleaseResourcesOnWithdrawal);
238 }
239
Brian O'Connor66630c82014-10-02 21:08:19 -0700240 @Override
241 public void submit(Intent intent) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900242 checkPermission(INTENT_WRITE);
Brian O'Connor66630c82014-10-02 21:08:19 -0700243 checkNotNull(intent, INTENT_NULL);
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700244 IntentData data = IntentData.submit(intent);
Brian O'Connorcff03322015-02-03 15:28:59 -0800245 store.addPending(data);
Brian O'Connor66630c82014-10-02 21:08:19 -0700246 }
247
248 @Override
249 public void withdraw(Intent intent) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900250 checkPermission(INTENT_WRITE);
Brian O'Connor66630c82014-10-02 21:08:19 -0700251 checkNotNull(intent, INTENT_NULL);
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700252 IntentData data = IntentData.withdraw(intent);
Brian O'Connorcff03322015-02-03 15:28:59 -0800253 store.addPending(data);
Brian O'Connor66630c82014-10-02 21:08:19 -0700254 }
255
Brian O'Connor66630c82014-10-02 21:08:19 -0700256 @Override
Ray Milkey8c6d00e2015-03-13 14:14:34 -0700257 public void purge(Intent intent) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900258 checkPermission(INTENT_WRITE);
Ray Milkey8c6d00e2015-03-13 14:14:34 -0700259 checkNotNull(intent, INTENT_NULL);
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700260 IntentData data = IntentData.purge(intent);
Ray Milkey8c6d00e2015-03-13 14:14:34 -0700261 store.addPending(data);
helenyrwu2a674902016-07-20 09:48:04 -0700262
263 // remove associated group if there is one
264 if (intent instanceof PointToPointIntent) {
265 PointToPointIntent pointIntent = (PointToPointIntent) intent;
Ray Milkeya2cf3a12018-02-15 16:13:56 -0800266 DeviceId deviceId = pointIntent.filteredIngressPoint().connectPoint().deviceId();
helenyrwu2a674902016-07-20 09:48:04 -0700267 GroupKey groupKey = PointToPointIntentCompiler.makeGroupKey(intent.id());
268 groupService.removeGroup(deviceId, groupKey,
269 intent.appId());
270 }
Ray Milkey8c6d00e2015-03-13 14:14:34 -0700271 }
272
273 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800274 public Intent getIntent(Key key) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900275 checkPermission(INTENT_READ);
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800276 return store.getIntent(key);
277 }
278
279 @Override
Brian O'Connor66630c82014-10-02 21:08:19 -0700280 public Iterable<Intent> getIntents() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900281 checkPermission(INTENT_READ);
Brian O'Connor66630c82014-10-02 21:08:19 -0700282 return store.getIntents();
283 }
284
285 @Override
Brian O'Connor38224302016-08-02 22:03:01 -0700286 public void addPending(IntentData intentData) {
287 checkPermission(INTENT_WRITE);
288 checkNotNull(intentData, INTENT_NULL);
289 //TODO we might consider further checking / assertions
290 store.addPending(intentData);
291 }
292
293 @Override
Thomas Vachuskac46af202015-06-03 16:43:27 -0700294 public Iterable<IntentData> getIntentData() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900295 checkPermission(INTENT_READ);
Thomas Vachuskac46af202015-06-03 16:43:27 -0700296 return store.getIntentData(false, 0);
297 }
298
299 @Override
Brian O'Connor66630c82014-10-02 21:08:19 -0700300 public long getIntentCount() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900301 checkPermission(INTENT_READ);
Brian O'Connor66630c82014-10-02 21:08:19 -0700302 return store.getIntentCount();
303 }
304
305 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800306 public IntentState getIntentState(Key intentKey) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900307 checkPermission(INTENT_READ);
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800308 checkNotNull(intentKey, INTENT_ID_NULL);
309 return store.getIntentState(intentKey);
Brian O'Connor66630c82014-10-02 21:08:19 -0700310 }
311
312 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800313 public List<Intent> getInstallableIntents(Key intentKey) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900314 checkPermission(INTENT_READ);
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800315 checkNotNull(intentKey, INTENT_ID_NULL);
316 return store.getInstallableIntents(intentKey);
Thomas Vachuska10d4abc2014-10-21 12:47:26 -0700317 }
318
319 @Override
Brian O'Connorbe28a872015-02-19 21:44:37 -0800320 public boolean isLocal(Key intentKey) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900321 checkPermission(INTENT_READ);
Brian O'Connorbe28a872015-02-19 21:44:37 -0800322 return store.isMaster(intentKey);
323 }
324
325 @Override
Brian O'Connor66630c82014-10-02 21:08:19 -0700326 public <T extends Intent> void registerCompiler(Class<T> cls, IntentCompiler<T> compiler) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900327 checkPermission(INTENT_WRITE);
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800328 compilerRegistry.registerCompiler(cls, compiler);
Brian O'Connor66630c82014-10-02 21:08:19 -0700329 }
330
331 @Override
332 public <T extends Intent> void unregisterCompiler(Class<T> cls) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900333 checkPermission(INTENT_WRITE);
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800334 compilerRegistry.unregisterCompiler(cls);
Brian O'Connor66630c82014-10-02 21:08:19 -0700335 }
336
337 @Override
338 public Map<Class<? extends Intent>, IntentCompiler<? extends Intent>> getCompilers() {
Heedo Kang4a47a302016-02-29 17:40:23 +0900339 checkPermission(INTENT_READ);
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800340 return compilerRegistry.getCompilers();
Brian O'Connor66630c82014-10-02 21:08:19 -0700341 }
342
343 @Override
Yi Tsengc927a062017-05-02 15:02:37 -0700344 public <T extends Intent> void registerInstaller(Class<T> cls, IntentInstaller<T> installer) {
345 installerRegistry.registerInstaller(cls, installer);
346 }
347
348 @Override
349 public <T extends Intent> void unregisterInstaller(Class<T> cls) {
350 installerRegistry.unregisterInstaller(cls);
351 }
352
353 @Override
354 public Map<Class<? extends Intent>, IntentInstaller<? extends Intent>> getInstallers() {
355 return installerRegistry.getInstallers();
356 }
357
358 @Override
359 @SuppressWarnings("unchecked")
360 public <T extends Intent> IntentInstaller<T> getInstaller(Class<T> cls) {
361 return (IntentInstaller<T>) installerRegistry.getInstallers().get(cls);
362 }
363
364 @Override
Jonathan Hart34f1e382015-02-24 16:52:23 -0800365 public Iterable<Intent> getPending() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900366 checkPermission(INTENT_READ);
Jonathan Hart34f1e382015-02-24 16:52:23 -0800367 return store.getPending();
368 }
369
Yi Tsengc927a062017-05-02 15:02:37 -0700370 @Override
371 public void intentInstallSuccess(IntentOperationContext context) {
372 installCoordinator.success(context);
373 }
374
375 @Override
376 public void intentInstallFailed(IntentOperationContext context) {
377 installCoordinator.failed(context);
378 }
379
Brian O'Connor66630c82014-10-02 21:08:19 -0700380 // Store delegate to re-post events emitted from the store.
381 private class InternalStoreDelegate implements IntentStoreDelegate {
382 @Override
383 public void notify(IntentEvent event) {
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700384 post(event);
Naoki Shiotabbc7ead2016-01-20 14:10:38 -0800385 switch (event.type()) {
386 case WITHDRAWN:
Luca Pretede10c782017-01-05 17:23:08 -0800387 if (!skipReleaseResourcesOnWithdrawal) {
388 releaseResources(event.subject());
Naoki Shiotabbc7ead2016-01-20 14:10:38 -0800389 }
390 break;
391 default:
392 break;
393 }
Brian O'Connor66630c82014-10-02 21:08:19 -0700394 }
Brian O'Connorea4d7d12015-01-28 16:37:46 -0800395
396 @Override
Brian O'Connorcff03322015-02-03 15:28:59 -0800397 public void process(IntentData data) {
398 accumulator.add(data);
Brian O'Connorea4d7d12015-01-28 16:37:46 -0800399 }
Thomas Vachuskac46af202015-06-03 16:43:27 -0700400
401 @Override
402 public void onUpdate(IntentData intentData) {
403 trackerService.trackIntent(intentData);
404 }
Luca Pretede10c782017-01-05 17:23:08 -0800405
406 private void releaseResources(Intent intent) {
407 // If a resource group is set on the intent, the resource consumer is
408 // set equal to it. Otherwise it's set to the intent key
409 ResourceConsumer resourceConsumer =
410 intent.resourceGroup() != null ? intent.resourceGroup() : intent.key();
411
412 // By default the resource doesn't get released
413 boolean removeResource = false;
414
415 if (intent.resourceGroup() == null) {
416 // If the intent doesn't have a resource group, it means the
417 // resource was registered using the intent key, so it can be
418 // released
419 removeResource = true;
420 } else {
421 // When a resource group is set, we make sure there are no other
422 // intents using the same resource group, before deleting the
423 // related resources.
424 Long remainingIntents =
425 Tools.stream(store.getIntents())
Yi Tseng2ef80142017-02-17 15:56:32 -0800426 .filter(i -> {
427 return i.resourceGroup() != null
428 && i.resourceGroup().equals(intent.resourceGroup());
429 })
Luca Pretede10c782017-01-05 17:23:08 -0800430 .count();
431 if (remainingIntents == 0) {
432 removeResource = true;
433 }
434 }
435
436 if (removeResource) {
437 // Release resources allocated to withdrawn intent
438 if (!resourceService.release(resourceConsumer)) {
439 log.error("Failed to release resources allocated to {}", resourceConsumer);
440 }
441 }
442 }
Brian O'Connor66630c82014-10-02 21:08:19 -0700443 }
444
Sho SHIMIZU4cee50f2016-02-23 16:24:42 -0800445 // Store delegate enabled only when performing intent throughput tests
446 private class TestOnlyIntentStoreDelegate implements IntentStoreDelegate {
447 @Override
448 public void process(IntentData data) {
449 accumulator.add(data);
450 }
451
452 @Override
453 public void onUpdate(IntentData data) {
454 trackerService.trackIntent(data);
455 }
456
457 @Override
458 public void notify(IntentEvent event) {
459 post(event);
460 }
461 }
462
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800463 private void buildAndSubmitBatches(Iterable<Key> intentKeys,
Brian O'Connor72a034c2014-11-26 18:24:23 -0800464 boolean compileAllFailed) {
Brian O'Connor72a034c2014-11-26 18:24:23 -0800465 // Attempt recompilation of the specified intents first.
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800466 for (Key key : intentKeys) {
Yi Tseng49a2b2e2017-05-11 14:32:16 -0700467 if (!store.isMaster(key)) {
468 continue;
469 }
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800470 Intent intent = store.getIntent(key);
Brian O'Connor72a034c2014-11-26 18:24:23 -0800471 if (intent == null) {
472 continue;
473 }
jaegonkimb914fcb2018-05-20 16:04:06 +0900474 if (store.getPendingData(key) != null) {
475 continue;
476 }
Brian O'Connor03406a42015-02-03 17:28:57 -0800477 submit(intent);
Brian O'Connor72a034c2014-11-26 18:24:23 -0800478 }
479
Jonathan Hart0cca3e82015-09-23 17:54:11 -0700480 if (compileAllFailed) {
481 // If required, compile all currently failed intents.
482 for (Intent intent : getIntents()) {
Yi Tseng49a2b2e2017-05-11 14:32:16 -0700483 if (!store.isMaster(intent.key())) {
484 continue;
485 }
jaegonkimb914fcb2018-05-20 16:04:06 +0900486 if (store.getPendingData(intent.key()) != null) {
487 continue;
488 }
Jonathan Hart0cca3e82015-09-23 17:54:11 -0700489 IntentState state = getIntentState(intent.key());
490 if (RECOMPILE.contains(state) || intentAllowsPartialFailure(intent)) {
491 if (WITHDRAW.contains(state)) {
492 withdraw(intent);
493 } else {
494 submit(intent);
495 }
Brian O'Connor72a034c2014-11-26 18:24:23 -0800496 }
497 }
498 }
Brian O'Connor72a034c2014-11-26 18:24:23 -0800499 }
500
tom95329eb2014-10-06 08:40:06 -0700501 // Topology change delegate
502 private class InternalTopoChangeDelegate implements TopologyChangeDelegate {
503 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800504 public void triggerCompile(Iterable<Key> intentKeys,
tom85258ee2014-10-07 00:10:02 -0700505 boolean compileAllFailed) {
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700506 // TODO figure out who is making excessive calls?
Jon Hall274cecb2017-08-09 12:15:48 -0700507 log.trace("submitting {} + all?:{} for compilation", intentKeys, compileAllFailed);
Ray Milkeyf9af43c2015-02-09 16:45:48 -0800508 buildAndSubmitBatches(intentKeys, compileAllFailed);
tom95329eb2014-10-06 08:40:06 -0700509 }
tom95329eb2014-10-06 08:40:06 -0700510 }
tom85258ee2014-10-07 00:10:02 -0700511
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700512 private class InternalBatchDelegate implements IntentBatchDelegate {
513 @Override
Brian O'Connorb499b352015-02-03 16:46:15 -0800514 public void execute(Collection<IntentData> operations) {
Brian O'Connorab8ef822015-02-17 18:08:54 -0800515 log.debug("Execute {} operation(s).", operations.size());
516 log.trace("Execute operations: {}", operations);
Sho SHIMIZU94b03b12015-04-10 14:53:13 -0700517
518 // batchExecutor is single-threaded, so only one batch is in flight at a time
Sho SHIMIZU489aa9b2016-01-14 17:19:32 -0800519 CompletableFuture.runAsync(() -> {
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800520 // process intent until the phase reaches one of the final phases
521 List<CompletableFuture<IntentData>> futures = operations.stream()
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700522 .map(data -> {
523 log.debug("Start processing of {} {}@{}", data.request(), data.key(), data.version());
524 return data;
525 })
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800526 .map(x -> CompletableFuture.completedFuture(x)
527 .thenApply(IntentManager.this::createInitialPhase)
Sho SHIMIZU4a141852016-01-14 18:55:40 -0800528 .thenApplyAsync(IntentProcessPhase::process, workerExecutor)
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800529 .thenApply(FinalIntentProcessPhase::data)
530 .exceptionally(e -> {
Pier Luigi13b287f2017-01-10 15:07:52 -0800531 // When the future fails, we update the Intent to simulate the failure of
532 // the installation/withdrawal phase and we save in the current map. In
533 // the next round the CleanUp Thread will pick this Intent again.
534 log.warn("Future failed", e);
535 log.warn("Intent {} - state {} - request {}",
536 x.key(), x.state(), x.request());
537 switch (x.state()) {
538 case INSTALL_REQ:
539 case INSTALLING:
540 case WITHDRAW_REQ:
541 case WITHDRAWING:
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700542 // TODO should we swtich based on current
Pier Luigi13b287f2017-01-10 15:07:52 -0800543 IntentData current = store.getIntentData(x.key());
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -0700544 return IntentData.nextState(current, FAILED);
Pier Luigi13b287f2017-01-10 15:07:52 -0800545 default:
546 return null;
547 }
Brian O'Connorc590ebb2016-12-08 18:16:41 -0800548 }))
549 .collect(Collectors.toList());
Sho SHIMIZU62bbc602016-01-13 16:54:35 -0800550
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800551 // write multiple data to store in order
552 store.batchWrite(Tools.allOf(futures).join().stream()
Thomas Vachuskaf6ec97b2016-02-22 10:59:23 -0800553 .filter(Objects::nonNull)
554 .collect(Collectors.toList()));
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800555 }, batchExecutor).exceptionally(e -> {
556 log.error("Error submitting batches:", e);
557 // FIXME incomplete Intents should be cleaned up
558 // (transition to FAILED, etc.)
559
560 // the batch has failed
561 // TODO: maybe we should do more?
562 log.error("Walk the plank, matey...");
Sho SHIMIZU8f2b7772016-01-14 18:17:44 -0800563 return null;
564 }).thenRun(accumulator::ready);
565
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700566 }
Brian O'Connorfa81eae2014-10-30 13:20:05 -0700567 }
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800568
Sho SHIMIZUc88b85e2016-01-14 18:45:14 -0800569 private IntentProcessPhase createInitialPhase(IntentData data) {
Brian O'Connorc590ebb2016-12-08 18:16:41 -0800570 IntentData pending = store.getPendingData(data.key());
571 if (pending == null || pending.version().isNewerThan(data.version())) {
572 /*
573 If the pending map is null, then this intent was compiled by a
574 previous batch iteration, so we can skip it.
575 If the pending map has a newer request, it will get compiled as
576 part of the next batch, so we can skip it.
577 */
578 return Skipped.getPhase();
579 }
Sho SHIMIZUc88b85e2016-01-14 18:45:14 -0800580 IntentData current = store.getIntentData(data.key());
581 return newInitialPhase(processor, data, current);
582 }
583
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800584 private class InternalIntentProcessor implements IntentProcessor {
585 @Override
586 public List<Intent> compile(Intent intent, List<Intent> previousInstallables) {
587 return compilerRegistry.compile(intent, previousInstallables);
588 }
589
590 @Override
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700591 public void apply(Optional<IntentData> toUninstall, Optional<IntentData> toInstall) {
Yi Tsengc927a062017-05-02 15:02:37 -0700592 installCoordinator.installIntents(toUninstall, toInstall);
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800593 }
Ray Milkeyfd7931d2015-03-30 13:58:38 -0700594 }
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -0800595
Brian O'Connor66630c82014-10-02 21:08:19 -0700596}