2021-01-30 20:16:14 +01:00
|
|
|
package it.cavallium.dbengine.database.collections;
|
|
|
|
|
2021-08-29 23:18:03 +02:00
|
|
|
import io.netty.buffer.api.Buffer;
|
|
|
|
import io.netty.buffer.api.Send;
|
2021-08-31 09:14:46 +02:00
|
|
|
import io.netty.buffer.api.internal.ResourceSupport;
|
2021-05-02 19:18:15 +02:00
|
|
|
import io.netty.util.ReferenceCounted;
|
2021-01-30 20:16:14 +01:00
|
|
|
import it.cavallium.dbengine.client.CompositeSnapshot;
|
2021-05-08 03:09:00 +02:00
|
|
|
import it.cavallium.dbengine.database.Delta;
|
2021-07-17 11:52:08 +02:00
|
|
|
import it.cavallium.dbengine.database.ExtraKeyOperationResult;
|
2021-01-30 20:16:14 +01:00
|
|
|
import it.cavallium.dbengine.database.LLDictionary;
|
2021-01-31 21:23:43 +01:00
|
|
|
import it.cavallium.dbengine.database.LLDictionaryResultType;
|
2021-08-28 22:42:51 +02:00
|
|
|
import it.cavallium.dbengine.database.LLEntry;
|
2021-01-31 21:23:43 +01:00
|
|
|
import it.cavallium.dbengine.database.LLUtils;
|
2021-05-02 19:18:15 +02:00
|
|
|
import it.cavallium.dbengine.database.UpdateMode;
|
2021-05-08 03:09:00 +02:00
|
|
|
import it.cavallium.dbengine.database.UpdateReturnMode;
|
2021-08-22 21:23:22 +02:00
|
|
|
import it.cavallium.dbengine.database.serialization.BiSerializationFunction;
|
|
|
|
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;
|
|
|
|
import it.cavallium.dbengine.database.serialization.SerializerFixedBinaryLength;
|
2021-08-28 22:42:51 +02:00
|
|
|
import java.nio.ByteBuffer;
|
2021-06-06 02:23:51 +02:00
|
|
|
import java.util.Collections;
|
2021-01-31 21:23:43 +01:00
|
|
|
import java.util.HashMap;
|
2021-01-30 20:16:14 +01:00
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Map.Entry;
|
2021-05-02 19:18:15 +02:00
|
|
|
import java.util.Objects;
|
2021-07-23 15:20:33 +02:00
|
|
|
import java.util.Optional;
|
2021-07-17 11:52:08 +02:00
|
|
|
import java.util.function.BiFunction;
|
2021-02-06 19:21:31 +01:00
|
|
|
import java.util.function.Function;
|
2021-01-30 20:16:14 +01:00
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
import reactor.core.publisher.Flux;
|
|
|
|
import reactor.core.publisher.Mono;
|
2021-08-22 21:23:22 +02:00
|
|
|
import reactor.core.publisher.SynchronousSink;
|
2021-07-17 11:52:08 +02:00
|
|
|
import reactor.util.function.Tuple2;
|
2021-08-28 22:42:51 +02:00
|
|
|
import reactor.util.function.Tuple3;
|
2021-07-17 11:52:08 +02:00
|
|
|
import reactor.util.function.Tuples;
|
2021-01-30 20:16:14 +01:00
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
/**
|
|
|
|
* Optimized implementation of "DatabaseMapDictionary with SubStageGetterSingle"
|
|
|
|
*/
|
|
|
|
public class DatabaseMapDictionary<T, U> extends DatabaseMapDictionaryDeep<T, U, DatabaseStageEntry<U>> {
|
2021-01-30 20:16:14 +01:00
|
|
|
|
2021-08-29 23:18:03 +02:00
|
|
|
private final Serializer<U, Send<Buffer>> valueSerializer;
|
2021-01-30 20:16:14 +01:00
|
|
|
|
2021-02-01 11:00:27 +01:00
|
|
|
protected DatabaseMapDictionary(LLDictionary dictionary,
|
2021-08-29 23:18:03 +02:00
|
|
|
Send<Buffer> prefixKey,
|
|
|
|
SerializerFixedBinaryLength<T, Send<Buffer>> keySuffixSerializer,
|
|
|
|
Serializer<U, Send<Buffer>> valueSerializer) {
|
2021-04-30 19:15:04 +02:00
|
|
|
// Do not retain or release or use the prefixKey here
|
2021-02-02 19:40:37 +01:00
|
|
|
super(dictionary, prefixKey, keySuffixSerializer, new SubStageGetterSingle<>(valueSerializer), 0);
|
2021-01-31 21:23:43 +01:00
|
|
|
this.valueSerializer = valueSerializer;
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
public static <T, U> DatabaseMapDictionary<T, U> simple(LLDictionary dictionary,
|
2021-08-29 23:18:03 +02:00
|
|
|
SerializerFixedBinaryLength<T, Send<Buffer>> keySerializer,
|
|
|
|
Serializer<U, Send<Buffer>> valueSerializer) {
|
|
|
|
return new DatabaseMapDictionary<>(dictionary, dictionary.getAllocator().allocate(0).send(), keySerializer, valueSerializer);
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
public static <T, U> DatabaseMapDictionary<T, U> tail(LLDictionary dictionary,
|
2021-08-29 23:18:03 +02:00
|
|
|
Send<Buffer> prefixKey,
|
|
|
|
SerializerFixedBinaryLength<T, Send<Buffer>> keySuffixSerializer,
|
|
|
|
Serializer<U, Send<Buffer>> valueSerializer) {
|
2021-01-31 21:23:43 +01:00
|
|
|
return new DatabaseMapDictionary<>(dictionary, prefixKey, keySuffixSerializer, valueSerializer);
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-08-29 23:18:03 +02:00
|
|
|
private Send<Buffer> toKey(Send<Buffer> suffixKeyToSend) {
|
|
|
|
try (var suffixKey = suffixKeyToSend.receive()) {
|
2021-05-02 19:18:15 +02:00
|
|
|
assert suffixKeyConsistency(suffixKey.readableBytes());
|
2021-08-29 23:18:03 +02:00
|
|
|
return LLUtils.compositeBuffer(dictionary.getAllocator(), keyPrefix.copy().send(), suffixKey.send());
|
2021-04-30 19:15:04 +02:00
|
|
|
}
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-08-29 23:18:03 +02:00
|
|
|
private void deserializeValue(Send<Buffer> value, SynchronousSink<U> sink) {
|
2021-08-22 21:23:22 +02:00
|
|
|
try {
|
|
|
|
sink.next(valueSerializer.deserialize(value));
|
|
|
|
} catch (SerializationException ex) {
|
|
|
|
sink.error(ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
2021-03-18 16:19:41 +01:00
|
|
|
public Mono<Map<T, U>> get(@Nullable CompositeSnapshot snapshot, boolean existsAlmostCertainly) {
|
2021-08-22 18:20:05 +02:00
|
|
|
return dictionary
|
|
|
|
.getRange(resolveSnapshot(snapshot), rangeMono, existsAlmostCertainly)
|
2021-08-31 09:14:46 +02:00
|
|
|
.<Entry<T, U>>handle((entrySend, sink) -> {
|
|
|
|
try (var entry = entrySend.receive()) {
|
|
|
|
var key = deserializeSuffix(stripPrefix(entry.getKey()));
|
2021-08-22 21:23:22 +02:00
|
|
|
var value = valueSerializer.deserialize(entry.getValue());
|
|
|
|
sink.next(Map.entry(key, value));
|
|
|
|
} catch (SerializationException ex) {
|
|
|
|
sink.error(ex);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collectMap(Entry::getKey, Entry::getValue, HashMap::new)
|
2021-08-22 18:20:05 +02:00
|
|
|
.filter(map -> !map.isEmpty());
|
2021-01-31 19:52:47 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
|
|
|
public Mono<Map<T, U>> setAndGetPrevious(Map<T, U> value) {
|
2021-08-22 21:23:22 +02:00
|
|
|
return this
|
|
|
|
.get(null, false)
|
|
|
|
.concatWith(dictionary.setRange(rangeMono, Flux
|
2021-08-22 19:54:23 +02:00
|
|
|
.fromIterable(Collections.unmodifiableMap(value).entrySet())
|
2021-08-22 21:23:22 +02:00
|
|
|
.handle((entry, sink) -> {
|
|
|
|
try {
|
2021-08-31 09:14:46 +02:00
|
|
|
sink.next(LLEntry.of(this.toKey(serializeSuffix(entry.getKey())),
|
|
|
|
valueSerializer.serialize(entry.getValue())).send());
|
2021-08-22 21:23:22 +02:00
|
|
|
} catch (SerializationException e) {
|
|
|
|
sink.error(e);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
).then(Mono.empty()))
|
|
|
|
.singleOrEmpty()
|
|
|
|
.transform(LLUtils::handleDiscard);
|
2021-01-31 19:52:47 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
|
|
|
public Mono<Map<T, U>> clearAndGetPrevious() {
|
2021-05-02 19:18:15 +02:00
|
|
|
return this
|
|
|
|
.setAndGetPrevious(Map.of());
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
2021-02-24 16:43:07 +01:00
|
|
|
public Mono<Long> leavesCount(@Nullable CompositeSnapshot snapshot, boolean fast) {
|
2021-08-22 18:20:05 +02:00
|
|
|
return dictionary.sizeRange(resolveSnapshot(snapshot), rangeMono, fast);
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-03-14 03:13:19 +01:00
|
|
|
@Override
|
|
|
|
public Mono<Boolean> isEmpty(@Nullable CompositeSnapshot snapshot) {
|
2021-08-22 18:20:05 +02:00
|
|
|
return dictionary.isRangeEmpty(resolveSnapshot(snapshot), rangeMono);
|
2021-03-14 03:13:19 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
|
|
|
public Mono<DatabaseStageEntry<U>> at(@Nullable CompositeSnapshot snapshot, T keySuffix) {
|
2021-02-01 11:00:27 +01:00
|
|
|
return Mono
|
2021-08-22 21:23:22 +02:00
|
|
|
.fromCallable(() -> new DatabaseSingleMapped<>(
|
2021-05-12 21:41:47 +02:00
|
|
|
new DatabaseSingle<>(dictionary, toKey(serializeSuffix(keySuffix)), Serializer.noop())
|
|
|
|
, valueSerializer)
|
2021-05-12 19:02:51 +02:00
|
|
|
);
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
2021-03-18 16:19:41 +01:00
|
|
|
public Mono<U> getValue(@Nullable CompositeSnapshot snapshot, T keySuffix, boolean existsAlmostCertainly) {
|
2021-08-31 09:14:46 +02:00
|
|
|
return dictionary
|
|
|
|
.get(resolveSnapshot(snapshot), Mono.fromCallable(() -> toKey(serializeSuffix(keySuffix))), existsAlmostCertainly)
|
|
|
|
.handle(this::deserializeValue);
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
|
|
|
public Mono<Void> putValue(T keySuffix, U value) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var keyMono = Mono.fromCallable(() -> toKey(serializeSuffix(keySuffix)));
|
|
|
|
var valueMono = Mono.fromCallable(() -> valueSerializer.serialize(value));
|
|
|
|
return dictionary
|
|
|
|
.put(keyMono, valueMono, LLDictionaryResultType.VOID)
|
|
|
|
.doOnNext(Send::close)
|
|
|
|
.then();
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-05-02 19:18:15 +02:00
|
|
|
@Override
|
|
|
|
public Mono<UpdateMode> getUpdateMode() {
|
|
|
|
return dictionary.getUpdateMode();
|
|
|
|
}
|
|
|
|
|
2021-02-06 19:21:31 +01:00
|
|
|
@Override
|
2021-05-08 03:09:00 +02:00
|
|
|
public Mono<U> updateValue(T keySuffix,
|
|
|
|
UpdateReturnMode updateReturnMode,
|
2021-03-18 16:19:41 +01:00
|
|
|
boolean existsAlmostCertainly,
|
2021-08-22 21:23:22 +02:00
|
|
|
SerializationFunction<@Nullable U, @Nullable U> updater) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var keyMono = Mono.fromCallable(() -> toKey(serializeSuffix(keySuffix)));
|
|
|
|
return dictionary
|
|
|
|
.update(keyMono, getSerializedUpdater(updater), updateReturnMode, existsAlmostCertainly)
|
|
|
|
.handle(this::deserializeValue);
|
2021-05-08 03:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Mono<Delta<U>> updateValueAndGetDelta(T keySuffix,
|
|
|
|
boolean existsAlmostCertainly,
|
2021-08-22 21:23:22 +02:00
|
|
|
SerializationFunction<@Nullable U, @Nullable U> updater) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var keyMono = Mono.fromCallable(() -> toKey(serializeSuffix(keySuffix)));
|
|
|
|
return dictionary
|
|
|
|
.updateAndGetDelta(keyMono, getSerializedUpdater(updater), existsAlmostCertainly)
|
|
|
|
.transform(mono -> LLUtils.mapLLDelta(mono, valueSerializer::deserialize));
|
2021-02-06 19:21:31 +01:00
|
|
|
}
|
|
|
|
|
2021-08-31 09:14:46 +02:00
|
|
|
public SerializationFunction<@Nullable Send<Buffer>, @Nullable Send<Buffer>> getSerializedUpdater(
|
|
|
|
SerializationFunction<@Nullable U, @Nullable U> updater) {
|
2021-07-17 11:52:08 +02:00
|
|
|
return oldSerialized -> {
|
2021-08-31 09:14:46 +02:00
|
|
|
try (oldSerialized) {
|
2021-08-22 21:23:22 +02:00
|
|
|
U result;
|
|
|
|
if (oldSerialized == null) {
|
|
|
|
result = updater.apply(null);
|
|
|
|
} else {
|
2021-08-31 09:14:46 +02:00
|
|
|
result = updater.apply(valueSerializer.deserialize(oldSerialized));
|
2021-08-22 21:23:22 +02:00
|
|
|
}
|
2021-07-17 11:52:08 +02:00
|
|
|
if (result == null) {
|
|
|
|
return null;
|
|
|
|
} else {
|
2021-08-22 18:20:05 +02:00
|
|
|
return valueSerializer.serialize(result);
|
2021-07-17 11:52:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-08-31 09:14:46 +02:00
|
|
|
public <X> BiSerializationFunction<@Nullable Send<Buffer>, X, @Nullable Send<Buffer>> getSerializedUpdater(
|
2021-08-22 21:23:22 +02:00
|
|
|
BiSerializationFunction<@Nullable U, X, @Nullable U> updater) {
|
2021-07-17 11:52:08 +02:00
|
|
|
return (oldSerialized, extra) -> {
|
2021-08-31 09:14:46 +02:00
|
|
|
try (oldSerialized) {
|
2021-08-22 21:23:22 +02:00
|
|
|
U result;
|
|
|
|
if (oldSerialized == null) {
|
|
|
|
result = updater.apply(null, extra);
|
|
|
|
} else {
|
2021-08-31 09:14:46 +02:00
|
|
|
result = updater.apply(valueSerializer.deserialize(oldSerialized), extra);
|
2021-08-22 21:23:22 +02:00
|
|
|
}
|
2021-07-17 11:52:08 +02:00
|
|
|
if (result == null) {
|
|
|
|
return null;
|
|
|
|
} else {
|
2021-08-22 18:20:05 +02:00
|
|
|
return valueSerializer.serialize(result);
|
2021-07-17 11:52:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
|
|
|
public Mono<U> putValueAndGetPrevious(T keySuffix, U value) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var keyMono = Mono.fromCallable(() -> toKey(serializeSuffix(keySuffix)));
|
|
|
|
var valueMono = Mono.fromCallable(() -> valueSerializer.serialize(value));
|
|
|
|
return dictionary
|
|
|
|
.put(keyMono,
|
|
|
|
valueMono,
|
|
|
|
LLDictionaryResultType.PREVIOUS_VALUE)
|
|
|
|
.handle(this::deserializeValue);
|
2021-01-31 00:36:21 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
2021-05-02 19:18:15 +02:00
|
|
|
public Mono<Boolean> putValueAndGetChanged(T keySuffix, U value) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var keyMono = Mono.fromCallable(() -> toKey(serializeSuffix(keySuffix)));
|
|
|
|
var valueMono = Mono.fromCallable(() -> valueSerializer.serialize(value));
|
|
|
|
return dictionary
|
|
|
|
.put(keyMono, valueMono, LLDictionaryResultType.PREVIOUS_VALUE)
|
|
|
|
.handle(this::deserializeValue)
|
|
|
|
.map(oldValue -> !Objects.equals(oldValue, value))
|
|
|
|
.defaultIfEmpty(value != null);
|
2021-01-31 00:36:21 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
|
|
|
public Mono<Void> remove(T keySuffix) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var keyMono = Mono.fromCallable(() -> toKey(serializeSuffix(keySuffix)));
|
|
|
|
return dictionary
|
|
|
|
.remove(keyMono, LLDictionaryResultType.VOID)
|
|
|
|
.doOnNext(Send::close)
|
|
|
|
.then();
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
|
|
|
public Mono<U> removeAndGetPrevious(T keySuffix) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var keyMono = Mono.fromCallable(() -> toKey(serializeSuffix(keySuffix)));
|
|
|
|
return dictionary
|
|
|
|
.remove(keyMono, LLDictionaryResultType.PREVIOUS_VALUE)
|
|
|
|
.handle(this::deserializeValue);
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 21:23:43 +01:00
|
|
|
@Override
|
|
|
|
public Mono<Boolean> removeAndGetStatus(T keySuffix) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var keyMono = Mono.fromCallable(() -> toKey(serializeSuffix(keySuffix)));
|
|
|
|
return dictionary
|
|
|
|
.remove(keyMono, LLDictionaryResultType.PREVIOUS_VALUE_EXISTENCE)
|
|
|
|
.map(LLUtils::responseToBoolean);
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-07-23 15:20:33 +02:00
|
|
|
public Flux<Entry<T, Optional<U>>> getMulti(@Nullable CompositeSnapshot snapshot, Flux<T> keys, boolean existsAlmostCertainly) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var mappedKeys = keys
|
|
|
|
.<Tuple2<T, Send<Buffer>>>handle((keySuffix, sink) -> {
|
2021-08-28 22:42:51 +02:00
|
|
|
try {
|
2021-08-31 09:14:46 +02:00
|
|
|
sink.next(Tuples.of(keySuffix, toKey(serializeSuffix(keySuffix))));
|
|
|
|
} catch (SerializationException ex) {
|
|
|
|
sink.error(ex);
|
2021-08-22 21:23:22 +02:00
|
|
|
}
|
2021-08-31 09:14:46 +02:00
|
|
|
});
|
|
|
|
return dictionary
|
|
|
|
.getMulti(resolveSnapshot(snapshot), mappedKeys, existsAlmostCertainly)
|
|
|
|
.<Entry<T, Optional<U>>>handle((entry, sink) -> {
|
|
|
|
try {
|
|
|
|
Optional<U> valueOpt;
|
|
|
|
if (entry.getT3().isPresent()) {
|
|
|
|
try (var buf = entry.getT3().get()) {
|
|
|
|
valueOpt = Optional.of(valueSerializer.deserialize(buf));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
valueOpt = Optional.empty();
|
|
|
|
}
|
|
|
|
sink.next(Map.entry(entry.getT1(), valueOpt));
|
|
|
|
} catch (SerializationException ex) {
|
|
|
|
sink.error(ex);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.transform(LLUtils::handleDiscard);
|
2021-05-02 19:18:15 +02:00
|
|
|
}
|
|
|
|
|
2021-08-31 09:14:46 +02:00
|
|
|
private Send<LLEntry> serializeEntry(T key, U value) throws SerializationException {
|
|
|
|
try (var serializedKey = toKey(serializeSuffix(key)).receive()) {
|
|
|
|
try (var serializedValue = valueSerializer.serialize(value).receive()) {
|
|
|
|
return LLEntry.of(serializedKey.send(), serializedValue.send()).send();
|
2021-05-02 19:18:15 +02:00
|
|
|
}
|
|
|
|
}
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 02:21:53 +01:00
|
|
|
@Override
|
|
|
|
public Mono<Void> putMulti(Flux<Entry<T, U>> entries) {
|
2021-05-02 19:18:15 +02:00
|
|
|
var serializedEntries = entries
|
2021-08-31 09:14:46 +02:00
|
|
|
.<Send<LLEntry>>handle((entry, sink) -> {
|
2021-08-28 22:42:51 +02:00
|
|
|
try {
|
|
|
|
sink.next(serializeEntry(entry.getKey(), entry.getValue()));
|
|
|
|
} catch (SerializationException e) {
|
|
|
|
sink.error(e);
|
|
|
|
}
|
|
|
|
});
|
2021-02-01 02:21:53 +01:00
|
|
|
return dictionary
|
2021-05-02 19:18:15 +02:00
|
|
|
.putMulti(serializedEntries, false)
|
2021-08-28 22:42:51 +02:00
|
|
|
.then()
|
2021-08-31 09:14:46 +02:00
|
|
|
.doOnDiscard(LLEntry.class, ResourceSupport::close);
|
2021-02-01 02:21:53 +01:00
|
|
|
}
|
|
|
|
|
2021-07-17 11:52:08 +02:00
|
|
|
@Override
|
|
|
|
public <X> Flux<ExtraKeyOperationResult<T, X>> updateMulti(Flux<Tuple2<T, X>> entries,
|
2021-08-22 21:23:22 +02:00
|
|
|
BiSerializationFunction<@Nullable U, X, @Nullable U> updater) {
|
2021-08-31 09:14:46 +02:00
|
|
|
var serializedEntries = entries
|
|
|
|
.<Tuple2<Send<Buffer>, X>>handle((entry, sink) -> {
|
|
|
|
try {
|
|
|
|
sink.next(Tuples.of(serializeSuffix(entry.getT1()), entry.getT2()));
|
|
|
|
} catch (SerializationException ex) {
|
|
|
|
sink.error(ex);
|
|
|
|
}
|
|
|
|
})
|
2021-07-23 22:18:08 +02:00
|
|
|
.doOnDiscard(Tuple2.class, uncastedEntry -> {
|
2021-08-29 23:18:03 +02:00
|
|
|
if (uncastedEntry.getT1() instanceof Buffer byteBuf) {
|
2021-08-31 09:14:46 +02:00
|
|
|
byteBuf.close();
|
2021-07-23 22:18:08 +02:00
|
|
|
}
|
2021-08-29 23:18:03 +02:00
|
|
|
if (uncastedEntry.getT2() instanceof Buffer byteBuf) {
|
2021-08-31 09:14:46 +02:00
|
|
|
byteBuf.close();
|
2021-07-23 22:18:08 +02:00
|
|
|
}
|
|
|
|
});
|
2021-07-17 11:52:08 +02:00
|
|
|
var serializedUpdater = getSerializedUpdater(updater);
|
|
|
|
return dictionary.updateMulti(serializedEntries, serializedUpdater)
|
2021-08-22 21:23:22 +02:00
|
|
|
.handle((result, sink) -> {
|
|
|
|
try {
|
|
|
|
sink.next(new ExtraKeyOperationResult<>(deserializeSuffix(result.key()),
|
|
|
|
result.extra(),
|
|
|
|
result.changed()
|
|
|
|
));
|
|
|
|
} catch (SerializationException ex) {
|
|
|
|
sink.error(ex);
|
|
|
|
}
|
|
|
|
});
|
2021-07-17 11:52:08 +02:00
|
|
|
}
|
|
|
|
|
2021-01-30 20:16:14 +01:00
|
|
|
@Override
|
2021-01-31 21:23:43 +01:00
|
|
|
public Flux<Entry<T, DatabaseStageEntry<U>>> getAllStages(@Nullable CompositeSnapshot snapshot) {
|
2021-08-22 18:20:05 +02:00
|
|
|
return dictionary
|
|
|
|
.getRangeKeys(resolveSnapshot(snapshot), rangeMono)
|
2021-08-22 21:23:22 +02:00
|
|
|
.handle((key, sink) -> {
|
2021-08-31 09:14:46 +02:00
|
|
|
try (key) {
|
|
|
|
try (var keySuffixWithExt = stripPrefix(key).receive()) {
|
|
|
|
sink.next(Map.entry(deserializeSuffix(keySuffixWithExt.copy().send()),
|
2021-05-12 21:41:47 +02:00
|
|
|
new DatabaseSingleMapped<>(new DatabaseSingle<>(dictionary,
|
2021-08-31 09:14:46 +02:00
|
|
|
toKey(keySuffixWithExt.send()),
|
2021-05-12 21:41:47 +02:00
|
|
|
Serializer.noop()
|
|
|
|
), valueSerializer)
|
2021-08-22 21:23:22 +02:00
|
|
|
));
|
2021-05-12 21:41:47 +02:00
|
|
|
}
|
2021-08-31 09:14:46 +02:00
|
|
|
} catch (SerializationException ex) {
|
|
|
|
sink.error(ex);
|
2021-05-02 19:18:15 +02:00
|
|
|
}
|
2021-08-22 18:20:05 +02:00
|
|
|
});
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|
2021-01-31 12:02:02 +01:00
|
|
|
|
2021-03-22 20:02:19 +01:00
|
|
|
@Override
|
|
|
|
public Flux<Entry<T, U>> getAllValues(@Nullable CompositeSnapshot snapshot) {
|
2021-08-22 18:20:05 +02:00
|
|
|
return dictionary
|
|
|
|
.getRange(resolveSnapshot(snapshot), rangeMono)
|
2021-08-31 09:14:46 +02:00
|
|
|
.<Entry<T, U>>handle((serializedEntryToReceive, sink) -> {
|
|
|
|
try (var serializedEntry = serializedEntryToReceive.receive()) {
|
|
|
|
sink.next(Map.entry(deserializeSuffix(stripPrefix(serializedEntry.getKey())),
|
|
|
|
valueSerializer.deserialize(serializedEntry.getValue())));
|
2021-08-22 21:23:22 +02:00
|
|
|
} catch (SerializationException e) {
|
|
|
|
sink.error(e);
|
|
|
|
}
|
|
|
|
})
|
2021-07-23 22:18:08 +02:00
|
|
|
.doOnDiscard(Entry.class, uncastedEntry -> {
|
2021-08-29 23:18:03 +02:00
|
|
|
if (uncastedEntry.getKey() instanceof Buffer byteBuf) {
|
2021-08-31 09:14:46 +02:00
|
|
|
byteBuf.close();
|
2021-07-23 22:18:08 +02:00
|
|
|
}
|
2021-08-29 23:18:03 +02:00
|
|
|
if (uncastedEntry.getValue() instanceof Buffer byteBuf) {
|
2021-08-31 09:14:46 +02:00
|
|
|
byteBuf.close();
|
2021-07-23 22:18:08 +02:00
|
|
|
}
|
2021-08-22 18:20:05 +02:00
|
|
|
});
|
2021-03-22 20:02:19 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 15:47:48 +01:00
|
|
|
@Override
|
|
|
|
public Flux<Entry<T, U>> setAllValuesAndGetPrevious(Flux<Entry<T, U>> entries) {
|
2021-08-29 01:15:51 +02:00
|
|
|
return Flux.concat(
|
|
|
|
this.getAllValues(null),
|
|
|
|
dictionary.setRange(rangeMono, entries.handle((entry, sink) -> {
|
2021-08-22 21:23:22 +02:00
|
|
|
try {
|
2021-08-31 09:14:46 +02:00
|
|
|
sink.next(LLEntry.of(toKey(serializeSuffix(entry.getKey())),
|
|
|
|
valueSerializer.serialize(entry.getValue())).send());
|
2021-08-22 21:23:22 +02:00
|
|
|
} catch (SerializationException e) {
|
|
|
|
sink.error(e);
|
|
|
|
}
|
2021-08-29 01:15:51 +02:00
|
|
|
})).then(Mono.empty())
|
2021-08-22 21:23:22 +02:00
|
|
|
);
|
2021-01-31 15:47:48 +01:00
|
|
|
}
|
|
|
|
|
2021-03-14 03:13:19 +01:00
|
|
|
@Override
|
|
|
|
public Mono<Void> clear() {
|
2021-08-31 09:14:46 +02:00
|
|
|
if (range.isAll()) {
|
|
|
|
return dictionary.clear();
|
|
|
|
} else if (range.isSingle()) {
|
|
|
|
return dictionary
|
|
|
|
.remove(Mono.fromCallable(range::getSingle), LLDictionaryResultType.VOID)
|
|
|
|
.doOnNext(Send::close)
|
|
|
|
.then();
|
|
|
|
} else {
|
|
|
|
return dictionary.setRange(rangeMono, Flux.empty());
|
|
|
|
}
|
2021-01-31 12:02:02 +01:00
|
|
|
}
|
|
|
|
|
2021-01-30 20:16:14 +01:00
|
|
|
}
|