org.gradle.composite.internal.DefaultIncludedBuild Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-test-kit Show documentation
Show all versions of gradle-test-kit Show documentation
Gradle 6.2.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.composite.internal;
import com.google.common.base.Preconditions;
import org.gradle.api.Action;
import org.gradle.api.Transformer;
import org.gradle.api.artifacts.DependencySubstitutions;
import org.gradle.api.artifacts.component.BuildIdentifier;
import org.gradle.api.internal.BuildDefinition;
import org.gradle.api.internal.GradleInternal;
import org.gradle.api.tasks.TaskReference;
import org.gradle.initialization.IncludedBuildSpec;
import org.gradle.internal.build.BuildState;
import org.gradle.internal.build.ExecutionResult;
import org.gradle.internal.build.IncludedBuildState;
import org.gradle.internal.buildtree.BuildTreeState;
import org.gradle.internal.composite.IncludedBuildInternal;
import org.gradle.internal.reflect.Instantiator;
import org.gradle.util.Path;
import java.io.File;
public class DefaultIncludedBuild extends AbstractCompositeParticipantBuildState implements IncludedBuildState {
private final BuildIdentifier buildIdentifier;
private final Path identityPath;
private final BuildDefinition buildDefinition;
private final boolean isImplicit;
private final IncludedBuildImpl model;
public DefaultIncludedBuild(
BuildIdentifier buildIdentifier,
BuildDefinition buildDefinition,
boolean isImplicit,
BuildState owner,
BuildTreeState buildTree,
Instantiator instantiator
) {
// Use a defensive copy of the build definition, as it may be mutated during build execution
super(buildTree, buildDefinition.newInstance(), owner);
this.buildIdentifier = buildIdentifier;
this.identityPath = Path.path(buildIdentifier.getBuildPath());
this.buildDefinition = buildDefinition;
this.isImplicit = isImplicit;
this.model = instantiator.newInstance(IncludedBuildImpl.class, this);
}
@Override
public BuildIdentifier getBuildIdentifier() {
return buildIdentifier;
}
@Override
public BuildDefinition getBuildDefinition() {
return buildDefinition;
}
@Override
public File getRootDirectory() {
return buildDefinition.getBuildRootDir();
}
@Override
public Path getIdentityPath() {
return identityPath;
}
@Override
public boolean isImplicitBuild() {
return isImplicit;
}
@Override
public boolean isImportableBuild() {
return !isImplicit;
}
@Override
public IncludedBuildInternal getModel() {
return model;
}
@Override
public boolean isPluginBuild() {
return buildDefinition.isPluginBuild();
}
File getProjectDir() {
return buildDefinition.getBuildRootDir();
}
@Override
public String getName() {
return identityPath.getName();
}
@Override
public void assertCanAdd(IncludedBuildSpec includedBuildSpec) {
if (isImplicit) {
// Not yet supported for implicit included builds
super.assertCanAdd(includedBuildSpec);
}
}
@Override
public File getBuildRootDir() {
return buildDefinition.getBuildRootDir();
}
@Override
public Path calculateIdentityPathForProject(Path projectPath) {
return getIdentityPath().append(projectPath);
}
@Override
public Action super DependencySubstitutions> getRegisteredDependencySubstitutions() {
return buildDefinition.getDependencySubstitutions();
}
@Override
public T withState(Transformer action) {
// This should apply some locking, but most access to the build state does not happen via this method yet
return action.transform(getMutableModel());
}
@Override
public ExecutionResult finishBuild() {
return getBuildController().finishBuild(null);
}
public static class IncludedBuildImpl implements IncludedBuildInternal {
private final DefaultIncludedBuild buildState;
public IncludedBuildImpl(DefaultIncludedBuild buildState) {
this.buildState = buildState;
}
@Override
public String getName() {
return buildState.getName();
}
@Override
public File getProjectDir() {
return buildState.getProjectDir();
}
@Override
public TaskReference task(String path) {
Preconditions.checkArgument(path.startsWith(":"), "Task path '%s' is not a qualified task path (e.g. ':task' or ':project:task').", path);
return new IncludedBuildTaskReference(buildState, path);
}
@Override
public BuildState getTarget() {
return buildState;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy