org.gradle.plugin.use.internal.PluginRequestCollector Maven / Gradle / Ivy
/*
* Copyright 2017 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.plugin.use.internal;
import com.google.common.collect.ListMultimap;
import org.gradle.api.Transformer;
import org.gradle.groovy.scripts.ScriptSource;
import org.gradle.internal.exceptions.LocationAwareException;
import org.gradle.plugin.management.internal.DefaultPluginRequest;
import org.gradle.plugin.management.internal.DefaultPluginRequests;
import org.gradle.plugin.management.internal.PluginRequestInternal;
import org.gradle.plugin.management.internal.InvalidPluginRequestException;
import org.gradle.plugin.management.internal.PluginRequests;
import org.gradle.plugin.use.PluginDependenciesSpec;
import org.gradle.plugin.use.PluginDependencySpec;
import org.gradle.plugin.use.PluginId;
import org.gradle.util.CollectionUtils;
import java.util.LinkedList;
import java.util.List;
import static org.gradle.util.CollectionUtils.collect;
/**
* The real delegate of the plugins {} block.
*
* The {@link PluginUseScriptBlockMetadataExtractor} interacts with this type.
*/
public class PluginRequestCollector {
private final ScriptSource scriptSource;
public PluginRequestCollector(ScriptSource scriptSource) {
this.scriptSource = scriptSource;
}
private static class DependencySpecImpl implements PluginDependencySpec {
private final PluginId id;
private String version;
private boolean apply;
private final int lineNumber;
private DependencySpecImpl(String id, int lineNumber) {
this.id = DefaultPluginId.of(id);
this.apply = true;
this.lineNumber = lineNumber;
}
public PluginDependencySpec version(String version) {
this.version = version;
return this;
}
@Override
public PluginDependencySpec apply(boolean apply) {
this.apply = apply;
return this;
}
}
private final List specs = new LinkedList();
public PluginDependenciesSpec createSpec(final int lineNumber) {
return new PluginDependenciesSpec() {
public PluginDependencySpec id(String id) {
DependencySpecImpl spec = new DependencySpecImpl(id, lineNumber);
specs.add(spec);
return spec;
}
};
}
public PluginRequests getPluginRequests() {
return new DefaultPluginRequests(listPluginRequests());
}
public List listPluginRequests() {
List pluginRequests = collect(specs, new Transformer() {
public PluginRequestInternal transform(DependencySpecImpl original) {
return new DefaultPluginRequest(original.id, original.version, original.apply, original.lineNumber, scriptSource);
}
});
ListMultimap groupedById = CollectionUtils.groupBy(pluginRequests, new Transformer() {
public PluginId transform(PluginRequestInternal pluginRequest) {
return pluginRequest.getId();
}
});
// Check for duplicates
for (PluginId key : groupedById.keySet()) {
List pluginRequestsForId = groupedById.get(key);
if (pluginRequestsForId.size() > 1) {
PluginRequestInternal first = pluginRequests.get(0);
PluginRequestInternal second = pluginRequests.get(1);
InvalidPluginRequestException exception = new InvalidPluginRequestException(second, "Plugin with id '" + key + "' was already requested at line " + first.getLineNumber());
throw new LocationAwareException(exception, second.getScriptDisplayName(), second.getLineNumber());
}
}
return pluginRequests;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy