reactor.core.publisher.FluxBufferWhen 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
/*
* 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.Collection;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
import java.util.Queue;
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
import java.util.concurrent.atomic.AtomicLongFieldUpdater;
import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
import java.util.function.Function;
import java.util.function.Supplier;
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
import org.reactivestreams.Subscription;
import reactor.core.CoreSubscriber;
import reactor.core.Disposable;
import reactor.core.Disposables;
import reactor.core.Exceptions;
import reactor.util.annotation.Nullable;
import reactor.util.context.Context;
/**
* Buffers elements into possibly overlapping buffers whose boundaries are determined
* by a start Publisher's element and a signal of a derived Publisher
*
* @param the source value type
* @param the value type of the publisher opening the buffers
* @param the value type of the publisher closing the individual buffers
* @param the collection type that holds the buffered values
*
* @see Reactive-Streams-Commons
*/
final class FluxBufferWhen>
extends InternalFluxOperator {
final Publisher start;
final Function super OPEN, ? extends Publisher> end;
final Supplier bufferSupplier;
final Supplier extends Queue> queueSupplier;
FluxBufferWhen(Flux extends T> source,
Publisher start,
Function super OPEN, ? extends Publisher> end,
Supplier bufferSupplier,
Supplier extends Queue> queueSupplier) {
super(source);
this.start = Operators.toFluxOrMono(Objects.requireNonNull(start, "start"));
this.end = Objects.requireNonNull(end, "end");
this.bufferSupplier = Objects.requireNonNull(bufferSupplier, "bufferSupplier");
this.queueSupplier = Objects.requireNonNull(queueSupplier, "queueSupplier");
}
@Override
public int getPrefetch() {
return Integer.MAX_VALUE;
}
@Override
public CoreSubscriber super T> subscribeOrReturn(CoreSubscriber super BUFFER> actual) {
BufferWhenMainSubscriber main =
new BufferWhenMainSubscriber<>(actual, bufferSupplier, queueSupplier, start, end);
actual.onSubscribe(main);
BufferWhenOpenSubscriber bos = new BufferWhenOpenSubscriber<>(main);
if (main.subscribers.add(bos)) {
start.subscribe(bos);
return main;
}
else {
return null;
}
}
@Override
public Object scanUnsafe(Attr key) {
if (key == Attr.RUN_STYLE) return Attr.RunStyle.SYNC;
return super.scanUnsafe(key);
}
static final class BufferWhenMainSubscriber>
implements InnerOperator {
final CoreSubscriber super BUFFER> actual;
final Context ctx;
final Publisher extends OPEN> bufferOpen;
final Function super OPEN, ? extends Publisher extends CLOSE>> bufferClose;
final Supplier bufferSupplier;
final Disposable.Composite subscribers;
final Queue queue;
volatile long requested;
static final AtomicLongFieldUpdater REQUESTED =
AtomicLongFieldUpdater.newUpdater(BufferWhenMainSubscriber.class, "requested");
volatile Subscription s;
static final AtomicReferenceFieldUpdater S =
AtomicReferenceFieldUpdater.newUpdater(BufferWhenMainSubscriber.class, Subscription.class, "s");
volatile Throwable errors;
static final AtomicReferenceFieldUpdater
ERRORS =
AtomicReferenceFieldUpdater.newUpdater(BufferWhenMainSubscriber.class, Throwable.class, "errors");
volatile int windows;
static final AtomicIntegerFieldUpdater WINDOWS =
AtomicIntegerFieldUpdater.newUpdater(BufferWhenMainSubscriber.class, "windows");
volatile boolean done;
volatile boolean cancelled;
long index;
LinkedHashMap buffers; //linkedHashMap important to keep the buffer order on final drain
long emitted;
BufferWhenMainSubscriber(CoreSubscriber super BUFFER> actual,
Supplier bufferSupplier, Supplier extends Queue> queueSupplier,
Publisher extends OPEN> bufferOpen,
Function super OPEN, ? extends Publisher extends CLOSE>> bufferClose) {
this.actual = actual;
this.ctx = actual.currentContext();
this.bufferOpen = bufferOpen;
this.bufferClose = bufferClose;
this.bufferSupplier = bufferSupplier;
this.queue = queueSupplier.get();
this.buffers = new LinkedHashMap<>();
this.subscribers = Disposables.composite();
}
@Override
public void onSubscribe(Subscription s) {
if (Operators.setOnce(S, this, s)) {
s.request(Long.MAX_VALUE);
}
}
@Override
public CoreSubscriber super BUFFER> actual() {
return actual;
}
@Override
public void onNext(T t) {
synchronized (this) {
Map bufs = buffers;
if (bufs == null) {
return;
}
if (bufs.isEmpty()) {
Operators.onDiscard(t, this.ctx);
return;
}
for (BUFFER b : bufs.values()) {
b.add(t);
}
}
}
@Override
public void onError(Throwable t) {
if (Exceptions.addThrowable(ERRORS, this, t)) {
subscribers.dispose();
Map bufs;
synchronized (this) {
bufs = buffers;
buffers = null;
}
done = true;
drain();
if (bufs != null) {
for (BUFFER b : bufs.values()) {
Operators.onDiscardMultiple(b, this.ctx);
}
}
}
else {
Operators.onErrorDropped(t, this.ctx);
}
}
@Override
public void onComplete() {
subscribers.dispose();
synchronized (this) {
Map bufs = buffers;
if (bufs == null) {
return;
}
for (BUFFER b : bufs.values()) {
queue.offer(b);
}
buffers = null;
}
done = true;
drain();
}
@Override
public void request(long n) {
Operators.addCap(REQUESTED, this, n);
drain();
}
@Override
public void cancel() {
if (Operators.terminate(S, this)) {
cancelled = true;
subscribers.dispose();
Map bufs;
synchronized (this) {
bufs = buffers;
buffers = null;
}
//first discard buffers that have been queued if they're not being drained...
if (WINDOWS.getAndIncrement(this) == 0) {
Operators.onDiscardQueueWithClear(queue, this.ctx, BUFFER::stream);
}
//...then discard unclosed buffers
if (bufs != null && !bufs.isEmpty()) {
for (BUFFER buffer : bufs.values()) {
Operators.onDiscardMultiple(buffer, this.ctx);
}
}
}
}
void drain() {
if (WINDOWS.getAndIncrement(this) != 0) {
return;
}
int missed = 1;
long e = emitted;
Subscriber super BUFFER> a = actual;
Queue q = queue;
for (;;) {
long r = requested;
while (e != r) {
if (cancelled) {
Operators.onDiscardQueueWithClear(q, this.ctx, BUFFER::stream);
return;
}
boolean d = done;
if (d && errors != null) {
Operators.onDiscardQueueWithClear(q, this.ctx, BUFFER::stream);
Throwable ex = Exceptions.terminate(ERRORS, this);
a.onError(ex);
return;
}
BUFFER v = q.poll();
boolean empty = v == null;
if (d && empty) {
a.onComplete();
return;
}
if (empty) {
break;
}
a.onNext(v);
e++;
}
if (e == r) {
if (cancelled) {
Operators.onDiscardQueueWithClear(q, this.ctx, BUFFER::stream);
return;
}
if (done) {
if (errors != null) {
Operators.onDiscardQueueWithClear(q, this.ctx, BUFFER::stream);
Throwable ex = Exceptions.terminate(ERRORS, this);
a.onError(ex);
return;
}
else if (q.isEmpty()) {
a.onComplete();
return;
}
}
}
emitted = e;
missed = WINDOWS.addAndGet(this, -missed);
if (missed == 0) {
break;
}
}
}
void open(OPEN token) {
Publisher extends CLOSE> p;
BUFFER buf;
try {
buf = Objects.requireNonNull(bufferSupplier.get(), "The bufferSupplier returned a null Collection");
p = Objects.requireNonNull(bufferClose.apply(token), "The bufferClose returned a null Publisher");
}
catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
Operators.terminate(S, this);
if (Exceptions.addThrowable(ERRORS, this, ex)) {
subscribers.dispose();
Map bufs;
synchronized (this) {
bufs = buffers;
buffers = null;
}
done = true;
drain();
if (bufs != null) {
for (BUFFER buffer : bufs.values()) {
Operators.onDiscardMultiple(buffer, this.ctx);
}
}
}
else {
Operators.onErrorDropped(ex, this.ctx);
}
return;
}
long idx = index;
index = idx + 1;
synchronized (this) {
Map bufs = buffers;
if (bufs == null) {
return;
}
bufs.put(idx, buf);
}
BufferWhenCloseSubscriber bc = new BufferWhenCloseSubscriber<>(this, idx);
subscribers.add(bc);
p = Operators.toFluxOrMono(p);
p.subscribe(bc);
}
void openComplete(BufferWhenOpenSubscriber os) {
subscribers.remove(os);
if (subscribers.size() == 0) {
Operators.terminate(S, this);
done = true;
drain();
}
}
void close(BufferWhenCloseSubscriber closer, long idx) {
subscribers.remove(closer);
boolean makeDone = false;
if (subscribers.size() == 0) {
makeDone = true;
Operators.terminate(S, this);
}
synchronized (this) {
Map bufs = buffers;
if (bufs == null) {
return;
}
queue.offer(buffers.remove(idx));
}
if (makeDone) {
done = true;
}
drain();
}
void boundaryError(Disposable boundary, Throwable ex) {
Operators.terminate(S, this);
subscribers.remove(boundary);
if (Exceptions.addThrowable(ERRORS, this, ex)) {
subscribers.dispose();
Map bufs;
synchronized (this) {
bufs = buffers;
buffers = null;
}
done = true;
drain();
if (bufs != null) {
for (BUFFER buffer : bufs.values()) {
Operators.onDiscardMultiple(buffer, this.ctx);
}
}
}
else {
Operators.onErrorDropped(ex, this.ctx);
}
}
@Override
@Nullable
public Object scanUnsafe(Attr key) {
if (key == Attr.PARENT) return s;
if (key == Attr.ACTUAL) return actual;
if (key == Attr.PREFETCH) return Integer.MAX_VALUE;
if (key == Attr.BUFFERED) return buffers.values()
.stream()
.mapToInt(Collection::size)
.sum();
if (key == Attr.CANCELLED) return cancelled;
if (key == Attr.TERMINATED) return done;
if (key == Attr.REQUESTED_FROM_DOWNSTREAM) return requested;
if (key == Attr.ERROR) return errors;
if (key == Attr.RUN_STYLE) return Attr.RunStyle.SYNC;
return InnerOperator.super.scanUnsafe(key);
}
}
static final class BufferWhenOpenSubscriber
implements Disposable, InnerConsumer {
volatile Subscription subscription;
static final AtomicReferenceFieldUpdater SUBSCRIPTION =
AtomicReferenceFieldUpdater.newUpdater(BufferWhenOpenSubscriber.class, Subscription.class, "subscription");
final BufferWhenMainSubscriber, OPEN, ?, ?> parent;
BufferWhenOpenSubscriber(BufferWhenMainSubscriber, OPEN, ?, ?> parent) {
this.parent = parent;
}
@Override
public Context currentContext() {
return parent.currentContext();
}
@Override
public void onSubscribe(Subscription s) {
if (Operators.setOnce(SUBSCRIPTION, this, s)) {
subscription.request(Long.MAX_VALUE);
}
}
@Override
public void dispose() {
Operators.terminate(SUBSCRIPTION, this);
}
@Override
public boolean isDisposed() {
return subscription == Operators.cancelledSubscription();
}
@Override
public void onNext(OPEN t) {
parent.open(t);
}
@Override
public void onError(Throwable t) {
SUBSCRIPTION.lazySet(this, Operators.cancelledSubscription());
parent.boundaryError(this, t);
}
@Override
public void onComplete() {
SUBSCRIPTION.lazySet(this, Operators.cancelledSubscription());
parent.openComplete(this);
}
@Override
@Nullable
public Object scanUnsafe(Attr key) {
if (key == Attr.ACTUAL) return parent;
if (key == Attr.PARENT) return subscription;
if (key == Attr.REQUESTED_FROM_DOWNSTREAM) return Long.MAX_VALUE;
if (key == Attr.CANCELLED) return isDisposed();
if (key == Attr.RUN_STYLE) return Attr.RunStyle.SYNC;
return null;
}
}
static final class BufferWhenCloseSubscriber>
implements Disposable, InnerConsumer
© 2015 - 2024 Weber Informatics LLC | Privacy Policy