
org.gradle.tooling.internal.provider.ConnectionScopeServices Maven / Gradle / Ivy
/*
* 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.internal.classloader.ClassLoaderFactory;
import org.gradle.internal.event.ListenerManager;
import org.gradle.internal.logging.events.OutputEventListener;
import org.gradle.internal.logging.services.LoggingServiceRegistry;
import org.gradle.internal.service.ServiceRegistration;
import org.gradle.internal.service.ServiceRegistry;
import org.gradle.internal.service.scopes.GlobalScopeServices;
import org.gradle.launcher.daemon.client.DaemonClientFactory;
import org.gradle.launcher.daemon.client.DaemonClientGlobalServices;
import org.gradle.internal.jvm.inspection.JvmVersionDetector;
import org.gradle.launcher.exec.BuildExecuter;
import org.gradle.tooling.internal.adapter.ProtocolToModelAdapter;
/**
* Shared services for a tooling API provider connection.
*/
public class ConnectionScopeServices {
private final LoggingServiceRegistry loggingServices;
public ConnectionScopeServices(LoggingServiceRegistry loggingServices) {
this.loggingServices = loggingServices;
}
void configure(ServiceRegistration serviceRegistration) {
serviceRegistration.add(LoggingServiceRegistry.class, loggingServices);
serviceRegistration.addProvider(new GlobalScopeServices(true));
serviceRegistration.addProvider(new DaemonClientGlobalServices());
}
ShutdownCoordinator createShutdownCoordinator(ListenerManager listenerManager, DaemonClientFactory daemonClientFactory, OutputEventListener outputEventListener) {
ShutdownCoordinator shutdownCoordinator = new ShutdownCoordinator(daemonClientFactory, outputEventListener);
listenerManager.addListener(shutdownCoordinator);
return shutdownCoordinator;
}
ProviderConnection createProviderConnection(BuildExecuter buildActionExecuter, DaemonClientFactory daemonClientFactory,
ClassLoaderFactory classLoaderFactory, ServiceRegistry serviceRegistry,
JvmVersionDetector jvmVersionDetector,
// This is here to trigger creation of the ShutdownCoordinator. Could do this in a nicer way
ShutdownCoordinator shutdownCoordinator) {
return new ProviderConnection(
serviceRegistry,
loggingServices,
daemonClientFactory,
buildActionExecuter,
new PayloadSerializer(
new ClientSidePayloadClassLoaderRegistry(
new DefaultPayloadClassLoaderRegistry(
new ClassLoaderCache(),
new ClientSidePayloadClassLoaderFactory(
new ModelClassLoaderFactory(
classLoaderFactory))),
new ClasspathInferer())),
jvmVersionDetector
);
}
ProtocolToModelAdapter createProtocolToModelAdapter() {
return new ProtocolToModelAdapter();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy