io.reactivex.observable.internal.operators.ObservableBufferExactBoundary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava3-observable Show documentation
Show all versions of rxjava3-observable Show documentation
rxjava3-observable developed by David Karnok
The newest version!
/**
* 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.observable.internal.operators;
import java.util.Collection;
import java.util.concurrent.Callable;
import io.reactivex.common.Disposable;
import io.reactivex.common.exceptions.Exceptions;
import io.reactivex.common.internal.disposables.DisposableHelper;
import io.reactivex.common.internal.functions.ObjectHelper;
import io.reactivex.observable.*;
import io.reactivex.observable.internal.disposables.EmptyDisposable;
import io.reactivex.observable.internal.observers.QueueDrainObserver;
import io.reactivex.observable.internal.queues.MpscLinkedQueue;
import io.reactivex.observable.internal.utils.QueueDrainHelper;
import io.reactivex.observable.observers.*;
public final class ObservableBufferExactBoundary, B>
extends AbstractObservableWithUpstream {
final ObservableSource boundary;
final Callable bufferSupplier;
public ObservableBufferExactBoundary(ObservableSource source, ObservableSource boundary, Callable bufferSupplier) {
super(source);
this.boundary = boundary;
this.bufferSupplier = bufferSupplier;
}
@Override
protected void subscribeActual(Observer super U> t) {
source.subscribe(new BufferExactBoundaryObserver(new SerializedObserver(t), bufferSupplier, boundary));
}
static final class BufferExactBoundaryObserver, B>
extends QueueDrainObserver implements Observer, Disposable {
final Callable bufferSupplier;
final ObservableSource boundary;
Disposable s;
Disposable other;
U buffer;
BufferExactBoundaryObserver(Observer super U> actual, Callable bufferSupplier,
ObservableSource boundary) {
super(actual, new MpscLinkedQueue());
this.bufferSupplier = bufferSupplier;
this.boundary = boundary;
}
@Override
public void onSubscribe(Disposable s) {
if (DisposableHelper.validate(this.s, s)) {
this.s = s;
U b;
try {
b = ObjectHelper.requireNonNull(bufferSupplier.call(), "The buffer supplied is null");
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
cancelled = true;
s.dispose();
EmptyDisposable.error(e, actual);
return;
}
buffer = b;
BufferBoundaryObserver bs = new BufferBoundaryObserver(this);
other = bs;
actual.onSubscribe(this);
if (!cancelled) {
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) {
dispose();
actual.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.drainLoop(queue, actual, false, this, this);
}
}
@Override
public void dispose() {
if (!cancelled) {
cancelled = true;
other.dispose();
s.dispose();
if (enter()) {
queue.clear();
}
}
}
@Override
public boolean isDisposed() {
return cancelled;
}
void next() {
U next;
try {
next = ObjectHelper.requireNonNull(bufferSupplier.call(), "The buffer supplied is null");
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
dispose();
actual.onError(e);
return;
}
U b;
synchronized (this) {
b = buffer;
if (b == null) {
return;
}
buffer = next;
}
fastPathEmit(b, false, this);
}
@Override
public void accept(Observer super U> a, U v) {
actual.onNext(v);
}
}
static final class BufferBoundaryObserver, B>
extends DisposableObserver {
final BufferExactBoundaryObserver parent;
BufferBoundaryObserver(BufferExactBoundaryObserver parent) {
this.parent = parent;
}
@Override
public void onNext(B t) {
parent.next();
}
@Override
public void onError(Throwable t) {
parent.onError(t);
}
@Override
public void onComplete() {
parent.onComplete();
}
}
}