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

149 lines
3.7 KiB
Java
Raw Normal View History

2020-09-23 23:59:11 +02:00
/*
* FileSponge
2021-03-07 15:50:11 +01:00
* Copyright (C) 2021 Andrea Cavalli
2020-09-23 23:59:11 +02:00
*
* 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/>.
*/
2021-03-07 15:50:11 +01:00
package org.warp.filesponge;
2020-09-23 23:59:11 +02:00
2021-09-17 16:56:47 +02:00
import io.net5.buffer.api.Buffer;
import io.net5.buffer.api.Drop;
import io.net5.buffer.api.Owned;
import io.net5.buffer.api.Send;
import io.net5.buffer.api.internal.ResourceSupport;
2021-10-01 19:17:46 +02:00
import it.cavallium.dbengine.database.LLSearchResultShard;
2021-09-24 02:02:10 +02:00
import it.cavallium.dbengine.database.collections.DatabaseSingle;
2021-05-05 17:31:50 +02:00
import java.util.Objects;
2021-10-01 19:17:46 +02:00
import org.warp.commonutils.log.Logger;
import org.warp.commonutils.log.LoggerFactory;
2021-03-07 15:50:11 +01:00
2021-09-03 02:23:19 +02:00
public final class DataBlock extends ResourceSupport<DataBlock, DataBlock> {
2021-03-07 15:50:11 +01:00
2021-10-01 19:17:46 +02:00
private static final Logger logger = LoggerFactory.getLogger(DataBlock.class);
private static final Drop<DataBlock> DROP = new Drop<>() {
@Override
public void drop(DataBlock obj) {
try {
if (obj.data != null) {
obj.data.close();
}
} catch (Throwable ex) {
logger.error("Failed to close data", ex);
}
}
@Override
public Drop<DataBlock> fork() {
return this;
}
@Override
public void attach(DataBlock obj) {
}
};
2021-09-03 02:23:19 +02:00
public static DataBlock of(int offset, int length, Send<Buffer> data) {
2021-10-01 19:17:46 +02:00
return new DataBlock(offset, length, data);
2021-09-03 02:23:19 +02:00
}
2021-10-01 19:17:46 +02:00
private DataBlock(int offset, int length, Send<Buffer> data) {
super(DROP);
2021-09-03 02:23:19 +02:00
try (data) {
2021-05-05 17:31:50 +02:00
this.offset = offset;
this.length = length;
2021-09-03 02:23:19 +02:00
this.data = data.receive();
2021-05-05 17:31:50 +02:00
}
2021-05-03 00:33:04 +02:00
}
2021-05-05 17:31:50 +02:00
private final int offset;
private final int length;
2021-09-03 02:23:19 +02:00
private final Buffer data;
public Send<Buffer> getData() {
assert data.isAccessible();
return data.copy().send();
}
2021-03-07 15:50:11 +01:00
2021-09-03 02:23:19 +02:00
public Buffer getDataUnsafe() {
return data;
2021-05-03 00:33:04 +02:00
}
2021-03-07 15:50:11 +01:00
public int getId() {
2021-03-07 15:51:54 +01:00
return offset / FileSponge.BLOCK_SIZE;
2021-03-07 15:50:11 +01:00
}
2021-05-05 17:31:50 +02:00
public int getOffset() {
return this.offset;
}
public int getLength() {
return this.length;
}
public boolean equals(final Object o) {
if (o == this) {
return true;
}
if (!(o instanceof DataBlock)) {
return false;
}
final DataBlock other = (DataBlock) o;
if (this.getOffset() != other.getOffset()) {
return false;
}
if (this.getLength() != other.getLength()) {
return false;
}
final Object this$data = this.getData();
final Object other$data = other.getData();
if (!Objects.equals(this$data, other$data)) {
return false;
}
return true;
}
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = result * PRIME + this.getOffset();
result = result * PRIME + this.getLength();
final Object $data = this.getData();
result = result * PRIME + ($data == null ? 43 : $data.hashCode());
return result;
}
public String toString() {
return "DataBlock(offset=" + this.getOffset() + ", length=" + this.getLength() + ", data=" + this.getData() + ")";
}
2021-09-03 02:23:19 +02:00
@Override
protected RuntimeException createResourceClosedException() {
return new IllegalStateException("Closed");
}
@Override
protected Owned<DataBlock> prepareSend() {
Send<Buffer> dataSend;
dataSend = this.data.send();
2021-10-01 19:17:46 +02:00
return drop -> {
var instance = new DataBlock(offset, length, dataSend);
drop.attach(instance);
return instance;
};
2021-05-05 17:31:50 +02:00
}
2020-09-23 23:59:11 +02:00
}