org.gradle.internal.fingerprint.impl.IgnoredPathFileSystemLocationFingerprint 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 2018 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.fingerprint.impl;
import org.gradle.internal.file.FileType;
import org.gradle.internal.fingerprint.FileSystemLocationFingerprint;
import org.gradle.internal.hash.HashCode;
import org.gradle.internal.hash.Hasher;
public class IgnoredPathFileSystemLocationFingerprint implements FileSystemLocationFingerprint {
public static final IgnoredPathFileSystemLocationFingerprint DIRECTORY = new IgnoredPathFileSystemLocationFingerprint(FileType.Directory, DIR_SIGNATURE);
private static final IgnoredPathFileSystemLocationFingerprint MISSING_FILE = new IgnoredPathFileSystemLocationFingerprint(FileType.Missing, MISSING_FILE_SIGNATURE);
private final FileType type;
private final HashCode normalizedContentHash;
public static IgnoredPathFileSystemLocationFingerprint create(FileType type, HashCode contentHash) {
switch (type) {
case Directory:
return DIRECTORY;
case Missing:
return MISSING_FILE;
case RegularFile:
return new IgnoredPathFileSystemLocationFingerprint(FileType.RegularFile, contentHash);
default:
throw new IllegalStateException();
}
}
private IgnoredPathFileSystemLocationFingerprint(FileType type, HashCode normalizedContentHash) {
this.type = type;
this.normalizedContentHash = normalizedContentHash;
}
@Override
public String getNormalizedPath() {
return "";
}
@Override
public HashCode getNormalizedContentHash() {
return normalizedContentHash;
}
@Override
public FileType getType() {
return type;
}
@Override
public int compareTo(FileSystemLocationFingerprint o) {
if (!(o instanceof IgnoredPathFileSystemLocationFingerprint)) {
return -1;
}
return normalizedContentHash.compareTo(o.getNormalizedContentHash());
}
@Override
public void appendToHasher(Hasher hasher) {
hasher.putHash(normalizedContentHash);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IgnoredPathFileSystemLocationFingerprint that = (IgnoredPathFileSystemLocationFingerprint) o;
return normalizedContentHash.equals(that.normalizedContentHash);
}
@Override
public int hashCode() {
return normalizedContentHash.hashCode();
}
@Override
public String toString() {
return String.format("IGNORED / %s", getType() == FileType.Directory ? "DIR" : getType() == FileType.Missing ? "MISSING" : normalizedContentHash);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy