org.gradle.internal.service.scopes.ExecutionGradleServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.internal.service.scopes;
import org.gradle.api.internal.cache.StringInterner;
import org.gradle.api.internal.changedetection.state.DefaultExecutionHistoryCacheAccess;
import org.gradle.api.problems.Problems;
import org.gradle.cache.CacheBuilder;
import org.gradle.cache.FileLockManager;
import org.gradle.cache.PersistentCache;
import org.gradle.cache.internal.InMemoryCacheDecoratorFactory;
import org.gradle.cache.scopes.BuildScopedCacheBuilderFactory;
import org.gradle.caching.internal.controller.BuildCacheController;
import org.gradle.initialization.BuildCancellationToken;
import org.gradle.internal.enterprise.core.GradleEnterprisePluginManager;
import org.gradle.internal.event.ListenerManager;
import org.gradle.internal.execution.BuildOutputCleanupRegistry;
import org.gradle.internal.execution.ExecutionEngine;
import org.gradle.internal.execution.OutputChangeListener;
import org.gradle.internal.execution.OutputSnapshotter;
import org.gradle.internal.execution.WorkInputListeners;
import org.gradle.internal.execution.history.ExecutionHistoryCacheAccess;
import org.gradle.internal.execution.history.ExecutionHistoryStore;
import org.gradle.internal.execution.history.ImmutableWorkspaceMetadataStore;
import org.gradle.internal.execution.history.OutputFilesRepository;
import org.gradle.internal.execution.history.OutputsCleaner;
import org.gradle.internal.execution.history.OverlappingOutputDetector;
import org.gradle.internal.execution.history.changes.ExecutionStateChangeDetector;
import org.gradle.internal.execution.history.impl.DefaultExecutionHistoryStore;
import org.gradle.internal.execution.history.impl.DefaultOutputFilesRepository;
import org.gradle.internal.execution.impl.DefaultExecutionEngine;
import org.gradle.internal.execution.steps.AssignImmutableWorkspaceStep;
import org.gradle.internal.execution.steps.AssignMutableWorkspaceStep;
import org.gradle.internal.execution.steps.BroadcastChangingOutputsStep;
import org.gradle.internal.execution.steps.BuildCacheStep;
import org.gradle.internal.execution.steps.CancelExecutionStep;
import org.gradle.internal.execution.steps.CaptureIncrementalStateBeforeExecutionStep;
import org.gradle.internal.execution.steps.CaptureNonIncrementalStateBeforeExecutionStep;
import org.gradle.internal.execution.steps.CaptureOutputsAfterExecutionStep;
import org.gradle.internal.execution.steps.ChangingOutputsContext;
import org.gradle.internal.execution.steps.ChoosePipelineStep;
import org.gradle.internal.execution.steps.ExecuteStep;
import org.gradle.internal.execution.steps.ExecuteWorkBuildOperationFiringStep;
import org.gradle.internal.execution.steps.HandleStaleOutputsStep;
import org.gradle.internal.execution.steps.IdentifyStep;
import org.gradle.internal.execution.steps.IdentityCacheStep;
import org.gradle.internal.execution.steps.IdentityContext;
import org.gradle.internal.execution.steps.LoadPreviousExecutionStateStep;
import org.gradle.internal.execution.steps.NeverUpToDateStep;
import org.gradle.internal.execution.steps.NoInputChangesStep;
import org.gradle.internal.execution.steps.OverlappingOutputsFilter;
import org.gradle.internal.execution.steps.PreCreateOutputParentsStep;
import org.gradle.internal.execution.steps.RemovePreviousOutputsStep;
import org.gradle.internal.execution.steps.ResolveCachingStateStep;
import org.gradle.internal.execution.steps.ResolveChangesStep;
import org.gradle.internal.execution.steps.ResolveInputChangesStep;
import org.gradle.internal.execution.steps.Result;
import org.gradle.internal.execution.steps.SkipEmptyIncrementalWorkStep;
import org.gradle.internal.execution.steps.SkipEmptyNonIncrementalWorkStep;
import org.gradle.internal.execution.steps.SkipUpToDateStep;
import org.gradle.internal.execution.steps.Step;
import org.gradle.internal.execution.steps.StoreExecutionStateStep;
import org.gradle.internal.execution.steps.TimeoutStep;
import org.gradle.internal.execution.steps.ValidateStep;
import org.gradle.internal.execution.steps.WorkspaceResult;
import org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsFinishedStep;
import org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsStartedStep;
import org.gradle.internal.execution.timeout.TimeoutHandler;
import org.gradle.internal.file.Deleter;
import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
import org.gradle.internal.id.UniqueId;
import org.gradle.internal.operations.BuildOperationExecutor;
import org.gradle.internal.operations.CurrentBuildOperationRef;
import org.gradle.internal.scopeids.id.BuildInvocationScopeId;
import org.gradle.internal.vfs.FileSystemAccess;
import org.gradle.internal.vfs.VirtualFileSystem;
import org.gradle.util.GradleVersion;
import java.util.Collections;
import java.util.function.Supplier;
import static org.gradle.cache.internal.filelock.LockOptionsBuilder.mode;
import static org.gradle.internal.execution.steps.AfterExecutionOutputFilter.NO_FILTER;
public class ExecutionGradleServices {
ExecutionHistoryCacheAccess createCacheAccess(BuildScopedCacheBuilderFactory cacheBuilderFactory) {
return new DefaultExecutionHistoryCacheAccess(cacheBuilderFactory);
}
ExecutionHistoryStore createExecutionHistoryStore(
ExecutionHistoryCacheAccess executionHistoryCacheAccess,
InMemoryCacheDecoratorFactory inMemoryCacheDecoratorFactory,
StringInterner stringInterner,
ClassLoaderHierarchyHasher classLoaderHasher
) {
return new DefaultExecutionHistoryStore(
executionHistoryCacheAccess,
inMemoryCacheDecoratorFactory,
stringInterner,
classLoaderHasher
);
}
OutputFilesRepository createOutputFilesRepository(BuildScopedCacheBuilderFactory cacheBuilderFactory, InMemoryCacheDecoratorFactory inMemoryCacheDecoratorFactory) {
PersistentCache cacheAccess = cacheBuilderFactory
.createCrossVersionCacheBuilder("buildOutputCleanup")
.withCrossVersionCache(CacheBuilder.LockTarget.DefaultTarget)
.withDisplayName("Build Output Cleanup Cache")
.withLockOptions(mode(FileLockManager.LockMode.OnDemand))
.withProperties(Collections.singletonMap("gradle.version", GradleVersion.current().getVersion()))
.open();
return new DefaultOutputFilesRepository(cacheAccess, inMemoryCacheDecoratorFactory);
}
OutputChangeListener createOutputChangeListener(ListenerManager listenerManager) {
return listenerManager.getBroadcaster(OutputChangeListener.class);
}
public ExecutionEngine createExecutionEngine(
BuildCacheController buildCacheController,
BuildCancellationToken cancellationToken,
BuildInvocationScopeId buildInvocationScopeId,
BuildOperationExecutor buildOperationExecutor,
BuildOutputCleanupRegistry buildOutputCleanupRegistry,
GradleEnterprisePluginManager gradleEnterprisePluginManager,
ClassLoaderHierarchyHasher classLoaderHierarchyHasher,
CurrentBuildOperationRef currentBuildOperationRef,
Deleter deleter,
ExecutionStateChangeDetector changeDetector,
FileSystemAccess fileSystemAccess,
ImmutableWorkspaceMetadataStore immutableWorkspaceMetadataStore,
OutputChangeListener outputChangeListener,
WorkInputListeners workInputListeners, OutputFilesRepository outputFilesRepository,
OutputSnapshotter outputSnapshotter,
OverlappingOutputDetector overlappingOutputDetector,
TimeoutHandler timeoutHandler,
ValidateStep.ValidationWarningRecorder validationWarningRecorder,
VirtualFileSystem virtualFileSystem,
Problems problems
) {
UniqueId buildId = buildInvocationScopeId.getId();
Supplier skipEmptyWorkOutputsCleanerSupplier = () -> new OutputsCleaner(deleter, buildOutputCleanupRegistry::isOutputOwnedByBuild, buildOutputCleanupRegistry::isOutputOwnedByBuild);
// @formatter:off
// CHECKSTYLE:OFF
Step sharedExecutionPipeline =
new PreCreateOutputParentsStep<>(
new TimeoutStep<>(timeoutHandler, currentBuildOperationRef,
new CancelExecutionStep<>(cancellationToken,
new ExecuteStep<>(buildOperationExecutor
))));
Step immutablePipeline =
new AssignImmutableWorkspaceStep<>(deleter, fileSystemAccess, immutableWorkspaceMetadataStore, outputSnapshotter,
new MarkSnapshottingInputsStartedStep<>(
// TODO Consider not supporting skip-when-empty for immutable work entirely
new SkipEmptyNonIncrementalWorkStep(buildId, workInputListeners,
new CaptureNonIncrementalStateBeforeExecutionStep<>(buildOperationExecutor, classLoaderHierarchyHasher,
new ValidateStep<>(virtualFileSystem, validationWarningRecorder,
new ResolveCachingStateStep<>(buildCacheController, gradleEnterprisePluginManager.isPresent(),
new MarkSnapshottingInputsFinishedStep<>(
new NeverUpToDateStep<>(
new BuildCacheStep(buildCacheController, deleter, fileSystemAccess, outputChangeListener,
new CaptureOutputsAfterExecutionStep<>(buildOperationExecutor, buildId, outputSnapshotter, NO_FILTER,
new NoInputChangesStep<>(
new BroadcastChangingOutputsStep<>(outputChangeListener,
sharedExecutionPipeline
))))))))))));
Step mutablePipeline =
new AssignMutableWorkspaceStep<>(
new HandleStaleOutputsStep<>(buildOperationExecutor, buildOutputCleanupRegistry, deleter, outputChangeListener, outputFilesRepository,
new LoadPreviousExecutionStateStep<>(
new MarkSnapshottingInputsStartedStep<>(
new SkipEmptyIncrementalWorkStep(outputChangeListener, workInputListeners, skipEmptyWorkOutputsCleanerSupplier,
new CaptureIncrementalStateBeforeExecutionStep<>(buildOperationExecutor, classLoaderHierarchyHasher, outputSnapshotter, overlappingOutputDetector,
new ValidateStep<>(virtualFileSystem, validationWarningRecorder,
new ResolveCachingStateStep<>(buildCacheController, gradleEnterprisePluginManager.isPresent(),
new MarkSnapshottingInputsFinishedStep<>(
new ResolveChangesStep<>(changeDetector,
new SkipUpToDateStep<>(
new StoreExecutionStateStep<>(
new BuildCacheStep(buildCacheController, deleter, fileSystemAccess, outputChangeListener,
new ResolveInputChangesStep<>(
new CaptureOutputsAfterExecutionStep<>(buildOperationExecutor, buildId, outputSnapshotter, new OverlappingOutputsFilter(),
new BroadcastChangingOutputsStep<>(outputChangeListener,
new RemovePreviousOutputsStep<>(deleter, outputChangeListener,
sharedExecutionPipeline
)))))))))))))))));
return new DefaultExecutionEngine(
new IdentifyStep<>(buildOperationExecutor,
new IdentityCacheStep<>(
new ExecuteWorkBuildOperationFiringStep<>(buildOperationExecutor,
new ChoosePipelineStep<>(
immutablePipeline,
mutablePipeline
)))));
// CHECKSTYLE:ON
// @formatter:on
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy