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

hu.akarnokd.rxjava2.operators.FlowableSwitchIfEmptyMany 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.Iterator;
import java.util.concurrent.atomic.*;

import org.reactivestreams.*;

import io.reactivex.*;
import io.reactivex.exceptions.Exceptions;
import io.reactivex.internal.subscriptions.*;
import io.reactivex.internal.util.BackpressureHelper;

final class FlowableSwitchIfEmptyMany extends Flowable
implements FlowableTransformer {

    final Flowable source;

    final Iterable> alternatives;

    FlowableSwitchIfEmptyMany(Flowable source, Iterable> alternatives) {
        this.source = source;
        this.alternatives = alternatives;
    }

    @Override
    protected void subscribeActual(Subscriber s) {
        Iterator> it;
        try {
            it = alternatives.iterator();
        } catch (Throwable ex) {
            Exceptions.throwIfFatal(ex);
            EmptySubscription.error(ex, s);
            return;
        }
        SwitchManySubscriber parent = new SwitchManySubscriber(s, it);
        s.onSubscribe(parent);
        parent.drain(source);
    }

    @Override
    public Publisher apply(Flowable upstream) {
        return new FlowableSwitchIfEmptyMany(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 Iterator> alternatives;

        boolean hasValue;

        volatile boolean active;

        SwitchManySubscriber(Subscriber actual, Iterator> 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) {
                            boolean b;
                            try {
                                b = alternatives.hasNext();
                                if (b) {
                                    source = alternatives.next();
                                }
                            } catch (Throwable ex) {
                                Exceptions.throwIfFatal(ex);
                                actual.onError(ex);
                                return;
                            }

                            if (!b) {
                                actual.onComplete();
                                return;
                            }
                            if (source == null) {
                                actual.onError(new NullPointerException("The alternative Publisher is null"));
                                return;
                            }
                        }
                        active = true;
                        source.subscribe(this);
                        source = null;
                    }
                } while (decrementAndGet() != 0);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy