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

263 lines
8.9 KiB
Java
Raw Normal View History

package it.cavallium.dbengine.database.collections;
2021-05-08 03:09:00 +02:00
import io.netty.buffer.ByteBuf;
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.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;
import it.cavallium.dbengine.database.collections.Joiner.ValueGetter;
import it.cavallium.dbengine.database.collections.JoinerBlocking.ValueGetterBlocking;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
2021-05-02 19:18:15 +02:00
import java.util.Objects;
import java.util.Optional;
import java.util.function.Function;
import org.jetbrains.annotations.Nullable;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
2021-05-02 19:18:15 +02:00
import reactor.util.function.Tuple2;
2021-05-08 03:09:00 +02:00
import reactor.util.function.Tuple3;
2021-05-02 19:18:15 +02:00
import reactor.util.function.Tuples;
@SuppressWarnings("unused")
public interface DatabaseStageMap<T, U, US extends DatabaseStage<U>> extends DatabaseStageEntry<Map<T, U>> {
Mono<US> at(@Nullable CompositeSnapshot snapshot, T key);
2021-03-18 16:19:41 +01:00
default Mono<U> getValue(@Nullable CompositeSnapshot snapshot, T key, boolean existsAlmostCertainly) {
return this.at(snapshot, key).flatMap(v -> v.get(snapshot, existsAlmostCertainly).doAfterTerminate(v::release));
2021-03-18 16:19:41 +01:00
}
default Mono<U> getValue(@Nullable CompositeSnapshot snapshot, T key) {
2021-03-18 16:19:41 +01:00
return getValue(snapshot, key, false);
}
default Mono<U> getValueOrDefault(@Nullable CompositeSnapshot snapshot, T key, Mono<U> defaultValue) {
return getValue(snapshot, key).switchIfEmpty(defaultValue).single();
}
default Mono<Void> putValue(T key, U value) {
return at(null, key).single().flatMap(v -> v.set(value).doAfterTerminate(v::release));
}
2021-05-02 19:18:15 +02:00
Mono<UpdateMode> getUpdateMode();
2021-05-08 03:09:00 +02:00
default Mono<U> updateValue(T key, UpdateReturnMode updateReturnMode, boolean existsAlmostCertainly, Function<@Nullable U, @Nullable U> updater) {
2021-05-02 19:18:15 +02:00
return this
.at(null, key)
.single()
.flatMap(v -> v
2021-05-08 03:09:00 +02:00
.update(updater, updateReturnMode, existsAlmostCertainly)
.doAfterTerminate(v::release)
2021-05-02 19:18:15 +02:00
);
2021-03-18 16:19:41 +01:00
}
2021-05-08 03:09:00 +02:00
default Mono<U> updateValue(T key, UpdateReturnMode updateReturnMode, Function<@Nullable U, @Nullable U> updater) {
return updateValue(key, updateReturnMode, false, updater);
}
default Mono<Boolean> updateValue(T key, Function<@Nullable U, @Nullable U> updater) {
2021-05-08 03:09:00 +02:00
return updateValueAndGetDelta(key, false, updater).map(LLUtils::isDeltaChanged).single();
}
default Mono<Boolean> updateValue(T key, boolean existsAlmostCertainly, Function<@Nullable U, @Nullable U> updater) {
return updateValueAndGetDelta(key, existsAlmostCertainly, updater).map(LLUtils::isDeltaChanged).single();
}
default Mono<Delta<U>> updateValueAndGetDelta(T key, boolean existsAlmostCertainly, Function<@Nullable U, @Nullable U> updater) {
return this
.at(null, key)
.single()
.flatMap(v -> v
.updateAndGetDelta(updater, existsAlmostCertainly)
.doAfterTerminate(v::release)
2021-05-08 03:09:00 +02:00
);
}
default Mono<Delta<U>> updateValueAndGetDelta(T key, Function<@Nullable U, @Nullable U> updater) {
return updateValueAndGetDelta(key, false, updater);
2021-02-06 19:21:31 +01:00
}
default Mono<U> putValueAndGetPrevious(T key, U value) {
return at(null, key).single().flatMap(v -> v.setAndGetPrevious(value).doAfterTerminate(v::release));
}
/**
*
* @param key
* @param value
* @return true if the key was associated with any value, false if the key didn't exist.
*/
2021-05-02 19:18:15 +02:00
default Mono<Boolean> putValueAndGetChanged(T key, U value) {
return at(null, key).single().flatMap(v -> v.setAndGetChanged(value).doAfterTerminate(v::release)).single();
}
default Mono<Void> remove(T key) {
return removeAndGetStatus(key).then();
}
default Mono<U> removeAndGetPrevious(T key) {
return at(null, key).flatMap(v -> v.clearAndGetPrevious().doAfterTerminate(v::release));
}
default Mono<Boolean> removeAndGetStatus(T key) {
return removeAndGetPrevious(key).map(o -> true).defaultIfEmpty(false);
}
2021-03-18 16:19:41 +01:00
default Flux<Entry<T, U>> getMulti(@Nullable CompositeSnapshot snapshot, Flux<T> keys, boolean existsAlmostCertainly) {
return keys.flatMapSequential(key -> this
.getValue(snapshot, key, existsAlmostCertainly)
.map(value -> Map.entry(key, value)));
}
default Flux<Entry<T, U>> getMulti(@Nullable CompositeSnapshot snapshot, Flux<T> keys) {
2021-03-18 16:19:41 +01:00
return getMulti(snapshot, keys, false);
}
default Mono<Void> putMulti(Flux<Entry<T, U>> entries) {
return entries.flatMap(entry -> this.putValue(entry.getKey(), entry.getValue())).then();
}
Flux<Entry<T, US>> getAllStages(@Nullable CompositeSnapshot snapshot);
default Flux<Entry<T, U>> getAllValues(@Nullable CompositeSnapshot snapshot) {
return this
2021-03-11 15:47:19 +01:00
.getAllStages(snapshot)
2021-03-14 03:13:19 +01:00
.flatMapSequential(entry -> entry
.getValue()
2021-03-18 16:19:41 +01:00
.get(snapshot, true)
2021-03-14 03:13:19 +01:00
.map(value -> Map.entry(entry.getKey(), value))
.doAfterTerminate(() -> entry.getValue().release())
2021-03-14 03:13:19 +01:00
);
}
default Mono<Void> setAllValues(Flux<Entry<T, U>> entries) {
return setAllValuesAndGetPrevious(entries).then();
}
2021-01-31 15:47:48 +01:00
Flux<Entry<T, U>> setAllValuesAndGetPrevious(Flux<Entry<T, U>> entries);
default Mono<Void> clear() {
return setAllValues(Flux.empty());
}
default Mono<Void> replaceAllValues(boolean canKeysChange, Function<Entry<T, U>, Mono<Entry<T, U>>> entriesReplacer) {
2021-03-14 13:08:03 +01:00
if (canKeysChange) {
return this.setAllValues(this.getAllValues(null).flatMap(entriesReplacer)).then();
} else {
return this
.getAllValues(null)
.flatMap(entriesReplacer)
.flatMap(replacedEntry -> this
.at(null, replacedEntry.getKey())
.flatMap(v -> v.set(replacedEntry.getValue()).doAfterTerminate(v::release)))
2021-03-14 13:08:03 +01:00
.then();
}
}
default Mono<Void> replaceAll(Function<Entry<T, US>, Mono<Void>> entriesReplacer) {
return this
.getAllStages(null)
2021-05-02 19:18:15 +02:00
.flatMap(stage -> Mono
.defer(() -> entriesReplacer.apply(stage))
.doAfterTerminate(() -> stage.getValue().release())
2021-05-02 19:18:15 +02:00
)
.then();
}
@Override
default Mono<Map<T, U>> setAndGetPrevious(Map<T, U> value) {
return this
.setAllValuesAndGetPrevious(Flux.fromIterable(value.entrySet()))
.collectMap(Entry::getKey, Entry::getValue, HashMap::new);
}
2021-05-02 19:18:15 +02:00
@Override
default Mono<Boolean> setAndGetChanged(Map<T, U> value) {
return this
.setAndGetPrevious(value)
.map(oldValue -> !Objects.equals(oldValue, value))
.switchIfEmpty(Mono.fromSupplier(() -> !value.isEmpty()));
}
2021-02-06 19:21:31 +01:00
@Override
2021-05-08 03:09:00 +02:00
default Mono<Delta<Map<T, U>>> updateAndGetDelta(Function<@Nullable Map<T, U>, @Nullable Map<T, U>> updater,
boolean existsAlmostCertainly) {
2021-02-06 19:21:31 +01:00
return this
2021-05-02 19:18:15 +02:00
.getUpdateMode()
2021-02-06 19:21:31 +01:00
.single()
2021-05-02 19:18:15 +02:00
.flatMap(updateMode -> {
if (updateMode == UpdateMode.ALLOW_UNSAFE) {
return this
.getAllValues(null)
.collectMap(Entry::getKey, Entry::getValue, HashMap::new)
.single()
2021-05-08 03:09:00 +02:00
.<Tuple2<Optional<Map<T, U>>, Optional<Map<T, U>>>>handle((v, sink) -> {
2021-05-02 19:18:15 +02:00
if (v.isEmpty()) {
v = null;
}
var result = updater.apply(v);
if (result != null && result.isEmpty()) {
result = null;
}
2021-05-08 03:09:00 +02:00
sink.next(Tuples.of(Optional.ofNullable(v), Optional.ofNullable(result)));
2021-05-02 19:18:15 +02:00
})
.flatMap(result -> Mono
2021-05-08 03:09:00 +02:00
.justOrEmpty(result.getT2())
2021-05-02 19:18:15 +02:00
.flatMap(values -> this.setAllValues(Flux.fromIterable(values.entrySet())))
2021-05-08 03:09:00 +02:00
.thenReturn(Delta.of(result.getT1().orElse(null), result.getT2().orElse(null)))
2021-05-02 19:18:15 +02:00
);
} else if (updateMode == UpdateMode.ALLOW) {
return Mono.fromCallable(() -> {
throw new UnsupportedOperationException("Maps can't be updated atomically");
});
} else if (updateMode == UpdateMode.DISALLOW) {
return Mono.fromCallable(() -> {
throw new UnsupportedOperationException("Map can't be updated because updates are disabled");
});
} else {
2021-05-02 19:18:15 +02:00
return Mono.fromCallable(() -> {
throw new UnsupportedOperationException("Unknown update mode: " + updateMode);
});
}
2021-05-02 19:18:15 +02:00
});
2021-02-06 19:21:31 +01:00
}
@Override
default Mono<Map<T, U>> clearAndGetPrevious() {
return this.setAndGetPrevious(Map.of());
}
@Override
2021-03-18 16:19:41 +01:00
default Mono<Map<T, U>> get(@Nullable CompositeSnapshot snapshot, boolean existsAlmostCertainly) {
return getAllValues(snapshot)
.collectMap(Entry::getKey, Entry::getValue, HashMap::new);
}
@Override
2021-02-24 16:43:07 +01:00
default Mono<Long> leavesCount(@Nullable CompositeSnapshot snapshot, boolean fast) {
2021-05-02 19:18:15 +02:00
return getAllStages(snapshot)
.flatMap(stage -> Mono
.fromRunnable(() -> stage.getValue().release())
.thenReturn(true)
)
.count();
}
/**
* Value getter doesn't lock data. Please make sure to lock before getting data.
*/
2021-03-04 22:01:50 +01:00
default ValueGetterBlocking<T, U> getDbValueGetter(@Nullable CompositeSnapshot snapshot) {
return k -> getValue(snapshot, k).block();
}
/**
* Value getter doesn't lock data. Please make sure to lock before getting data.
*/
2021-03-04 22:01:50 +01:00
default ValueGetter<T, U> getAsyncDbValueGetter(@Nullable CompositeSnapshot snapshot) {
return k -> getValue(snapshot, k);
}
}