Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / sync_file_system / drive_backend / local_to_remote_syncer.h
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LOCAL_TO_REMOTE_SYNCER_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LOCAL_TO_REMOTE_SYNCER_H_
7
8 #include <string>
9
10 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/scoped_vector.h"
12 #include "base/memory/weak_ptr.h"
13 #include "chrome/browser/sync_file_system/drive_backend/sync_task.h"
14 #include "chrome/browser/sync_file_system/file_change.h"
15 #include "chrome/browser/sync_file_system/sync_action.h"
16 #include "chrome/browser/sync_file_system/sync_file_metadata.h"
17 #include "google_apis/drive/gdata_errorcode.h"
18
19 namespace drive {
20 class DriveServiceInterface;
21 class DriveUploaderInterface;
22 }
23
24 namespace google_apis {
25 class FileResource;
26 class ResourceList;
27 }
28
29 namespace sync_file_system {
30
31 class RemoteChangeProcessor;
32
33 namespace drive_backend {
34
35 class FileDetails;
36 class FileTracker;
37 class FolderCreator;
38 class MetadataDatabase;
39 class SyncEngineContext;
40
41 class LocalToRemoteSyncer : public SyncTask {
42  public:
43   typedef base::Callback<void(scoped_ptr<SyncTaskToken>)> Continuation;
44
45   LocalToRemoteSyncer(SyncEngineContext* sync_context,
46                       const SyncFileMetadata& local_metadata,
47                       const FileChange& local_change,
48                       const base::FilePath& local_path,
49                       const storage::FileSystemURL& url);
50   ~LocalToRemoteSyncer() override;
51   void RunPreflight(scoped_ptr<SyncTaskToken> token) override;
52
53   const storage::FileSystemURL& url() const { return url_; }
54   const base::FilePath& target_path() const { return target_path_; }
55   SyncFileType file_type() const { return file_type_; }
56   SyncAction sync_action() const { return sync_action_; }
57   bool needs_remote_change_listing() const {
58     return needs_remote_change_listing_;
59   }
60
61  private:
62   void MoveToBackground(const Continuation& continuation,
63                         scoped_ptr<SyncTaskToken> token);
64   void ContinueAsBackgroundTask(const Continuation& continuation,
65                                 scoped_ptr<SyncTaskToken> token);
66   void SyncCompleted(scoped_ptr<SyncTaskToken> token,
67                      SyncStatusCode status);
68
69   void HandleConflict(scoped_ptr<SyncTaskToken> token);
70   void HandleExistingRemoteFile(scoped_ptr<SyncTaskToken> token);
71
72   void UpdateTrackerForReusedFolder(const FileDetails& details,
73                                     scoped_ptr<SyncTaskToken> token);
74
75   void DeleteRemoteFile(scoped_ptr<SyncTaskToken> token);
76   void DidDeleteRemoteFile(scoped_ptr<SyncTaskToken> token,
77                            google_apis::GDataErrorCode error);
78
79   void UploadExistingFile(scoped_ptr<SyncTaskToken> token);
80   void DidUploadExistingFile(scoped_ptr<SyncTaskToken> token,
81                              google_apis::GDataErrorCode error,
82                              const GURL&,
83                              scoped_ptr<google_apis::FileResource>);
84   void UpdateRemoteMetadata(const std::string& file_id,
85                             scoped_ptr<SyncTaskToken> token);
86   void DidGetRemoteMetadata(const std::string& file_id,
87                             scoped_ptr<SyncTaskToken> token,
88                             google_apis::GDataErrorCode error,
89                             scoped_ptr<google_apis::FileResource> entry);
90
91   void UploadNewFile(scoped_ptr<SyncTaskToken> token);
92   void DidUploadNewFile(scoped_ptr<SyncTaskToken> token,
93                         google_apis::GDataErrorCode error,
94                         const GURL& upload_location,
95                         scoped_ptr<google_apis::FileResource> entry);
96
97   void CreateRemoteFolder(scoped_ptr<SyncTaskToken> token);
98   void DidCreateRemoteFolder(scoped_ptr<SyncTaskToken> token,
99                              const std::string& file_id,
100                              SyncStatusCode status);
101   void DidDetachResourceForCreationConflict(scoped_ptr<SyncTaskToken> token,
102                                             google_apis::GDataErrorCode error);
103
104   bool IsContextReady();
105   drive::DriveServiceInterface* drive_service();
106   drive::DriveUploaderInterface* drive_uploader();
107   MetadataDatabase* metadata_database();
108
109   SyncEngineContext* sync_context_;  // Not owned.
110
111   FileChange local_change_;
112   bool local_is_missing_;
113   base::FilePath local_path_;
114   storage::FileSystemURL url_;
115   SyncFileType file_type_;
116   SyncAction sync_action_;
117
118   scoped_ptr<FileTracker> remote_file_tracker_;
119   scoped_ptr<FileTracker> remote_parent_folder_tracker_;
120   base::FilePath target_path_;
121   int64 remote_file_change_id_;
122
123   bool retry_on_success_;
124   bool needs_remote_change_listing_;
125
126   scoped_ptr<FolderCreator> folder_creator_;
127
128   base::WeakPtrFactory<LocalToRemoteSyncer> weak_ptr_factory_;
129
130   DISALLOW_COPY_AND_ASSIGN(LocalToRemoteSyncer);
131 };
132
133 }  // namespace drive_backend
134 }  // namespace sync_file_system
135
136 #endif  // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LOCAL_TO_REMOTE_SYNCER_H_