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