org.gradle.api.internalPreResolvedResolvableArtifact 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 2019 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.artifacts;
import org.gradle.api.artifacts.ModuleVersionIdentifier;
import org.gradle.api.artifacts.ResolvedArtifact;
import org.gradle.api.artifacts.ResolvedModuleVersion;
import org.gradle.api.artifacts.component.ComponentArtifactIdentifier;
import org.gradle.api.internal.artifacts.ivyservice.modulecache.dynamicversions.DefaultResolvedModuleVersion;
import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ResolvableArtifact;
import org.gradle.api.internal.tasks.TaskDependencyContainer;
import org.gradle.api.internal.tasks.TaskDependencyResolveContext;
import org.gradle.internal.Describables;
import org.gradle.internal.component.local.model.ComponentFileArtifactIdentifier;
import org.gradle.internal.component.model.DefaultIvyArtifactName;
import org.gradle.internal.component.model.IvyArtifactName;
import org.gradle.internal.model.CalculatedValue;
import org.gradle.internal.model.CalculatedValueContainerFactory;
import javax.annotation.Nullable;
import java.io.File;
public class PreResolvedResolvableArtifact implements ResolvableArtifact, ResolvedArtifact {
private final ModuleVersionIdentifier owner;
private final IvyArtifactName artifact;
private final ComponentArtifactIdentifier artifactId;
private final CalculatedValue fileSource;
private final TaskDependencyContainer builtBy;
private final CalculatedValueContainerFactory calculatedValueContainerFactory;
public PreResolvedResolvableArtifact(@Nullable ModuleVersionIdentifier owner, IvyArtifactName artifact, ComponentArtifactIdentifier artifactId, CalculatedValue fileSource, TaskDependencyContainer builtBy, CalculatedValueContainerFactory calculatedValueContainerFactory) {
this.owner = owner;
this.artifact = artifact;
this.artifactId = artifactId;
this.fileSource = fileSource;
this.builtBy = builtBy;
this.calculatedValueContainerFactory = calculatedValueContainerFactory;
}
@Override
public String toString() {
return artifactId.getDisplayName();
}
@Override
public int hashCode() {
return artifactId.hashCode();
}
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj == null || obj.getClass() != getClass()) {
return false;
}
PreResolvedResolvableArtifact other = (PreResolvedResolvableArtifact) obj;
return other.artifactId.equals(artifactId);
}
@Override
public ComponentArtifactIdentifier getId() {
return artifactId;
}
@Override
public CalculatedValue getFileSource() {
return fileSource;
}
@Override
public File getFile() {
fileSource.finalizeIfNotAlready();
return fileSource.get();
}
@Override
public ResolvedArtifact toPublicView() {
return this;
}
@Override
public void visitDependencies(TaskDependencyResolveContext context) {
builtBy.visitDependencies(context);
}
@Override
public boolean isResolveSynchronously() {
return true;
}
@Override
public ResolvedModuleVersion getModuleVersion() {
if (owner == null) {
// Local file dependencies do not have an owner
throw new UnsupportedOperationException();
}
return new DefaultResolvedModuleVersion(owner);
}
@Override
public ResolvableArtifact transformedTo(File file) {
IvyArtifactName artifactName = DefaultIvyArtifactName.forFile(file, getClassifier());
ComponentArtifactIdentifier newId = new ComponentFileArtifactIdentifier(artifactId.getComponentIdentifier(), artifactName);
return new PreResolvedResolvableArtifact(owner, artifactName, newId, calculatedValueContainerFactory.create(Describables.of(newId), file), builtBy, calculatedValueContainerFactory);
}
@Override
public String getName() {
return artifact.getName();
}
@Override
public String getType() {
return artifact.getType();
}
@Override
public String getExtension() {
return artifact.getExtension();
}
@Nullable
@Override
public String getClassifier() {
return artifact.getClassifier();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy