-
Notifications
You must be signed in to change notification settings - Fork 603
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
fix(android): run downloadFile asynchronously #2287
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -28,6 +28,10 @@ | |||||||||||||||||||||||||||||
import java.nio.charset.StandardCharsets; | ||||||||||||||||||||||||||||||
import java.util.Locale; | ||||||||||||||||||||||||||||||
import org.json.JSONException; | ||||||||||||||||||||||||||||||
import java.util.concurrent.ExecutorService; | ||||||||||||||||||||||||||||||
import java.util.concurrent.Executors; | ||||||||||||||||||||||||||||||
import android.os.Handler; | ||||||||||||||||||||||||||||||
import android.os.Looper; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
public class Filesystem { | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
@@ -101,7 +105,7 @@ public File[] readdir(String path, String directory) throws DirectoryNotFoundExc | |||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
public File copy(String from, String directory, String to, String toDirectory, boolean doRename) | ||||||||||||||||||||||||||||||
throws IOException, CopyFailedException { | ||||||||||||||||||||||||||||||
throws IOException, CopyFailedException { | ||||||||||||||||||||||||||||||
if (toDirectory == null) { | ||||||||||||||||||||||||||||||
toDirectory = directory; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
@@ -303,81 +307,123 @@ public void copyRecursively(File src, File dst) throws IOException { | |||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
public JSObject downloadFile(PluginCall call, Bridge bridge, HttpRequestHandler.ProgressEmitter emitter) | ||||||||||||||||||||||||||||||
throws IOException, URISyntaxException, JSONException { | ||||||||||||||||||||||||||||||
public void downloadFile(PluginCall call, Bridge bridge, HttpRequestHandler.ProgressEmitter emitter, | ||||||||||||||||||||||||||||||
FilesystemDownloadCallback callback) throws IOException, URISyntaxException, JSONException { | ||||||||||||||||||||||||||||||
String urlString = call.getString("url", ""); | ||||||||||||||||||||||||||||||
JSObject headers = call.getObject("headers", new JSObject()); | ||||||||||||||||||||||||||||||
JSObject params = call.getObject("params", new JSObject()); | ||||||||||||||||||||||||||||||
Integer connectTimeout = call.getInt("connectTimeout"); | ||||||||||||||||||||||||||||||
Integer readTimeout = call.getInt("readTimeout"); | ||||||||||||||||||||||||||||||
Boolean disableRedirects = call.getBoolean("disableRedirects"); | ||||||||||||||||||||||||||||||
Boolean shouldEncode = call.getBoolean("shouldEncodeUrlParams", true); | ||||||||||||||||||||||||||||||
Boolean progress = call.getBoolean("progress", false); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
String method = call.getString("method", "GET").toUpperCase(Locale.ROOT); | ||||||||||||||||||||||||||||||
String path = call.getString("path"); | ||||||||||||||||||||||||||||||
String directory = call.getString("directory", Environment.DIRECTORY_DOWNLOADS); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
final URL url = new URL(urlString); | ||||||||||||||||||||||||||||||
final File file = getFileObject(path, directory); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
HttpRequestHandler.HttpURLConnectionBuilder connectionBuilder = new HttpRequestHandler.HttpURLConnectionBuilder() | ||||||||||||||||||||||||||||||
.setUrl(url) | ||||||||||||||||||||||||||||||
.setMethod(method) | ||||||||||||||||||||||||||||||
.setHeaders(headers) | ||||||||||||||||||||||||||||||
.setUrlParams(params, shouldEncode) | ||||||||||||||||||||||||||||||
.setConnectTimeout(connectTimeout) | ||||||||||||||||||||||||||||||
.setReadTimeout(readTimeout) | ||||||||||||||||||||||||||||||
.setDisableRedirects(disableRedirects) | ||||||||||||||||||||||||||||||
.openConnection(); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
CapacitorHttpUrlConnection connection = connectionBuilder.build(); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
connection.setSSLSocketFactory(bridge); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
InputStream connectionInputStream = connection.getInputStream(); | ||||||||||||||||||||||||||||||
FileOutputStream fileOutputStream = new FileOutputStream(file, false); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
String contentLength = connection.getHeaderField("content-length"); | ||||||||||||||||||||||||||||||
int bytes = 0; | ||||||||||||||||||||||||||||||
int maxBytes = 0; | ||||||||||||||||||||||||||||||
ExecutorService executor = Executors.newSingleThreadExecutor(); | ||||||||||||||||||||||||||||||
Handler handler = new Handler(Looper.getMainLooper()); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
executor.execute(() -> { | ||||||||||||||||||||||||||||||
AsyncTaskResult result = doDownloadInBackground(urlString, call, bridge, emitter); | ||||||||||||||||||||||||||||||
handler.post(() -> { | ||||||||||||||||||||||||||||||
if (result.error != null) { | ||||||||||||||||||||||||||||||
callback.onError(result.error); | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
callback.onSuccess(result.result); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||
Comment on lines
+317
to
+324
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. It seems to me that it is unnecessary to have this I feel like we could lift the try-catch out of
Suggested change
Also, if you do this change, add the What do you think? |
||||||||||||||||||||||||||||||
executor.shutdown(); | ||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private AsyncTaskResult doDownloadInBackground(String urlString, PluginCall call, Bridge bridge, | ||||||||||||||||||||||||||||||
HttpRequestHandler.ProgressEmitter emitter) { | ||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||
maxBytes = contentLength != null ? Integer.parseInt(contentLength) : 0; | ||||||||||||||||||||||||||||||
} catch (NumberFormatException ignored) {} | ||||||||||||||||||||||||||||||
JSObject headers = call.getObject("headers", new JSObject()); | ||||||||||||||||||||||||||||||
JSObject params = call.getObject("params", new JSObject()); | ||||||||||||||||||||||||||||||
Integer connectTimeout = call.getInt("connectTimeout"); | ||||||||||||||||||||||||||||||
Integer readTimeout = call.getInt("readTimeout"); | ||||||||||||||||||||||||||||||
Boolean disableRedirects = call.getBoolean("disableRedirects"); | ||||||||||||||||||||||||||||||
Boolean shouldEncode = call.getBoolean("shouldEncodeUrlParams", true); | ||||||||||||||||||||||||||||||
Boolean progress = call.getBoolean("progress", false); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
String method = call.getString("method", "GET").toUpperCase(Locale.ROOT); | ||||||||||||||||||||||||||||||
String path = call.getString("path"); | ||||||||||||||||||||||||||||||
String directory = call.getString("directory", Environment.DIRECTORY_DOWNLOADS); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
final URL url = new URL(urlString); | ||||||||||||||||||||||||||||||
final File file = getFileObject(path, directory); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
HttpRequestHandler.HttpURLConnectionBuilder connectionBuilder = new HttpRequestHandler.HttpURLConnectionBuilder() | ||||||||||||||||||||||||||||||
.setUrl(url) | ||||||||||||||||||||||||||||||
.setMethod(method) | ||||||||||||||||||||||||||||||
.setHeaders(headers) | ||||||||||||||||||||||||||||||
.setUrlParams(params, shouldEncode) | ||||||||||||||||||||||||||||||
.setConnectTimeout(connectTimeout) | ||||||||||||||||||||||||||||||
.setReadTimeout(readTimeout) | ||||||||||||||||||||||||||||||
.setDisableRedirects(disableRedirects) | ||||||||||||||||||||||||||||||
.openConnection(); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
CapacitorHttpUrlConnection connection = connectionBuilder.build(); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
connection.setSSLSocketFactory(bridge); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
InputStream connectionInputStream = connection.getInputStream(); | ||||||||||||||||||||||||||||||
FileOutputStream fileOutputStream = new FileOutputStream(file, false); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
String contentLength = connection.getHeaderField("content-length"); | ||||||||||||||||||||||||||||||
int bytes = 0; | ||||||||||||||||||||||||||||||
int maxBytes = 0; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||
maxBytes = contentLength != null ? Integer.parseInt(contentLength) : 0; | ||||||||||||||||||||||||||||||
} catch (NumberFormatException ignored) { | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
byte[] buffer = new byte[1024]; | ||||||||||||||||||||||||||||||
int len; | ||||||||||||||||||||||||||||||
byte[] buffer = new byte[1024]; | ||||||||||||||||||||||||||||||
int len; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// Throttle emitter to 100ms so it doesn't slow down app | ||||||||||||||||||||||||||||||
long lastEmitTime = System.currentTimeMillis(); | ||||||||||||||||||||||||||||||
long minEmitIntervalMillis = 100; | ||||||||||||||||||||||||||||||
// Throttle emitter to 100ms so it doesn't slow down app | ||||||||||||||||||||||||||||||
long lastEmitTime = System.currentTimeMillis(); | ||||||||||||||||||||||||||||||
long minEmitIntervalMillis = 100; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
while ((len = connectionInputStream.read(buffer)) > 0) { | ||||||||||||||||||||||||||||||
fileOutputStream.write(buffer, 0, len); | ||||||||||||||||||||||||||||||
while ((len = connectionInputStream.read(buffer)) > 0) { | ||||||||||||||||||||||||||||||
fileOutputStream.write(buffer, 0, len); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
bytes += len; | ||||||||||||||||||||||||||||||
bytes += len; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
if (progress && null != emitter) { | ||||||||||||||||||||||||||||||
long currentTime = System.currentTimeMillis(); | ||||||||||||||||||||||||||||||
if (currentTime - lastEmitTime > minEmitIntervalMillis) { | ||||||||||||||||||||||||||||||
emitter.emit(bytes, maxBytes); | ||||||||||||||||||||||||||||||
lastEmitTime = currentTime; | ||||||||||||||||||||||||||||||
if (progress && null != emitter) { | ||||||||||||||||||||||||||||||
long currentTime = System.currentTimeMillis(); | ||||||||||||||||||||||||||||||
if (currentTime - lastEmitTime > minEmitIntervalMillis) { | ||||||||||||||||||||||||||||||
emitter.emit(bytes, maxBytes); | ||||||||||||||||||||||||||||||
lastEmitTime = currentTime; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
if (progress && null != emitter) { | ||||||||||||||||||||||||||||||
emitter.emit(bytes, maxBytes); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
connectionInputStream.close(); | ||||||||||||||||||||||||||||||
fileOutputStream.close(); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
JSObject ret = new JSObject(); | ||||||||||||||||||||||||||||||
ret.put("path", file.getAbsolutePath()); | ||||||||||||||||||||||||||||||
return new AsyncTaskResult(ret); | ||||||||||||||||||||||||||||||
} catch (Exception e) { | ||||||||||||||||||||||||||||||
return new AsyncTaskResult(e); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
private static class AsyncTaskResult { | ||||||||||||||||||||||||||||||
final JSObject result; | ||||||||||||||||||||||||||||||
final Exception error; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
AsyncTaskResult(JSObject result) { | ||||||||||||||||||||||||||||||
this.result = result; | ||||||||||||||||||||||||||||||
this.error = null; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
if (progress && null != emitter) { | ||||||||||||||||||||||||||||||
emitter.emit(bytes, maxBytes); | ||||||||||||||||||||||||||||||
AsyncTaskResult(Exception error) { | ||||||||||||||||||||||||||||||
this.result = null; | ||||||||||||||||||||||||||||||
this.error = error; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
connectionInputStream.close(); | ||||||||||||||||||||||||||||||
fileOutputStream.close(); | ||||||||||||||||||||||||||||||
public interface FilesystemDownloadCallback { | ||||||||||||||||||||||||||||||
void onSuccess(JSObject result); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
return new JSObject() { | ||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||
put("path", file.getAbsolutePath()); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
void onError(Exception error); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} |
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 believe this method no longer throws the mentioned exceptions, but rather returns them in
FilesystemDownloadCallback
, therefore we should update the signature