org.gradle.api.internal.attributes.DefaultDisambiguationRuleChain 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.Lists;
import com.google.common.collect.Ordering;
import com.google.common.collect.Sets;
import org.gradle.api.Action;
import org.gradle.api.ActionConfiguration;
import org.gradle.api.attributes.AttributeDisambiguationRule;
import org.gradle.api.attributes.DisambiguationRuleChain;
import org.gradle.api.attributes.MultipleCandidatesDetails;
import org.gradle.internal.action.DefaultConfigurableRule;
import org.gradle.internal.action.DefaultConfigurableRules;
import org.gradle.internal.action.InstantiatingAction;
import org.gradle.internal.isolation.IsolatableFactory;
import org.gradle.internal.reflect.Instantiator;
import org.gradle.model.internal.type.ModelType;
import java.util.Comparator;
import java.util.List;
import java.util.Set;
public class DefaultDisambiguationRuleChain implements DisambiguationRuleChain, DisambiguationRule {
private final List>> rules = Lists.newArrayList();
private final Instantiator instantiator;
private final IsolatableFactory isolatableFactory;
public DefaultDisambiguationRuleChain(Instantiator instantiator, IsolatableFactory isolatableFactory) {
this.instantiator = instantiator;
this.isolatableFactory = isolatableFactory;
}
@Override
public void add(final Class extends AttributeDisambiguationRule> rule, Action super ActionConfiguration> configureAction) {
this.rules.add(new InstantiatingAction>(DefaultConfigurableRules.of(DefaultConfigurableRule.>of(rule, configureAction, isolatableFactory)),
instantiator, new ExceptionHandler(rule)));
}
@Override
public void add(final Class extends AttributeDisambiguationRule> rule) {
this.rules.add(new InstantiatingAction>(DefaultConfigurableRules.of(DefaultConfigurableRule.>of(rule)),
instantiator, new ExceptionHandler(rule)));
}
@Override
public void pickFirst(Comparator super T> comparator) {
Action super MultipleCandidatesDetails> rule = AttributeMatchingRules.orderedDisambiguation(comparator, true);
rules.add(rule);
}
@Override
public void pickLast(Comparator super T> comparator) {
Action super MultipleCandidatesDetails> rule = AttributeMatchingRules.orderedDisambiguation(comparator, false);
rules.add(rule);
}
@Override
public void execute(MultipleCandidatesResult details) {
for (Action super MultipleCandidatesDetails> rule : rules) {
rule.execute(details);
if (details.hasResult()) {
return;
}
}
}
@Override
public boolean doesSomething() {
return !rules.isEmpty();
}
private static class ExceptionHandler implements InstantiatingAction.ExceptionHandler> {
private final Class extends AttributeDisambiguationRule> rule;
private ExceptionHandler(Class extends AttributeDisambiguationRule> rule) {
this.rule = rule;
}
@Override
public void handleException(MultipleCandidatesDetails details, Throwable throwable) {
Set orderedValues = Sets.newTreeSet(Ordering.usingToString());
orderedValues.addAll(details.getCandidateValues());
throw new AttributeMatchException(String.format("Could not select value from candidates %s using %s.", orderedValues, ModelType.of(rule).getDisplayName()), throwable);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy