org.gradle.tooling.internal.provider.LauncherServices 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 2013 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.tooling.internal.provider;
import org.gradle.api.execution.internal.TaskInputsListener;
import org.gradle.initialization.GradleLauncherFactory;
import org.gradle.internal.classpath.CachedClasspathTransformer;
import org.gradle.internal.concurrent.ExecutorFactory;
import org.gradle.internal.concurrent.ParallelismConfigurationManager;
import org.gradle.internal.filewatch.DefaultFileSystemChangeWaiterFactory;
import org.gradle.internal.filewatch.FileSystemChangeWaiterFactory;
import org.gradle.internal.filewatch.FileWatcherFactory;
import org.gradle.internal.invocation.BuildActionRunner;
import org.gradle.internal.logging.LoggingManagerInternal;
import org.gradle.internal.logging.text.StyledTextOutputFactory;
import org.gradle.internal.progress.BuildOperationListenerManager;
import org.gradle.internal.service.ServiceRegistration;
import org.gradle.internal.service.scopes.AbstractPluginServiceRegistry;
import org.gradle.internal.service.scopes.GradleUserHomeScopeServiceRegistry;
import org.gradle.internal.time.Time;
import org.gradle.launcher.exec.BuildExecuter;
import org.gradle.launcher.exec.BuildTreeScopeBuildActionExecuter;
import org.gradle.launcher.exec.ChainingBuildActionRunner;
import org.gradle.launcher.exec.InProcessBuildActionExecuter;
import org.gradle.launcher.exec.RunAsBuildOperationBuildActionRunner;
import org.gradle.tooling.internal.provider.serialization.ClassLoaderCache;
import org.gradle.tooling.internal.provider.serialization.DaemonSidePayloadClassLoaderFactory;
import org.gradle.tooling.internal.provider.serialization.DefaultPayloadClassLoaderRegistry;
import org.gradle.tooling.internal.provider.serialization.ModelClassLoaderFactory;
import org.gradle.tooling.internal.provider.serialization.PayloadClassLoaderFactory;
import org.gradle.tooling.internal.provider.serialization.PayloadSerializer;
import org.gradle.tooling.internal.provider.serialization.WellKnownClassLoaderRegistry;
import java.util.List;
public class LauncherServices extends AbstractPluginServiceRegistry {
@Override
public void registerGlobalServices(ServiceRegistration registration) {
registration.addProvider(new ToolingGlobalScopeServices());
}
@Override
public void registerGradleUserHomeServices(ServiceRegistration registration) {
registration.addProvider(new ToolingBuildSessionScopeServices());
}
static class ToolingGlobalScopeServices {
BuildExecuter createBuildExecuter(List buildActionRunners,
List registrations,
GradleLauncherFactory gradleLauncherFactory,
BuildOperationListenerManager buildOperationListenerManager,
TaskInputsListener inputsListener,
StyledTextOutputFactory styledTextOutputFactory,
ExecutorFactory executorFactory,
LoggingManagerInternal loggingManager,
GradleUserHomeScopeServiceRegistry userHomeServiceRegistry,
FileSystemChangeWaiterFactory fileSystemChangeWaiterFactory,
ParallelismConfigurationManager parallelismConfigurationManager
) {
return new SetupLoggingActionExecuter(
new SessionFailureReportingActionExecuter(
new StartParamsValidatingActionExecuter(
new ParallelismConfigurationBuildActionExecuter(
new GradleThreadBuildActionExecuter(
new ServicesSetupBuildActionExecuter(
new ContinuousBuildActionExecuter(
new BuildTreeScopeBuildActionExecuter(
new InProcessBuildActionExecuter(
new SubscribableBuildActionRunner(
new RunAsBuildOperationBuildActionRunner(
new ValidatingBuildActionRunner(
new ChainingBuildActionRunner(buildActionRunners))),
buildOperationListenerManager,
registrations),
gradleLauncherFactory)),
fileSystemChangeWaiterFactory,
inputsListener,
styledTextOutputFactory,
executorFactory),
userHomeServiceRegistry)),
parallelismConfigurationManager)),
styledTextOutputFactory,
Time.clock()),
loggingManager);
}
FileSystemChangeWaiterFactory createFileSystemChangeWaiterFactory(FileWatcherFactory fileWatcherFactory) {
return new DefaultFileSystemChangeWaiterFactory(fileWatcherFactory);
}
ExecuteBuildActionRunner createExecuteBuildActionRunner() {
return new ExecuteBuildActionRunner();
}
ClassLoaderCache createClassLoaderCache() {
return new ClassLoaderCache();
}
}
static class ToolingBuildSessionScopeServices {
PayloadClassLoaderFactory createClassLoaderFactory(CachedClasspathTransformer cachedClasspathTransformer) {
return new DaemonSidePayloadClassLoaderFactory(
new ModelClassLoaderFactory(),
cachedClasspathTransformer);
}
PayloadSerializer createPayloadSerializer(ClassLoaderCache classLoaderCache, PayloadClassLoaderFactory classLoaderFactory) {
return new PayloadSerializer(
new WellKnownClassLoaderRegistry(
new DefaultPayloadClassLoaderRegistry(
classLoaderCache,
classLoaderFactory))
);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy