CavalliumDBEngine/src/main/java/it/cavallium/dbengine/database/disk/LLLocalGroupedReactiveRocksIterator.java

198 lines
5.8 KiB
Java
Raw Normal View History

2021-03-14 03:13:19 +01:00
package it.cavallium.dbengine.database.disk;
2021-09-23 11:30:44 +02:00
import static it.cavallium.dbengine.database.LLUtils.MARKER_ROCKSDB;
2021-09-17 16:56:28 +02:00
import io.net5.buffer.api.Buffer;
2021-10-28 11:44:20 +02:00
import io.net5.buffer.api.Drop;
import io.net5.buffer.api.Owned;
2021-09-17 16:56:28 +02:00
import io.net5.buffer.api.Send;
2021-10-28 11:44:20 +02:00
import io.net5.buffer.api.internal.ResourceSupport;
2021-03-14 03:13:19 +01:00
import it.cavallium.dbengine.database.LLRange;
import it.cavallium.dbengine.database.LLUtils;
2021-03-14 03:13:19 +01:00
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
import java.util.List;
2021-09-22 18:33:28 +02:00
import org.jetbrains.annotations.Nullable;
2021-03-14 03:13:19 +01:00
import org.rocksdb.ReadOptions;
import org.rocksdb.RocksDBException;
2021-09-23 11:30:44 +02:00
import org.warp.commonutils.log.Logger;
import org.warp.commonutils.log.LoggerFactory;
2021-03-14 03:13:19 +01:00
import reactor.core.publisher.Flux;
2021-10-28 11:44:20 +02:00
public abstract class LLLocalGroupedReactiveRocksIterator<T> extends
ResourceSupport<LLLocalGroupedReactiveRocksIterator<T>, LLLocalGroupedReactiveRocksIterator<T>> {
2021-03-14 03:13:19 +01:00
2021-09-23 11:30:44 +02:00
protected static final Logger logger = LoggerFactory.getLogger(LLLocalGroupedReactiveRocksIterator.class);
2021-10-28 11:44:20 +02:00
private static final Drop<LLLocalGroupedReactiveRocksIterator<?>> DROP = new Drop<>() {
@Override
public void drop(LLLocalGroupedReactiveRocksIterator<?> obj) {
try {
if (obj.range != null) {
obj.range.close();
}
} catch (Throwable ex) {
logger.error("Failed to close range", ex);
}
try {
if (obj.readOptions != null) {
2021-10-29 00:11:25 +02:00
if (!(obj.readOptions instanceof UnreleasableReadOptions)) {
obj.readOptions.close();
}
2021-10-28 11:44:20 +02:00
}
} catch (Throwable ex) {
logger.error("Failed to close readOptions", ex);
}
}
@Override
public Drop<LLLocalGroupedReactiveRocksIterator<?>> fork() {
return this;
}
@Override
public void attach(LLLocalGroupedReactiveRocksIterator<?> obj) {
}
};
2021-10-20 01:51:34 +02:00
private final RocksDBColumn db;
2021-03-14 03:13:19 +01:00
private final int prefixLength;
2021-10-28 11:44:20 +02:00
private LLRange range;
2021-06-29 23:31:02 +02:00
private final boolean allowNettyDirect;
2021-10-28 11:44:20 +02:00
private ReadOptions readOptions;
2021-03-22 20:02:19 +01:00
private final boolean canFillCache;
2021-03-14 03:13:19 +01:00
private final boolean readValues;
2021-10-28 11:44:20 +02:00
@SuppressWarnings({"unchecked", "rawtypes"})
2021-10-20 01:51:34 +02:00
public LLLocalGroupedReactiveRocksIterator(RocksDBColumn db,
2021-03-14 03:13:19 +01:00
int prefixLength,
2021-08-29 23:18:03 +02:00
Send<LLRange> range,
2021-06-29 23:31:02 +02:00
boolean allowNettyDirect,
2021-03-14 03:13:19 +01:00
ReadOptions readOptions,
2021-03-22 20:02:19 +01:00
boolean canFillCache,
2021-04-03 19:09:06 +02:00
boolean readValues) {
2021-10-28 11:44:20 +02:00
super((Drop<LLLocalGroupedReactiveRocksIterator<T>>) (Drop) DROP);
2021-08-31 09:14:46 +02:00
try (range) {
this.db = db;
this.prefixLength = prefixLength;
this.range = range.receive();
this.allowNettyDirect = allowNettyDirect;
this.readOptions = readOptions;
this.canFillCache = canFillCache;
this.readValues = readValues;
}
2021-03-14 03:13:19 +01:00
}
2021-03-14 13:08:03 +01:00
2021-10-28 11:44:20 +02:00
public final Flux<List<T>> flux() {
2021-03-14 13:08:03 +01:00
return Flux
2021-03-14 03:13:19 +01:00
.generate(() -> {
2021-03-14 19:38:20 +01:00
var readOptions = new ReadOptions(this.readOptions);
2021-03-22 20:02:19 +01:00
readOptions.setFillCache(canFillCache && range.hasMin() && range.hasMax());
2021-09-23 11:30:44 +02:00
if (logger.isTraceEnabled()) {
logger.trace(MARKER_ROCKSDB, "Range {} started", LLUtils.toStringSafe(range));
}
2021-10-20 01:51:34 +02:00
return LLLocalDictionary.getRocksIterator(db.getAllocator(), allowNettyDirect, readOptions, range.copy().send(), db);
2021-03-14 19:38:20 +01:00
}, (tuple, sink) -> {
try {
2021-05-02 19:18:15 +02:00
var rocksIterator = tuple.getT1();
ObjectArrayList<T> values = new ObjectArrayList<>();
2021-08-29 23:18:03 +02:00
Buffer firstGroupKey = null;
2021-05-02 19:18:15 +02:00
try {
rocksIterator.status();
2021-05-02 19:18:15 +02:00
while (rocksIterator.isValid()) {
2021-10-20 01:51:34 +02:00
try (Buffer key = LLUtils.readDirectNioBuffer(db.getAllocator(), rocksIterator::key)) {
2021-05-02 19:18:15 +02:00
if (firstGroupKey == null) {
2021-08-31 09:14:46 +02:00
firstGroupKey = key.copy();
} else if (!LLUtils.equals(firstGroupKey, firstGroupKey.readerOffset(),
key, key.readerOffset(), prefixLength)) {
2021-05-02 19:18:15 +02:00
break;
}
2021-09-22 18:33:28 +02:00
@Nullable Buffer value;
2021-05-02 19:18:15 +02:00
if (readValues) {
2021-10-20 01:51:34 +02:00
value = LLUtils.readDirectNioBuffer(db.getAllocator(), rocksIterator::value);
2021-05-02 19:18:15 +02:00
} else {
2021-09-22 18:33:28 +02:00
value = null;
2021-05-02 19:18:15 +02:00
}
2021-09-23 11:30:44 +02:00
if (logger.isTraceEnabled()) {
logger.trace(MARKER_ROCKSDB,
"Range {} is reading {}: {}",
LLUtils.toStringSafe(range),
LLUtils.toStringSafe(key),
LLUtils.toStringSafe(value)
);
}
2021-05-02 19:18:15 +02:00
try {
rocksIterator.next();
rocksIterator.status();
2021-09-22 18:33:28 +02:00
T entry = getEntry(key.send(), value == null ? null : value.send());
2021-05-02 19:18:15 +02:00
values.add(entry);
} finally {
2021-09-22 18:33:28 +02:00
if (value != null) {
value.close();
}
2021-05-02 19:18:15 +02:00
}
}
2021-05-02 19:18:15 +02:00
}
} finally {
if (firstGroupKey != null) {
2021-08-31 09:14:46 +02:00
firstGroupKey.close();
}
}
2021-05-02 19:18:15 +02:00
if (!values.isEmpty()) {
sink.next(values);
} else {
2021-09-23 11:30:44 +02:00
if (logger.isTraceEnabled()) {
logger.trace(MARKER_ROCKSDB, "Range {} ended", LLUtils.toStringSafe(range));
}
2021-05-02 19:18:15 +02:00
sink.complete();
2021-03-14 03:13:19 +01:00
}
} catch (RocksDBException ex) {
2021-09-23 11:30:44 +02:00
if (logger.isTraceEnabled()) {
logger.trace(MARKER_ROCKSDB, "Range {} failed", LLUtils.toStringSafe(range));
}
sink.error(ex);
2021-03-14 03:13:19 +01:00
}
return tuple;
2021-03-14 19:38:20 +01:00
}, tuple -> {
var rocksIterator = tuple.getT1();
rocksIterator.close();
2021-08-31 09:14:46 +02:00
tuple.getT2().close();
tuple.getT3().close();
2021-09-01 00:01:56 +02:00
tuple.getT4().close();
2021-03-14 14:16:07 +01:00
});
2021-03-14 03:13:19 +01:00
}
2021-09-22 18:33:28 +02:00
public abstract T getEntry(@Nullable Send<Buffer> key, @Nullable Send<Buffer> value);
2021-05-02 19:18:15 +02:00
2021-10-28 11:44:20 +02:00
@Override
protected final RuntimeException createResourceClosedException() {
return new IllegalStateException("Closed");
}
@Override
protected Owned<LLLocalGroupedReactiveRocksIterator<T>> prepareSend() {
var range = this.range.send();
var readOptions = new ReadOptions(this.readOptions);
return drop -> new LLLocalGroupedReactiveRocksIterator<>(db,
prefixLength,
range,
allowNettyDirect,
readOptions,
canFillCache,
readValues
) {
@Override
public T getEntry(@Nullable Send<Buffer> key, @Nullable Send<Buffer> value) {
return LLLocalGroupedReactiveRocksIterator.this.getEntry(key, value);
}
};
}
protected void makeInaccessible() {
this.range = null;
this.readOptions = null;
2021-05-02 19:18:15 +02:00
}
2021-03-14 03:13:19 +01:00
}