org.gradle.api.services.internal.BuildServiceProvider 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.api.services.internal;
import com.google.common.collect.ImmutableList;
import org.gradle.api.artifacts.component.BuildIdentifier;
import org.gradle.api.internal.provider.AbstractMinimalProvider;
import org.gradle.api.logging.LoggingOutput;
import org.gradle.api.services.BuildService;
import org.gradle.api.services.BuildServiceParameters;
import org.gradle.internal.Try;
import org.gradle.internal.instantiation.InstantiationScheme;
import org.gradle.internal.isolated.IsolationScheme;
import org.gradle.internal.isolation.IsolatableFactory;
import org.gradle.internal.service.ServiceLookup;
import org.gradle.internal.service.ServiceRegistry;
import org.gradle.internal.state.Managed;
import javax.annotation.Nullable;
// TODO - complain when used at configuration time, except when opted in to this
public class BuildServiceProvider, P extends BuildServiceParameters> extends AbstractMinimalProvider implements Managed {
private final BuildIdentifier buildIdentifier;
private final String name;
private final Class implementationType;
private final IsolationScheme isolationScheme;
private final InstantiationScheme instantiationScheme;
private final IsolatableFactory isolatableFactory;
private final ServiceRegistry internalServices;
private final P parameters;
private Try instance;
public BuildServiceProvider(BuildIdentifier buildIdentifier, String name, Class implementationType, @Nullable P parameters, IsolationScheme isolationScheme, InstantiationScheme instantiationScheme, IsolatableFactory isolatableFactory, ServiceRegistry internalServices) {
this.buildIdentifier = buildIdentifier;
this.name = name;
this.implementationType = implementationType;
this.parameters = parameters;
this.isolationScheme = isolationScheme;
this.instantiationScheme = instantiationScheme;
this.isolatableFactory = isolatableFactory;
this.internalServices = internalServices;
}
/**
* Returns the identifier for the build that owns this service.
*/
public BuildIdentifier getBuildIdentifier() {
return buildIdentifier;
}
public String getName() {
return name;
}
public Class getImplementationType() {
return implementationType;
}
@Nullable
public P getParameters() {
return parameters;
}
@Nullable
@Override
public Class getType() {
return implementationType;
}
@Override
public boolean calculatePresence(ValueConsumer consumer) {
return true;
}
@Override
public boolean isImmutable() {
return true;
}
@Override
public Object unpackState() {
throw new UnsupportedOperationException("Build services cannot be serialized.");
}
@Override
protected Value extends T> calculateOwnValue(ValueConsumer consumer) {
synchronized (this) {
if (instance == null) {
// TODO - extract some shared infrastructure to take care of instantiation (eg which services are visible, strict vs lenient, decorated or not?)
// TODO - should hold the project lock to do the isolation. Should work the same way as artifact transforms (a work node does the isolation, etc)
P isolatedParameters = isolatableFactory.isolate(parameters).isolate();
// TODO - reuse this in other places
ServiceLookup instantiationServices = isolationScheme.servicesForImplementation(
isolatedParameters,
internalServices,
ImmutableList.of(LoggingOutput.class),
serviceType -> false
);
try {
instance = Try.successful(instantiationScheme.withServices(instantiationServices).instantiator().newInstance(implementationType));
} catch (Exception e) {
instance = Try.failure(new ServiceLifecycleException("Failed to create service '" + name + "'.", e));
}
}
return Value.of(instance.get());
}
}
@Override
public ExecutionTimeValue extends T> calculateExecutionTimeValue() {
return ExecutionTimeValue.changingValue(this);
}
public void maybeStop() {
synchronized (this) {
if (instance != null) {
instance.ifSuccessful(t -> {
if (t instanceof AutoCloseable) {
try {
((AutoCloseable) t).close();
} catch (Exception e) {
throw new ServiceLifecycleException("Failed to stop service '" + name + "'.", e);
}
}
});
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy