io.reactivex.internal.operators.flowable.FlowableBufferBoundarySupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava Show documentation
Show all versions of rxjava Show documentation
Reactive Extensions for Java
/**
* Copyright (c) 2016-present, RxJava Contributors.
*
* 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
*
* http://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 io.reactivex.internal.operators.flowable;
import java.util.Collection;
import java.util.concurrent.Callable;
import java.util.concurrent.atomic.AtomicReference;
import org.reactivestreams.*;
import io.reactivex.*;
import io.reactivex.disposables.Disposable;
import io.reactivex.exceptions.Exceptions;
import io.reactivex.internal.disposables.DisposableHelper;
import io.reactivex.internal.functions.ObjectHelper;
import io.reactivex.internal.queue.MpscLinkedQueue;
import io.reactivex.internal.subscribers.QueueDrainSubscriber;
import io.reactivex.internal.subscriptions.*;
import io.reactivex.internal.util.QueueDrainHelper;
import io.reactivex.plugins.RxJavaPlugins;
import io.reactivex.subscribers.*;
public final class FlowableBufferBoundarySupplier, B>
extends AbstractFlowableWithUpstream {
final Callable extends Publisher> boundarySupplier;
final Callable bufferSupplier;
public FlowableBufferBoundarySupplier(Flowable source, Callable extends Publisher> boundarySupplier, Callable bufferSupplier) {
super(source);
this.boundarySupplier = boundarySupplier;
this.bufferSupplier = bufferSupplier;
}
@Override
protected void subscribeActual(Subscriber super U> s) {
source.subscribe(new BufferBoundarySupplierSubscriber(new SerializedSubscriber(s), bufferSupplier, boundarySupplier));
}
static final class BufferBoundarySupplierSubscriber, B>
extends QueueDrainSubscriber implements FlowableSubscriber, Subscription, Disposable {
final Callable bufferSupplier;
final Callable extends Publisher> boundarySupplier;
Subscription upstream;
final AtomicReference other = new AtomicReference();
U buffer;
BufferBoundarySupplierSubscriber(Subscriber super U> actual, Callable bufferSupplier,
Callable extends Publisher> boundarySupplier) {
super(actual, new MpscLinkedQueue());
this.bufferSupplier = bufferSupplier;
this.boundarySupplier = boundarySupplier;
}
@Override
public void onSubscribe(Subscription s) {
if (!SubscriptionHelper.validate(this.upstream, s)) {
return;
}
this.upstream = s;
Subscriber super U> actual = this.downstream;
U b;
try {
b = ObjectHelper.requireNonNull(bufferSupplier.call(), "The buffer supplied is null");
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
cancelled = true;
s.cancel();
EmptySubscription.error(e, actual);
return;
}
buffer = b;
Publisher boundary;
try {
boundary = ObjectHelper.requireNonNull(boundarySupplier.call(), "The boundary publisher supplied is null");
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
cancelled = true;
s.cancel();
EmptySubscription.error(ex, actual);
return;
}
BufferBoundarySubscriber bs = new BufferBoundarySubscriber(this);
other.set(bs);
actual.onSubscribe(this);
if (!cancelled) {
s.request(Long.MAX_VALUE);
boundary.subscribe(bs);
}
}
@Override
public void onNext(T t) {
synchronized (this) {
U b = buffer;
if (b == null) {
return;
}
b.add(t);
}
}
@Override
public void onError(Throwable t) {
cancel();
downstream.onError(t);
}
@Override
public void onComplete() {
U b;
synchronized (this) {
b = buffer;
if (b == null) {
return;
}
buffer = null;
}
queue.offer(b);
done = true;
if (enter()) {
QueueDrainHelper.drainMaxLoop(queue, downstream, false, this, this);
}
}
@Override
public void request(long n) {
requested(n);
}
@Override
public void cancel() {
if (!cancelled) {
cancelled = true;
upstream.cancel();
disposeOther();
if (enter()) {
queue.clear();
}
}
}
void disposeOther() {
DisposableHelper.dispose(other);
}
void next() {
U next;
try {
next = ObjectHelper.requireNonNull(bufferSupplier.call(), "The buffer supplied is null");
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
cancel();
downstream.onError(e);
return;
}
Publisher boundary;
try {
boundary = ObjectHelper.requireNonNull(boundarySupplier.call(), "The boundary publisher supplied is null");
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
cancelled = true;
upstream.cancel();
downstream.onError(ex);
return;
}
BufferBoundarySubscriber bs = new BufferBoundarySubscriber(this);
if (DisposableHelper.replace(other, bs)) {
U b;
synchronized (this) {
b = buffer;
if (b == null) {
return;
}
buffer = next;
}
boundary.subscribe(bs);
fastPathEmitMax(b, false, this);
}
}
@Override
public void dispose() {
upstream.cancel();
disposeOther();
}
@Override
public boolean isDisposed() {
return other.get() == DisposableHelper.DISPOSED;
}
@Override
public boolean accept(Subscriber super U> a, U v) {
downstream.onNext(v);
return true;
}
}
static final class BufferBoundarySubscriber, B> extends DisposableSubscriber {
final BufferBoundarySupplierSubscriber parent;
boolean once;
BufferBoundarySubscriber(BufferBoundarySupplierSubscriber parent) {
this.parent = parent;
}
@Override
public void onNext(B t) {
if (once) {
return;
}
once = true;
cancel();
parent.next();
}
@Override
public void onError(Throwable t) {
if (once) {
RxJavaPlugins.onError(t);
return;
}
once = true;
parent.onError(t);
}
@Override
public void onComplete() {
if (once) {
return;
}
once = true;
parent.next();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy