2021-10-28 23:48:25 +02:00
|
|
|
package it.cavallium.dbengine.client;
|
|
|
|
|
2022-03-16 13:47:56 +01:00
|
|
|
import io.netty5.buffer.api.Drop;
|
|
|
|
import io.netty5.buffer.api.Owned;
|
|
|
|
import io.netty5.buffer.api.Send;
|
2021-10-28 23:48:25 +02:00
|
|
|
import it.cavallium.dbengine.client.query.current.data.TotalHitsCount;
|
2022-03-16 13:47:56 +01:00
|
|
|
import io.netty5.buffer.api.internal.ResourceSupport;
|
2021-10-28 23:48:25 +02:00
|
|
|
import it.cavallium.dbengine.database.collections.ValueGetter;
|
|
|
|
import it.cavallium.dbengine.database.collections.ValueTransformer;
|
2022-06-14 18:05:26 +02:00
|
|
|
import it.cavallium.dbengine.utils.SimpleResource;
|
2021-11-08 18:52:52 +01:00
|
|
|
import java.util.Map.Entry;
|
|
|
|
import java.util.Optional;
|
2021-10-28 23:48:25 +02:00
|
|
|
import java.util.function.Function;
|
|
|
|
import reactor.core.publisher.Flux;
|
|
|
|
import reactor.core.publisher.Mono;
|
|
|
|
import reactor.util.function.Tuples;
|
|
|
|
|
2022-06-14 18:05:26 +02:00
|
|
|
public final class Hits<T> extends SimpleResource {
|
2022-06-20 23:31:42 +02:00
|
|
|
|
|
|
|
private static final Hits<?> EMPTY_HITS = new Hits<>(Flux.empty(), TotalHitsCount.of(0, true), null, false);
|
2021-10-28 23:48:25 +02:00
|
|
|
private Flux<T> results;
|
|
|
|
private TotalHitsCount totalHitsCount;
|
|
|
|
private Runnable onClose;
|
|
|
|
|
|
|
|
public Hits(Flux<T> results, TotalHitsCount totalHitsCount, Runnable onClose) {
|
2022-06-20 23:31:42 +02:00
|
|
|
this(results, totalHitsCount, onClose, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Hits(Flux<T> results, TotalHitsCount totalHitsCount, Runnable onClose, boolean canClose) {
|
|
|
|
super(canClose);
|
2021-10-28 23:48:25 +02:00
|
|
|
this.results = results;
|
|
|
|
this.totalHitsCount = totalHitsCount;
|
|
|
|
this.onClose = onClose;
|
|
|
|
}
|
|
|
|
|
2022-06-20 23:31:42 +02:00
|
|
|
@SuppressWarnings("unchecked")
|
2021-10-28 23:48:25 +02:00
|
|
|
public static <T> Hits<T> empty() {
|
2022-06-20 23:31:42 +02:00
|
|
|
return (Hits<T>) EMPTY_HITS;
|
2021-10-28 23:48:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static <K, V> Hits<LazyHitEntry<K, V>> withValuesLazy(Hits<LazyHitKey<K>> hits,
|
|
|
|
ValueGetter<K, V> valuesGetter) {
|
|
|
|
var hitsEntry = hits.results().map(hitKey -> hitKey.withValue(valuesGetter::get));
|
|
|
|
|
|
|
|
return new Hits<>(hitsEntry, hits.totalHitsCount, hits::close);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static <K, V> Hits<HitEntry<K, V>> withValues(Hits<HitKey<K>> hits, ValueGetter<K, V> valuesGetter) {
|
|
|
|
var hitsEntry = hits.results().flatMap(hitKey -> hitKey.withValue(valuesGetter::get));
|
|
|
|
|
|
|
|
return new Hits<>(hitsEntry, hits.totalHitsCount, hits::close);
|
|
|
|
}
|
|
|
|
|
2021-11-08 11:17:52 +01:00
|
|
|
public static <T, U> Function<Hits<HitKey<T>>, Hits<LazyHitEntry<T, U>>> generateMapper(
|
2021-10-28 23:48:25 +02:00
|
|
|
ValueGetter<T, U> valueGetter) {
|
2021-11-08 11:17:52 +01:00
|
|
|
return result -> {
|
2021-10-28 23:48:25 +02:00
|
|
|
var hitsToTransform = result.results()
|
|
|
|
.map(hit -> new LazyHitEntry<>(Mono.just(hit.key()), valueGetter.get(hit.key()), hit.score()));
|
2021-11-08 11:17:52 +01:00
|
|
|
return new Hits<>(hitsToTransform, result.totalHitsCount(), result::close);
|
2021-10-28 23:48:25 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-11-08 11:17:52 +01:00
|
|
|
public static <T, U> Function<Hits<HitKey<T>>, Hits<LazyHitEntry<T, U>>> generateMapper(
|
2021-10-28 23:48:25 +02:00
|
|
|
ValueTransformer<T, U> valueTransformer) {
|
2021-11-08 11:17:52 +01:00
|
|
|
return result -> {
|
|
|
|
try {
|
|
|
|
var sharedHitsFlux = result.results().publish().refCount(3);
|
|
|
|
var scoresFlux = sharedHitsFlux.map(HitKey::score);
|
|
|
|
var keysFlux = sharedHitsFlux.map(HitKey::key);
|
|
|
|
|
|
|
|
var valuesFlux = valueTransformer.transform(keysFlux);
|
|
|
|
|
|
|
|
var transformedFlux = Flux.zip((Object[] data) -> {
|
|
|
|
//noinspection unchecked
|
|
|
|
var keyMono = Mono.just((T) data[0]);
|
|
|
|
//noinspection unchecked
|
2021-11-08 18:52:52 +01:00
|
|
|
var val = (Entry<T, Optional<U>>) data[1];
|
|
|
|
var valMono = Mono.justOrEmpty(val.getValue());
|
2021-11-08 11:17:52 +01:00
|
|
|
var score = (Float) data[2];
|
|
|
|
return new LazyHitEntry<>(keyMono, valMono, score);
|
|
|
|
}, keysFlux, valuesFlux, scoresFlux);
|
|
|
|
|
|
|
|
return new Hits<>(transformedFlux, result.totalHitsCount(), result::close);
|
|
|
|
} catch (Throwable t) {
|
|
|
|
result.close();
|
|
|
|
throw t;
|
|
|
|
}
|
2021-10-28 23:48:25 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public Flux<T> results() {
|
2022-06-14 18:05:26 +02:00
|
|
|
ensureOpen();
|
2021-10-28 23:48:25 +02:00
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
public TotalHitsCount totalHitsCount() {
|
2022-06-14 18:05:26 +02:00
|
|
|
ensureOpen();
|
2021-10-28 23:48:25 +02:00
|
|
|
return totalHitsCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return "Hits[" + "results=" + results + ", " + "totalHitsCount=" + totalHitsCount + ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2022-06-14 18:05:26 +02:00
|
|
|
protected void onClose() {
|
|
|
|
if (onClose != null) {
|
|
|
|
onClose.run();
|
|
|
|
}
|
2021-10-28 23:48:25 +02:00
|
|
|
}
|
|
|
|
}
|