Merge branch 'master' of github.com:owncloud/android into setAsWallpaper
[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, updatedFile = null;
306 RemoteFile r;
307 for (int i=1; i<folderAndFiles.size(); i++) {
308 /// new OCFile instance with the data from the server
309 r = (RemoteFile) folderAndFiles.get(i);
310 remoteFile = FileStorageUtils.fillOCFile(r);
311
312 /// new OCFile instance to merge fresh data from server with local state
313 updatedFile = FileStorageUtils.fillOCFile(r);
314 updatedFile.setParentId(mLocalFolder.getFileId());
315
316 /// retrieve local data for the read file
317 // localFile = mStorageManager.getFileByPath(remoteFile.getRemotePath());
318 localFile = localFilesMap.remove(remoteFile.getRemotePath());
319
320 /// add to updatedFile data about LOCAL STATE (not existing in server)
321 updatedFile.setLastSyncDateForProperties(mCurrentSyncTime);
322 if (localFile != null) {
323 updatedFile.setFileId(localFile.getFileId());
324 updatedFile.setFavorite(localFile.isFavorite());
325 updatedFile.setLastSyncDateForData(localFile.getLastSyncDateForData());
326 updatedFile.setModificationTimestampAtLastSyncForData(
327 localFile.getModificationTimestampAtLastSyncForData()
328 );
329 updatedFile.setStoragePath(localFile.getStoragePath());
330 // eTag will not be updated unless file CONTENTS are synchronized
331 updatedFile.setEtag(localFile.getEtag());
332 if (updatedFile.isFolder()) {
333 updatedFile.setFileLength(localFile.getFileLength());
334 // TODO move operations about size of folders to FileContentProvider
335 } else if (mRemoteFolderChanged && remoteFile.isImage() &&
336 remoteFile.getModificationTimestamp() !=
337 localFile.getModificationTimestamp()) {
338 updatedFile.setNeedsUpdateThumbnail(true);
339 Log.d(TAG, "Image " + remoteFile.getFileName() + " updated on the server");
340 }
341 updatedFile.setPublicLink(localFile.getPublicLink());
342 updatedFile.setShareByLink(localFile.isShareByLink());
343 updatedFile.setEtagInConflict(localFile.getEtagInConflict());
344 } else {
345 // remote eTag will not be updated unless file CONTENTS are synchronized
346 updatedFile.setEtag("");
347 }
348
349 /// check and fix, if needed, local storage path
350 searchForLocalFileInDefaultPath(updatedFile);
351
352 /// classify file to sync/download contents later
353 if (remoteFile.isFolder()) {
354 /// to download children files recursively
355 synchronized (mCancellationRequested) {
356 if (mCancellationRequested.get()) {
357 throw new OperationCancelledException();
358 }
359 startSyncFolderOperation(remoteFile.getRemotePath());
360 }
361
362 } else {
363 /// prepare content synchronization for files (any file, not just favorites)
364 SynchronizeFileOperation operation = new SynchronizeFileOperation(
365 localFile,
366 remoteFile,
367 mAccount,
368 true,
369 mContext
370 );
371 mFilesToSyncContents.add(operation);
372
373 }
374
375 updatedFiles.add(updatedFile);
376 }
377
378 // save updated contents in local database
379 storageManager.saveFolder(remoteFolder, updatedFiles, localFilesMap.values());
380
381 }
382
383
384 private void prepareOpsFromLocalKnowledge() throws OperationCancelledException {
385 // TODO Enable when "On Device" is recovered ?
386 List<OCFile> children = getStorageManager().getFolderContent(mLocalFolder/*, false*/);
387 for (OCFile child : children) {
388 /// classify file to sync/download contents later
389 if (child.isFolder()) {
390 /// to download children files recursively
391 synchronized(mCancellationRequested) {
392 if (mCancellationRequested.get()) {
393 throw new OperationCancelledException();
394 }
395 startSyncFolderOperation(child.getRemotePath());
396 }
397
398 } else {
399 /// synchronization for regular files
400 if (!child.isDown()) {
401 mFilesForDirectDownload.add(child);
402
403 } else {
404 /// this should result in direct upload of files that were locally modified
405 SynchronizeFileOperation operation = new SynchronizeFileOperation(
406 child,
407 (child.getEtagInConflict() != null ? child : null),
408 mAccount,
409 true,
410 mContext
411 );
412 mFilesToSyncContents.add(operation);
413
414 }
415
416 }
417 }
418 }
419
420
421 private void syncContents(OwnCloudClient client) throws OperationCancelledException {
422 startDirectDownloads();
423 startContentSynchronizations(mFilesToSyncContents, client);
424 }
425
426
427 private void startDirectDownloads() throws OperationCancelledException {
428 for (OCFile file : mFilesForDirectDownload) {
429 synchronized(mCancellationRequested) {
430 if (mCancellationRequested.get()) {
431 throw new OperationCancelledException();
432 }
433 Intent i = new Intent(mContext, FileDownloader.class);
434 i.putExtra(FileDownloader.EXTRA_ACCOUNT, mAccount);
435 i.putExtra(FileDownloader.EXTRA_FILE, file);
436 mContext.startService(i);
437 }
438 }
439 }
440
441 /**
442 * Performs a list of synchronization operations, determining if a download or upload is needed
443 * or if exists conflict due to changes both in local and remote contents of the each file.
444 *
445 * If download or upload is needed, request the operation to the corresponding service and goes
446 * on.
447 *
448 * @param filesToSyncContents Synchronization operations to execute.
449 * @param client Interface to the remote ownCloud server.
450 */
451 private void startContentSynchronizations(List<SyncOperation> filesToSyncContents,
452 OwnCloudClient client)
453 throws OperationCancelledException {
454
455 Log_OC.v(TAG, "Starting content synchronization... ");
456 RemoteOperationResult contentsResult = null;
457 for (SyncOperation op: filesToSyncContents) {
458 if (mCancellationRequested.get()) {
459 throw new OperationCancelledException();
460 }
461 contentsResult = op.execute(getStorageManager(), mContext);
462 if (!contentsResult.isSuccess()) {
463 if (contentsResult.getCode() == ResultCode.SYNC_CONFLICT) {
464 mConflictsFound++;
465 } else {
466 mFailsInFileSyncsFound++;
467 if (contentsResult.getException() != null) {
468 Log_OC.e(TAG, "Error while synchronizing file : "
469 + contentsResult.getLogMessage(), contentsResult.getException());
470 } else {
471 Log_OC.e(TAG, "Error while synchronizing file : "
472 + contentsResult.getLogMessage());
473 }
474 }
475 // TODO - use the errors count in notifications
476 } // won't let these fails break the synchronization process
477 }
478 }
479
480
481 /**
482 * Scans the default location for saving local copies of files searching for
483 * a 'lost' file with the same full name as the {@link com.owncloud.android.datamodel.OCFile}
484 * received as parameter.
485 *
486 * @param file File to associate a possible 'lost' local file.
487 */
488 private void searchForLocalFileInDefaultPath(OCFile file) {
489 if (file.getStoragePath() == null && !file.isFolder()) {
490 File f = new File(FileStorageUtils.getDefaultSavePathFor(mAccount.name, file));
491 if (f.exists()) {
492 file.setStoragePath(f.getAbsolutePath());
493 file.setLastSyncDateForData(f.lastModified());
494 }
495 }
496 }
497
498
499 /**
500 * Cancel operation
501 */
502 public void cancel() {
503 mCancellationRequested.set(true);
504 }
505
506 public String getFolderPath() {
507 String path = mLocalFolder.getStoragePath();
508 if (path != null && path.length() > 0) {
509 return path;
510 }
511 return FileStorageUtils.getDefaultSavePathFor(mAccount.name, mLocalFolder);
512 }
513
514 private void startSyncFolderOperation(String path){
515 Intent intent = new Intent(mContext, OperationsService.class);
516 intent.setAction(OperationsService.ACTION_SYNC_FOLDER);
517 intent.putExtra(OperationsService.EXTRA_ACCOUNT, mAccount);
518 intent.putExtra(OperationsService.EXTRA_REMOTE_PATH, path);
519 mContext.startService(intent);
520 }
521
522 public String getRemotePath() {
523 return mRemotePath;
524 }
525 }