OCFile.java 16 KB

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