reactor.core.publisher.ParallelMergeReduce Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson-all Show documentation
Show all versions of redisson-all Show documentation
Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC
The newest version!
/*
* Copyright (c) 2016-2023 VMware Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package reactor.core.publisher;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
import java.util.function.BiFunction;
import org.reactivestreams.Subscription;
import reactor.core.CoreSubscriber;
import reactor.core.Fuseable;
import reactor.core.Scannable;
import reactor.util.annotation.Nullable;
import reactor.util.context.Context;
/**
* Reduces all 'rails' into a single value which then gets reduced into a single
* Publisher sequence.
*
* @param the value type
*/
final class ParallelMergeReduce extends Mono implements Scannable, Fuseable {
final ParallelFlux extends T> source;
final BiFunction reducer;
ParallelMergeReduce(ParallelFlux extends T> source,
BiFunction reducer) {
this.source = ParallelFlux.from(source);
this.reducer = reducer;
}
@Override
@Nullable
public Object scanUnsafe(Attr key) {
if (key == Attr.PARENT) return source;
if (key == Attr.RUN_STYLE) return Attr.RunStyle.SYNC;
if (key == InternalProducerAttr.INSTANCE) return true;
return null;
}
@Override
public void subscribe(CoreSubscriber super T> actual) {
MergeReduceMain parent =
new MergeReduceMain<>(source, actual, source.parallelism(), reducer);
actual.onSubscribe(parent);
}
static final class MergeReduceMain
implements InnerProducer,
Fuseable,
QueueSubscription {
final ParallelFlux extends T> source;
final CoreSubscriber super T> actual;
final MergeReduceInner[] subscribers;
final BiFunction reducer;
volatile SlotPair current;
@SuppressWarnings("rawtypes")
static final AtomicReferenceFieldUpdater CURRENT =
AtomicReferenceFieldUpdater.newUpdater(MergeReduceMain.class,
SlotPair.class,
"current");
volatile int remaining;
@SuppressWarnings("rawtypes")
static final AtomicIntegerFieldUpdater
REMAINING = AtomicIntegerFieldUpdater.newUpdater(
MergeReduceMain.class,
"remaining");
volatile Throwable error;
@SuppressWarnings("rawtypes")
static final AtomicReferenceFieldUpdater
ERROR = AtomicReferenceFieldUpdater.newUpdater(
MergeReduceMain.class,
Throwable.class,
"error");
MergeReduceMain(
ParallelFlux extends T> source,
CoreSubscriber super T> actual,
int n,
BiFunction reducer) {
this.actual = actual;
this.source = source;
@SuppressWarnings("unchecked") MergeReduceInner[] a =
new MergeReduceInner[n];
for (int i = 0; i < n; i++) {
a[i] = new MergeReduceInner<>(this, reducer);
}
this.subscribers = a;
this.reducer = reducer;
REMAINING.lazySet(this, n | Integer.MIN_VALUE);
}
@Override
public CoreSubscriber super T> actual() {
return actual;
}
@Override
@Nullable
public Object scanUnsafe(Attr key) {
if (key == Attr.ERROR) return error;
if (key == Attr.TERMINATED) return this.remaining == 0;
if (key == Attr.CANCELLED) return this.remaining == Integer.MIN_VALUE;
if (key == Attr.RUN_STYLE) return Attr.RunStyle.SYNC;
return InnerProducer.super.scanUnsafe(key);
}
@Nullable
SlotPair addValue(T value) {
for (; ; ) {
SlotPair curr = current;
if (curr == null) {
curr = new SlotPair<>();
if (!CURRENT.compareAndSet(this, null, curr)) {
continue;
}
}
int c = curr.tryAcquireSlot();
if (c < 0) {
CURRENT.compareAndSet(this, curr, null);
continue;
}
if (c == 0) {
curr.first = value;
}
else {
curr.second = value;
}
if (curr.releaseSlot()) {
CURRENT.compareAndSet(this, curr, null);
return curr;
}
return null;
}
}
@Override
public void cancel() {
int r = REMAINING.getAndSet(this, Integer.MIN_VALUE);
if ((r & Integer.MIN_VALUE) != Integer.MIN_VALUE) {
for (MergeReduceInner inner : subscribers) {
inner.cancel();
}
}
}
@Override
public void request(long n) {
final int r = this.remaining;
if ((r & Integer.MIN_VALUE) != Integer.MIN_VALUE) {
return;
}
if (REMAINING.compareAndSet(this, r, r & Integer.MAX_VALUE)) {
source.subscribe(subscribers);
}
}
void innerError(Throwable ex) {
if(ERROR.compareAndSet(this, null, ex)){
cancel();
actual.onError(ex);
}
else if(error != ex) {
Operators.onErrorDropped(ex, actual.currentContext());
}
}
void innerComplete(@Nullable T value) {
if (value != null) {
for (; ; ) {
SlotPair sp = addValue(value);
if (sp != null) {
try {
value = Objects.requireNonNull(reducer.apply(sp.first,
sp.second), "The reducer returned a null value");
}
catch (Throwable ex) {
innerError(Operators.onOperatorError(this, ex,
actual.currentContext()));
return;
}
}
else {
break;
}
}
}
if (decrementAndGet(this) == 0) {
final SlotPair sp = current;
CURRENT.lazySet(this, null);
if (sp != null) {
actual.onNext(sp.first);
actual.onComplete();
}
else {
actual.onComplete();
}
}
}
static int decrementAndGet(MergeReduceMain instance) {
int prev, next;
do {
prev = instance.remaining;
if (prev == Integer.MIN_VALUE) {
return Integer.MIN_VALUE;
}
next = prev - 1;
} while (!REMAINING.compareAndSet(instance, prev, next));
return next;
}
@Override
public T poll() {
return null;
}
@Override
public int requestFusion(int requestedMode) {
return Fuseable.NONE;
}
@Override
public int size() {
return 0;
}
@Override
public boolean isEmpty() {
return true;
}
@Override
public void clear() {
}
}
static final class MergeReduceInner implements InnerConsumer {
final MergeReduceMain parent;
final BiFunction reducer;
volatile Subscription s;
@SuppressWarnings("rawtypes")
static final AtomicReferenceFieldUpdater
S = AtomicReferenceFieldUpdater.newUpdater(
MergeReduceInner.class,
Subscription.class,
"s");
T value;
boolean done;
MergeReduceInner(MergeReduceMain parent,
BiFunction reducer) {
this.parent = parent;
this.reducer = reducer;
}
@Override
public Context currentContext() {
return parent.actual.currentContext();
}
@Override
@Nullable
public Object scanUnsafe(Attr key) {
if (key == Attr.CANCELLED) return s == Operators.cancelledSubscription();
if (key == Attr.PARENT) return s;
if (key == Attr.TERMINATED) return done;
if (key == Attr.ACTUAL) return parent;
if (key == Attr.BUFFERED) return value != null ? 1 : 0;
if (key == Attr.PREFETCH) return Integer.MAX_VALUE;
if (key == Attr.RUN_STYLE) return Attr.RunStyle.SYNC;
return null;
}
@Override
public void onSubscribe(Subscription s) {
if (Operators.setOnce(S, this, s)) {
s.request(Long.MAX_VALUE);
}
}
@Override
public void onNext(T t) {
if (done) {
Operators.onNextDropped(t, currentContext());
return;
}
T v = value;
if (v == null) {
value = t;
}
else {
try {
v = Objects.requireNonNull(reducer.apply(v, t), "The reducer returned a null value");
}
catch (Throwable ex) {
onError(Operators.onOperatorError(s, ex, t, currentContext()));
return;
}
value = v;
}
}
@Override
public void onError(Throwable t) {
if (done) {
Operators.onErrorDropped(t, parent.actual.currentContext());
return;
}
done = true;
parent.innerError(t);
}
@Override
public void onComplete() {
if (done) {
return;
}
done = true;
parent.innerComplete(value);
}
void cancel() {
Operators.terminate(S, this);
}
}
static final class SlotPair {
T first;
T second;
volatile int acquireIndex;
@SuppressWarnings("rawtypes")
static final AtomicIntegerFieldUpdater ACQ =
AtomicIntegerFieldUpdater.newUpdater(SlotPair.class, "acquireIndex");
volatile int releaseIndex;
@SuppressWarnings("rawtypes")
static final AtomicIntegerFieldUpdater REL =
AtomicIntegerFieldUpdater.newUpdater(SlotPair.class, "releaseIndex");
int tryAcquireSlot() {
for (; ; ) {
int acquired = acquireIndex;
if (acquired >= 2) {
return -1;
}
if (ACQ.compareAndSet(this, acquired, acquired + 1)) {
return acquired;
}
}
}
boolean releaseSlot() {
return REL.incrementAndGet(this) == 2;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy