org.gradle.internal.model.CalculatedValueContainerFactory 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.model;
import org.gradle.api.internal.tasks.NodeExecutionContext;
import org.gradle.internal.Cast;
import org.gradle.internal.Describables;
import org.gradle.internal.DisplayName;
import org.gradle.internal.resources.ProjectLeaseRegistry;
import org.gradle.internal.service.ServiceRegistry;
import org.gradle.internal.service.scopes.Scope;
import org.gradle.internal.service.scopes.ServiceScope;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Function;
import java.util.function.Supplier;
/**
* Factory for {@link CalculatedValueContainer}.
*/
@ServiceScope(Scope.BuildSession.class)
public class CalculatedValueContainerFactory implements CalculatedValueFactory {
private final ProjectLeaseRegistry projectLeaseRegistry;
private final NodeExecutionContext globalContext;
public CalculatedValueContainerFactory(ProjectLeaseRegistry projectLeaseRegistry, ServiceRegistry buildScopeServices) {
this.projectLeaseRegistry = projectLeaseRegistry;
this.globalContext = buildScopeServices::get;
}
/**
* Create a calculated value that may have dependencies or that may need to access mutable model state.
*/
public > CalculatedValueContainer create(DisplayName displayName, S supplier) {
return new CalculatedValueContainer<>(displayName, supplier, projectLeaseRegistry, globalContext);
}
@Override
public CalculatedValueContainer> create(DisplayName displayName, Supplier extends T> supplier) {
return new CalculatedValueContainer<>(displayName, new SupplierBackedCalculator<>(supplier), projectLeaseRegistry, globalContext);
}
@Override
public CalculatedValueContainer> create(DisplayName displayName, T value) {
return new CalculatedValueContainer<>(displayName, value);
}
@Override
public CalculatedValueCache createCache(DisplayName type) {
return new DefaultCalculatedValueCache<>(type, this);
}
private static class SupplierBackedCalculator implements ValueCalculator {
private final Supplier supplier;
public SupplierBackedCalculator(Supplier extends T> supplier) {
this.supplier = Cast.uncheckedCast(supplier);
}
@Override
public T calculateValue(NodeExecutionContext context) {
return supplier.get();
}
}
private static class DefaultCalculatedValueCache implements CalculatedValueCache {
private final DisplayName type;
private final Map> cache = new ConcurrentHashMap<>();
private final CalculatedValueContainerFactory calculatedValueContainerFactory;
public DefaultCalculatedValueCache(DisplayName type, CalculatedValueContainerFactory calculatedValueContainerFactory) {
this.type = type;
this.calculatedValueContainerFactory = calculatedValueContainerFactory;
}
@Override
public V computeIfAbsent(K key, Function factory) {
CalculatedValue value = cache.computeIfAbsent(key, k ->
calculatedValueContainerFactory.create(
Describables.of(k, type),
context -> factory.apply(k)
)
);
// Calculate the value after adding the entry to the map, so that the value
// container can take care of thread synchronization
value.finalizeIfNotAlready();
return value.get();
}
@Override
public void clear() {
cache.clear();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy