hu.akarnokd.rxjava2.internal.operators.nbp.NbpOnSubscribeUsing Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava2-backport Show documentation
Show all versions of rxjava2-backport Show documentation
rxjava2-backport developed by David Karnok
/**
* Copyright 2015 David Karnok and Netflix, Inc.
*
* 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 hu.akarnokd.rxjava2.internal.operators.nbp;
import java.util.concurrent.atomic.AtomicBoolean;
import hu.akarnokd.rxjava2.NbpObservable;
import hu.akarnokd.rxjava2.NbpObservable.*;
import hu.akarnokd.rxjava2.disposables.Disposable;
import hu.akarnokd.rxjava2.exceptions.CompositeException;
import hu.akarnokd.rxjava2.functions.*;
import hu.akarnokd.rxjava2.internal.disposables.EmptyDisposable;
import hu.akarnokd.rxjava2.internal.subscriptions.SubscriptionHelper;
import hu.akarnokd.rxjava2.plugins.RxJavaPlugins;
public final class NbpOnSubscribeUsing implements NbpOnSubscribe {
final Supplier extends D> resourceSupplier;
final Function super D, ? extends NbpObservable extends T>> sourceSupplier;
final Consumer super D> disposer;
final boolean eager;
public NbpOnSubscribeUsing(Supplier extends D> resourceSupplier,
Function super D, ? extends NbpObservable extends T>> sourceSupplier,
Consumer super D> disposer,
boolean eager) {
this.resourceSupplier = resourceSupplier;
this.sourceSupplier = sourceSupplier;
this.disposer = disposer;
this.eager = eager;
}
@Override
public void accept(NbpSubscriber super T> s) {
D resource;
try {
resource = resourceSupplier.get();
} catch (Throwable e) {
EmptyDisposable.error(e, s);
return;
}
NbpObservable extends T> source;
try {
source = sourceSupplier.apply(resource);
} catch (Throwable e) {
try {
disposer.accept(resource);
} catch (Throwable ex) {
EmptyDisposable.error(new CompositeException(ex, e), s);
return;
}
EmptyDisposable.error(e, s);
return;
}
UsingSubscriber us = new UsingSubscriber(s, resource, disposer, eager);
source.subscribe(us);
}
static final class UsingSubscriber extends AtomicBoolean implements NbpSubscriber, Disposable {
/** */
private static final long serialVersionUID = 5904473792286235046L;
final NbpSubscriber super T> actual;
final D resource;
final Consumer super D> disposer;
final boolean eager;
Disposable s;
public UsingSubscriber(NbpSubscriber super T> actual, D resource, Consumer super D> disposer, boolean eager) {
this.actual = actual;
this.resource = resource;
this.disposer = disposer;
this.eager = eager;
}
@Override
public void onSubscribe(Disposable s) {
if (SubscriptionHelper.validateDisposable(this.s, s)) {
return;
}
this.s = s;
actual.onSubscribe(this);
}
@Override
public void onNext(T t) {
actual.onNext(t);
}
@Override
public void onError(Throwable t) {
if (eager) {
if (compareAndSet(false, true)) {
try {
disposer.accept(resource);
} catch (Throwable e) {
t = new CompositeException(e, t);
}
}
s.dispose();
actual.onError(t);
} else {
actual.onError(t);
s.dispose();
disposeAfter();
}
}
@Override
public void onComplete() {
if (eager) {
if (compareAndSet(false, true)) {
try {
disposer.accept(resource);
} catch (Throwable e) {
actual.onError(e);
return;
}
}
s.dispose();
actual.onComplete();
} else {
actual.onComplete();
s.dispose();
disposeAfter();
}
}
@Override
public void dispose() {
disposeAfter();
s.dispose();
}
void disposeAfter() {
if (compareAndSet(false, true)) {
try {
disposer.accept(resource);
} catch (Throwable e) {
// can't call actual.onError unless it is serialized, which is expensive
RxJavaPlugins.onError(e);
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy