io.reactivex.flowable.internal.operators.FlowableDebounce Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava3-flowable Show documentation
Show all versions of rxjava3-flowable Show documentation
rxjava3-flowable 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.flowable.internal.operators;
import java.util.concurrent.atomic.*;
import org.reactivestreams.*;
import hu.akarnokd.reactivestreams.extensions.RelaxedSubscriber;
import io.reactivex.common.*;
import io.reactivex.common.exceptions.*;
import io.reactivex.common.functions.Function;
import io.reactivex.common.internal.disposables.DisposableHelper;
import io.reactivex.common.internal.functions.ObjectHelper;
import io.reactivex.flowable.Flowable;
import io.reactivex.flowable.internal.subscriptions.SubscriptionHelper;
import io.reactivex.flowable.internal.utils.BackpressureHelper;
import io.reactivex.flowable.subscribers.*;
public final class FlowableDebounce extends AbstractFlowableWithUpstream {
final Function super T, ? extends Publisher> debounceSelector;
public FlowableDebounce(Flowable source, Function super T, ? extends Publisher> debounceSelector) {
super(source);
this.debounceSelector = debounceSelector;
}
@Override
protected void subscribeActual(Subscriber super T> s) {
source.subscribe(new DebounceSubscriber(new SerializedSubscriber(s), debounceSelector));
}
static final class DebounceSubscriber extends AtomicLong
implements RelaxedSubscriber, Subscription {
private static final long serialVersionUID = 6725975399620862591L;
final Subscriber super T> actual;
final Function super T, ? extends Publisher> debounceSelector;
Subscription s;
final AtomicReference debouncer = new AtomicReference();
volatile long index;
boolean done;
DebounceSubscriber(Subscriber super T> actual,
Function super T, ? extends Publisher> debounceSelector) {
this.actual = actual;
this.debounceSelector = debounceSelector;
}
@Override
public void onSubscribe(Subscription s) {
if (SubscriptionHelper.validate(this.s, s)) {
this.s = s;
actual.onSubscribe(this);
s.request(Long.MAX_VALUE);
}
}
@Override
public void onNext(T t) {
if (done) {
return;
}
long idx = index + 1;
index = idx;
Disposable d = debouncer.get();
if (d != null) {
d.dispose();
}
Publisher p;
try {
p = ObjectHelper.requireNonNull(debounceSelector.apply(t), "The publisher supplied is null");
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
cancel();
actual.onError(e);
return;
}
DebounceInnerSubscriber dis = new DebounceInnerSubscriber(this, idx, t);
if (debouncer.compareAndSet(d, dis)) {
p.subscribe(dis);
}
}
@Override
public void onError(Throwable t) {
DisposableHelper.dispose(debouncer);
actual.onError(t);
}
@Override
public void onComplete() {
if (done) {
return;
}
done = true;
Disposable d = debouncer.get();
if (!DisposableHelper.isDisposed(d)) {
@SuppressWarnings("unchecked")
DebounceInnerSubscriber dis = (DebounceInnerSubscriber)d;
dis.emit();
DisposableHelper.dispose(debouncer);
actual.onComplete();
}
}
@Override
public void request(long n) {
if (SubscriptionHelper.validate(n)) {
BackpressureHelper.add(this, n);
}
}
@Override
public void cancel() {
s.cancel();
DisposableHelper.dispose(debouncer);
}
void emit(long idx, T value) {
if (idx == index) {
long r = get();
if (r != 0L) {
actual.onNext(value);
BackpressureHelper.produced(this, 1);
} else {
cancel();
actual.onError(new MissingBackpressureException("Could not deliver value due to lack of requests"));
}
}
}
static final class DebounceInnerSubscriber extends DisposableSubscriber {
final DebounceSubscriber parent;
final long index;
final T value;
boolean done;
final AtomicBoolean once = new AtomicBoolean();
DebounceInnerSubscriber(DebounceSubscriber parent, long index, T value) {
this.parent = parent;
this.index = index;
this.value = value;
}
@Override
public void onNext(U t) {
if (done) {
return;
}
done = true;
cancel();
emit();
}
void emit() {
if (once.compareAndSet(false, true)) {
parent.emit(index, value);
}
}
@Override
public void onError(Throwable t) {
if (done) {
RxJavaCommonPlugins.onError(t);
return;
}
done = true;
parent.onError(t);
}
@Override
public void onComplete() {
if (done) {
return;
}
done = true;
emit();
}
}
}
}