hu.akarnokd.rxjava2.operators.FlowableSwitchIfEmptyManyArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava2-extensions Show documentation
Show all versions of rxjava2-extensions Show documentation
rxjava2-extensions developed by David Karnok
/*
* Copyright 2016-2017 David Karnok
*
* 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.operators;
import java.util.concurrent.atomic.*;
import org.reactivestreams.*;
import io.reactivex.*;
import io.reactivex.internal.subscriptions.SubscriptionHelper;
import io.reactivex.internal.util.BackpressureHelper;
final class FlowableSwitchIfEmptyManyArray extends Flowable
implements FlowableTransformer {
final Flowable source;
final Publisher extends T>[] alternatives;
FlowableSwitchIfEmptyManyArray(Flowable source, Publisher extends T>[] alternatives) {
this.source = source;
this.alternatives = alternatives;
}
@Override
protected void subscribeActual(Subscriber super T> s) {
SwitchManySubscriber parent = new SwitchManySubscriber(s, alternatives);
s.onSubscribe(parent);
parent.drain(source);
}
@Override
public Publisher apply(Flowable upstream) {
return new FlowableSwitchIfEmptyManyArray(upstream, alternatives);
}
static final class SwitchManySubscriber
extends AtomicInteger
implements Subscriber, Subscription {
private static final long serialVersionUID = -174718617614474267L;
final Subscriber super T> actual;
final AtomicLong requested;
final AtomicReference s;
final Publisher extends T>[] alternatives;
int index;
boolean hasValue;
volatile boolean active;
SwitchManySubscriber(Subscriber super T> actual, Publisher extends T>[] alternatives) {
this.actual = actual;
this.alternatives = alternatives;
this.requested = new AtomicLong();
this.s = new AtomicReference();
}
@Override
public void request(long n) {
if (SubscriptionHelper.validate(n)) {
BackpressureHelper.add(requested, n);
Subscription a = s.get();
if (a != null) {
a.request(n);
}
}
}
@Override
public void cancel() {
SubscriptionHelper.cancel(s);
}
@Override
public void onSubscribe(Subscription s) {
if (SubscriptionHelper.replace(this.s, s)) {
long n = requested.get();
if (n != 0L) {
s.request(n);
}
}
}
@Override
public void onNext(T t) {
if (!hasValue) {
hasValue = true;
}
actual.onNext(t);
}
@Override
public void onError(Throwable t) {
actual.onError(t);
}
@Override
public void onComplete() {
if (hasValue) {
actual.onComplete();
} else {
active = false;
drain(null);
}
}
void drain(Publisher extends T> source) {
if (getAndIncrement() == 0) {
do {
if (SubscriptionHelper.isCancelled(s.get())) {
return;
}
if (!active) {
if (source == null) {
int idx = index;
Publisher extends T>[] a = alternatives;
if (idx == a.length) {
actual.onComplete();
return;
}
source = a[idx];
if (source == null) {
actual.onError(new NullPointerException("The " + idx + "th alternative Publisher is null"));
return;
}
index = idx + 1;
}
active = true;
source.subscribe(this);
source = null;
}
} while (decrementAndGet() != 0);
}
}
}
}