projects
/
pub
/
Android
/
ownCloud.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Downloads through temporal file and better OCFile.isDownloading() and .isDown() imple...
[pub/Android/ownCloud.git]
/
src
/
eu
/
alefzero
/
owncloud
/
datamodel
/
OCFile.java
diff --git
a/src/eu/alefzero/owncloud/datamodel/OCFile.java
b/src/eu/alefzero/owncloud/datamodel/OCFile.java
index
32d36de
..
7284604
100644
(file)
--- a/
src/eu/alefzero/owncloud/datamodel/OCFile.java
+++ b/
src/eu/alefzero/owncloud/datamodel/OCFile.java
@@
-22,6
+22,8
@@
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.MalformedURLException;
import java.net.URL;
+import eu.alefzero.owncloud.files.services.FileDownloader;
+
import android.net.Uri;
import android.os.Parcel;
import android.os.Parcelable;
import android.net.Uri;
import android.os.Parcel;
import android.os.Parcelable;
@@
-144,14
+146,12
@@
public class OCFile implements Parcelable, Comparable<OCFile> {
/**
* Use this to check if this file is available locally
*
/**
* Use this to check if this file is available locally
*
- * TODO use a better condition not dependent upon mLenght being synchronized; to change when downloads are done through a temporal file
- *
* @return true if it is
*/
public boolean isDown() {
if (mLocalPath != null && mLocalPath.length() > 0) {
File file = new File(mLocalPath);
* @return true if it is
*/
public boolean isDown() {
if (mLocalPath != null && mLocalPath.length() > 0) {
File file = new File(mLocalPath);
- return (file.exists()
&& file.length() == mLength
);
+ return (file.exists());
}
return false;
}
}
return false;
}
@@
-159,14
+159,13
@@
public class OCFile implements Parcelable, Comparable<OCFile> {
/**
* Use this to check if this file is downloading
*
/**
* Use this to check if this file is downloading
*
- * TODO use a better condition not dependent upon mLenght being synchronized; to change when downloads are done through a temporal file
- *
* @return true if it is in a download in progress
*/
public boolean isDownloading() {
if (mLocalPath != null && mLocalPath.length() > 0) {
* @return true if it is in a download in progress
*/
public boolean isDownloading() {
if (mLocalPath != null && mLocalPath.length() > 0) {
- File file = new File(mLocalPath);
- return (file.exists() && file.length() < mLength);
+ String savePath = FileDownloader.getSavePath();
+ File file = new File(FileDownloader.getTemporalPath() + mLocalPath.substring(savePath.length()));
+ return (file.exists());
}
return false;
}
}
return false;
}