org.gradle.api.internal.attributes.DefaultMutableAttributeContainer 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 2016 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.internal.attributes;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;
import org.gradle.api.attributes.Attribute;
import org.gradle.api.attributes.AttributeContainer;
import org.gradle.api.internal.provider.ProviderInternal;
import org.gradle.api.provider.Provider;
import org.gradle.internal.Cast;
import javax.annotation.Nullable;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.TreeMap;
class DefaultMutableAttributeContainer extends AbstractAttributeContainer implements AttributeContainerInternal {
private final ImmutableAttributesFactory immutableAttributesFactory;
private ImmutableAttributes state = ImmutableAttributes.EMPTY;
private Map, Provider>> lazyAttributes = Cast.uncheckedCast(Collections.EMPTY_MAP);
private boolean realizingAttributes = false;
public DefaultMutableAttributeContainer(ImmutableAttributesFactory immutableAttributesFactory) {
this.immutableAttributesFactory = immutableAttributesFactory;
}
@Override
public String toString() {
final Map, Object> sorted = new TreeMap<>(Comparator.comparing(Attribute::getName));
lazyAttributes.keySet().forEach(key -> sorted.put(key, lazyAttributes.get(key).toString()));
state.keySet().forEach(key -> sorted.put(key, state.getAttribute(key)));
return sorted.toString();
}
@Override
public Set> keySet() {
// Need to copy the result since if the user calls getAttribute() while iterating over the returned set,
// realizing a lazy attribute will add to `state` and remove from `lazyAttributes`.
// This avoids a ConcurrentModificationException.
return ImmutableSet.copyOf(Sets.union(state.keySet(), lazyAttributes.keySet()));
}
@Override
public AttributeContainer attribute(Attribute key, T value) {
checkInsertionAllowed(key);
doInsertion(key, value);
return this;
}
private void doInsertion(Attribute key, T value) {
assertAttributeValueIsNotNull(value);
assertAttributeTypeIsValid(value.getClass(), key);
state = immutableAttributesFactory.concat(state, key, value);
removeLazyAttributeIfPresent(key);
}
private void removeLazyAttributeIfPresent(Attribute key) {
if (lazyAttributes.containsKey(key)) {
lazyAttributes.remove(key);
}
}
@Override
public AttributeContainer attributeProvider(Attribute key, Provider extends T> provider) {
checkInsertionAllowed(key);
assertAttributeValueIsNotNull(provider);
// We can only sometimes check the type of the provider ahead of time.
// When realizing this provider and inserting its value into the container, we still
// check the value type is appropriate. see doInsertion
if (provider instanceof ProviderInternal) {
Class valueType = Cast.>uncheckedCast(provider).getType();
if (valueType != null) {
assertAttributeTypeIsValid(valueType, key);
}
}
doInsertionLazy(key, provider);
return this;
}
private void checkInsertionAllowed(Attribute key) {
if (realizingAttributes) {
throw new IllegalStateException("Cannot add new attribute '" + key.getName() + "' while realizing all attributes of the container.");
}
for (Attribute> attribute : keySet()) {
String name = key.getName();
if (attribute.getName().equals(name) && attribute.getType() != key.getType()) {
throw new IllegalArgumentException("Cannot have two attributes with the same name but different types. "
+ "This container already has an attribute named '" + name + "' of type '" + attribute.getType().getName()
+ "' and you are trying to store another one of type '" + key.getType().getName() + "'");
}
}
}
/**
* Checks that the attribute's type matches the given value's type is the expected value type.
*
* @param valueType the value type to check
* @param attribute the attribute containing a type to check against
*/
private void assertAttributeTypeIsValid(Class> valueType, Attribute attribute) {
if (!attribute.getType().isAssignableFrom(valueType)) {
throw new IllegalArgumentException(String.format("Unexpected type for attribute '%s' provided. Expected a value of type %s but found a value of type %s.", attribute.getName(), attribute.getType().getName(), valueType.getName()));
}
}
private void assertAttributeValueIsNotNull(@Nullable Object value) {
if (value == null) {
throw new IllegalArgumentException("Setting null as an attribute value is not allowed");
}
}
@Override
public T getAttribute(Attribute key) {
T attribute = state.getAttribute(key);
if (attribute == null && lazyAttributes.containsKey(key)) {
attribute = realizeLazyAttribute(key);
}
return attribute;
}
@Override
public ImmutableAttributes asImmutable() {
realizeAllLazyAttributes();
return state;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DefaultMutableAttributeContainer that = (DefaultMutableAttributeContainer) o;
return Objects.equals(asImmutable(), that.asImmutable());
}
@Override
public int hashCode() {
return asImmutable().hashCode();
}
private void doInsertionLazy(Attribute key, Provider extends T> provider) {
if (lazyAttributes == Collections.EMPTY_MAP) {
lazyAttributes = new LinkedHashMap<>(1);
}
lazyAttributes.put(key, provider);
removeAttributeIfPresent(key);
}
private void removeAttributeIfPresent(Attribute key) {
if (state.contains(key)) {
DefaultMutableAttributeContainer newState = new DefaultMutableAttributeContainer(immutableAttributesFactory);
state.keySet().stream()
.filter(k -> !k.equals(key))
.forEach(k -> {
@SuppressWarnings("unchecked") Attribute
© 2015 - 2025 Weber Informatics LLC | Privacy Policy