org.gradle.composite.internal.IncludedBuildArtifactBuilder Maven / Gradle / Ivy
/*
* 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.composite.internal;
import com.google.common.collect.LinkedHashMultimap;
import com.google.common.collect.Multimap;
import org.gradle.api.GradleException;
import org.gradle.api.artifacts.component.BuildIdentifier;
import org.gradle.initialization.IncludedBuildExecuter;
import org.gradle.initialization.ReportedException;
import org.gradle.internal.component.model.ComponentArtifactMetadata;
import org.gradle.internal.exceptions.Contextual;
import org.gradle.internal.exceptions.LocationAwareException;
import java.util.Collection;
class IncludedBuildArtifactBuilder {
private final Multimap tasksForBuild = LinkedHashMultimap.create();
private final IncludedBuildExecuter includedBuildExecuter;
IncludedBuildArtifactBuilder(IncludedBuildExecuter includedBuildExecuter) {
this.includedBuildExecuter = includedBuildExecuter;
}
public void willBuild(ComponentArtifactMetadata artifact) {
if (artifact instanceof CompositeProjectComponentArtifactMetadata) {
CompositeProjectComponentArtifactMetadata compositeBuildArtifact = (CompositeProjectComponentArtifactMetadata) artifact;
BuildIdentifier buildId = getBuildIdentifier(compositeBuildArtifact);
addTasksForBuild(buildId, compositeBuildArtifact);
}
}
public void build(BuildIdentifier requestingBuild, ComponentArtifactMetadata artifact) {
if (artifact instanceof CompositeProjectComponentArtifactMetadata) {
CompositeProjectComponentArtifactMetadata compositeBuildArtifact = (CompositeProjectComponentArtifactMetadata) artifact;
BuildIdentifier buildId = getBuildIdentifier(compositeBuildArtifact);
Collection tasksToExecute = addTasksForBuild(buildId, compositeBuildArtifact);
execute(requestingBuild, buildId, tasksToExecute);
}
}
private void execute(BuildIdentifier requestingBuild, BuildIdentifier targetBuild, Collection tasksToExecute) {
try {
includedBuildExecuter.execute(requestingBuild, targetBuild, tasksToExecute);
} catch (ReportedException e) {
throw contextualizeFailure(targetBuild, e);
}
}
private synchronized Collection addTasksForBuild(BuildIdentifier buildId, CompositeProjectComponentArtifactMetadata compositeBuildArtifact) {
tasksForBuild.putAll(buildId, compositeBuildArtifact.getTasks());
return tasksForBuild.get(buildId);
}
private BuildIdentifier getBuildIdentifier(CompositeProjectComponentArtifactMetadata artifact) {
return artifact.getComponentId().getBuild();
}
private RuntimeException contextualizeFailure(BuildIdentifier buildId, ReportedException e) {
if (e.getCause() instanceof LocationAwareException) {
LocationAwareException lae = (LocationAwareException) e.getCause();
IncludedBuildArtifactException wrappedCause = new IncludedBuildArtifactException("Failed to build artifacts for " + buildId, lae.getCause());
LocationAwareException newLae = new LocationAwareException(wrappedCause, lae.getSourceDisplayName(), lae.getLineNumber());
return new ReportedException(newLae);
}
return e;
}
@Contextual
private static class IncludedBuildArtifactException extends GradleException {
public IncludedBuildArtifactException(String message, Throwable cause) {
super(message, cause);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy