Skip to content

Fix FlowableOnBackpressureBufferStrategy #4441

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

Merged
merged 2 commits into from
Aug 31, 2016
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 @@ -103,27 +103,28 @@ public void onNext(T t) {
return;
}
boolean callOnOverflow = false;
boolean callError = false;
Deque<T> dq = deque;
synchronized (dq) {
if (dq.size() == bufferSize) {
switch (strategy) {
case DROP_LATEST:
dq.poll();
dq.pollLast();
dq.offer(t);
callOnOverflow = true;
break;
case DROP_OLDEST:
dq.pollLast();
dq.poll();
dq.offer(t);
callOnOverflow = true;
break;
default:
// signal error
callError = true;
break;
}
} else {
dq.offer(t);
return;
}
}

Expand All @@ -137,9 +138,11 @@ public void onNext(T t) {
onError(ex);
}
}
} else {
} else if(callError) {
s.cancel();
onError(new MissingBackpressureException());
} else {
drain();
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
/**
* Copyright 2016 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.flowable;

import io.reactivex.Flowable;
import io.reactivex.functions.Action;
import io.reactivex.internal.subscriptions.BooleanSubscription;
import io.reactivex.subscribers.DefaultSubscriber;
import io.reactivex.subscribers.TestSubscriber;
import org.junit.Test;
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;

import java.util.concurrent.atomic.AtomicInteger;

import static io.reactivex.BackpressureOverflowStrategy.DROP_LATEST;
import static io.reactivex.BackpressureOverflowStrategy.DROP_OLDEST;
import static io.reactivex.internal.functions.Functions.EMPTY_ACTION;
import static org.junit.Assert.assertEquals;

public class FlowableOnBackpressureBufferStrategyTest {

@Test(timeout = 2000)
public void backpressureWithBufferDropOldest() throws InterruptedException {
int bufferSize = 3;
final AtomicInteger droppedCount = new AtomicInteger(0);
Action incrementOnDrop = new Action() {
@Override
public void run() throws Exception {
droppedCount.incrementAndGet();
}
};
TestSubscriber<Long> ts = createTestSubscriber();
Flowable.fromPublisher(send500ValuesAndComplete.onBackpressureBuffer(bufferSize, incrementOnDrop, DROP_OLDEST))
.subscribe(ts);
// we request 10 but only 3 should come from the buffer
ts.request(10);
ts.awaitTerminalEvent();
assertEquals(bufferSize, ts.values().size());
ts.assertNoErrors();
assertEquals(497, ts.values().get(0).intValue());
assertEquals(498, ts.values().get(1).intValue());
assertEquals(499, ts.values().get(2).intValue());
assertEquals(droppedCount.get(), 500 - bufferSize);
}

private TestSubscriber<Long> createTestSubscriber() {
return new TestSubscriber<Long>(new DefaultSubscriber<Long>() {

@Override
protected void onStart() {
}

@Override
public void onComplete() {
}

@Override
public void onError(Throwable e) {
}

@Override
public void onNext(Long t) {
}

}, 0L);
}

@Test(timeout = 2000)
public void backpressureWithBufferDropLatest() throws InterruptedException {
int bufferSize = 3;
final AtomicInteger droppedCount = new AtomicInteger(0);
Action incrementOnDrop = new Action() {
@Override
public void run() throws Exception {
droppedCount.incrementAndGet();
}
};
TestSubscriber<Long> ts = createTestSubscriber();
Flowable.fromPublisher(send500ValuesAndComplete.onBackpressureBuffer(bufferSize, incrementOnDrop, DROP_LATEST))
.subscribe(ts);
// we request 10 but only 3 should come from the buffer
ts.request(10);
ts.awaitTerminalEvent();
assertEquals(bufferSize, ts.values().size());
ts.assertNoErrors();
assertEquals(0, ts.values().get(0).intValue());
assertEquals(1, ts.values().get(1).intValue());
assertEquals(499, ts.values().get(2).intValue());
assertEquals(droppedCount.get(), 500 - bufferSize);
}

private static final Flowable<Long> send500ValuesAndComplete = Flowable.unsafeCreate(new Publisher<Long>() {
@Override
public void subscribe(Subscriber<? super Long> s) {
BooleanSubscription bs = new BooleanSubscription();
s.onSubscribe(bs);
long i = 0;
while (!bs.isCancelled() && i < 500) {
s.onNext(i++);
}
if(!bs.isCancelled()){
s.onComplete();
}
}
});


@Test(expected = IllegalArgumentException.class)
public void backpressureBufferNegativeCapacity() throws InterruptedException {
Flowable.empty().onBackpressureBuffer(-1, EMPTY_ACTION , DROP_OLDEST);
}

@Test(expected = IllegalArgumentException.class)
public void backpressureBufferZeroCapacity() throws InterruptedException {
Flowable.empty().onBackpressureBuffer(0, EMPTY_ACTION , DROP_OLDEST);
}

}