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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
|
// 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 WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_
#define WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_
#include <string>
#include <vector>
#include "base/file_path.h"
#include "base/file_util_proxy.h"
#include "base/gtest_prod_util.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/platform_file.h"
#include "base/process.h"
#include "googleurl/src/gurl.h"
#include "webkit/fileapi/fileapi_export.h"
#include "webkit/fileapi/file_system_operation_context.h"
#include "webkit/fileapi/file_system_operation_interface.h"
#include "webkit/fileapi/file_system_types.h"
#include "webkit/quota/quota_manager.h"
namespace base {
class Time;
}
namespace chromeos {
class CrosMountPointProvider;
}
namespace net {
class URLRequest;
class URLRequestContext;
} // namespace net
class GURL;
namespace fileapi {
class FileSystemContext;
class FileWriterDelegate;
class FileSystemOperationTest;
// FileSystemOperation implementation for local file systems.
class FILEAPI_EXPORT FileSystemOperation
: public NON_EXPORTED_BASE(FileSystemOperationInterface) {
public:
virtual ~FileSystemOperation();
// FileSystemOperation overrides.
virtual void CreateFile(const GURL& path_url,
bool exclusive,
const StatusCallback& callback) OVERRIDE;
virtual void CreateDirectory(const GURL& path_url,
bool exclusive,
bool recursive,
const StatusCallback& callback) OVERRIDE;
virtual void Copy(const GURL& src_path_url,
const GURL& dest_path_url,
const StatusCallback& callback) OVERRIDE;
virtual void Move(const GURL& src_path_url,
const GURL& dest_path_url,
const StatusCallback& callback) OVERRIDE;
virtual void DirectoryExists(const GURL& path_url,
const StatusCallback& callback) OVERRIDE;
virtual void FileExists(const GURL& path_url,
const StatusCallback& callback) OVERRIDE;
virtual void GetMetadata(const GURL& path_url,
const GetMetadataCallback& callback) OVERRIDE;
virtual void ReadDirectory(const GURL& path_url,
const ReadDirectoryCallback& callback) OVERRIDE;
virtual void Remove(const GURL& path_url, bool recursive,
const StatusCallback& callback) OVERRIDE;
virtual void Write(const net::URLRequestContext* url_request_context,
const GURL& path_url,
const GURL& blob_url,
int64 offset,
const WriteCallback& callback) OVERRIDE;
virtual void Truncate(const GURL& path_url, int64 length,
const StatusCallback& callback) OVERRIDE;
virtual void TouchFile(const GURL& path_url,
const base::Time& last_access_time,
const base::Time& last_modified_time,
const StatusCallback& callback) OVERRIDE;
virtual void OpenFile(const GURL& path_url,
int file_flags,
base::ProcessHandle peer_handle,
const OpenFileCallback& callback) OVERRIDE;
virtual void Cancel(const StatusCallback& cancel_callback) OVERRIDE;
virtual FileSystemOperation* AsFileSystemOperation() OVERRIDE;
virtual void CreateSnapshotFile(
const GURL& path,
const SnapshotFileCallback& callback) OVERRIDE;
// Synchronously gets the platform path for the given |path_url|.
void SyncGetPlatformPath(const GURL& path_url, FilePath* platform_path);
private:
class ScopedQuotaNotifier;
// Modes for SetUpFileSystemPath.
enum SetUpPathMode {
PATH_FOR_READ,
PATH_FOR_WRITE,
PATH_FOR_CREATE,
};
// A struct to pass arguments to DidGetUsageAndQuotaAndRunTask
// purely for compilation (as Bind doesn't recognize too many arguments).
struct TaskParamsForDidGetQuota {
TaskParamsForDidGetQuota();
~TaskParamsForDidGetQuota();
GURL origin;
FileSystemType type;
base::Closure task;
base::Closure error_callback;
};
// Only MountPointProviders or testing class can create a
// new operation directly.
friend class FileSystemTestHelper;
friend class IsolatedMountPointProvider;
friend class SandboxMountPointProvider;
friend class TestMountPointProvider;
friend class chromeos::CrosMountPointProvider;
friend class FileSystemOperationTest;
friend class FileSystemOperationWriteTest;
friend class FileWriterDelegateTest;
friend class FileSystemTestOriginHelper;
friend class FileSystemQuotaTest;
explicit FileSystemOperation(FileSystemContext* file_system_context);
FileSystemContext* file_system_context() const {
return operation_context_.file_system_context();
}
FileSystemOperationContext* file_system_operation_context() {
return &operation_context_;
}
// The unit tests that need to specify and control the lifetime of the
// file_util on their own should call this before performing the actual
// operation. If it is given it will not be overwritten by the class.
void set_override_file_util(FileSystemFileUtil* file_util) {
src_util_ = file_util;
dest_util_ = file_util;
}
// Queries the quota and usage and then runs the given |task|.
// If an error occurs during the quota query it runs |error_callback| instead.
void GetUsageAndQuotaThenRunTask(
const GURL& origin,
FileSystemType type,
const base::Closure& task,
const base::Closure& error_callback);
// Called after the quota info is obtained from the quota manager
// (which is triggered by GetUsageAndQuotaThenRunTask).
// Sets the quota info in the operation_context_ and then runs the given
// |task| if the returned quota status is successful, otherwise runs
// |error_callback|.
void DidGetUsageAndQuotaAndRunTask(
const TaskParamsForDidGetQuota& params,
quota::QuotaStatusCode status,
int64 usage, int64 quota);
// The 'body' methods that perform the actual work (i.e. posting the
// file task on proxy_) after the quota check.
void DoCreateFile(const StatusCallback& callback, bool exclusive);
void DoCreateDirectory(const StatusCallback& callback,
bool exclusive,
bool recursive);
void DoCopy(const StatusCallback& callback);
void DoMove(const StatusCallback& callback);
void DoTruncate(const StatusCallback& callback, int64 length);
void DoOpenFile(const OpenFileCallback& callback, int file_flags);
// Callback for CreateFile for |exclusive|=true cases.
void DidEnsureFileExistsExclusive(const StatusCallback& callback,
base::PlatformFileError rv,
bool created);
// Callback for CreateFile for |exclusive|=false cases.
void DidEnsureFileExistsNonExclusive(const StatusCallback& callback,
base::PlatformFileError rv,
bool created);
// Generic callback that translates platform errors to WebKit error codes.
void DidFinishFileOperation(const StatusCallback& callback,
base::PlatformFileError rv);
void DidDirectoryExists(const StatusCallback& callback,
base::PlatformFileError rv,
const base::PlatformFileInfo& file_info,
const FilePath& unused);
void DidFileExists(const StatusCallback& callback,
base::PlatformFileError rv,
const base::PlatformFileInfo& file_info,
const FilePath& unused);
void DidGetMetadata(const GetMetadataCallback& callback,
base::PlatformFileError rv,
const base::PlatformFileInfo& file_info,
const FilePath& platform_path);
void DidReadDirectory(const ReadDirectoryCallback& callback,
base::PlatformFileError rv,
const std::vector<base::FileUtilProxy::Entry>& entries,
bool has_more);
void DidWrite(base::PlatformFileError rv,
int64 bytes,
bool complete);
void DidTouchFile(const StatusCallback& callback,
base::PlatformFileError rv);
void DidOpenFile(const OpenFileCallback& callback,
base::PlatformFileError rv,
base::PassPlatformFile file,
bool created);
// Checks the validity of a given |path_url| and and populates
// |path| and |file_util| for |mode|.
base::PlatformFileError SetUpFileSystemPath(
const GURL& path_url,
FileSystemPath* file_system_path,
FileSystemFileUtil** file_util,
SetUpPathMode mode);
// Used only for internal assertions.
// Returns false if there's another inflight pending operation.
bool SetPendingOperationType(OperationType type);
FileSystemOperationContext operation_context_;
FileSystemPath src_path_;
FileSystemPath dest_path_;
FileSystemFileUtil* src_util_; // Not owned.
FileSystemFileUtil* dest_util_; // Not owned.
// This is set before any write operations. The destructor of
// ScopedQuotaNotifier sends notification to the QuotaManager
// to tell the update is done; so that we can make sure notify
// the manager after any write operations are done.
scoped_ptr<ScopedQuotaNotifier> scoped_quota_notifier_;
// These are all used only by Write().
friend class FileWriterDelegate;
scoped_ptr<FileWriterDelegate> file_writer_delegate_;
// write_callback is kept in this class for so that we can dispatch it when
// the operation is cancelled. calcel_callback is kept for canceling a
// Truncate() operation. We can't actually stop Truncate in another thread;
// after it resumed from the working thread, cancellation takes place.
WriteCallback write_callback_;
StatusCallback cancel_callback_;
void set_write_callback(const WriteCallback& write_callback) {
write_callback_ = write_callback;
}
// Used only by OpenFile, in order to clone the file handle back to the
// requesting process.
base::ProcessHandle peer_handle_;
// A flag to make sure we call operation only once per instance.
OperationType pending_operation_;
// FileSystemOperation instance is usually deleted upon completion but
// could be deleted while it has inflight callbacks when Cancel is called.
base::WeakPtrFactory<FileSystemOperation> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(FileSystemOperation);
};
} // namespace fileapi
#endif // WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_
|