org.gradle.internal.component.model.DefaultIvyArtifactName 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 2013 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.internal.component.model;
import com.google.common.io.Files;
import org.gradle.api.artifacts.PublishArtifact;
import org.gradle.util.GUtil;
import javax.annotation.Nullable;
import java.io.File;
import static com.google.common.base.Objects.equal;
public class DefaultIvyArtifactName implements IvyArtifactName {
private final String name;
private final String type;
private final String extension;
private final String classifier;
private final int hashCode;
public static DefaultIvyArtifactName forPublishArtifact(PublishArtifact publishArtifact) {
String name = publishArtifact.getName();
if (name == null) {
name = publishArtifact.getFile().getName();
}
String classifier = GUtil.elvis(publishArtifact.getClassifier(), null);
return new DefaultIvyArtifactName(name, publishArtifact.getType(), publishArtifact.getExtension(), classifier);
}
public static DefaultIvyArtifactName forFile(File file, @Nullable String classifier) {
String fileName = file.getName();
return forFileName(fileName, classifier);
}
public static DefaultIvyArtifactName forFileName(String fileName, @Nullable String classifier) {
String name = Files.getNameWithoutExtension(fileName);
String extension = Files.getFileExtension(fileName);
return new DefaultIvyArtifactName(name, extension, extension, classifier);
}
public DefaultIvyArtifactName(String name, String type, @Nullable String extension) {
this(name, type, extension, null);
}
public DefaultIvyArtifactName(String name, String type, @Nullable String extension, @Nullable String classifier) {
this.name = name;
this.type = type;
this.extension = extension;
this.classifier = classifier;
this.hashCode = computeHashCode();
}
@Override
public String toString() {
StringBuilder result = new StringBuilder();
result.append(name);
if (GUtil.isTrue(classifier)) {
result.append("-");
result.append(classifier);
}
if (GUtil.isTrue(extension) && !Files.getFileExtension(name).equals(extension)) {
result.append(".");
result.append(extension);
}
return result.toString();
}
@Override
public int hashCode() {
return hashCode;
}
private int computeHashCode() {
int result = name.hashCode();
result = 31 * result + type.hashCode();
result = 31 * result + (extension != null ? extension.hashCode() : 0);
result = 31 * result + (classifier != null ? classifier.hashCode() : 0);
return result;
}
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj == null || obj.getClass() != getClass()) {
return false;
}
DefaultIvyArtifactName other = (DefaultIvyArtifactName) obj;
return equal(name, other.name)
&& equal(type, other.type)
&& equal(extension, other.extension)
&& equal(classifier, other.classifier);
}
@Override
public String getName() {
return name;
}
@Override
public String getType() {
return type;
}
@Override
public String getExtension() {
return extension;
}
@Override
public String getClassifier() {
return classifier;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy