FileSponge/src/main/java/org/warp/filesponge/DiskMetadata.java

117 lines
3.7 KiB
Java
Raw Normal View History

2021-03-07 15:50:11 +01:00
/*
* FileSponge
* Copyright (C) 2021 Andrea Cavalli
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.warp.filesponge;
2021-09-17 16:56:47 +02:00
import io.net5.buffer.api.Buffer;
import io.net5.buffer.api.BufferAllocator;
import io.net5.buffer.api.Send;
2021-10-19 00:28:30 +02:00
import it.cavallium.dbengine.database.serialization.BufferDataInputOwned;
import it.cavallium.dbengine.database.serialization.BufferDataInputShared;
2021-09-03 02:23:19 +02:00
import it.cavallium.dbengine.database.serialization.BufferDataOutput;
2021-10-19 00:28:30 +02:00
import it.cavallium.dbengine.database.serialization.SerializationException;
2021-03-07 15:50:11 +01:00
import it.cavallium.dbengine.database.serialization.Serializer;
import it.unimi.dsi.fastutil.booleans.BooleanArrayList;
import org.jetbrains.annotations.NotNull;
2021-05-21 00:18:39 +02:00
/**
* size -1 = unknown size
*/
public record DiskMetadata(int size, BooleanArrayList downloadedBlocks) {
2021-03-07 15:50:11 +01:00
public boolean isDownloadedFully() {
2021-05-21 00:18:39 +02:00
boolean downloadedFullyVal;
// Ensure blocks count is valid by calling getBlocksCount()
getBlocksCount();
// It's fully downloaded if every block is true
2021-10-19 00:28:30 +02:00
downloadedFullyVal = !this.downloadedBlocks.contains(false);
2021-05-21 00:18:39 +02:00
return downloadedFullyVal;
2021-03-07 15:50:11 +01:00
}
2021-06-02 13:21:34 +02:00
@SuppressWarnings("UnusedReturnValue")
2021-03-07 15:50:11 +01:00
private int getBlocksCount() {
2021-06-02 13:21:34 +02:00
if (size == -1) {
2021-10-19 00:28:30 +02:00
return downloadedBlocks.size();
2021-06-02 13:21:34 +02:00
}
2021-03-07 15:51:54 +01:00
var expectedBlocksCount = getBlocksCount(size, FileSponge.BLOCK_SIZE);
2021-10-19 00:28:30 +02:00
if (this.downloadedBlocks.size() != expectedBlocksCount) {
2021-03-09 00:35:24 +01:00
throw new IllegalStateException(
2021-10-19 00:28:30 +02:00
"Blocks array length (" + this.downloadedBlocks.size() + ") != expected blocks count ("
2021-05-21 00:18:39 +02:00
+ expectedBlocksCount + ")");
2021-03-07 15:50:11 +01:00
}
return expectedBlocksCount;
}
public static int getBlocksCount(int size, int blockSize) {
2021-06-02 13:21:34 +02:00
if (size == -1) {
return 0;
}
2021-03-07 15:50:11 +01:00
return (size + (blockSize - size % blockSize)) / blockSize;
}
public Metadata asMetadata() {
return new Metadata(size);
}
2021-06-02 13:21:34 +02:00
public boolean isDownloadedBlock(int id) {
2021-10-19 00:28:30 +02:00
if (size == -1 && downloadedBlocks.size() <= id) {
2021-06-02 13:21:34 +02:00
return false;
} else {
2021-10-19 00:28:30 +02:00
return downloadedBlocks.getBoolean(id);
2021-06-02 13:21:34 +02:00
}
}
2021-09-03 02:23:19 +02:00
public static class DiskMetadataSerializer implements Serializer<DiskMetadata> {
2021-03-07 15:50:11 +01:00
@Override
2021-10-19 00:28:30 +02:00
public @NotNull DiskMetadata deserialize(@NotNull Buffer serialized) throws SerializationException {
var dis = new BufferDataInputShared(serialized);
2021-09-03 02:23:19 +02:00
int size = dis.readInt();
int blocksCount;
if (size == -1) {
blocksCount = dis.readShort();
} else {
blocksCount = getBlocksCount(size, FileSponge.BLOCK_SIZE);
2021-03-07 15:50:11 +01:00
}
2021-09-03 02:23:19 +02:00
var downloadedBlocks = new BooleanArrayList(blocksCount);
for (int i = 0; i < blocksCount; i++) {
downloadedBlocks.add(dis.readBoolean());
}
2021-10-19 00:28:30 +02:00
return new DiskMetadata(size, downloadedBlocks);
2021-03-07 15:50:11 +01:00
}
@Override
2021-10-19 00:28:30 +02:00
public void serialize(@NotNull DiskMetadata deserialized, Buffer output) throws SerializationException {
var dos = new BufferDataOutput(output);
dos.writeInt(deserialized.size);
var blocksCount = deserialized.getBlocksCount();
if (deserialized.size == -1) {
dos.writeShort(blocksCount);
}
for (boolean downloadedBlock : deserialized.downloadedBlocks) {
dos.writeBoolean(downloadedBlock);
2021-03-07 15:50:11 +01:00
}
}
2021-10-19 00:28:30 +02:00
@Override
public int getSerializedSizeHint() {
return Integer.BYTES;
}
2021-03-07 15:50:11 +01:00
}
}