Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(770)

Unified Diff: chrome/browser/sync_file_system/remote_change_processor.h

Issue 11234025: Add skeleton code to wire Local- and Remote- file sync services (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync_file_system/remote_change_processor.h
diff --git a/chrome/browser/sync_file_system/remote_change_processor.h b/chrome/browser/sync_file_system/remote_change_processor.h
new file mode 100644
index 0000000000000000000000000000000000000000..25ea9c1731d58d25dad0d6f62288e210342986a1
--- /dev/null
+++ b/chrome/browser/sync_file_system/remote_change_processor.h
@@ -0,0 +1,63 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_
+#define CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_
+
+#include "base/basictypes.h"
+#include "base/callback_forward.h"
+#include "webkit/fileapi/syncable/sync_status_code.h"
+
+class FilePath;
+
+namespace fileapi {
+class FileChange;
+class FileChangeList;
+class FileSystemURL;
+}
+
+namespace sync_file_system {
+
+// Represents an interface to process one remote change and applies
+// it to the local file system.
+// This interface is to be implemented/backed by LocalSyncFileService.
+class RemoteChangeProcessor {
+ public:
+ typedef base::Callback<void(
+ fileapi::SyncStatusCode status,
+ fileapi::FileChangeList& change)> PrepareChangeCallback;
+ typedef base::Callback<void(fileapi::SyncStatusCode status)> StatusCallback;
+
+ RemoteChangeProcessor() {}
+ virtual ~RemoteChangeProcessor() {}
+
+ // This must be called before processing the change for the |url|.
+ // This tries to lock the target |url| and returns the local changes
+ // if any. (The change returned by the callback is to make a decision
+ // on conflict resolution, but NOT for applying local changes to the remote,
+ // which is supposed to be done by LocalChangeProcessor)
+ virtual void PrepareForProcessRemoteChange(
+ const fileapi::FileSystemURL& url,
+ const PrepareChangeCallback& callback) = 0;
kinuko 2012/10/22 09:21:06 The remote sync service will call this method when
+
+ // This is called to apply the remote |change|. If the change type is
+ // ADD_OR_UPDATE for a file, |local_path| needs to point to a
+ // local file path that contains the latest file image (e.g. a path
+ // to a temporary file which has the data downloaded from the server).
+ // This may fail with an error but should NOT result in a conflict
+ // (as we must have checked the change status in PrepareRemoteSync and
+ // have disabled any further writing).
+ virtual void ApplyRemoteChange(
+ const fileapi::FileChange& change,
+ const FilePath& local_path,
+ const fileapi::FileSystemURL& url,
+ const StatusCallback& callback) = 0;
kinuko 2012/10/22 09:21:06 The remote sync service will call this method to a
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(RemoteChangeProcessor);
+};
+
+} // namespace sync_file_system
+
+#endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_
« no previous file with comments | « chrome/browser/sync_file_system/local_file_sync_service.cc ('k') | chrome/browser/sync_file_system/sync_file_system_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698