io.reactivex.flowable.subscribers.SafeSubscriber 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.subscribers;
import org.reactivestreams.*;
import hu.akarnokd.reactivestreams.extensions.RelaxedSubscriber;
import io.reactivex.common.RxJavaCommonPlugins;
import io.reactivex.common.exceptions.*;
import io.reactivex.flowable.internal.subscriptions.*;
/**
* Wraps another Subscriber and ensures all onXXX methods conform the protocol
* (except the requirement for serialized access).
*
* @param the value type
*/
public final class SafeSubscriber implements RelaxedSubscriber, Subscription {
/** The actual Subscriber. */
final Subscriber super T> actual;
/** The subscription. */
Subscription s;
/** Indicates a terminal state. */
boolean done;
/**
* Constructs a SafeSubscriber by wrapping the given actual Subscriber.
* @param actual the actual Subscriber to wrap, not null (not validated)
*/
public SafeSubscriber(Subscriber super T> actual) {
this.actual = actual;
}
@Override
public void onSubscribe(Subscription s) {
if (SubscriptionHelper.validate(this.s, s)) {
this.s = s;
try {
actual.onSubscribe(this);
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
done = true;
// can't call onError because the actual's state may be corrupt at this point
try {
s.cancel();
} catch (Throwable e1) {
Exceptions.throwIfFatal(e1);
RxJavaCommonPlugins.onError(new CompositeException(e, e1));
return;
}
RxJavaCommonPlugins.onError(e);
}
}
}
@Override
public void onNext(T t) {
if (done) {
return;
}
if (s == null) {
onNextNoSubscription();
return;
}
if (t == null) {
Throwable ex = new NullPointerException("onNext called with null. Null values are generally not allowed in 2.x operators and sources.");
try {
s.cancel();
} catch (Throwable e1) {
Exceptions.throwIfFatal(e1);
onError(new CompositeException(ex, e1));
return;
}
onError(ex);
return;
}
try {
actual.onNext(t);
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
try {
s.cancel();
} catch (Throwable e1) {
Exceptions.throwIfFatal(e1);
onError(new CompositeException(e, e1));
return;
}
onError(e);
}
}
void onNextNoSubscription() {
done = true;
Throwable ex = new NullPointerException("Subscription not set!");
try {
actual.onSubscribe(EmptySubscription.INSTANCE);
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
// can't call onError because the actual's state may be corrupt at this point
RxJavaCommonPlugins.onError(new CompositeException(ex, e));
return;
}
try {
actual.onError(ex);
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
// if onError failed, all that's left is to report the error to plugins
RxJavaCommonPlugins.onError(new CompositeException(ex, e));
}
}
@Override
public void onError(Throwable t) {
if (done) {
RxJavaCommonPlugins.onError(t);
return;
}
done = true;
if (s == null) {
Throwable npe = new NullPointerException("Subscription not set!");
try {
actual.onSubscribe(EmptySubscription.INSTANCE);
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
// can't call onError because the actual's state may be corrupt at this point
RxJavaCommonPlugins.onError(new CompositeException(t, npe, e));
return;
}
try {
actual.onError(new CompositeException(t, npe));
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
// if onError failed, all that's left is to report the error to plugins
RxJavaCommonPlugins.onError(new CompositeException(t, npe, e));
}
return;
}
if (t == null) {
t = new NullPointerException("onError called with null. Null values are generally not allowed in 2.x operators and sources.");
}
try {
actual.onError(t);
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
RxJavaCommonPlugins.onError(new CompositeException(t, ex));
}
}
@Override
public void onComplete() {
if (done) {
return;
}
done = true;
if (s == null) {
onCompleteNoSubscription();
return;
}
try {
actual.onComplete();
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
RxJavaCommonPlugins.onError(e);
}
}
void onCompleteNoSubscription() {
Throwable ex = new NullPointerException("Subscription not set!");
try {
actual.onSubscribe(EmptySubscription.INSTANCE);
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
// can't call onError because the actual's state may be corrupt at this point
RxJavaCommonPlugins.onError(new CompositeException(ex, e));
return;
}
try {
actual.onError(ex);
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
// if onError failed, all that's left is to report the error to plugins
RxJavaCommonPlugins.onError(new CompositeException(ex, e));
}
}
@Override
public void request(long n) {
try {
s.request(n);
} catch (Throwable e) {
Exceptions.throwIfFatal(e);
try {
s.cancel();
} catch (Throwable e1) {
Exceptions.throwIfFatal(e1);
RxJavaCommonPlugins.onError(new CompositeException(e, e1));
return;
}
RxJavaCommonPlugins.onError(e);
}
}
@Override
public void cancel() {
try {
s.cancel();
} catch (Throwable e1) {
Exceptions.throwIfFatal(e1);
RxJavaCommonPlugins.onError(e1);
}
}
}