org.gradle.api.internal.changedetection.state.CachingFileHasher 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 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.api.internal.changedetection.state;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Objects;
import org.gradle.api.internal.cache.StringInterner;
import org.gradle.cache.IndexedCache;
import org.gradle.cache.IndexedCacheParameters;
import org.gradle.internal.file.FileMetadata;
import org.gradle.internal.hash.FileHasher;
import org.gradle.internal.hash.HashCode;
import org.gradle.internal.nativeintegration.filesystem.FileSystem;
import org.gradle.internal.serialize.AbstractSerializer;
import org.gradle.internal.serialize.Decoder;
import org.gradle.internal.serialize.Encoder;
import org.gradle.internal.serialize.HashCodeSerializer;
import org.gradle.internal.serialize.InterningStringSerializer;
import java.io.File;
public class CachingFileHasher implements FileHasher {
private final IndexedCache cache;
private final FileHasher delegate;
private final FileSystem fileSystem;
private final StringInterner stringInterner;
private final FileTimeStampInspector timestampInspector;
private final FileHasherStatistics.Collector statisticsCollector;
public CachingFileHasher(
FileHasher delegate,
CrossBuildFileHashCache store,
StringInterner stringInterner,
FileTimeStampInspector timestampInspector,
String cacheName,
FileSystem fileSystem,
int inMemorySize,
FileHasherStatistics.Collector statisticsCollector
) {
this.delegate = delegate;
this.fileSystem = fileSystem;
this.cache = store.createIndexedCache(
IndexedCacheParameters.of(cacheName, new InterningStringSerializer(stringInterner), new FileInfoSerializer()),
inMemorySize,
true);
this.stringInterner = stringInterner;
this.timestampInspector = timestampInspector;
this.statisticsCollector = statisticsCollector;
}
@Override
public String toString() {
return "{hasher cache: " + cache + "}";
}
@Override
public HashCode hash(File file) {
return snapshot(file).getHash();
}
@Override
public HashCode hash(File file, long length, long lastModified) {
return snapshot(file, length, lastModified).getHash();
}
private FileInfo snapshot(File file) {
FileMetadata fileMetadata = fileSystem.stat(file);
return snapshot(file, fileMetadata.getLength(), fileMetadata.getLastModified());
}
private FileInfo snapshot(File file, long length, long timestamp) {
String absolutePath = file.getAbsolutePath();
if (timestampInspector.timestampCanBeUsedToDetectFileChange(absolutePath, timestamp)) {
FileInfo info = cache.getIfPresent(absolutePath);
if (info != null && length == info.length && timestamp == info.timestamp) {
return info;
}
}
HashCode hash = delegate.hash(file);
FileInfo info = new FileInfo(hash, length, timestamp);
cache.put(stringInterner.intern(absolutePath), info);
statisticsCollector.reportFileHashed(length);
return info;
}
public void discard(String path) {
cache.remove(path);
}
@VisibleForTesting
static class FileInfo {
private final HashCode hash;
private final long timestamp;
private final long length;
public FileInfo(HashCode hash, long length, long timestamp) {
this.hash = hash;
this.length = length;
this.timestamp = timestamp;
}
public HashCode getHash() {
return hash;
}
}
private static class FileInfoSerializer extends AbstractSerializer {
private final HashCodeSerializer hashCodeSerializer = new HashCodeSerializer();
@Override
public FileInfo read(Decoder decoder) throws Exception {
HashCode hash = hashCodeSerializer.read(decoder);
long timestamp = decoder.readLong();
long length = decoder.readLong();
return new FileInfo(hash, length, timestamp);
}
@Override
public void write(Encoder encoder, FileInfo value) throws Exception {
hashCodeSerializer.write(encoder, value.hash);
encoder.writeLong(value.timestamp);
encoder.writeLong(value.length);
}
@Override
public boolean equals(Object obj) {
if (!super.equals(obj)) {
return false;
}
FileInfoSerializer rhs = (FileInfoSerializer) obj;
return Objects.equal(hashCodeSerializer, rhs.hashCodeSerializer);
}
@Override
public int hashCode() {
return Objects.hashCode(super.hashCode(), hashCodeSerializer);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy