-
Notifications
You must be signed in to change notification settings - Fork 295
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
Try get methods for buf #753
Conversation
…_get_impl macro is implemented through buf_try_get_impl to avoid code duplication, and copy_to_slice is implemented through try_copy_to_slice.
@Darksonn @paolobarbolini I think I have made the necessary changes to the comments I have received so far. I have pushed the "Resove" button on each to indicate this (I hope this was the correct thing to do in this repo, it seems to vary). I hope you have the time next week to review my changes. Also, the CI needs to be started on the latest changes. |
Thanks, clicking resolve is fine. 👍 |
…d::io::Error using From. Used TryGetError as the parameter for panic_advance, and moved TryGetError to before panic_advance in lib.rs. Removed unwrap_advance, as calling panic_advance is now convenient enough.
@Darksonn I think all PR comments have been addressed now, although I was in doubt as to where it is best to define TryGetError (lib.rs or in buf_impl.rs). See also the answer to one of your comments above. |
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.
Thank you.
Adds fallible
try_get_
methods to Buf. The methods align with the existingget_
methods. All of them, so this is a lot of lines but most of it is documentation. Note that I copied and adaptedbuf_get_impl
to maketry_buf_get_impl
. It is possible to avoid some code duplication by callingbuf_get_impl
instead, but that will checked the remaining bytes twice, andbuf_get_impl
is performance optimized so I chose not to do that.This code borrows some from the existing PR for this feature by @caelunshun, but that is old with lots of conflicts, so I chose to reimplement it from the current master instead.
I would rater have used from_be_bytes etc. for the floats as that seems more portable for NaN values, but it seems that the supported rust version is perhaps one minor version too old for that.
Closes #254