OCFile.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012 Bartek Przybylski
  3. * Copyright (C) 2012-2013 ownCloud Inc.
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2,
  7. * as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.datamodel;
  19. import java.io.File;
  20. import com.owncloud.android.Log_OC;
  21. import android.os.Parcel;
  22. import android.os.Parcelable;
  23. import android.webkit.MimeTypeMap;
  24. public class OCFile implements Parcelable, Comparable<OCFile> {
  25. public static final Parcelable.Creator<OCFile> CREATOR = new Parcelable.Creator<OCFile>() {
  26. @Override
  27. public OCFile createFromParcel(Parcel source) {
  28. return new OCFile(source);
  29. }
  30. @Override
  31. public OCFile[] newArray(int size) {
  32. return new OCFile[size];
  33. }
  34. };
  35. public static final String PATH_SEPARATOR = "/";
  36. public static final String ROOT_PATH = PATH_SEPARATOR;
  37. private static final String TAG = OCFile.class.getSimpleName();
  38. private long mId;
  39. private long mParentId;
  40. private long mLength;
  41. private long mCreationTimestamp;
  42. private long mModifiedTimestamp;
  43. private long mModifiedTimestampAtLastSyncForData;
  44. private String mRemotePath;
  45. private String mLocalPath;
  46. private String mMimeType;
  47. private boolean mNeedsUpdating;
  48. private long mLastSyncDateForProperties;
  49. private long mLastSyncDateForData;
  50. private boolean mKeepInSync;
  51. private String mEtag;
  52. /**
  53. * Create new {@link OCFile} with given path.
  54. *
  55. * The path received must be URL-decoded. Path separator must be OCFile.PATH_SEPARATOR, and it must be the first character in 'path'.
  56. *
  57. * @param path The remote path of the file.
  58. */
  59. public OCFile(String path) {
  60. resetData();
  61. mNeedsUpdating = false;
  62. if (path == null || path.length() <= 0 || !path.startsWith(PATH_SEPARATOR)) {
  63. throw new IllegalArgumentException("Trying to create a OCFile with a non valid remote path: " + path);
  64. }
  65. mRemotePath = path;
  66. }
  67. /**
  68. * Reconstruct from parcel
  69. *
  70. * @param source The source parcel
  71. */
  72. private OCFile(Parcel source) {
  73. mId = source.readLong();
  74. mParentId = source.readLong();
  75. mLength = source.readLong();
  76. mCreationTimestamp = source.readLong();
  77. mModifiedTimestamp = source.readLong();
  78. mModifiedTimestampAtLastSyncForData = source.readLong();
  79. mRemotePath = source.readString();
  80. mLocalPath = source.readString();
  81. mMimeType = source.readString();
  82. mNeedsUpdating = source.readInt() == 0;
  83. mKeepInSync = source.readInt() == 1;
  84. mLastSyncDateForProperties = source.readLong();
  85. mLastSyncDateForData = source.readLong();
  86. mEtag = source.readString();
  87. }
  88. @Override
  89. public void writeToParcel(Parcel dest, int flags) {
  90. dest.writeLong(mId);
  91. dest.writeLong(mParentId);
  92. dest.writeLong(mLength);
  93. dest.writeLong(mCreationTimestamp);
  94. dest.writeLong(mModifiedTimestamp);
  95. dest.writeLong(mModifiedTimestampAtLastSyncForData);
  96. dest.writeString(mRemotePath);
  97. dest.writeString(mLocalPath);
  98. dest.writeString(mMimeType);
  99. dest.writeInt(mNeedsUpdating ? 1 : 0);
  100. dest.writeInt(mKeepInSync ? 1 : 0);
  101. dest.writeLong(mLastSyncDateForProperties);
  102. dest.writeLong(mLastSyncDateForData);
  103. dest.writeString(mEtag);
  104. }
  105. /**
  106. * Gets the ID of the file
  107. *
  108. * @return the file ID
  109. */
  110. public long getFileId() {
  111. return mId;
  112. }
  113. /**
  114. * Returns the remote path of the file on ownCloud
  115. *
  116. * @return The remote path to the file
  117. */
  118. public String getRemotePath() {
  119. return mRemotePath;
  120. }
  121. /**
  122. * Can be used to check, whether or not this file exists in the database
  123. * already
  124. *
  125. * @return true, if the file exists in the database
  126. */
  127. public boolean fileExists() {
  128. return mId != -1;
  129. }
  130. /**
  131. * Use this to find out if this file is a folder.
  132. *
  133. * @return true if it is a folder
  134. */
  135. public boolean isFolder() {
  136. return mMimeType != null && mMimeType.equals("DIR");
  137. }
  138. /**
  139. * Use this to check if this file is available locally
  140. *
  141. * @return true if it is
  142. */
  143. public boolean isDown() {
  144. if (mLocalPath != null && mLocalPath.length() > 0) {
  145. File file = new File(mLocalPath);
  146. return (file.exists());
  147. }
  148. return false;
  149. }
  150. /**
  151. * The path, where the file is stored locally
  152. *
  153. * @return The local path to the file
  154. */
  155. public String getStoragePath() {
  156. return mLocalPath;
  157. }
  158. /**
  159. * Can be used to set the path where the file is stored
  160. *
  161. * @param storage_path to set
  162. */
  163. public void setStoragePath(String storage_path) {
  164. mLocalPath = storage_path;
  165. }
  166. /**
  167. * Get a UNIX timestamp of the file creation time
  168. *
  169. * @return A UNIX timestamp of the time that file was created
  170. */
  171. public long getCreationTimestamp() {
  172. return mCreationTimestamp;
  173. }
  174. /**
  175. * Set a UNIX timestamp of the time the file was created
  176. *
  177. * @param creation_timestamp to set
  178. */
  179. public void setCreationTimestamp(long creation_timestamp) {
  180. mCreationTimestamp = creation_timestamp;
  181. }
  182. /**
  183. * Get a UNIX timestamp of the file modification time.
  184. *
  185. * @return A UNIX timestamp of the modification time, corresponding to the value returned by the server
  186. * in the last synchronization of the properties of this file.
  187. */
  188. public long getModificationTimestamp() {
  189. return mModifiedTimestamp;
  190. }
  191. /**
  192. * Set a UNIX timestamp of the time the time the file was modified.
  193. *
  194. * To update with the value returned by the server in every synchronization of the properties
  195. * of this file.
  196. *
  197. * @param modification_timestamp to set
  198. */
  199. public void setModificationTimestamp(long modification_timestamp) {
  200. mModifiedTimestamp = modification_timestamp;
  201. }
  202. /**
  203. * Get a UNIX timestamp of the file modification time.
  204. *
  205. * @return A UNIX timestamp of the modification time, corresponding to the value returned by the server
  206. * in the last synchronization of THE CONTENTS of this file.
  207. */
  208. public long getModificationTimestampAtLastSyncForData() {
  209. return mModifiedTimestampAtLastSyncForData;
  210. }
  211. /**
  212. * Set a UNIX timestamp of the time the time the file was modified.
  213. *
  214. * To update with the value returned by the server in every synchronization of THE CONTENTS
  215. * of this file.
  216. *
  217. * @param modification_timestamp to set
  218. */
  219. public void setModificationTimestampAtLastSyncForData(long modificationTimestamp) {
  220. mModifiedTimestampAtLastSyncForData = modificationTimestamp;
  221. }
  222. /**
  223. * Returns the filename and "/" for the root directory
  224. *
  225. * @return The name of the file
  226. */
  227. public String getFileName() {
  228. File f = new File(getRemotePath());
  229. return f.getName().length() == 0 ? ROOT_PATH : f.getName();
  230. }
  231. /**
  232. * Sets the name of the file
  233. *
  234. * Does nothing if the new name is null, empty or includes "/" ; or if the file is the root directory
  235. */
  236. public void setFileName(String name) {
  237. Log_OC.d(TAG, "OCFile name changin from " + mRemotePath);
  238. if (name != null && name.length() > 0 && !name.contains(PATH_SEPARATOR) && !mRemotePath.equals(ROOT_PATH)) {
  239. String parent = (new File(getRemotePath())).getParent();
  240. parent = (parent.endsWith(PATH_SEPARATOR)) ? parent : parent + PATH_SEPARATOR;
  241. mRemotePath = parent + name;
  242. if (isFolder()) {
  243. mRemotePath += PATH_SEPARATOR;
  244. }
  245. Log_OC.d(TAG, "OCFile name changed to " + mRemotePath);
  246. }
  247. }
  248. /**
  249. * Can be used to get the Mimetype
  250. *
  251. * @return the Mimetype as a String
  252. */
  253. public String getMimetype() {
  254. return mMimeType;
  255. }
  256. /**
  257. * Adds a file to this directory. If this file is not a directory, an
  258. * exception gets thrown.
  259. *
  260. * @param file to add
  261. * @throws IllegalStateException if you try to add a something and this is
  262. * not a directory
  263. */
  264. public void addFile(OCFile file) throws IllegalStateException {
  265. if (isFolder()) {
  266. file.mParentId = mId;
  267. mNeedsUpdating = true;
  268. return;
  269. }
  270. throw new IllegalStateException(
  271. "This is not a directory where you can add stuff to!");
  272. }
  273. /**
  274. * Used internally. Reset all file properties
  275. */
  276. private void resetData() {
  277. mId = -1;
  278. mRemotePath = null;
  279. mParentId = 0;
  280. mLocalPath = null;
  281. mMimeType = null;
  282. mLength = 0;
  283. mCreationTimestamp = 0;
  284. mModifiedTimestamp = 0;
  285. mModifiedTimestampAtLastSyncForData = 0;
  286. mLastSyncDateForProperties = 0;
  287. mLastSyncDateForData = 0;
  288. mKeepInSync = false;
  289. mNeedsUpdating = false;
  290. mEtag = null;
  291. }
  292. /**
  293. * Sets the ID of the file
  294. *
  295. * @param file_id to set
  296. */
  297. public void setFileId(long file_id) {
  298. mId = file_id;
  299. }
  300. /**
  301. * Sets the Mime-Type of the
  302. *
  303. * @param mimetype to set
  304. */
  305. public void setMimetype(String mimetype) {
  306. mMimeType = mimetype;
  307. }
  308. /**
  309. * Sets the ID of the parent folder
  310. *
  311. * @param parent_id to set
  312. */
  313. public void setParentId(long parent_id) {
  314. mParentId = parent_id;
  315. }
  316. /**
  317. * Sets the file size in bytes
  318. *
  319. * @param file_len to set
  320. */
  321. public void setFileLength(long file_len) {
  322. mLength = file_len;
  323. }
  324. /**
  325. * Returns the size of the file in bytes
  326. *
  327. * @return The filesize in bytes
  328. */
  329. public long getFileLength() {
  330. return mLength;
  331. }
  332. /**
  333. * Returns the ID of the parent Folder
  334. *
  335. * @return The ID
  336. */
  337. public long getParentId() {
  338. return mParentId;
  339. }
  340. /**
  341. * Check, if this file needs updating
  342. *
  343. * @return
  344. */
  345. public boolean needsUpdatingWhileSaving() {
  346. return mNeedsUpdating;
  347. }
  348. public long getLastSyncDateForProperties() {
  349. return mLastSyncDateForProperties;
  350. }
  351. public void setLastSyncDateForProperties(long lastSyncDate) {
  352. mLastSyncDateForProperties = lastSyncDate;
  353. }
  354. public long getLastSyncDateForData() {
  355. return mLastSyncDateForData;
  356. }
  357. public void setLastSyncDateForData(long lastSyncDate) {
  358. mLastSyncDateForData = lastSyncDate;
  359. }
  360. public void setKeepInSync(boolean keepInSync) {
  361. mKeepInSync = keepInSync;
  362. }
  363. public boolean keepInSync() {
  364. return mKeepInSync;
  365. }
  366. @Override
  367. public int describeContents() {
  368. return this.hashCode();
  369. }
  370. @Override
  371. public int compareTo(OCFile another) {
  372. if (isFolder() && another.isFolder()) {
  373. return getRemotePath().toLowerCase().compareTo(another.getRemotePath().toLowerCase());
  374. } else if (isFolder()) {
  375. return -1;
  376. } else if (another.isFolder()) {
  377. return 1;
  378. }
  379. return getRemotePath().toLowerCase().compareTo(another.getRemotePath().toLowerCase());
  380. }
  381. @Override
  382. public boolean equals(Object o) {
  383. if(o instanceof OCFile){
  384. OCFile that = (OCFile) o;
  385. if(that != null){
  386. return this.mId == that.mId;
  387. }
  388. }
  389. return false;
  390. }
  391. @Override
  392. public String toString() {
  393. String asString = "[id=%s, name=%s, mime=%s, downloaded=%s, local=%s, remote=%s, parentId=%s, keepInSinc=%s etag=%s]";
  394. asString = String.format(asString, Long.valueOf(mId), getFileName(), mMimeType, isDown(), mLocalPath, mRemotePath, Long.valueOf(mParentId), Boolean.valueOf(mKeepInSync), mEtag);
  395. return asString;
  396. }
  397. public String getEtag() {
  398. return mEtag;
  399. }
  400. public void setEtag(String etag) {
  401. this.mEtag = etag;
  402. }
  403. public long getLocalModificationTimestamp() {
  404. if (mLocalPath != null && mLocalPath.length() > 0) {
  405. File f = new File(mLocalPath);
  406. return f.lastModified();
  407. }
  408. return 0;
  409. }
  410. /** @return 'True' if the file contains audio */
  411. public boolean isAudio() {
  412. return (mMimeType != null && mMimeType.startsWith("audio/"));
  413. }
  414. /** @return 'True' if the file contains video */
  415. public boolean isVideo() {
  416. return (mMimeType != null && mMimeType.startsWith("video/"));
  417. }
  418. /** @return 'True' if the file contains an image */
  419. public boolean isImage() {
  420. return ((mMimeType != null && mMimeType.startsWith("image/")) ||
  421. getMimeTypeFromName().startsWith("image/"));
  422. }
  423. public String getMimeTypeFromName() {
  424. String extension = "";
  425. int pos = mRemotePath.lastIndexOf('.');
  426. if (pos >= 0) {
  427. extension = mRemotePath.substring(pos + 1);
  428. }
  429. String result = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension.toLowerCase());
  430. return (result != null) ? result : "";
  431. }
  432. }