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

113 lines
3.2 KiB
Java
Raw Normal View History

2021-03-14 03:13:19 +01:00
package it.cavallium.dbengine.database.disk;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import io.netty.buffer.ByteBufUtil;
2021-03-14 03:13:19 +01:00
import it.cavallium.dbengine.database.LLRange;
import it.cavallium.dbengine.database.LLUtils;
2021-05-02 19:18:15 +02:00
import it.cavallium.dbengine.database.collections.DatabaseMapDictionaryDeep;
2021-03-14 03:13:19 +01:00
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
import java.util.List;
2021-05-02 19:18:15 +02:00
import java.util.concurrent.atomic.AtomicBoolean;
2021-03-14 03:13:19 +01:00
import org.rocksdb.ColumnFamilyHandle;
import org.rocksdb.ReadOptions;
import org.rocksdb.RocksDB;
2021-03-14 19:38:20 +01:00
import org.rocksdb.RocksMutableObject;
2021-03-14 03:13:19 +01:00
import reactor.core.publisher.Flux;
import static io.netty.buffer.Unpooled.*;
2021-03-14 03:13:19 +01:00
2021-03-14 23:06:46 +01:00
public abstract class LLLocalGroupedReactiveRocksIterator<T> {
2021-03-14 03:13:19 +01:00
private final RocksDB db;
private final ByteBufAllocator alloc;
2021-03-14 03:13:19 +01:00
private final ColumnFamilyHandle cfh;
private final int prefixLength;
private final LLRange range;
private final 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;
public LLLocalGroupedReactiveRocksIterator(RocksDB db, ByteBufAllocator alloc, ColumnFamilyHandle cfh,
2021-03-14 03:13:19 +01:00
int prefixLength,
LLRange range,
ReadOptions readOptions,
2021-03-22 20:02:19 +01:00
boolean canFillCache,
2021-04-03 19:09:06 +02:00
boolean readValues) {
2021-03-14 03:13:19 +01:00
this.db = db;
this.alloc = alloc;
2021-03-14 03:13:19 +01:00
this.cfh = cfh;
this.prefixLength = prefixLength;
this.range = range;
this.readOptions = readOptions;
2021-03-22 20:02:19 +01:00
this.canFillCache = canFillCache;
2021-03-14 03:13:19 +01:00
this.readValues = readValues;
}
2021-03-14 13:08:03 +01:00
public Flux<List<T>> flux() {
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-05-03 00:29:26 +02:00
return LLLocalDictionary.getRocksIterator(readOptions, range.retain(), db, cfh);
2021-03-14 19:38:20 +01:00
}, (tuple, sink) -> {
2021-05-02 19:18:15 +02:00
range.retain();
try {
2021-05-02 19:18:15 +02:00
var rocksIterator = tuple.getT1();
ObjectArrayList<T> values = new ObjectArrayList<>();
ByteBuf firstGroupKey = null;
try {
while (rocksIterator.isValid()) {
ByteBuf key = LLUtils.readDirectNioBuffer(alloc, rocksIterator::key);
try {
2021-05-02 19:18:15 +02:00
if (firstGroupKey == null) {
firstGroupKey = key.retain();
} else if (!ByteBufUtil.equals(firstGroupKey, firstGroupKey.readerIndex(), key, key.readerIndex(), prefixLength)) {
break;
}
ByteBuf value;
if (readValues) {
value = LLUtils.readDirectNioBuffer(alloc, rocksIterator::value);
} else {
2021-05-03 21:41:51 +02:00
value = alloc.buffer(0);
2021-05-02 19:18:15 +02:00
}
try {
rocksIterator.next();
T entry = getEntry(key.retain(), value.retain());
values.add(entry);
} finally {
value.release();
}
} finally {
2021-05-02 19:18:15 +02:00
key.release();
}
2021-05-02 19:18:15 +02:00
}
} finally {
if (firstGroupKey != null) {
firstGroupKey.release();
}
}
2021-05-02 19:18:15 +02:00
if (!values.isEmpty()) {
sink.next(values);
} else {
sink.complete();
2021-03-14 03:13:19 +01:00
}
2021-05-02 19:18:15 +02:00
return tuple;
} finally {
range.release();
2021-03-14 03:13:19 +01:00
}
2021-03-14 19:38:20 +01:00
}, tuple -> {
var rocksIterator = tuple.getT1();
rocksIterator.close();
tuple.getT2().release();
tuple.getT3().release();
2021-03-14 14:16:07 +01:00
});
2021-03-14 03:13:19 +01:00
}
public abstract T getEntry(ByteBuf key, ByteBuf value);
2021-05-02 19:18:15 +02:00
public void release() {
range.release();
}
2021-03-14 03:13:19 +01:00
}