Skip to content
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

[Android] Handles file creation failures when attempting to retry failed downloads #771

Conversation

rupinderjeet
Copy link
Contributor

If new file creation fails, we wrongly assume that the user is creating a file in public storage but not setting saveInPublicStorage to true. File creation can, also, fail if the file already exists. There might be other IO cases as well (low memory etc.) where file creation fails.

Since we're creating a new file, I think it should be okay to overwrite any existing files with same file-path. If not, this PR fails to address the issue.

I have added some code to delete the existing file, and then, create the new file. I am not aware whether this issue exists on iOS side or not.

When I tried to retry some downloads, the android code will throw the null pointer exception since createFileInAppSpecificDir(String, String) returns null in this case.

@rupinderjeet rupinderjeet force-pushed the fix/wrong-assumption-about-saving-files-in-public-storage branch from b396370 to ea8af83 Compare December 8, 2022 05:08
Comment on lines +500 to +506
if (newFile.exists()) {
val deleted = newFile.delete()
if (!deleted) {
logError("Unable to delete existing file: ${newFile.absolutePath}")
return null
}
}
Copy link
Collaborator

@bartekpacia bartekpacia Dec 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think it's expected to delete the old file to make place for the the newly downloaded file.

If new file creation fails, we wrongly assume that the user is creating a file in public storage but not setting saveInPublicStorage to true.

Can we modify the error message to state not setting saveInPublicStorage is one of the possible causes, not the cause?

Copy link
Contributor Author

@rupinderjeet rupinderjeet Dec 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think it's expected to delete the old file to make place for the the newly downloaded file.

What should be done in this case? fileName passed in createFileInAppSpecificDir(String, String) already exists. Can we create a file with different (randomised index) name and return it? I think it will cause issues upstream from this function.

Can we modify the error message to state not setting saveInPublicStorage is one of the possible causes, not the cause?

Yes, I wrote it as a question to the user (in the commit):

"Unable to create new file: ${newFile.absolutePath}.
Are are trying to save file in public storage but not setting 'saveInPublicStorage' to 'true'?"

This can definitely be updated to state it differently.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I wrote it as a question to the user (in the commit):

Yes, but the developer sees this log after the original file is already deleted.

Please also see this issue, I remember some agreement was reached in that issue what should we do in that case. But it's kinda abandoned, feel free to continue their work if you have time and will :)

@rupinderjeet rupinderjeet marked this pull request as draft December 13, 2022 07:46
@rupinderjeet
Copy link
Contributor Author

I will create a new pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants