Fix futures_util::io::copy & copy_buf to allow aborting operation in the middle #2497
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.
Summary
When transferring data from one place to another using the copy_buf function, you may want to abort the operation in the middle of the transfer. Since the transfer is divided into small increments by internal buffers and probably must not be done at a time, the interruption logic can be implemented by checking for the aborting request flag at every poll_fill_buf().
This patch has
How to use
Unlike before, copy() & copy_buf() returns the combination of Future and AbortHandle. If you want to abort the operation, you should extract the tuple and trigger the inner AbortHandle.
Backward compatibility
If you want to fit the existing code to this change, all you have to do is simply adding ".0" after every copy_buf() or copy().