ETag used to detect changes in remote files (not only in folders)
[pub/Android/ownCloud.git] / src / com / owncloud / android / operations / SynchronizeFolderOperation.java
1 /**
2 * ownCloud Android client application
3 *
4 * @author David A. Velasco
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
21 package com.owncloud.android.operations;
22
23 import java.io.File;
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
30 import android.accounts.Account;
31 import android.content.Context;
32 import android.content.Intent;
33 import android.util.Log;
34
35
36 import com.owncloud.android.datamodel.FileDataStorageManager;
37 import com.owncloud.android.datamodel.OCFile;
38 import com.owncloud.android.files.services.FileDownloader;
39 import com.owncloud.android.lib.common.OwnCloudClient;
40 import com.owncloud.android.lib.common.operations.OperationCancelledException;
41 import com.owncloud.android.lib.common.operations.RemoteOperationResult;
42 import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
43 import com.owncloud.android.lib.common.utils.Log_OC;
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.operations.common.SyncOperation;
48 import com.owncloud.android.services.OperationsService;
49 import com.owncloud.android.utils.FileStorageUtils;
50
51 import java.util.concurrent.atomic.AtomicBoolean;
52
53 //import android.support.v4.content.LocalBroadcastManager;
54
55
56 /**
57 * Remote operation performing the synchronization of the list of files contained
58 * in a folder identified with its remote path.
59 *
60 * Fetches the list and properties of the files contained in the given folder, including their
61 * properties, and updates the local database with them.
62 *
63 * Does NOT enter in the child folders to synchronize their contents also, BUT requests for a new operation instance
64 * doing so.
65 */
66 public class SynchronizeFolderOperation extends SyncOperation {
67
68 private static final String TAG = SynchronizeFolderOperation.class.getSimpleName();
69
70 /** Time stamp for the synchronization process in progress */
71 private long mCurrentSyncTime;
72
73 /** Remote path of the folder to synchronize */
74 private String mRemotePath;
75
76 /** Account where the file to synchronize belongs */
77 private Account mAccount;
78
79 /** Android context; necessary to send requests to the download service */
80 private Context mContext;
81
82 /** Locally cached information about folder to synchronize */
83 private OCFile mLocalFolder;
84
85 /** Files and folders contained in the synchronized folder after a successful operation */
86 //private List<OCFile> mChildren;
87
88 /** Counter of conflicts found between local and remote files */
89 private int mConflictsFound;
90
91 /** Counter of failed operations in synchronization of kept-in-sync files */
92 private int mFailsInFileSyncsFound;
93
94 /** 'True' means that the remote folder changed and should be fetched */
95 private boolean mRemoteFolderChanged;
96
97 private List<OCFile> mFilesForDirectDownload;
98 // to avoid extra PROPFINDs when there was no change in the folder
99
100 private List<SyncOperation> mFilesToSyncContents;
101 // this will be used for every file when 'folder synchronization' replaces 'folder download'
102
103 private final AtomicBoolean mCancellationRequested;
104
105 /**
106 * Creates a new instance of {@link SynchronizeFolderOperation}.
107 *
108 * @param context Application context.
109 * @param remotePath Path to synchronize.
110 * @param account ownCloud account where the folder is located.
111 * @param currentSyncTime Time stamp for the synchronization process in progress.
112 */
113 public SynchronizeFolderOperation(Context context, String remotePath, Account account,
114 long currentSyncTime){
115 mRemotePath = remotePath;
116 mCurrentSyncTime = currentSyncTime;
117 mAccount = account;
118 mContext = context;
119 mRemoteFolderChanged = false;
120 mFilesForDirectDownload = new Vector<OCFile>();
121 mFilesToSyncContents = new Vector<SyncOperation>();
122 mCancellationRequested = new AtomicBoolean(false);
123 }
124
125
126 public int getConflictsFound() {
127 return mConflictsFound;
128 }
129
130 public int getFailsInFileSyncsFound() {
131 return mFailsInFileSyncsFound;
132 }
133
134 /**
135 * Performs the synchronization.
136 *
137 * {@inheritDoc}
138 */
139 @Override
140 protected RemoteOperationResult run(OwnCloudClient client) {
141 RemoteOperationResult result = null;
142 mFailsInFileSyncsFound = 0;
143 mConflictsFound = 0;
144
145 try {
146 // get locally cached information about folder
147 mLocalFolder = getStorageManager().getFileByPath(mRemotePath);
148
149 result = checkForChanges(client);
150
151 if (result.isSuccess()) {
152 if (mRemoteFolderChanged) {
153 result = fetchAndSyncRemoteFolder(client);
154
155 } else {
156 prepareOpsFromLocalKnowledge();
157 }
158
159 if (result.isSuccess()) {
160 syncContents(client);
161 }
162
163 }
164
165 if (mCancellationRequested.get()) {
166 throw new OperationCancelledException();
167 }
168
169 } catch (OperationCancelledException e) {
170 result = new RemoteOperationResult(e);
171 }
172
173 return result;
174
175 }
176
177 private RemoteOperationResult checkForChanges(OwnCloudClient client)
178 throws OperationCancelledException {
179 Log_OC.d(TAG, "Checking changes in " + mAccount.name + mRemotePath);
180
181 mRemoteFolderChanged = true;
182 RemoteOperationResult result = null;
183
184 if (mCancellationRequested.get()) {
185 throw new OperationCancelledException();
186 }
187
188 // remote request
189 ReadRemoteFileOperation operation = new ReadRemoteFileOperation(mRemotePath);
190 result = operation.execute(client);
191 if (result.isSuccess()){
192 OCFile remoteFolder = FileStorageUtils.fillOCFile((RemoteFile) result.getData().get(0));
193
194 // check if remote and local folder are different
195 mRemoteFolderChanged =
196 !(remoteFolder.getEtag().equalsIgnoreCase(mLocalFolder.getEtag()));
197
198 result = new RemoteOperationResult(ResultCode.OK);
199
200 Log_OC.i(TAG, "Checked " + mAccount.name + mRemotePath + " : " +
201 (mRemoteFolderChanged ? "changed" : "not changed"));
202
203 } else {
204 // check failed
205 if (result.getCode() == ResultCode.FILE_NOT_FOUND) {
206 removeLocalFolder();
207 }
208 if (result.isException()) {
209 Log_OC.e(TAG, "Checked " + mAccount.name + mRemotePath + " : " +
210 result.getLogMessage(), result.getException());
211 } else {
212 Log_OC.e(TAG, "Checked " + mAccount.name + mRemotePath + " : " +
213 result.getLogMessage());
214 }
215
216 }
217
218 return result;
219 }
220
221
222 private RemoteOperationResult fetchAndSyncRemoteFolder(OwnCloudClient client)
223 throws OperationCancelledException {
224 if (mCancellationRequested.get()) {
225 throw new OperationCancelledException();
226 }
227
228 ReadRemoteFolderOperation operation = new ReadRemoteFolderOperation(mRemotePath);
229 RemoteOperationResult result = operation.execute(client);
230 Log_OC.d(TAG, "Synchronizing " + mAccount.name + mRemotePath);
231
232 if (result.isSuccess()) {
233 synchronizeData(result.getData(), client);
234 if (mConflictsFound > 0 || mFailsInFileSyncsFound > 0) {
235 result = new RemoteOperationResult(ResultCode.SYNC_CONFLICT);
236 // should be a different result code, but will do the job
237 }
238 } else {
239 if (result.getCode() == ResultCode.FILE_NOT_FOUND)
240 removeLocalFolder();
241 }
242
243
244 return result;
245 }
246
247
248 private void removeLocalFolder() {
249 FileDataStorageManager storageManager = getStorageManager();
250 if (storageManager.fileExists(mLocalFolder.getFileId())) {
251 String currentSavePath = FileStorageUtils.getSavePath(mAccount.name);
252 storageManager.removeFolder(
253 mLocalFolder,
254 true,
255 ( mLocalFolder.isDown() && // TODO: debug, I think this is
256 // always false for folders
257 mLocalFolder.getStoragePath().startsWith(currentSavePath)
258 )
259 );
260 }
261 }
262
263
264 /**
265 * Synchronizes the data retrieved from the server about the contents of the target folder
266 * with the current data in the local database.
267 *
268 * Grants that mChildren is updated with fresh data after execution.
269 *
270 * @param folderAndFiles Remote folder and children files in Folder
271 *
272 * @param client Client instance to the remote server where the data were
273 * retrieved.
274 * @return 'True' when any change was made in the local data, 'false' otherwise
275 */
276 private void synchronizeData(ArrayList<Object> folderAndFiles, OwnCloudClient client)
277 throws OperationCancelledException {
278 FileDataStorageManager storageManager = getStorageManager();
279
280 // parse data from remote folder
281 OCFile remoteFolder = FileStorageUtils.fillOCFile((RemoteFile) folderAndFiles.get(0));
282 remoteFolder.setParentId(mLocalFolder.getParentId());
283 remoteFolder.setFileId(mLocalFolder.getFileId());
284
285 Log_OC.d(TAG, "Remote folder " + mLocalFolder.getRemotePath()
286 + " changed - starting update of local data ");
287
288 List<OCFile> updatedFiles = new Vector<OCFile>(folderAndFiles.size() - 1);
289 mFilesForDirectDownload.clear();
290 mFilesToSyncContents.clear();
291
292 if (mCancellationRequested.get()) {
293 throw new OperationCancelledException();
294 }
295
296 // get current data about local contents of the folder to synchronize
297 // TODO Enable when "On Device" is recovered ?
298 List<OCFile> localFiles = storageManager.getFolderContent(mLocalFolder/*, false*/);
299 Map<String, OCFile> localFilesMap = new HashMap<String, OCFile>(localFiles.size());
300 for (OCFile file : localFiles) {
301 localFilesMap.put(file.getRemotePath(), file);
302 }
303
304 // loop to synchronize every child
305 OCFile remoteFile = null, localFile = null;
306 for (int i=1; i<folderAndFiles.size(); i++) {
307 /// new OCFile instance with the data from the server
308 remoteFile = FileStorageUtils.fillOCFile((RemoteFile)folderAndFiles.get(i));
309 remoteFile.setParentId(mLocalFolder.getFileId());
310
311 /// retrieve local data for the read file
312 // localFile = mStorageManager.getFileByPath(remoteFile.getRemotePath());
313 localFile = localFilesMap.remove(remoteFile.getRemotePath());
314
315 /// add to the remoteFile (the new one) data about LOCAL STATE (not existing in server)
316 remoteFile.setLastSyncDateForProperties(mCurrentSyncTime);
317 if (localFile != null) {
318 // some properties of local state are kept unmodified
319 remoteFile.setFileId(localFile.getFileId());
320 remoteFile.setFavorite(localFile.isFavorite());
321 remoteFile.setLastSyncDateForData(localFile.getLastSyncDateForData());
322 remoteFile.setModificationTimestampAtLastSyncForData(
323 localFile.getModificationTimestampAtLastSyncForData()
324 );
325 remoteFile.setStoragePath(localFile.getStoragePath());
326 // eTag will not be updated unless contents are synchronized
327 remoteFile.setEtag(localFile.getEtag());
328 if (remoteFile.isFolder()) {
329 remoteFile.setFileLength(localFile.getFileLength());
330 // TODO move operations about size of folders to FileContentProvider
331 } else if (mRemoteFolderChanged && remoteFile.isImage() &&
332 remoteFile.getModificationTimestamp() !=
333 localFile.getModificationTimestamp()) {
334 remoteFile.setNeedsUpdateThumbnail(true);
335 Log.d(TAG, "Image " + remoteFile.getFileName() + " updated on the server");
336 }
337 remoteFile.setPublicLink(localFile.getPublicLink());
338 remoteFile.setShareByLink(localFile.isShareByLink());
339 } else {
340 // remote eTag will not be updated unless contents are synchronized
341 remoteFile.setEtag("");
342 }
343
344 /// check and fix, if needed, local storage path
345 searchForLocalFileInDefaultPath(remoteFile);
346
347 /// classify file to sync/download contents later
348 if (remoteFile.isFolder()) {
349 /// to download children files recursively
350 synchronized (mCancellationRequested) {
351 if (mCancellationRequested.get()) {
352 throw new OperationCancelledException();
353 }
354 startSyncFolderOperation(remoteFile.getRemotePath());
355 }
356
357 } else {
358 /// prepare content synchronization for files (any file, not just favorites)
359 SynchronizeFileOperation operation = new SynchronizeFileOperation(
360 localFile,
361 remoteFile,
362 mAccount,
363 true,
364 mContext
365 );
366 mFilesToSyncContents.add(operation);
367
368 }
369
370 updatedFiles.add(remoteFile);
371 }
372
373 // save updated contents in local database
374 storageManager.saveFolder(remoteFolder, updatedFiles, localFilesMap.values());
375
376 }
377
378
379 private void prepareOpsFromLocalKnowledge() throws OperationCancelledException {
380 // TODO Enable when "On Device" is recovered ?
381 List<OCFile> children = getStorageManager().getFolderContent(mLocalFolder/*, false*/);
382 for (OCFile child : children) {
383 /// classify file to sync/download contents later
384 if (child.isFolder()) {
385 /// to download children files recursively
386 synchronized(mCancellationRequested) {
387 if (mCancellationRequested.get()) {
388 throw new OperationCancelledException();
389 }
390 startSyncFolderOperation(child.getRemotePath());
391 }
392
393 } else {
394 /// synchronization for regular files
395 if (!child.isDown()) {
396 mFilesForDirectDownload.add(child);
397
398 } else {
399 /// this should result in direct upload of files that were locally modified
400 SynchronizeFileOperation operation = new SynchronizeFileOperation(
401 child,
402 child, // cheating with the remote file to get an upadte to server; to refactor
403 mAccount,
404 true,
405 mContext
406 );
407 mFilesToSyncContents.add(operation);
408
409 }
410
411 }
412 }
413 }
414
415
416 private void syncContents(OwnCloudClient client) throws OperationCancelledException {
417 startDirectDownloads();
418 startContentSynchronizations(mFilesToSyncContents, client);
419 }
420
421
422 private void startDirectDownloads() throws OperationCancelledException {
423 for (OCFile file : mFilesForDirectDownload) {
424 synchronized(mCancellationRequested) {
425 if (mCancellationRequested.get()) {
426 throw new OperationCancelledException();
427 }
428 Intent i = new Intent(mContext, FileDownloader.class);
429 i.putExtra(FileDownloader.EXTRA_ACCOUNT, mAccount);
430 i.putExtra(FileDownloader.EXTRA_FILE, file);
431 mContext.startService(i);
432 }
433 }
434 }
435
436 /**
437 * Performs a list of synchronization operations, determining if a download or upload is needed
438 * or if exists conflict due to changes both in local and remote contents of the each file.
439 *
440 * If download or upload is needed, request the operation to the corresponding service and goes
441 * on.
442 *
443 * @param filesToSyncContents Synchronization operations to execute.
444 * @param client Interface to the remote ownCloud server.
445 */
446 private void startContentSynchronizations(List<SyncOperation> filesToSyncContents,
447 OwnCloudClient client)
448 throws OperationCancelledException {
449
450 Log_OC.v(TAG, "Starting content synchronization... ");
451 RemoteOperationResult contentsResult = null;
452 for (SyncOperation op: filesToSyncContents) {
453 if (mCancellationRequested.get()) {
454 throw new OperationCancelledException();
455 }
456 contentsResult = op.execute(getStorageManager(), mContext);
457 if (!contentsResult.isSuccess()) {
458 if (contentsResult.getCode() == ResultCode.SYNC_CONFLICT) {
459 mConflictsFound++;
460 } else {
461 mFailsInFileSyncsFound++;
462 if (contentsResult.getException() != null) {
463 Log_OC.e(TAG, "Error while synchronizing file : "
464 + contentsResult.getLogMessage(), contentsResult.getException());
465 } else {
466 Log_OC.e(TAG, "Error while synchronizing file : "
467 + contentsResult.getLogMessage());
468 }
469 }
470 // TODO - use the errors count in notifications
471 } // won't let these fails break the synchronization process
472 }
473 }
474
475
476 /**
477 * Scans the default location for saving local copies of files searching for
478 * a 'lost' file with the same full name as the {@link com.owncloud.android.datamodel.OCFile}
479 * received as parameter.
480 *
481 * @param file File to associate a possible 'lost' local file.
482 */
483 private void searchForLocalFileInDefaultPath(OCFile file) {
484 if (file.getStoragePath() == null && !file.isFolder()) {
485 File f = new File(FileStorageUtils.getDefaultSavePathFor(mAccount.name, file));
486 if (f.exists()) {
487 file.setStoragePath(f.getAbsolutePath());
488 file.setLastSyncDateForData(f.lastModified());
489 }
490 }
491 }
492
493
494 /**
495 * Cancel operation
496 */
497 public void cancel() {
498 mCancellationRequested.set(true);
499 }
500
501 public String getFolderPath() {
502 String path = mLocalFolder.getStoragePath();
503 if (path != null && path.length() > 0) {
504 return path;
505 }
506 return FileStorageUtils.getDefaultSavePathFor(mAccount.name, mLocalFolder);
507 }
508
509 private void startSyncFolderOperation(String path){
510 Intent intent = new Intent(mContext, OperationsService.class);
511 intent.setAction(OperationsService.ACTION_SYNC_FOLDER);
512 intent.putExtra(OperationsService.EXTRA_ACCOUNT, mAccount);
513 intent.putExtra(OperationsService.EXTRA_REMOTE_PATH, path);
514 mContext.startService(intent);
515 }
516
517 public String getRemotePath() {
518 return mRemotePath;
519 }
520 }