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

io.reactivex.rxjava3.internal.operators.mixed.ObservableConcatMapCompletable Maven / Gradle / Ivy

There is a newer version: 3.1.9
Show 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.rxjava3.internal.operators.mixed;

import java.util.Objects;
import java.util.concurrent.atomic.AtomicReference;

import io.reactivex.rxjava3.core.*;
import io.reactivex.rxjava3.disposables.Disposable;
import io.reactivex.rxjava3.exceptions.Exceptions;
import io.reactivex.rxjava3.functions.Function;
import io.reactivex.rxjava3.internal.disposables.DisposableHelper;
import io.reactivex.rxjava3.internal.util.*;
import io.reactivex.rxjava3.operators.SimpleQueue;

/**
 * Maps the upstream items into {@link CompletableSource}s and subscribes to them one after the
 * other completes or terminates (in error-delaying mode).
 * 

History: 2.1.11 - experimental * @param the upstream value type * @since 2.2 */ public final class ObservableConcatMapCompletable extends Completable { final Observable source; final Function mapper; final ErrorMode errorMode; final int prefetch; public ObservableConcatMapCompletable(Observable source, Function mapper, ErrorMode errorMode, int prefetch) { this.source = source; this.mapper = mapper; this.errorMode = errorMode; this.prefetch = prefetch; } @Override protected void subscribeActual(CompletableObserver observer) { if (!ScalarXMapZHelper.tryAsCompletable(source, mapper, observer)) { source.subscribe(new ConcatMapCompletableObserver<>(observer, mapper, errorMode, prefetch)); } } static final class ConcatMapCompletableObserver extends ConcatMapXMainObserver { private static final long serialVersionUID = 3610901111000061034L; final CompletableObserver downstream; final Function mapper; final ConcatMapInnerObserver inner; volatile boolean active; ConcatMapCompletableObserver(CompletableObserver downstream, Function mapper, ErrorMode errorMode, int prefetch) { super(prefetch, errorMode); this.downstream = downstream; this.mapper = mapper; this.inner = new ConcatMapInnerObserver(this); } @Override void onSubscribeDownstream() { downstream.onSubscribe(this); } @Override void disposeInner() { inner.dispose(); } void innerError(Throwable ex) { if (errors.tryAddThrowableOrReport(ex)) { if (errorMode != ErrorMode.END) { upstream.dispose(); } active = false; drain(); } } void innerComplete() { active = false; drain(); } @Override void drain() { if (getAndIncrement() != 0) { return; } AtomicThrowable errors = this.errors; ErrorMode errorMode = this.errorMode; SimpleQueue queue = this.queue; do { if (disposed) { queue.clear(); return; } if (errors.get() != null) { if (errorMode == ErrorMode.IMMEDIATE || (errorMode == ErrorMode.BOUNDARY && !active)) { disposed = true; queue.clear(); errors.tryTerminateConsumer(downstream); return; } } if (!active) { boolean d = done; boolean empty = true; CompletableSource cs = null; try { T v = queue.poll(); if (v != null) { cs = Objects.requireNonNull(mapper.apply(v), "The mapper returned a null CompletableSource"); empty = false; } } catch (Throwable ex) { Exceptions.throwIfFatal(ex); disposed = true; queue.clear(); upstream.dispose(); errors.tryAddThrowableOrReport(ex); errors.tryTerminateConsumer(downstream); return; } if (d && empty) { disposed = true; errors.tryTerminateConsumer(downstream); return; } if (!empty) { active = true; cs.subscribe(inner); } } } while (decrementAndGet() != 0); } static final class ConcatMapInnerObserver extends AtomicReference implements CompletableObserver { private static final long serialVersionUID = 5638352172918776687L; final ConcatMapCompletableObserver parent; ConcatMapInnerObserver(ConcatMapCompletableObserver parent) { this.parent = parent; } @Override public void onSubscribe(Disposable d) { DisposableHelper.replace(this, d); } @Override public void onError(Throwable e) { parent.innerError(e); } @Override public void onComplete() { parent.innerComplete(); } void dispose() { DisposableHelper.dispose(this); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy