CavalliumDBEngine/src/main/java/it/cavallium/dbengine/database/collections/DatabaseSingleton.java

217 lines
6.2 KiB
Java
Raw Normal View History

package it.cavallium.dbengine.database.collections;
2022-03-16 13:47:56 +01:00
import io.netty5.buffer.api.Buffer;
import io.netty5.buffer.api.Drop;
import io.netty5.buffer.api.Owned;
import io.netty5.buffer.api.Send;
import io.netty5.buffer.api.internal.ResourceSupport;
2021-06-26 02:35:33 +02:00
import it.cavallium.dbengine.client.BadBlock;
import it.cavallium.dbengine.client.CompositeSnapshot;
2021-05-08 03:09:00 +02:00
import it.cavallium.dbengine.database.Delta;
import it.cavallium.dbengine.database.LLRange;
2022-03-20 14:33:27 +01:00
import it.cavallium.dbengine.database.LLSingleton;
import it.cavallium.dbengine.database.LLSnapshot;
2021-05-08 03:09:00 +02:00
import it.cavallium.dbengine.database.LLUtils;
import it.cavallium.dbengine.database.UpdateReturnMode;
2021-08-22 21:23:22 +02:00
import it.cavallium.dbengine.database.serialization.SerializationException;
import it.cavallium.dbengine.database.serialization.SerializationFunction;
2021-02-02 19:40:37 +01:00
import it.cavallium.dbengine.database.serialization.Serializer;
2022-03-11 17:59:46 +01:00
import java.util.concurrent.atomic.AtomicLong;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.jetbrains.annotations.Nullable;
2021-06-26 02:35:33 +02:00
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
2021-08-22 21:23:22 +02:00
import reactor.core.publisher.SynchronousSink;
2022-03-20 14:33:27 +01:00
public class DatabaseSingleton<U> extends ResourceSupport<DatabaseStage<U>, DatabaseSingleton<U>> implements
2021-09-23 20:57:28 +02:00
DatabaseStageEntry<U> {
2022-03-20 14:33:27 +01:00
private static final Logger LOG = LogManager.getLogger(DatabaseSingleton.class);
2021-10-01 19:17:33 +02:00
2022-03-20 14:33:27 +01:00
private static final Drop<DatabaseSingleton<?>> DROP = new Drop<>() {
2021-10-01 19:17:33 +02:00
@Override
2022-03-20 14:33:27 +01:00
public void drop(DatabaseSingleton<?> obj) {
2021-10-01 19:17:33 +02:00
if (obj.onClose != null) {
obj.onClose.run();
}
}
@Override
2022-03-20 14:33:27 +01:00
public Drop<DatabaseSingleton<?>> fork() {
2021-10-01 19:17:33 +02:00
return this;
}
@Override
2022-03-20 14:33:27 +01:00
public void attach(DatabaseSingleton<?> obj) {
2021-10-01 19:17:33 +02:00
}
};
2022-03-20 14:33:27 +01:00
private final LLSingleton singleton;
2021-09-02 17:15:40 +02:00
private final Serializer<U> serializer;
2021-10-01 19:17:33 +02:00
private Runnable onClose;
2021-09-23 20:57:28 +02:00
2021-10-01 19:17:33 +02:00
@SuppressWarnings({"unchecked", "rawtypes"})
2022-03-20 14:33:27 +01:00
public DatabaseSingleton(LLSingleton singleton, Serializer<U> serializer,
2021-10-01 19:17:33 +02:00
Runnable onClose) {
2022-03-20 14:33:27 +01:00
super((Drop<DatabaseSingleton<U>>) (Drop) DROP);
this.singleton = singleton;
2021-11-08 16:33:41 +01:00
this.serializer = serializer;
this.onClose = onClose;
}
private LLSnapshot resolveSnapshot(@Nullable CompositeSnapshot snapshot) {
if (snapshot == null) {
return null;
} else {
2022-03-20 14:33:27 +01:00
return snapshot.getSnapshot(singleton);
}
}
2021-08-29 23:18:03 +02:00
private void deserializeValue(Send<Buffer> value, SynchronousSink<U> sink) {
2021-10-19 00:22:05 +02:00
try {
U deserializedValue;
try (var valueBuf = value.receive()) {
deserializedValue = serializer.deserialize(valueBuf);
}
sink.next(deserializedValue);
2022-03-11 17:59:46 +01:00
} catch (IndexOutOfBoundsException ex) {
var exMessage = ex.getMessage();
if (exMessage != null && exMessage.contains("read 0 to 0, write 0 to ")) {
LOG.error("Unexpected zero-bytes value at "
2022-03-20 14:33:27 +01:00
+ singleton.getDatabaseName() + ":" + singleton.getColumnName() + ":" + singleton.getName());
2022-03-11 17:59:46 +01:00
sink.complete();
} else {
sink.error(ex);
}
2021-08-22 21:23:22 +02:00
} catch (SerializationException ex) {
sink.error(ex);
}
}
2021-10-19 00:22:05 +02:00
private Send<Buffer> serializeValue(U value) throws SerializationException {
var valSizeHint = serializer.getSerializedSizeHint();
if (valSizeHint == -1) valSizeHint = 128;
2022-03-20 14:33:27 +01:00
try (var valBuf = singleton.getAllocator().allocate(valSizeHint)) {
2021-10-19 00:22:05 +02:00
serializer.serialize(value, valBuf);
return valBuf.send();
}
}
@Override
2021-03-18 16:19:41 +01:00
public Mono<U> get(@Nullable CompositeSnapshot snapshot, boolean existsAlmostCertainly) {
2022-03-20 14:33:27 +01:00
return singleton.get(resolveSnapshot(snapshot))
2021-08-22 21:23:22 +02:00
.handle(this::deserializeValue);
}
2022-03-20 14:45:48 +01:00
@Override
public Mono<Void> set(U value) {
return singleton.set(Mono.fromCallable(() -> serializeValue(value)));
}
@Override
2021-01-31 19:52:47 +01:00
public Mono<U> setAndGetPrevious(U value) {
2022-03-20 14:33:27 +01:00
return Flux
.concat(singleton.get(null), singleton.set(Mono.fromCallable(() -> serializeValue(value))).then(Mono.empty()))
.singleOrEmpty()
2021-08-29 23:18:03 +02:00
.handle(this::deserializeValue);
}
2021-02-06 19:21:31 +01:00
@Override
2021-08-22 21:23:22 +02:00
public Mono<U> update(SerializationFunction<@Nullable U, @Nullable U> updater,
2022-03-02 18:33:58 +01:00
UpdateReturnMode updateReturnMode) {
2022-03-20 14:33:27 +01:00
return singleton
.update((oldValueSer) -> {
2021-09-08 00:22:39 +02:00
try (oldValueSer) {
2021-10-19 00:22:05 +02:00
U result;
if (oldValueSer == null) {
result = updater.apply(null);
} else {
U deserializedValue = serializer.deserialize(oldValueSer);
2021-10-19 00:22:05 +02:00
result = updater.apply(deserializedValue);
}
2021-09-08 00:22:39 +02:00
if (result == null) {
return null;
} else {
2021-11-08 16:33:41 +01:00
return serializeValue(result).receive();
2021-09-08 00:22:39 +02:00
}
2021-05-12 19:02:51 +02:00
}
2022-03-02 18:33:58 +01:00
}, updateReturnMode)
2021-08-22 21:23:22 +02:00
.handle(this::deserializeValue);
2021-05-08 03:09:00 +02:00
}
@Override
2022-03-02 18:33:58 +01:00
public Mono<Delta<U>> updateAndGetDelta(SerializationFunction<@Nullable U, @Nullable U> updater) {
2022-03-20 14:33:27 +01:00
return singleton
.updateAndGetDelta((oldValueSer) -> {
2021-09-08 00:22:39 +02:00
try (oldValueSer) {
2021-10-19 00:22:05 +02:00
U result;
if (oldValueSer == null) {
result = updater.apply(null);
} else {
U deserializedValue = serializer.deserialize(oldValueSer);
2021-10-19 00:22:05 +02:00
result = updater.apply(deserializedValue);
}
2021-09-08 00:22:39 +02:00
if (result == null) {
return null;
} else {
2021-11-08 16:33:41 +01:00
return serializeValue(result).receive();
2021-09-08 00:22:39 +02:00
}
2021-05-12 19:02:51 +02:00
}
2022-03-02 18:33:58 +01:00
}).transform(mono -> LLUtils.mapLLDelta(mono, serialized -> {
2021-10-19 00:22:05 +02:00
try (var valueBuf = serialized.receive()) {
return serializer.deserialize(valueBuf);
}
}));
2021-02-06 19:21:31 +01:00
}
2022-03-20 14:45:48 +01:00
@Override
public Mono<Void> clear() {
return singleton.set(Mono.empty());
}
@Override
2021-01-31 19:52:47 +01:00
public Mono<U> clearAndGetPrevious() {
2022-03-20 14:33:27 +01:00
return Flux
.concat(singleton.get(null), singleton.set(Mono.empty()).then(Mono.empty()))
.singleOrEmpty()
2021-08-22 21:23:22 +02:00
.handle(this::deserializeValue);
}
@Override
2021-02-24 16:43:07 +01:00
public Mono<Long> leavesCount(@Nullable CompositeSnapshot snapshot, boolean fast) {
2022-03-20 14:33:27 +01:00
return singleton.get(null).map(unused -> 1L).defaultIfEmpty(0L);
}
@Override
public Mono<Boolean> isEmpty(@Nullable CompositeSnapshot snapshot) {
2022-03-20 14:33:27 +01:00
return singleton.get(null).map(t -> false).defaultIfEmpty(true);
2021-01-31 19:52:47 +01:00
}
@Override
2021-09-23 20:57:28 +02:00
public Flux<BadBlock> badBlocks() {
2022-03-20 14:33:27 +01:00
return Flux.empty();
}
2021-06-26 02:35:33 +02:00
@Override
2021-09-23 20:57:28 +02:00
protected RuntimeException createResourceClosedException() {
throw new IllegalStateException("Closed");
}
@Override
2022-03-20 14:33:27 +01:00
protected Owned<DatabaseSingleton<U>> prepareSend() {
2021-10-01 19:17:33 +02:00
var onClose = this.onClose;
return drop -> {
2022-03-20 14:33:27 +01:00
var instance = new DatabaseSingleton<>(singleton, serializer, onClose);
2021-10-01 19:17:33 +02:00
drop.attach(instance);
return instance;
};
2021-09-23 20:57:28 +02:00
}
@Override
protected void makeInaccessible() {
2021-10-01 19:17:33 +02:00
this.onClose = null;
2021-06-26 02:35:33 +02:00
}
}