-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.x: Completable class for valueless event composition.
This PR adds a new class `Completable` which allows composing events that never want to fire `onNext`, but only `onError` or `onComplete`. It is built upon the same Reactive-Streams principles as `Single`, `NbpObservable` and `Observable`. I've added most methods that made sense and left out the others (such as `map` and `flatMap`) that would require at least a single value.
- Loading branch information
Showing
10 changed files
with
2,354 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
168 changes: 168 additions & 0 deletions
168
src/main/java/io/reactivex/internal/operators/completable/CompletableOnSubscribeConcat.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
/** | ||
* Copyright 2015 Netflix, Inc. | ||
* | ||
* 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.internal.operators.completable; | ||
|
||
import java.util.concurrent.atomic.*; | ||
|
||
import org.reactivestreams.*; | ||
|
||
import io.reactivex.*; | ||
import io.reactivex.Completable.*; | ||
import io.reactivex.disposables.Disposable; | ||
import io.reactivex.exceptions.MissingBackpressureException; | ||
import io.reactivex.internal.disposables.SerialResource; | ||
import io.reactivex.internal.queue.SpscArrayQueue; | ||
import io.reactivex.internal.subscriptions.SubscriptionHelper; | ||
import io.reactivex.plugins.RxJavaPlugins; | ||
|
||
public final class CompletableOnSubscribeConcat implements CompletableOnSubscribe { | ||
final Observable<? extends Completable> sources; | ||
final int prefetch; | ||
|
||
public CompletableOnSubscribeConcat(Observable<? extends Completable> sources, int prefetch) { | ||
this.sources = sources; | ||
this.prefetch = prefetch; | ||
} | ||
|
||
@Override | ||
public void accept(CompletableSubscriber s) { | ||
CompletableConcatSubscriber parent = new CompletableConcatSubscriber(s, prefetch); | ||
sources.subscribe(parent); | ||
} | ||
|
||
static final class CompletableConcatSubscriber | ||
extends AtomicInteger | ||
implements Subscriber<Completable>, Disposable { | ||
/** */ | ||
private static final long serialVersionUID = 7412667182931235013L; | ||
final CompletableSubscriber actual; | ||
final int prefetch; | ||
final SerialResource<Disposable> sr; | ||
|
||
final SpscArrayQueue<Completable> queue; | ||
|
||
Subscription s; | ||
|
||
volatile boolean done; | ||
|
||
volatile int once; | ||
static final AtomicIntegerFieldUpdater<CompletableConcatSubscriber> ONCE = | ||
AtomicIntegerFieldUpdater.newUpdater(CompletableConcatSubscriber.class, "once"); | ||
|
||
final ConcatInnerSubscriber inner; | ||
|
||
public CompletableConcatSubscriber(CompletableSubscriber actual, int prefetch) { | ||
this.actual = actual; | ||
this.prefetch = prefetch; | ||
this.queue = new SpscArrayQueue<>(prefetch); | ||
this.sr = new SerialResource<>(Disposable::dispose); | ||
this.inner = new ConcatInnerSubscriber(); | ||
} | ||
|
||
@Override | ||
public void onSubscribe(Subscription s) { | ||
if (SubscriptionHelper.validateSubscription(this.s, s)) { | ||
return; | ||
} | ||
this.s = s; | ||
actual.onSubscribe(this); | ||
s.request(prefetch); | ||
} | ||
|
||
@Override | ||
public void onNext(Completable t) { | ||
if (queue.offer(t)) { | ||
onError(new MissingBackpressureException()); | ||
return; | ||
} | ||
if (getAndIncrement() == 0) { | ||
next(); | ||
} | ||
} | ||
|
||
@Override | ||
public void onError(Throwable t) { | ||
if (ONCE.compareAndSet(this, 0, 1)) { | ||
actual.onError(t); | ||
return; | ||
} | ||
RxJavaPlugins.onError(t); | ||
} | ||
|
||
@Override | ||
public void onComplete() { | ||
if (done) { | ||
return; | ||
} | ||
done = true; | ||
if (getAndIncrement() == 0) { | ||
next(); | ||
} | ||
} | ||
|
||
void innerError(Throwable e) { | ||
s.cancel(); | ||
onError(e); | ||
} | ||
|
||
void innerComplete() { | ||
if (decrementAndGet() != 0) { | ||
next(); | ||
} | ||
if (!done) { | ||
s.request(1); | ||
} | ||
} | ||
|
||
@Override | ||
public void dispose() { | ||
s.cancel(); | ||
sr.dispose(); | ||
} | ||
|
||
void next() { | ||
boolean d = done; | ||
Completable c = queue.poll(); | ||
if (c == null) { | ||
if (d) { | ||
if (ONCE.compareAndSet(this, 0, 1)) { | ||
actual.onComplete(); | ||
} | ||
return; | ||
} | ||
RxJavaPlugins.onError(new IllegalStateException("Queue is empty?!")); | ||
return; | ||
} | ||
|
||
c.subscribe(inner); | ||
} | ||
|
||
final class ConcatInnerSubscriber implements CompletableSubscriber { | ||
@Override | ||
public void onSubscribe(Disposable d) { | ||
sr.set(d); | ||
} | ||
|
||
@Override | ||
public void onError(Throwable e) { | ||
innerError(e); | ||
} | ||
|
||
@Override | ||
public void onComplete() { | ||
innerComplete(); | ||
} | ||
} | ||
} | ||
} |
93 changes: 93 additions & 0 deletions
93
...n/java/io/reactivex/internal/operators/completable/CompletableOnSubscribeConcatArray.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/** | ||
* Copyright 2015 Netflix, Inc. | ||
* | ||
* 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.internal.operators.completable; | ||
|
||
import java.util.concurrent.atomic.AtomicInteger; | ||
|
||
import io.reactivex.Completable; | ||
import io.reactivex.Completable.*; | ||
import io.reactivex.disposables.*; | ||
|
||
public final class CompletableOnSubscribeConcatArray implements CompletableOnSubscribe { | ||
final Completable[] sources; | ||
|
||
public CompletableOnSubscribeConcatArray(Completable[] sources) { | ||
this.sources = sources; | ||
} | ||
|
||
@Override | ||
public void accept(CompletableSubscriber s) { | ||
ConcatInnerSubscriber inner = new ConcatInnerSubscriber(s, sources); | ||
s.onSubscribe(inner.sd); | ||
inner.next(); | ||
} | ||
|
||
static final class ConcatInnerSubscriber extends AtomicInteger implements CompletableSubscriber { | ||
/** */ | ||
private static final long serialVersionUID = -7965400327305809232L; | ||
|
||
final CompletableSubscriber actual; | ||
final Completable[] sources; | ||
|
||
int index; | ||
|
||
final SerialDisposable sd; | ||
|
||
public ConcatInnerSubscriber(CompletableSubscriber actual, Completable[] sources) { | ||
this.actual = actual; | ||
this.sources = sources; | ||
this.sd = new SerialDisposable(); | ||
} | ||
|
||
@Override | ||
public void onSubscribe(Disposable d) { | ||
sd.set(d); | ||
} | ||
|
||
@Override | ||
public void onError(Throwable e) { | ||
actual.onError(e); | ||
} | ||
|
||
@Override | ||
public void onComplete() { | ||
next(); | ||
} | ||
|
||
void next() { | ||
if (sd.isDisposed()) { | ||
return; | ||
} | ||
|
||
if (getAndIncrement() != 0) { | ||
return; | ||
} | ||
|
||
Completable[] a = sources; | ||
do { | ||
if (sd.isDisposed()) { | ||
return; | ||
} | ||
|
||
int idx = index++; | ||
if (idx == a.length) { | ||
actual.onComplete(); | ||
return; | ||
} | ||
|
||
a[idx].subscribe(this); | ||
} while (decrementAndGet() != 0); | ||
} | ||
} | ||
} |
133 changes: 133 additions & 0 deletions
133
...ava/io/reactivex/internal/operators/completable/CompletableOnSubscribeConcatIterable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
/** | ||
* Copyright 2015 Netflix, Inc. | ||
* | ||
* 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.internal.operators.completable; | ||
|
||
import java.util.Iterator; | ||
import java.util.concurrent.atomic.AtomicInteger; | ||
|
||
import io.reactivex.Completable; | ||
import io.reactivex.Completable.*; | ||
import io.reactivex.disposables.*; | ||
import io.reactivex.internal.disposables.EmptyDisposable; | ||
|
||
public final class CompletableOnSubscribeConcatIterable implements CompletableOnSubscribe { | ||
final Iterable<? extends Completable> sources; | ||
|
||
public CompletableOnSubscribeConcatIterable(Iterable<? extends Completable> sources) { | ||
this.sources = sources; | ||
} | ||
|
||
@Override | ||
public void accept(CompletableSubscriber s) { | ||
|
||
Iterator<? extends Completable> it; | ||
|
||
try { | ||
it = sources.iterator(); | ||
} catch (Throwable e) { | ||
s.onSubscribe(EmptyDisposable.INSTANCE); | ||
s.onError(e); | ||
return; | ||
} | ||
|
||
if (it == null) { | ||
s.onSubscribe(EmptyDisposable.INSTANCE); | ||
s.onError(new NullPointerException("The iterator returned is null")); | ||
return; | ||
} | ||
|
||
ConcatInnerSubscriber inner = new ConcatInnerSubscriber(s, it); | ||
s.onSubscribe(inner.sd); | ||
inner.next(); | ||
} | ||
|
||
static final class ConcatInnerSubscriber extends AtomicInteger implements CompletableSubscriber { | ||
/** */ | ||
private static final long serialVersionUID = -7965400327305809232L; | ||
|
||
final CompletableSubscriber actual; | ||
final Iterator<? extends Completable> sources; | ||
|
||
int index; | ||
|
||
final SerialDisposable sd; | ||
|
||
public ConcatInnerSubscriber(CompletableSubscriber actual, Iterator<? extends Completable> sources) { | ||
this.actual = actual; | ||
this.sources = sources; | ||
this.sd = new SerialDisposable(); | ||
} | ||
|
||
@Override | ||
public void onSubscribe(Disposable d) { | ||
sd.set(d); | ||
} | ||
|
||
@Override | ||
public void onError(Throwable e) { | ||
actual.onError(e); | ||
} | ||
|
||
@Override | ||
public void onComplete() { | ||
next(); | ||
} | ||
|
||
void next() { | ||
if (sd.isDisposed()) { | ||
return; | ||
} | ||
|
||
if (getAndIncrement() != 0) { | ||
return; | ||
} | ||
|
||
Iterator<? extends Completable> a = sources; | ||
do { | ||
if (sd.isDisposed()) { | ||
return; | ||
} | ||
|
||
boolean b; | ||
try { | ||
b = a.hasNext(); | ||
} catch (Throwable ex) { | ||
actual.onError(ex); | ||
return; | ||
} | ||
|
||
if (!b) { | ||
actual.onComplete(); | ||
return; | ||
} | ||
|
||
Completable c; | ||
|
||
try { | ||
c = a.next(); | ||
} catch (Throwable ex) { | ||
actual.onError(ex); | ||
return; | ||
} | ||
|
||
if (c == null) { | ||
actual.onError(new NullPointerException("The completable returned is null")); | ||
return; | ||
} | ||
|
||
c.subscribe(this); | ||
} while (decrementAndGet() != 0); | ||
} | ||
} | ||
} |
Oops, something went wrong.