org.gradle.internal.session.BuildSessionState 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 2020 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.session;
import org.gradle.api.internal.StartParameterInternal;
import org.gradle.initialization.BuildCancellationToken;
import org.gradle.initialization.BuildClientMetaData;
import org.gradle.initialization.BuildEventConsumer;
import org.gradle.initialization.BuildRequestMetaData;
import org.gradle.internal.classpath.ClassPath;
import org.gradle.internal.concurrent.CompositeStoppable;
import org.gradle.internal.service.ServiceRegistry;
import org.gradle.internal.service.ServiceRegistryBuilder;
import org.gradle.internal.service.scopes.GradleUserHomeScopeServiceRegistry;
import java.io.Closeable;
import java.util.function.Function;
/**
* Encapsulates the state for a build session.
*/
public class BuildSessionState implements Closeable {
private final GradleUserHomeScopeServiceRegistry userHomeScopeServiceRegistry;
private final ServiceRegistry userHomeServices;
private final ServiceRegistry sessionScopeServices;
private final DefaultBuildSessionContext context;
public BuildSessionState(GradleUserHomeScopeServiceRegistry userHomeScopeServiceRegistry,
CrossBuildSessionState crossBuildSessionServices,
StartParameterInternal startParameter,
BuildRequestMetaData requestMetaData,
ClassPath injectedPluginClassPath,
BuildCancellationToken buildCancellationToken,
BuildClientMetaData buildClientMetaData,
BuildEventConsumer buildEventConsumer) {
this.userHomeScopeServiceRegistry = userHomeScopeServiceRegistry;
userHomeServices = userHomeScopeServiceRegistry.getServicesFor(startParameter.getGradleUserHomeDir());
sessionScopeServices = ServiceRegistryBuilder.builder()
.displayName("build session services")
.parent(userHomeServices)
.parent(crossBuildSessionServices.getServices())
.provider(new BuildSessionScopeServices(startParameter, requestMetaData, injectedPluginClassPath, buildCancellationToken, buildClientMetaData, buildEventConsumer))
.build();
context = new DefaultBuildSessionContext(sessionScopeServices);
}
public ServiceRegistry getServices() {
return sessionScopeServices;
}
/**
* Runs the given action against the build session state. Should be called once only for a given session instance.
*/
public T run(Function super BuildSessionContext, T> action) {
return action.apply(context);
}
@Override
public void close() {
CompositeStoppable.stoppable(sessionScopeServices, (Closeable) () -> userHomeScopeServiceRegistry.release(userHomeServices)).stop();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy