1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
// 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_CHROMEOS_DRIVE_FILE_SYSTEM_COPY_OPERATION_H_
#define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_COPY_OPERATION_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/chromeos/drive/drive_resource_metadata.h"
#include "chrome/browser/google_apis/gdata_errorcode.h"
class FilePath;
class GURL;
namespace base {
class Value;
}
namespace google_apis {
class DriveUploaderInterface;
}
namespace drive {
class DriveEntryProto;
class DriveFileSystemInterface;
class DriveScheduler;
namespace file_system {
class MoveOperation;
class OperationObserver;
// This class encapsulates the drive Copy function. It is responsible for
// sending the request to the drive API, then updating the local state and
// metadata to reflect the new state.
class CopyOperation {
public:
CopyOperation(DriveScheduler* drive_scheduler,
DriveFileSystemInterface* drive_file_system,
DriveResourceMetadata* metadata,
google_apis::DriveUploaderInterface* uploader,
scoped_refptr<base::SequencedTaskRunner> blocking_task_runner,
OperationObserver* observer);
virtual ~CopyOperation();
// Performs the copy operation on the file at drive path |src_file_path|
// with a target of |dest_file_path|. Invokes |callback| when finished with
// the result of the operation. |callback| must not be null.
virtual void Copy(const FilePath& src_file_path,
const FilePath& dest_file_path,
const FileOperationCallback& callback);
// Initiates transfer of |remote_src_file_path| to |local_dest_file_path|.
// |remote_src_file_path| is the virtual source path on the Drive file system.
// |local_dest_file_path| is the destination path on the local file system.
//
// Must be called from *UI* thread. |callback| is run on the calling thread.
// |callback| must not be null.
virtual void TransferFileFromRemoteToLocal(
const FilePath& remote_src_file_path,
const FilePath& local_dest_file_path,
const FileOperationCallback& callback);
// Initiates transfer of |local_src_file_path| to |remote_dest_file_path|.
// |local_src_file_path| must be a file from the local file system.
// |remote_dest_file_path| is the virtual destination path within Drive file
// system.
//
// Must be called from *UI* thread. |callback| is run on the calling thread.
// |callback| must not be null.
virtual void TransferFileFromLocalToRemote(
const FilePath& local_src_file_path,
const FilePath& remote_dest_file_path,
const FileOperationCallback& callback);
// Initiates transfer of |local_file_path| to |remote_dest_file_path|.
// |local_file_path| must be a regular file (i.e. not a hosted document) from
// the local file system, |remote_dest_file_path| is the virtual destination
// path within Drive file system.
//
// Must be called from *UI* thread. |callback| is run on the calling thread.
// |callback| must not be null.
virtual void TransferRegularFile(const FilePath& local_file_path,
const FilePath& remote_dest_file_path,
const FileOperationCallback& callback);
private:
// Struct used for StartFileUpload().
struct StartFileUploadParams;
// Invoked upon completion of GetFileByPath initiated by
// TransferFileFromRemoteToLocal. If GetFileByPath reports no error, calls
// CopyLocalFileOnBlockingPool to copy |local_file_path| to
// |local_dest_file_path|.
//
// Can be called from UI thread. |callback| is run on the calling thread.
// |callback| must not be null.
void OnGetFileCompleteForTransferFile(const FilePath& local_dest_file_path,
const FileOperationCallback& callback,
DriveFileError error,
const FilePath& local_file_path,
const std::string& unused_mime_type,
DriveFileType file_type);
// Copies a hosted document with |resource_id| to the directory at |dir_path|
// and names the copied document as |new_name|.
//
// Can be called from UI thread. |callback| is run on the calling thread.
// |callback| must not be null.
void CopyHostedDocumentToDirectory(const FilePath& dir_path,
const std::string& resource_id,
const FilePath::StringType& new_name,
const FileOperationCallback& callback);
// Callback for handling document copy attempt.
// |callback| must not be null.
void OnCopyHostedDocumentCompleted(
const FilePath& dir_path,
const FileOperationCallback& callback,
google_apis::GDataErrorCode status,
scoped_ptr<google_apis::ResourceEntry> resource_entry);
// Moves a file or directory at |file_path| in the root directory to
// another directory at |dir_path|. This function does nothing if
// |dir_path| points to the root directory.
//
// Can be called from UI thread. |callback| is run on the calling thread.
// |callback| must not be null.
void MoveEntryFromRootDirectory(const FilePath& directory_path,
const FileOperationCallback& callback,
DriveFileError error,
const FilePath& file_path);
// Part of Copy(). Called after GetEntryInfoPairByPaths() is
// complete. |callback| must not be null.
void CopyAfterGetEntryInfoPair(const FilePath& dest_file_path,
const FileOperationCallback& callback,
scoped_ptr<EntryInfoPairResult> result);
// Invoked upon completion of GetFileByPath initiated by Copy. If
// GetFileByPath reports no error, calls TransferRegularFile to transfer
// |local_file_path| to |remote_dest_file_path|.
//
// Can be called from UI thread. |callback| is run on the calling thread.
void OnGetFileCompleteForCopy(const FilePath& remote_dest_file_path,
const FileOperationCallback& callback,
DriveFileError error,
const FilePath& local_file_path,
const std::string& unused_mime_type,
DriveFileType file_type);
// Kicks off file upload once it receives |content_type|.
void StartFileUpload(const StartFileUploadParams& params,
const std::string* content_type,
bool got_content_type);
// Part of StartFileUpload(). Called after GetEntryInfoByPath()
// is complete.
void StartFileUploadAfterGetEntryInfo(
const StartFileUploadParams& params,
const std::string& content_type,
DriveFileError error,
scoped_ptr<DriveEntryProto> entry_proto);
// Helper function that completes bookkeeping tasks related to
// completed file transfer.
void OnTransferCompleted(
const FileOperationCallback& callback,
google_apis::DriveUploadError error,
const FilePath& drive_path,
const FilePath& file_path,
scoped_ptr<google_apis::ResourceEntry> resource_entry);
// Part of TransferFileFromLocalToRemote(). Called after
// GetEntryInfoByPath() is complete.
void TransferFileFromLocalToRemoteAfterGetEntryInfo(
const FilePath& local_src_file_path,
const FilePath& remote_dest_file_path,
const FileOperationCallback& callback,
DriveFileError error,
scoped_ptr<DriveEntryProto> entry_proto);
// Initiates transfer of |local_file_path| with |resource_id| to
// |remote_dest_file_path|. |local_file_path| must be a file from the local
// file system, |remote_dest_file_path| is the virtual destination path within
// Drive file system. If |resource_id| is a non-empty string, the transfer is
// handled by CopyDocumentToDirectory. Otherwise, the transfer is handled by
// TransferRegularFile.
//
// Must be called from *UI* thread. |callback| is run on the calling thread.
// |callback| must not be null.
void TransferFileForResourceId(const FilePath& local_file_path,
const FilePath& remote_dest_file_path,
const FileOperationCallback& callback,
const std::string& resource_id);
DriveScheduler* drive_scheduler_;
DriveFileSystemInterface* drive_file_system_;
DriveResourceMetadata* metadata_;
google_apis::DriveUploaderInterface* uploader_;
scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
OperationObserver* observer_;
// Copying a hosted document is internally implemented by using a move.
scoped_ptr<MoveOperation> move_operation_;
// WeakPtrFactory bound to the UI thread.
// Note: This should remain the last member so it'll be destroyed and
// invalidate the weak pointers before any other members are destroyed.
base::WeakPtrFactory<CopyOperation> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(CopyOperation);
};
} // namespace file_system
} // namespace drive
#endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_COPY_OPERATION_H_
|