All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hu.akarnokd.rxjava2.operators.FlowableSwitchIfEmptyManyArray Maven / Gradle / Ivy

There is a newer version: 0.20.10
Show newest version
/*
 * 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[] alternatives;

    FlowableSwitchIfEmptyManyArray(Flowable source, Publisher[] alternatives) {
        this.source = source;
        this.alternatives = alternatives;
    }

    @Override
    protected void subscribeActual(Subscriber 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 actual;

        final AtomicLong requested;

        final AtomicReference s;

        final Publisher[] alternatives;

        int index;

        boolean hasValue;

        volatile boolean active;

        SwitchManySubscriber(Subscriber actual, Publisher[] 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 source) {
            if (getAndIncrement() == 0) {
                do {
                    if (SubscriptionHelper.isCancelled(s.get())) {
                        return;
                    }

                    if (!active) {
                        if (source == null) {
                            int idx = index;
                            Publisher[] 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);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy