|
| 1 | +/** |
| 2 | + * Copyright (c) 2016-present, RxJava Contributors. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in |
| 5 | + * compliance with the License. You may obtain a copy of the License at |
| 6 | + * |
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | + * |
| 9 | + * Unless required by applicable law or agreed to in writing, software distributed under the License is |
| 10 | + * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See |
| 11 | + * the License for the specific language governing permissions and limitations under the License. |
| 12 | + */ |
| 13 | + |
| 14 | +package io.reactivex.internal.operators.completable; |
| 15 | + |
| 16 | +import java.util.concurrent.atomic.*; |
| 17 | + |
| 18 | +import io.reactivex.*; |
| 19 | +import io.reactivex.annotations.Experimental; |
| 20 | +import io.reactivex.disposables.Disposable; |
| 21 | +import io.reactivex.internal.disposables.DisposableHelper; |
| 22 | +import io.reactivex.plugins.RxJavaPlugins; |
| 23 | + |
| 24 | +/** |
| 25 | + * Terminates the sequence if either the main or the other Completable terminate. |
| 26 | + * @since 2.1.17 - experimental |
| 27 | + */ |
| 28 | +@Experimental |
| 29 | +public final class CompletableTakeUntilCompletable extends Completable { |
| 30 | + |
| 31 | + final Completable source; |
| 32 | + |
| 33 | + final CompletableSource other; |
| 34 | + |
| 35 | + public CompletableTakeUntilCompletable(Completable source, |
| 36 | + CompletableSource other) { |
| 37 | + this.source = source; |
| 38 | + this.other = other; |
| 39 | + } |
| 40 | + |
| 41 | + @Override |
| 42 | + protected void subscribeActual(CompletableObserver s) { |
| 43 | + TakeUntilMainObserver parent = new TakeUntilMainObserver(s); |
| 44 | + s.onSubscribe(parent); |
| 45 | + |
| 46 | + other.subscribe(parent.other); |
| 47 | + source.subscribe(parent); |
| 48 | + } |
| 49 | + |
| 50 | + static final class TakeUntilMainObserver extends AtomicReference<Disposable> |
| 51 | + implements CompletableObserver, Disposable { |
| 52 | + |
| 53 | + private static final long serialVersionUID = 3533011714830024923L; |
| 54 | + |
| 55 | + final CompletableObserver downstream; |
| 56 | + |
| 57 | + final OtherObserver other; |
| 58 | + |
| 59 | + final AtomicBoolean once; |
| 60 | + |
| 61 | + TakeUntilMainObserver(CompletableObserver downstream) { |
| 62 | + this.downstream = downstream; |
| 63 | + this.other = new OtherObserver(this); |
| 64 | + this.once = new AtomicBoolean(); |
| 65 | + } |
| 66 | + |
| 67 | + @Override |
| 68 | + public void dispose() { |
| 69 | + if (once.compareAndSet(false, true)) { |
| 70 | + DisposableHelper.dispose(this); |
| 71 | + DisposableHelper.dispose(other); |
| 72 | + } |
| 73 | + } |
| 74 | + |
| 75 | + @Override |
| 76 | + public boolean isDisposed() { |
| 77 | + return once.get(); |
| 78 | + } |
| 79 | + |
| 80 | + @Override |
| 81 | + public void onSubscribe(Disposable d) { |
| 82 | + DisposableHelper.setOnce(this, d); |
| 83 | + } |
| 84 | + |
| 85 | + @Override |
| 86 | + public void onComplete() { |
| 87 | + if (once.compareAndSet(false, true)) { |
| 88 | + DisposableHelper.dispose(other); |
| 89 | + downstream.onComplete(); |
| 90 | + } |
| 91 | + } |
| 92 | + |
| 93 | + @Override |
| 94 | + public void onError(Throwable e) { |
| 95 | + if (once.compareAndSet(false, true)) { |
| 96 | + DisposableHelper.dispose(other); |
| 97 | + downstream.onError(e); |
| 98 | + } else { |
| 99 | + RxJavaPlugins.onError(e); |
| 100 | + } |
| 101 | + } |
| 102 | + |
| 103 | + void innerComplete() { |
| 104 | + if (once.compareAndSet(false, true)) { |
| 105 | + DisposableHelper.dispose(this); |
| 106 | + downstream.onComplete(); |
| 107 | + } |
| 108 | + } |
| 109 | + |
| 110 | + void innerError(Throwable e) { |
| 111 | + if (once.compareAndSet(false, true)) { |
| 112 | + DisposableHelper.dispose(this); |
| 113 | + downstream.onError(e); |
| 114 | + } else { |
| 115 | + RxJavaPlugins.onError(e); |
| 116 | + } |
| 117 | + } |
| 118 | + |
| 119 | + static final class OtherObserver extends AtomicReference<Disposable> |
| 120 | + implements CompletableObserver { |
| 121 | + |
| 122 | + private static final long serialVersionUID = 5176264485428790318L; |
| 123 | + final TakeUntilMainObserver parent; |
| 124 | + |
| 125 | + OtherObserver(TakeUntilMainObserver parent) { |
| 126 | + this.parent = parent; |
| 127 | + } |
| 128 | + |
| 129 | + @Override |
| 130 | + public void onSubscribe(Disposable d) { |
| 131 | + DisposableHelper.setOnce(this, d); |
| 132 | + } |
| 133 | + |
| 134 | + @Override |
| 135 | + public void onComplete() { |
| 136 | + parent.innerComplete(); |
| 137 | + } |
| 138 | + |
| 139 | + @Override |
| 140 | + public void onError(Throwable e) { |
| 141 | + parent.innerError(e); |
| 142 | + } |
| 143 | + } |
| 144 | + } |
| 145 | +} |
0 commit comments