-
Notifications
You must be signed in to change notification settings - Fork 75
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
channels/Common: only allocate temp buffers for read and write if nec… #49
Closed
Closed
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,13 +44,19 @@ int getFD() { | |
|
||
int read(ByteBuffer dst) throws IOException { | ||
|
||
ByteBuffer buffer = ByteBuffer.allocate(dst.remaining()); | ||
int n; | ||
if (!dst.hasArray() && !dst.isDirect()) { | ||
ByteBuffer buffer = ByteBuffer.allocate(dst.remaining()); | ||
|
||
int n = Native.read(_fd, buffer); | ||
n = Native.read(_fd, buffer); | ||
|
||
buffer.flip(); | ||
buffer.flip(); | ||
|
||
dst.put(buffer); | ||
} else { | ||
n = Native.read(_fd, dst); | ||
} | ||
|
||
dst.put(buffer); | ||
|
||
switch (n) { | ||
case 0: | ||
|
@@ -92,13 +98,18 @@ long read(ByteBuffer[] dsts, int offset, int length) | |
|
||
int write(ByteBuffer src) throws IOException { | ||
|
||
ByteBuffer buffer = ByteBuffer.allocate(src.remaining()); | ||
int n; | ||
if (!src.hasArray() && !src.isDirect()) { | ||
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. As per my comment for |
||
ByteBuffer buffer = ByteBuffer.allocate(src.remaining()); | ||
|
||
buffer.put(src); | ||
buffer.put(src); | ||
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. this is incorrect as per #50 as the src position is updated to limit, which it should be updated by n (bytes written) |
||
|
||
buffer.position(0); | ||
buffer.position(0); | ||
|
||
int n = Native.write(_fd, buffer); | ||
n = Native.write(_fd, buffer); | ||
} else { | ||
n = Native.write(_fd, src); | ||
} | ||
|
||
if (n < 0) { | ||
switch (Native.getLastError()) { | ||
|
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.
Why do this additional check at all? Why not call
Native.read
directly withdst
. I can't see why the new allocation is required even for non-direct mode.Native.read
appears to be agnostic to the type of byte buffer, and if there is something to be done, then the JNI call-site is the best place for those concerns.