SynchronizeFolderOperation.java 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012-2014 ownCloud Inc.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2,
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. */
  17. package com.owncloud.android.operations;
  18. import java.io.File;
  19. import java.io.FileInputStream;
  20. import java.io.FileOutputStream;
  21. import java.io.IOException;
  22. import java.io.InputStream;
  23. import java.io.OutputStream;
  24. import java.util.ArrayList;
  25. import java.util.HashMap;
  26. import java.util.List;
  27. import java.util.Map;
  28. import java.util.Vector;
  29. import org.apache.http.HttpStatus;
  30. import android.accounts.Account;
  31. import android.content.Context;
  32. import android.content.Intent;
  33. //import android.support.v4.content.LocalBroadcastManager;
  34. import com.owncloud.android.datamodel.FileDataStorageManager;
  35. import com.owncloud.android.datamodel.OCFile;
  36. import com.owncloud.android.lib.common.OwnCloudClient;
  37. import com.owncloud.android.lib.resources.shares.OCShare;
  38. import com.owncloud.android.lib.common.operations.RemoteOperation;
  39. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  40. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  41. import com.owncloud.android.lib.common.utils.Log_OC;
  42. import com.owncloud.android.lib.resources.shares.GetRemoteSharesForFileOperation;
  43. import com.owncloud.android.lib.resources.files.FileUtils;
  44. import com.owncloud.android.lib.resources.files.ReadRemoteFileOperation;
  45. import com.owncloud.android.lib.resources.files.ReadRemoteFolderOperation;
  46. import com.owncloud.android.lib.resources.files.RemoteFile;
  47. import com.owncloud.android.syncadapter.FileSyncAdapter;
  48. import com.owncloud.android.utils.FileStorageUtils;
  49. /**
  50. * Remote operation performing the synchronization of the list of files contained
  51. * in a folder identified with its remote path.
  52. *
  53. * Fetches the list and properties of the files contained in the given folder, including their
  54. * properties, and updates the local database with them.
  55. *
  56. * Does NOT enter in the child folders to synchronize their contents also.
  57. *
  58. * @author David A. Velasco
  59. */
  60. public class SynchronizeFolderOperation extends RemoteOperation {
  61. private static final String TAG = SynchronizeFolderOperation.class.getSimpleName();
  62. public static final String EVENT_SINGLE_FOLDER_CONTENTS_SYNCED =
  63. SynchronizeFolderOperation.class.getName() + ".EVENT_SINGLE_FOLDER_CONTENTS_SYNCED";
  64. public static final String EVENT_SINGLE_FOLDER_SHARES_SYNCED =
  65. SynchronizeFolderOperation.class.getName() + ".EVENT_SINGLE_FOLDER_SHARES_SYNCED";
  66. /** Time stamp for the synchronization process in progress */
  67. private long mCurrentSyncTime;
  68. /** Remote folder to synchronize */
  69. private OCFile mLocalFolder;
  70. /** Access to the local database */
  71. private FileDataStorageManager mStorageManager;
  72. /** Account where the file to synchronize belongs */
  73. private Account mAccount;
  74. /** Android context; necessary to send requests to the download service */
  75. private Context mContext;
  76. /** Files and folders contained in the synchronized folder after a successful operation */
  77. private List<OCFile> mChildren;
  78. /** Counter of conflicts found between local and remote files */
  79. private int mConflictsFound;
  80. /** Counter of failed operations in synchronization of kept-in-sync files */
  81. private int mFailsInFavouritesFound;
  82. /**
  83. * Map of remote and local paths to files that where locally stored in a location
  84. * out of the ownCloud folder and couldn't be copied automatically into it
  85. **/
  86. private Map<String, String> mForgottenLocalFiles;
  87. /** 'True' means that this operation is part of a full account synchronization */
  88. private boolean mSyncFullAccount;
  89. /** 'True' means that Share resources bound to the files into should be refreshed also */
  90. private boolean mIsShareSupported;
  91. /** 'True' means that the remote folder changed and should be fetched */
  92. private boolean mRemoteFolderChanged;
  93. /** 'True' means that Etag will be ignored */
  94. private boolean mIgnoreETag;
  95. /**
  96. * Creates a new instance of {@link SynchronizeFolderOperation}.
  97. *
  98. * @param remoteFolderPath Remote folder to synchronize.
  99. * @param currentSyncTime Time stamp for the synchronization process in progress.
  100. * @param localFolderId Identifier in the local database of the folder
  101. * to synchronize.
  102. * @param updateFolderProperties 'True' means that the properties of the folder should
  103. * be updated also, not just its content.
  104. * @param syncFullAccount 'True' means that this operation is part of a full account
  105. * synchronization.
  106. * @param dataStorageManager Interface with the local database.
  107. * @param account ownCloud account where the folder is located.
  108. * @param context Application context.
  109. */
  110. public SynchronizeFolderOperation( OCFile folder,
  111. long currentSyncTime,
  112. boolean syncFullAccount,
  113. boolean isShareSupported,
  114. boolean ignoreETag,
  115. FileDataStorageManager dataStorageManager,
  116. Account account,
  117. Context context ) {
  118. mLocalFolder = folder;
  119. mCurrentSyncTime = currentSyncTime;
  120. mSyncFullAccount = syncFullAccount;
  121. mIsShareSupported = isShareSupported;
  122. mStorageManager = dataStorageManager;
  123. mAccount = account;
  124. mContext = context;
  125. mForgottenLocalFiles = new HashMap<String, String>();
  126. mRemoteFolderChanged = false;
  127. mIgnoreETag = ignoreETag;
  128. }
  129. public int getConflictsFound() {
  130. return mConflictsFound;
  131. }
  132. public int getFailsInFavouritesFound() {
  133. return mFailsInFavouritesFound;
  134. }
  135. public Map<String, String> getForgottenLocalFiles() {
  136. return mForgottenLocalFiles;
  137. }
  138. /**
  139. * Returns the list of files and folders contained in the synchronized folder,
  140. * if called after synchronization is complete.
  141. *
  142. * @return List of files and folders contained in the synchronized folder.
  143. */
  144. public List<OCFile> getChildren() {
  145. return mChildren;
  146. }
  147. /**
  148. * Performs the synchronization.
  149. *
  150. * {@inheritDoc}
  151. */
  152. @Override
  153. protected RemoteOperationResult run(OwnCloudClient client) {
  154. RemoteOperationResult result = null;
  155. mFailsInFavouritesFound = 0;
  156. mConflictsFound = 0;
  157. mForgottenLocalFiles.clear();
  158. if (FileUtils.PATH_SEPARATOR.equals(mLocalFolder.getRemotePath()) && !mSyncFullAccount) {
  159. updateOCVersion(client);
  160. }
  161. result = checkForChanges(client);
  162. if (result.isSuccess()) {
  163. if (mRemoteFolderChanged) {
  164. result = fetchAndSyncRemoteFolder(client);
  165. } else {
  166. mChildren = mStorageManager.getFolderContent(mLocalFolder);
  167. }
  168. }
  169. if (!mSyncFullAccount) {
  170. sendLocalBroadcast(
  171. EVENT_SINGLE_FOLDER_CONTENTS_SYNCED, mLocalFolder.getRemotePath(), result
  172. );
  173. }
  174. if (result.isSuccess() && mIsShareSupported && !mSyncFullAccount) {
  175. refreshSharesForFolder(client); // share result is ignored
  176. }
  177. if (!mSyncFullAccount) {
  178. sendLocalBroadcast(
  179. EVENT_SINGLE_FOLDER_SHARES_SYNCED, mLocalFolder.getRemotePath(), result
  180. );
  181. }
  182. return result;
  183. }
  184. private void updateOCVersion(OwnCloudClient client) {
  185. UpdateOCVersionOperation update = new UpdateOCVersionOperation(mAccount, mContext);
  186. RemoteOperationResult result = update.execute(client);
  187. if (result.isSuccess()) {
  188. mIsShareSupported = update.getOCVersion().isSharedSupported();
  189. }
  190. }
  191. private RemoteOperationResult checkForChanges(OwnCloudClient client) {
  192. mRemoteFolderChanged = true;
  193. RemoteOperationResult result = null;
  194. String remotePath = null;
  195. remotePath = mLocalFolder.getRemotePath();
  196. Log_OC.d(TAG, "Checking changes in " + mAccount.name + remotePath);
  197. // remote request
  198. ReadRemoteFileOperation operation = new ReadRemoteFileOperation(remotePath);
  199. result = operation.execute(client);
  200. if (result.isSuccess()){
  201. OCFile remoteFolder = FileStorageUtils.fillOCFile((RemoteFile) result.getData().get(0));
  202. if (!mIgnoreETag) {
  203. // check if remote and local folder are different
  204. mRemoteFolderChanged =
  205. !(remoteFolder.getEtag().equalsIgnoreCase(mLocalFolder.getEtag()));
  206. }
  207. result = new RemoteOperationResult(ResultCode.OK);
  208. Log_OC.i(TAG, "Checked " + mAccount.name + remotePath + " : " +
  209. (mRemoteFolderChanged ? "changed" : "not changed"));
  210. } else {
  211. // check failed
  212. if (result.getCode() == ResultCode.FILE_NOT_FOUND) {
  213. removeLocalFolder();
  214. }
  215. if (result.isException()) {
  216. Log_OC.e(TAG, "Checked " + mAccount.name + remotePath + " : " +
  217. result.getLogMessage(), result.getException());
  218. } else {
  219. Log_OC.e(TAG, "Checked " + mAccount.name + remotePath + " : " +
  220. result.getLogMessage());
  221. }
  222. }
  223. return result;
  224. }
  225. private RemoteOperationResult fetchAndSyncRemoteFolder(OwnCloudClient client) {
  226. String remotePath = mLocalFolder.getRemotePath();
  227. ReadRemoteFolderOperation operation = new ReadRemoteFolderOperation(remotePath);
  228. RemoteOperationResult result = operation.execute(client);
  229. Log_OC.d(TAG, "Synchronizing " + mAccount.name + remotePath);
  230. if (result.isSuccess()) {
  231. synchronizeData(result.getData(), client);
  232. if (mConflictsFound > 0 || mFailsInFavouritesFound > 0) {
  233. result = new RemoteOperationResult(ResultCode.SYNC_CONFLICT);
  234. // should be a different result code, but will do the job
  235. }
  236. } else {
  237. if (result.getCode() == ResultCode.FILE_NOT_FOUND)
  238. removeLocalFolder();
  239. }
  240. return result;
  241. }
  242. private void removeLocalFolder() {
  243. if (mStorageManager.fileExists(mLocalFolder.getFileId())) {
  244. String currentSavePath = FileStorageUtils.getSavePath(mAccount.name);
  245. mStorageManager.removeFolder(
  246. mLocalFolder,
  247. true,
  248. ( mLocalFolder.isDown() &&
  249. mLocalFolder.getStoragePath().startsWith(currentSavePath)
  250. )
  251. );
  252. }
  253. }
  254. /**
  255. * Synchronizes the data retrieved from the server about the contents of the target folder
  256. * with the current data in the local database.
  257. *
  258. * Grants that mChildren is updated with fresh data after execution.
  259. *
  260. * @param folderAndFiles Remote folder and children files in Folder
  261. *
  262. * @param client Client instance to the remote server where the data were
  263. * retrieved.
  264. * @return 'True' when any change was made in the local data, 'false' otherwise
  265. */
  266. private void synchronizeData(ArrayList<Object> folderAndFiles, OwnCloudClient client) {
  267. // get 'fresh data' from the database
  268. mLocalFolder = mStorageManager.getFileByPath(mLocalFolder.getRemotePath());
  269. // parse data from remote folder
  270. OCFile remoteFolder = fillOCFile((RemoteFile)folderAndFiles.get(0));
  271. remoteFolder.setParentId(mLocalFolder.getParentId());
  272. remoteFolder.setFileId(mLocalFolder.getFileId());
  273. Log_OC.d(TAG, "Remote folder " + mLocalFolder.getRemotePath()
  274. + " changed - starting update of local data ");
  275. List<OCFile> updatedFiles = new Vector<OCFile>(folderAndFiles.size() - 1);
  276. List<SynchronizeFileOperation> filesToSyncContents = new Vector<SynchronizeFileOperation>();
  277. // get current data about local contents of the folder to synchronize
  278. List<OCFile> localFiles = mStorageManager.getFolderContent(mLocalFolder);
  279. Map<String, OCFile> localFilesMap = new HashMap<String, OCFile>(localFiles.size());
  280. for (OCFile file : localFiles) {
  281. localFilesMap.put(file.getRemotePath(), file);
  282. }
  283. // loop to update every child
  284. OCFile remoteFile = null, localFile = null;
  285. for (int i=1; i<folderAndFiles.size(); i++) {
  286. /// new OCFile instance with the data from the server
  287. remoteFile = fillOCFile((RemoteFile)folderAndFiles.get(i));
  288. remoteFile.setParentId(mLocalFolder.getFileId());
  289. /// retrieve local data for the read file
  290. // localFile = mStorageManager.getFileByPath(remoteFile.getRemotePath());
  291. localFile = localFilesMap.remove(remoteFile.getRemotePath());
  292. /// add to the remoteFile (the new one) data about LOCAL STATE (not existing in server)
  293. remoteFile.setLastSyncDateForProperties(mCurrentSyncTime);
  294. if (localFile != null) {
  295. // some properties of local state are kept unmodified
  296. remoteFile.setFileId(localFile.getFileId());
  297. remoteFile.setKeepInSync(localFile.keepInSync());
  298. remoteFile.setLastSyncDateForData(localFile.getLastSyncDateForData());
  299. remoteFile.setModificationTimestampAtLastSyncForData(
  300. localFile.getModificationTimestampAtLastSyncForData()
  301. );
  302. remoteFile.setStoragePath(localFile.getStoragePath());
  303. // eTag will not be updated unless contents are synchronized
  304. // (Synchronize[File|Folder]Operation with remoteFile as parameter)
  305. remoteFile.setEtag(localFile.getEtag());
  306. if (remoteFile.isFolder()) {
  307. remoteFile.setFileLength(localFile.getFileLength());
  308. // TODO move operations about size of folders to FileContentProvider
  309. }
  310. remoteFile.setPublicLink(localFile.getPublicLink());
  311. remoteFile.setShareByLink(localFile.isShareByLink());
  312. } else {
  313. // remote eTag will not be updated unless contents are synchronized
  314. // (Synchronize[File|Folder]Operation with remoteFile as parameter)
  315. remoteFile.setEtag("");
  316. }
  317. /// check and fix, if needed, local storage path
  318. checkAndFixForeignStoragePath(remoteFile); // policy - local files are COPIED
  319. // into the ownCloud local folder;
  320. searchForLocalFileInDefaultPath(remoteFile); // legacy
  321. /// prepare content synchronization for kept-in-sync files
  322. if (remoteFile.keepInSync()) {
  323. SynchronizeFileOperation operation = new SynchronizeFileOperation( localFile,
  324. remoteFile,
  325. mAccount,
  326. true,
  327. mContext
  328. );
  329. filesToSyncContents.add(operation);
  330. }
  331. updatedFiles.add(remoteFile);
  332. }
  333. // save updated contents in local database
  334. mStorageManager.saveFolder(remoteFolder, updatedFiles, localFilesMap.values());
  335. // request for the synchronization of file contents AFTER saving current remote properties
  336. startContentSynchronizations(filesToSyncContents, client);
  337. mChildren = updatedFiles;
  338. }
  339. /**
  340. * Performs a list of synchronization operations, determining if a download or upload is needed
  341. * or if exists conflict due to changes both in local and remote contents of the each file.
  342. *
  343. * If download or upload is needed, request the operation to the corresponding service and goes
  344. * on.
  345. *
  346. * @param filesToSyncContents Synchronization operations to execute.
  347. * @param client Interface to the remote ownCloud server.
  348. */
  349. private void startContentSynchronizations(
  350. List<SynchronizeFileOperation> filesToSyncContents, OwnCloudClient client
  351. ) {
  352. RemoteOperationResult contentsResult = null;
  353. for (SynchronizeFileOperation op: filesToSyncContents) {
  354. contentsResult = op.execute(mStorageManager, mContext); // async
  355. if (!contentsResult.isSuccess()) {
  356. if (contentsResult.getCode() == ResultCode.SYNC_CONFLICT) {
  357. mConflictsFound++;
  358. } else {
  359. mFailsInFavouritesFound++;
  360. if (contentsResult.getException() != null) {
  361. Log_OC.e(TAG, "Error while synchronizing favourites : "
  362. + contentsResult.getLogMessage(), contentsResult.getException());
  363. } else {
  364. Log_OC.e(TAG, "Error while synchronizing favourites : "
  365. + contentsResult.getLogMessage());
  366. }
  367. }
  368. } // won't let these fails break the synchronization process
  369. }
  370. }
  371. public boolean isMultiStatus(int status) {
  372. return (status == HttpStatus.SC_MULTI_STATUS);
  373. }
  374. /**
  375. * Creates and populates a new {@link OCFile} object with the data read from the server.
  376. *
  377. * @param remote remote file read from the server (remote file or folder).
  378. * @return New OCFile instance representing the remote resource described by we.
  379. */
  380. private OCFile fillOCFile(RemoteFile remote) {
  381. OCFile file = new OCFile(remote.getRemotePath());
  382. file.setCreationTimestamp(remote.getCreationTimestamp());
  383. file.setFileLength(remote.getLength());
  384. file.setMimetype(remote.getMimeType());
  385. file.setModificationTimestamp(remote.getModifiedTimestamp());
  386. file.setEtag(remote.getEtag());
  387. file.setPermissions(remote.getPermissions());
  388. file.setRemoteId(remote.getRemoteId());
  389. return file;
  390. }
  391. /**
  392. * Checks the storage path of the OCFile received as parameter.
  393. * If it's out of the local ownCloud folder, tries to copy the file inside it.
  394. *
  395. * If the copy fails, the link to the local file is nullified. The account of forgotten
  396. * files is kept in {@link #mForgottenLocalFiles}
  397. *)
  398. * @param file File to check and fix.
  399. */
  400. private void checkAndFixForeignStoragePath(OCFile file) {
  401. String storagePath = file.getStoragePath();
  402. String expectedPath = FileStorageUtils.getDefaultSavePathFor(mAccount.name, file);
  403. if (storagePath != null && !storagePath.equals(expectedPath)) {
  404. /// fix storagePaths out of the local ownCloud folder
  405. File originalFile = new File(storagePath);
  406. if (FileStorageUtils.getUsableSpace(mAccount.name) < originalFile.length()) {
  407. mForgottenLocalFiles.put(file.getRemotePath(), storagePath);
  408. file.setStoragePath(null);
  409. } else {
  410. InputStream in = null;
  411. OutputStream out = null;
  412. try {
  413. File expectedFile = new File(expectedPath);
  414. File expectedParent = expectedFile.getParentFile();
  415. expectedParent.mkdirs();
  416. if (!expectedParent.isDirectory()) {
  417. throw new IOException(
  418. "Unexpected error: parent directory could not be created"
  419. );
  420. }
  421. expectedFile.createNewFile();
  422. if (!expectedFile.isFile()) {
  423. throw new IOException("Unexpected error: target file could not be created");
  424. }
  425. in = new FileInputStream(originalFile);
  426. out = new FileOutputStream(expectedFile);
  427. byte[] buf = new byte[1024];
  428. int len;
  429. while ((len = in.read(buf)) > 0){
  430. out.write(buf, 0, len);
  431. }
  432. file.setStoragePath(expectedPath);
  433. } catch (Exception e) {
  434. Log_OC.e(TAG, "Exception while copying foreign file " + expectedPath, e);
  435. mForgottenLocalFiles.put(file.getRemotePath(), storagePath);
  436. file.setStoragePath(null);
  437. } finally {
  438. try {
  439. if (in != null) in.close();
  440. } catch (Exception e) {
  441. Log_OC.d(TAG, "Weird exception while closing input stream for "
  442. + storagePath + " (ignoring)", e);
  443. }
  444. try {
  445. if (out != null) out.close();
  446. } catch (Exception e) {
  447. Log_OC.d(TAG, "Weird exception while closing output stream for "
  448. + expectedPath + " (ignoring)", e);
  449. }
  450. }
  451. }
  452. }
  453. }
  454. private RemoteOperationResult refreshSharesForFolder(OwnCloudClient client) {
  455. RemoteOperationResult result = null;
  456. // remote request
  457. GetRemoteSharesForFileOperation operation =
  458. new GetRemoteSharesForFileOperation(mLocalFolder.getRemotePath(), false, true);
  459. result = operation.execute(client);
  460. if (result.isSuccess()) {
  461. // update local database
  462. ArrayList<OCShare> shares = new ArrayList<OCShare>();
  463. for(Object obj: result.getData()) {
  464. shares.add((OCShare) obj);
  465. }
  466. mStorageManager.saveSharesInFolder(shares, mLocalFolder);
  467. }
  468. return result;
  469. }
  470. /**
  471. * Scans the default location for saving local copies of files searching for
  472. * a 'lost' file with the same full name as the {@link OCFile} received as
  473. * parameter.
  474. *
  475. * @param file File to associate a possible 'lost' local file.
  476. */
  477. private void searchForLocalFileInDefaultPath(OCFile file) {
  478. if (file.getStoragePath() == null && !file.isFolder()) {
  479. File f = new File(FileStorageUtils.getDefaultSavePathFor(mAccount.name, file));
  480. if (f.exists()) {
  481. file.setStoragePath(f.getAbsolutePath());
  482. file.setLastSyncDateForData(f.lastModified());
  483. }
  484. }
  485. }
  486. /**
  487. * Sends a message to any application component interested in the progress
  488. * of the synchronization.
  489. *
  490. * @param event
  491. * @param dirRemotePath Remote path of a folder that was just synchronized
  492. * (with or without success)
  493. * @param result
  494. */
  495. private void sendLocalBroadcast(
  496. String event, String dirRemotePath, RemoteOperationResult result
  497. ) {
  498. Log_OC.d(TAG, "Send broadcast " + event);
  499. Intent intent = new Intent(event);
  500. intent.putExtra(FileSyncAdapter.EXTRA_ACCOUNT_NAME, mAccount.name);
  501. if (dirRemotePath != null) {
  502. intent.putExtra(FileSyncAdapter.EXTRA_FOLDER_PATH, dirRemotePath);
  503. }
  504. intent.putExtra(FileSyncAdapter.EXTRA_RESULT, result);
  505. mContext.sendStickyBroadcast(intent);
  506. //LocalBroadcastManager.getInstance(mContext).sendBroadcast(intent);
  507. }
  508. public boolean getRemoteFolderChanged() {
  509. return mRemoteFolderChanged;
  510. }
  511. }