org.gradle.internal.execution.history.impl.FileCollectionFingerprintSerializer 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.execution.history.impl;
import com.google.common.base.Objects;
import com.google.common.collect.ImmutableMultimap;
import org.gradle.api.internal.cache.StringInterner;
import org.gradle.internal.fingerprint.FileCollectionFingerprint;
import org.gradle.internal.fingerprint.FileSystemLocationFingerprint;
import org.gradle.internal.fingerprint.impl.FingerprintMapSerializer;
import org.gradle.internal.hash.HashCode;
import org.gradle.internal.serialize.Decoder;
import org.gradle.internal.serialize.Encoder;
import org.gradle.internal.serialize.HashCodeSerializer;
import org.gradle.internal.serialize.Serializer;
import java.io.IOException;
import java.util.Map;
public class FileCollectionFingerprintSerializer implements Serializer {
private final FingerprintMapSerializer fingerprintMapSerializer;
private final StringInterner stringInterner;
private final HashCodeSerializer hashCodeSerializer;
public FileCollectionFingerprintSerializer(StringInterner stringInterner) {
this.fingerprintMapSerializer = new FingerprintMapSerializer(stringInterner);
this.stringInterner = stringInterner;
this.hashCodeSerializer = new HashCodeSerializer();
}
@Override
public FileCollectionFingerprint read(Decoder decoder) throws IOException {
Map fingerprints = fingerprintMapSerializer.read(decoder);
if (fingerprints.isEmpty()) {
return FileCollectionFingerprint.EMPTY;
}
ImmutableMultimap rootHashes = readRootHashes(decoder);
return new SerializableFileCollectionFingerprint(fingerprints, rootHashes);
}
private ImmutableMultimap readRootHashes(Decoder decoder) throws IOException {
int numberOfRoots = decoder.readSmallInt();
if (numberOfRoots == 0) {
return ImmutableMultimap.of();
}
ImmutableMultimap.Builder builder = ImmutableMultimap.builder();
for (int i = 0; i < numberOfRoots; i++) {
String absolutePath = stringInterner.intern(decoder.readString());
HashCode rootHash = hashCodeSerializer.read(decoder);
builder.put(absolutePath, rootHash);
}
return builder.build();
}
@Override
public void write(Encoder encoder, FileCollectionFingerprint value) throws Exception {
fingerprintMapSerializer.write(encoder, value.getFingerprints());
if (!value.getFingerprints().isEmpty()) {
writeRootHashes(encoder, value.getRootHashes());
}
}
private void writeRootHashes(Encoder encoder, ImmutableMultimap rootHashes) throws IOException {
encoder.writeSmallInt(rootHashes.size());
for (Map.Entry entry : rootHashes.entries()) {
encoder.writeString(entry.getKey());
hashCodeSerializer.write(encoder, entry.getValue());
}
}
@Override
public boolean equals(Object obj) {
if (!super.equals(obj)) {
return false;
}
FileCollectionFingerprintSerializer rhs = (FileCollectionFingerprintSerializer) obj;
return Objects.equal(fingerprintMapSerializer, rhs.fingerprintMapSerializer)
&& Objects.equal(hashCodeSerializer, rhs.hashCodeSerializer);
}
@Override
public int hashCode() {
return Objects.hashCode(super.hashCode(), fingerprintMapSerializer, hashCodeSerializer);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy