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

io.reactivex.observable.internal.operators.MaybeDelaySubscriptionOtherObservable Maven / Gradle / Ivy

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.observable.internal.operators;

import java.util.concurrent.atomic.AtomicReference;

import io.reactivex.common.*;
import io.reactivex.common.internal.disposables.DisposableHelper;
import io.reactivex.observable.*;

/**
 * Delay the subscription to the main Maybe until the other signals an item or completes.
 * 
 * @param  the main value type
 * @param  the other value type
 */
public final class MaybeDelaySubscriptionOtherObservable extends AbstractMaybeWithUpstream {

    final ObservableSource other;

    public MaybeDelaySubscriptionOtherObservable(MaybeSource source, ObservableSource other) {
        super(source);
        this.other = other;
    }

    @Override
    protected void subscribeActual(MaybeObserver observer) {
        other.subscribe(new OtherObserver(observer, source));
    }

    static final class OtherObserver implements Observer, Disposable {
        final DelayMaybeObserver main;

        MaybeSource source;

        Disposable s;

        OtherObserver(MaybeObserver actual, MaybeSource source) {
            this.main = new DelayMaybeObserver(actual);
            this.source = source;
        }

        @Override
        public void onSubscribe(Disposable s) {
            if (DisposableHelper.validate(this.s, s)) {
                this.s = s;

                main.actual.onSubscribe(this);
            }
        }

        @Override
        public void onNext(Object t) {
            if (s != DisposableHelper.DISPOSED) {
                s.dispose();
                s = DisposableHelper.DISPOSED;

                subscribeNext();
            }
        }

        @Override
        public void onError(Throwable t) {
            if (s != DisposableHelper.DISPOSED) {
                s = DisposableHelper.DISPOSED;

                main.actual.onError(t);
            } else {
                RxJavaCommonPlugins.onError(t);
            }
        }

        @Override
        public void onComplete() {
            if (s != DisposableHelper.DISPOSED) {
                s = DisposableHelper.DISPOSED;

                subscribeNext();
            }
        }

        void subscribeNext() {
            MaybeSource src = source;
            source = null;

            src.subscribe(main);
        }

        @Override
        public boolean isDisposed() {
            return DisposableHelper.isDisposed(main.get());
        }

        @Override
        public void dispose() {
            s.dispose();
            s = DisposableHelper.DISPOSED;
            DisposableHelper.dispose(main);
        }
    }

    static final class DelayMaybeObserver extends AtomicReference
    implements MaybeObserver {

        private static final long serialVersionUID = 706635022205076709L;

        final MaybeObserver actual;

        DelayMaybeObserver(MaybeObserver actual) {
            this.actual = actual;
        }

        @Override
        public void onSubscribe(Disposable d) {
            DisposableHelper.setOnce(this, d);
        }

        @Override
        public void onSuccess(T value) {
            actual.onSuccess(value);
        }

        @Override
        public void onError(Throwable e) {
            actual.onError(e);
        }

        @Override
        public void onComplete() {
            actual.onComplete();
        }
    }
}