Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.x: Improve Completable.onErrorResumeNext internals #6123

Merged
merged 2 commits into from
Aug 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@

package io.reactivex.internal.operators.completable;

import java.util.concurrent.atomic.AtomicReference;

import io.reactivex.*;
import io.reactivex.disposables.Disposable;
import io.reactivex.exceptions.*;
import io.reactivex.functions.Function;
import io.reactivex.internal.disposables.SequentialDisposable;
import io.reactivex.internal.disposables.DisposableHelper;
import io.reactivex.internal.functions.ObjectHelper;

public final class CompletableResumeNext extends Completable {

Expand All @@ -35,20 +38,32 @@ public CompletableResumeNext(CompletableSource source,

@Override
protected void subscribeActual(final CompletableObserver observer) {

final SequentialDisposable sd = new SequentialDisposable();
observer.onSubscribe(sd);
source.subscribe(new ResumeNext(observer, sd));
ResumeNextObserver parent = new ResumeNextObserver(observer, errorMapper);
observer.onSubscribe(parent);
source.subscribe(parent);
}

final class ResumeNext implements CompletableObserver {
static final class ResumeNextObserver
extends AtomicReference<Disposable>
implements CompletableObserver, Disposable {

private static final long serialVersionUID = 5018523762564524046L;

final CompletableObserver downstream;
final SequentialDisposable sd;

ResumeNext(CompletableObserver observer, SequentialDisposable sd) {
final Function<? super Throwable, ? extends CompletableSource> errorMapper;

boolean once;

ResumeNextObserver(CompletableObserver observer, Function<? super Throwable, ? extends CompletableSource> errorMapper) {
this.downstream = observer;
this.sd = sd;
this.errorMapper = errorMapper;
}


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

@Override
Expand All @@ -58,48 +73,33 @@ public void onComplete() {

@Override
public void onError(Throwable e) {
if (once) {
downstream.onError(e);
return;
}
once = true;

CompletableSource c;

try {
c = errorMapper.apply(e);
c = ObjectHelper.requireNonNull(errorMapper.apply(e), "The errorMapper returned a null CompletableSource");
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
downstream.onError(new CompositeException(ex, e));
downstream.onError(new CompositeException(e, ex));
return;
}

if (c == null) {
NullPointerException npe = new NullPointerException("The CompletableConsumable returned is null");
npe.initCause(e);
downstream.onError(npe);
return;
}

c.subscribe(new OnErrorObserver());
c.subscribe(this);
}

@Override
public void onSubscribe(Disposable d) {
sd.update(d);
public boolean isDisposed() {
return DisposableHelper.isDisposed(get());
}

final class OnErrorObserver implements CompletableObserver {

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

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

@Override
public void onSubscribe(Disposable d) {
sd.update(d);
}

@Override
public void dispose() {
DisposableHelper.dispose(this);
}
}
}
7 changes: 5 additions & 2 deletions src/test/java/io/reactivex/completable/CompletableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2170,8 +2170,11 @@ public Completable apply(Throwable e) {
try {
c.blockingAwait();
Assert.fail("Did not throw an exception");
} catch (NullPointerException ex) {
Assert.assertTrue(ex.getCause() instanceof TestException);
} catch (CompositeException ex) {
List<Throwable> errors = ex.getExceptions();
TestHelper.assertError(errors, 0, TestException.class);
TestHelper.assertError(errors, 1, NullPointerException.class);
assertEquals(2, errors.size());
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/**
* 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.internal.operators.completable;

import org.junit.Test;

import io.reactivex.*;
import io.reactivex.exceptions.TestException;
import io.reactivex.functions.Function;
import io.reactivex.internal.functions.Functions;

public class CompletableResumeNextTest {

@Test
public void resumeWithError() {
Completable.error(new TestException())
.onErrorResumeNext(Functions.justFunction(Completable.error(new TestException("second"))))
.test()
.assertFailureAndMessage(TestException.class, "second");
}

@Test
public void disposeInMain() {
TestHelper.checkDisposedCompletable(new Function<Completable, CompletableSource>() {
@Override
public CompletableSource apply(Completable c) throws Exception {
return c.onErrorResumeNext(Functions.justFunction(Completable.complete()));
}
});
}


@Test
public void disposeInResume() {
TestHelper.checkDisposedCompletable(new Function<Completable, CompletableSource>() {
@Override
public CompletableSource apply(Completable c) throws Exception {
return Completable.error(new TestException()).onErrorResumeNext(Functions.justFunction(c));
}
});
}

@Test
public void disposed() {
TestHelper.checkDisposed(
Completable.error(new TestException())
.onErrorResumeNext(Functions.justFunction(Completable.never()))
);
}
}