-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Add ability to change [FileMode] of the download by introducing [Dio… #2281
base: main
Are you sure you want to change the base?
Conversation
Can you please explain how this change enables resuming downloads? |
When downloading a file a stream is opened and a Random Access File are opened in the client side to store bytes changing the file access mode to [FileMode.append] or [FileMode.writeOnlyAppend] with change the behavior to write to the end of the file So if you had already started downloading a file and for some reason the download stopped let's say a network problem and you set [deleteOnError = false], the file had already downloaded 50% and it's not deleted it exists but is not complete You check if the file exists and get it's size then you request to download the file again by requesting a partial content setting the range header to file size, that means skip downloading the 50% you already downloaded then you append the remaining 50% to the end of the file and here it's you resumed your download with minimum ease. |
Ok, I will add tests. |
I wonder whether it makes sense to automatically add range header in the case of a resuming download, that way it would work out of the box, without the user needing to implement anything. The server needs to support them though. (This is not something which necessarily needs to be added to this PR though, I guess) |
Yes, it's a good idea. I think it's rare to find a server that doesn't support range requests. |
I added test case for the file mode append, now can you review the code again |
dio/lib/src/dio_file_mode.dart
Outdated
/// - [DioFileMode.append]: Mode for opening a file for reading and writing | ||
/// to the end of it. The file is created if it does not already exist. | ||
/// {@endtemplate} | ||
enum DioFileMode { |
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.
The name is a bit overwhelming. The type is only used for the download process.
Also the enhanced enum is not working on our minimum SDK support.
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.
I will convert it to extension
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.
any suggestion for naming
change [DioFileMode] to [FileAccessMode] change [Dio.download(fileMode:)] to [dio.download(fileAccessMode:)]
@ueman Could you follow above reviews and stamp this if applicable? |
Co-authored-by: Alex Li <[email protected]> Signed-off-by: shehab mohame <[email protected]>
Remove [FileAccessModeExtension]
The CI is complaining about the v1 of |
Co-authored-by: Alex Li <[email protected]> Signed-off-by: shehab mohame <[email protected]>
Co-authored-by: Alex Li <[email protected]> Signed-off-by: shehab mohame <[email protected]>
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.
RSLGTM. Also you need to update CHANGELOGs for the main package and the web adapter, just see how other PRs do this.
@@ -254,6 +258,7 @@ abstract class Dio { | |||
ProgressCallback? onReceiveProgress, | |||
CancelToken? cancelToken, | |||
bool deleteOnError = true, | |||
FileAccessMode mode = FileAccessMode.write, |
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.
Oh this should be fileAccessMode
.
@@ -286,6 +286,7 @@ abstract class DioMixin implements Dio { | |||
ProgressCallback? onReceiveProgress, | |||
CancelToken? cancelToken, | |||
bool deleteOnError = true, | |||
FileAccessMode mode = FileAccessMode.write, |
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.
This should be fileAccessMode
too.
); | ||
|
||
final cancelToken2 = CancelToken(); | ||
var recievedBytes2 = 0; |
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.
var recievedBytes2 = 0; | |
int recievedBytes2 = 0; |
…FileMode]
New Pull Request Checklist
main
branch to avoid conflicts (via merge from master or rebase)CHANGELOG.md
in the corresponding packageAdditional context and info (if any)
Add the ability to change the [FileMode] of the download without altering the default value, which is [FileMode.write], to make resuming downloads easier to implement by introducing [DioFileMode] and mapping it to FileMode in [DioForNative]
without breaking web_adapter