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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
|
// Copyright 2013 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.
#include "chrome/browser/chromeos/drive/async_file_util.h"
#include "base/callback.h"
#include "base/files/file_path.h"
#include "base/logging.h"
#include "base/platform_file.h"
#include "base/threading/sequenced_worker_pool.h"
#include "chrome/browser/chromeos/drive/file_system_util.h"
#include "chrome/browser/chromeos/drive/fileapi_worker.h"
#include "chrome/browser/google_apis/task_util.h"
#include "content/public/browser/browser_thread.h"
#include "webkit/browser/fileapi/file_system_operation_context.h"
#include "webkit/browser/fileapi/file_system_url.h"
#include "webkit/common/blob/shareable_file_reference.h"
using content::BrowserThread;
namespace drive {
namespace internal {
namespace {
// Posts fileapi_internal::RunFileSystemCallback to UI thread.
// This function must be called on IO thread.
// The |on_error_callback| will be called (on error case) on IO thread.
void PostFileSystemCallback(
const fileapi_internal::FileSystemGetter& file_system_getter,
const base::Callback<void(FileSystemInterface*)>& function,
const base::Closure& on_error_callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
BrowserThread::PostTask(
BrowserThread::UI,
FROM_HERE,
base::Bind(&fileapi_internal::RunFileSystemCallback,
file_system_getter, function,
on_error_callback.is_null() ?
base::Closure() :
base::Bind(&google_apis::RunTaskOnThread,
base::MessageLoopProxy::current(),
on_error_callback)));
}
// Runs CreateOrOpenFile callback based on the given |error| and |file|.
void RunCreateOrOpenFileCallback(
const AsyncFileUtil::FileSystemGetter& file_system_getter,
const base::FilePath& file_path,
const AsyncFileUtil::CreateOrOpenCallback& callback,
base::PlatformFileError error,
base::PlatformFile file,
const base::Closure& close_callback_on_ui_thread) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
// It is necessary to make a closure, which runs on file closing here.
// It will be provided as a FileSystem::OpenFileCallback's argument later.
// (crbug.com/259184).
callback.Run(
error, base::PassPlatformFile(&file),
base::Bind(&google_apis::RunTaskOnThread,
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI),
close_callback_on_ui_thread));
}
// Runs CreateOrOpenFile when the error happens.
void RunCreateOrOpenFileCallbackOnError(
const AsyncFileUtil::CreateOrOpenCallback& callback,
base::PlatformFileError error) {
// Because the |callback| takes PassPlatformFile as its argument, and
// it is necessary to guarantee the pointer passed to PassPlatformFile is
// alive during the |callback| invocation, here we prepare a thin adapter
// to have PlatformFile on stack frame.
base::PlatformFile file = base::kInvalidPlatformFileValue;
callback.Run(error, base::PassPlatformFile(&file), base::Closure());
}
// Runs EnsureFileExistsCallback based on the given |error|.
void RunEnsureFileExistsCallback(
const AsyncFileUtil::EnsureFileExistsCallback& callback,
base::PlatformFileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
// Remember if the file is actually created or not.
bool created = (error == base::PLATFORM_FILE_OK);
// PLATFORM_FILE_ERROR_EXISTS is not an actual error here.
if (error == base::PLATFORM_FILE_ERROR_EXISTS)
error = base::PLATFORM_FILE_OK;
callback.Run(error, created);
}
// Runs |callback| with the arguments based on the given arguments.
void RunCreateSnapshotFileCallback(
const AsyncFileUtil::CreateSnapshotFileCallback& callback,
base::PlatformFileError error,
const base::PlatformFileInfo& file_info,
const base::FilePath& local_path,
webkit_blob::ScopedFile::ScopeOutPolicy scope_out_policy) {
// ShareableFileReference is thread *unsafe* class. So it is necessary to
// create the instance (by invoking GetOrCreate) on IO thread, though
// most drive file system related operations run on UI thread.
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
scoped_refptr<webkit_blob::ShareableFileReference> file_reference =
webkit_blob::ShareableFileReference::GetOrCreate(webkit_blob::ScopedFile(
local_path,
scope_out_policy,
BrowserThread::GetBlockingPool()));
callback.Run(error, file_info, local_path, file_reference);
}
} // namespace
AsyncFileUtil::AsyncFileUtil(const FileSystemGetter& file_system_getter)
: file_system_getter_(file_system_getter) {
}
AsyncFileUtil::~AsyncFileUtil() {
}
void AsyncFileUtil::CreateOrOpen(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
int file_flags,
const CreateOrOpenCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
base::PlatformFile platform_file = base::kInvalidPlatformFileValue;
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND,
base::PassPlatformFile(&platform_file),
base::Closure());
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::OpenFile,
file_path, file_flags,
google_apis::CreateRelayCallback(
base::Bind(&RunCreateOrOpenFileCallback,
file_system_getter_, file_path, callback))),
base::Bind(&RunCreateOrOpenFileCallbackOnError,
callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::EnsureFileExists(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
const EnsureFileExistsCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND, false);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::CreateFile,
file_path, true /* is_exlusive */,
google_apis::CreateRelayCallback(
base::Bind(&RunEnsureFileExistsCallback, callback))),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED, false));
}
void AsyncFileUtil::CreateDirectory(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
bool exclusive,
bool recursive,
const StatusCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::CreateDirectory,
file_path, exclusive, recursive,
google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::GetFileInfo(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
const GetFileInfoCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND, base::PlatformFileInfo());
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::GetFileInfo,
file_path, google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED,
base::PlatformFileInfo()));
}
void AsyncFileUtil::ReadDirectory(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
const ReadDirectoryCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND, EntryList(), false);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::ReadDirectory,
file_path, google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED,
EntryList(), false));
}
void AsyncFileUtil::Touch(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
const base::Time& last_access_time,
const base::Time& last_modified_time,
const StatusCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::TouchFile,
file_path, last_access_time, last_modified_time,
google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::Truncate(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
int64 length,
const StatusCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::Truncate,
file_path, length, google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::CopyFileLocal(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& src_url,
const fileapi::FileSystemURL& dest_url,
CopyOrMoveOption option,
const CopyFileProgressCallback& progress_callback,
const StatusCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
// TODO(hidehiko): Support option.
base::FilePath src_path = util::ExtractDrivePathFromFileSystemUrl(src_url);
base::FilePath dest_path = util::ExtractDrivePathFromFileSystemUrl(dest_url);
if (src_path.empty() || dest_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::Copy,
src_path, dest_path,
google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::MoveFileLocal(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& src_url,
const fileapi::FileSystemURL& dest_url,
CopyOrMoveOption option,
const StatusCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
// TODO(hidehiko): Support option.
base::FilePath src_path = util::ExtractDrivePathFromFileSystemUrl(src_url);
base::FilePath dest_path = util::ExtractDrivePathFromFileSystemUrl(dest_url);
if (src_path.empty() || dest_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::Move,
src_path, dest_path,
google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::CopyInForeignFile(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const base::FilePath& src_file_path,
const fileapi::FileSystemURL& dest_url,
const StatusCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath dest_path = util::ExtractDrivePathFromFileSystemUrl(dest_url);
if (dest_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::CopyInForeignFile,
src_file_path, dest_path,
google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::DeleteFile(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
const StatusCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::Remove,
file_path, false /* not recursive */,
google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::DeleteDirectory(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
const StatusCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::Remove,
file_path, false /* not recursive */,
google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::DeleteRecursively(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
const StatusCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::Remove,
file_path, true /* recursive */,
google_apis::CreateRelayCallback(callback)),
base::Bind(callback, base::PLATFORM_FILE_ERROR_FAILED));
}
void AsyncFileUtil::CreateSnapshotFile(
scoped_ptr<fileapi::FileSystemOperationContext> context,
const fileapi::FileSystemURL& url,
const CreateSnapshotFileCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url);
if (file_path.empty()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND,
base::PlatformFileInfo(),
base::FilePath(),
scoped_refptr<webkit_blob::ShareableFileReference>());
return;
}
PostFileSystemCallback(
file_system_getter_,
base::Bind(&fileapi_internal::CreateSnapshotFile,
file_path,
google_apis::CreateRelayCallback(
base::Bind(&RunCreateSnapshotFileCallback, callback))),
base::Bind(callback,
base::PLATFORM_FILE_ERROR_FAILED,
base::PlatformFileInfo(),
base::FilePath(),
scoped_refptr<webkit_blob::ShareableFileReference>()));
}
} // namespace internal
} // namespace drive
|