X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/3cf90ff17d160fa84cfee67889ec2055ba7a896d..2a04c6ae5da009baa78c243606297b5a039925c2:/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 5cd54f64..32d36de3 100644 --- a/src/eu/alefzero/owncloud/datamodel/OCFile.java +++ b/src/eu/alefzero/owncloud/datamodel/OCFile.java @@ -144,10 +144,31 @@ public class OCFile implements Parcelable, Comparable { /** * 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 isDownloaded() { - return mLocalPath != null && !mLocalPath.equals(""); + public boolean isDown() { + if (mLocalPath != null && mLocalPath.length() > 0) { + File file = new File(mLocalPath); + return (file.exists() && file.length() == mLength); + } + return false; + } + + /** + * 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) { + File file = new File(mLocalPath); + return (file.exists() && file.length() < mLength); + } + return false; } /** @@ -368,7 +389,7 @@ public class OCFile implements Parcelable, Comparable { @Override public String toString() { String asString = "[id=%s, name=%s, mime=%s, downloaded=%s, local=%s, remote=%s]"; - asString = String.format(asString, new Long(mId), getFileName(), mMimeType, isDownloaded(), mLocalPath, mRemotePath); + asString = String.format(asString, new Long(mId), getFileName(), mMimeType, isDown(), mLocalPath, mRemotePath); return asString; }