-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
Fix issue #1522 #1523
Merged
Merged
Fix issue #1522 #1523
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -108,9 +108,12 @@ void startEmitting() { | |
|
||
@Override | ||
public void request(long n) { | ||
long _c = 0; | ||
if (requested == Long.MAX_VALUE) { | ||
return; | ||
} | ||
long _c; | ||
if (n == Long.MAX_VALUE) { | ||
requested = Long.MAX_VALUE; | ||
_c = REQUESTED_UPDATER.getAndSet(this, Long.MAX_VALUE); | ||
} else { | ||
_c = REQUESTED_UPDATER.getAndAdd(this, n); | ||
} | ||
|
@@ -122,16 +125,20 @@ public void request(long n) { | |
} | ||
|
||
void emit(long previousRequested) { | ||
if (requested < 0) { | ||
if (requested == Long.MAX_VALUE) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ha! That's a fun bug, totally missed that when we went from -1 to MAX_VALUE. I bet it isn't even worth having the complexity of a fast-path because the cost of queue/deque is far worse than the counter, and we only hit the counter at the very end anyways. |
||
// fast-path without backpressure | ||
try { | ||
for (Object value : deque) { | ||
notification.accept(subscriber, value); | ||
if (previousRequested == 0) { | ||
try { | ||
for (Object value : deque) { | ||
notification.accept(subscriber, value); | ||
} | ||
} catch (Throwable e) { | ||
subscriber.onError(e); | ||
} finally { | ||
deque.clear(); | ||
} | ||
} catch (Throwable e) { | ||
subscriber.onError(e); | ||
} finally { | ||
deque.clear(); | ||
} else { | ||
// backpressure path will handle Long.MAX_VALUE and emit the rest events. | ||
} | ||
} else { | ||
// backpressure is requested | ||
|
@@ -155,12 +162,22 @@ void emit(long previousRequested) { | |
emitted++; | ||
} | ||
} | ||
|
||
if (REQUESTED_UPDATER.addAndGet(this, -emitted) == 0) { | ||
// we're done emitting the number requested so return | ||
return; | ||
for (;;) { | ||
long oldRequested = requested; | ||
long newRequested = oldRequested - emitted; | ||
if (oldRequested == Long.MAX_VALUE) { | ||
// became unbounded during the loop | ||
// continue the outer loop to emit the rest events. | ||
break; | ||
} | ||
if (REQUESTED_UPDATER.compareAndSet(this, oldRequested, newRequested)) { | ||
if (newRequested == 0) { | ||
// we're done emitting the number requested so return | ||
return; | ||
} | ||
break; | ||
} | ||
} | ||
|
||
} | ||
} | ||
} | ||
|
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch.