blob: 8d90e381170e1ba532f7d9b7bec6f6422bd4b584 [file] [log] [blame]
finnur@chromium.org899d4e02011-03-15 18:56:27 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
dumi@chromium.orgc980e402010-08-21 07:42:50 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/file_util_proxy.h"
6
dumi@chromium.orgc980e402010-08-21 07:42:50 +09007#include "base/message_loop_proxy.h"
8
jianli@chromium.org9ed1f9d2010-08-31 11:42:36 +09009// TODO(jianli): Move the code from anonymous namespace to base namespace so
10// that all of the base:: prefixes would be unnecessary.
dumi@chromium.orgc980e402010-08-21 07:42:50 +090011namespace {
12
kinuko@chromium.org1a078042010-10-07 17:35:09 +090013namespace {
14
15// Performs common checks for move and copy.
16// This also removes the destination directory if it's non-empty and all other
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +090017// checks are passed (so that the copy/move correctly overwrites the
18// destination).
kinuko@chromium.org1a078042010-10-07 17:35:09 +090019static base::PlatformFileError PerformCommonCheckAndPreparationForMoveAndCopy(
20 const FilePath& src_file_path,
21 const FilePath& dest_file_path) {
22 // Exits earlier if the source path does not exist.
23 if (!file_util::PathExists(src_file_path))
24 return base::PLATFORM_FILE_ERROR_NOT_FOUND;
25
26 // The parent of the |dest_file_path| does not exist.
27 if (!file_util::DirectoryExists(dest_file_path.DirName()))
28 return base::PLATFORM_FILE_ERROR_NOT_FOUND;
29
30 // It is an error to try to copy/move an entry into its child.
31 if (src_file_path.IsParent(dest_file_path))
32 return base::PLATFORM_FILE_ERROR_INVALID_OPERATION;
33
34 // Now it is ok to return if the |dest_file_path| does not exist.
35 if (!file_util::PathExists(dest_file_path))
36 return base::PLATFORM_FILE_OK;
37
38 // |src_file_path| exists and is a directory.
39 // |dest_file_path| exists and is a file.
40 bool src_is_directory = file_util::DirectoryExists(src_file_path);
41 bool dest_is_directory = file_util::DirectoryExists(dest_file_path);
42 if (src_is_directory && !dest_is_directory)
43 return base::PLATFORM_FILE_ERROR_NOT_A_DIRECTORY;
44
45 // |src_file_path| exists and is a file.
46 // |dest_file_path| exists and is a directory.
47 if (!src_is_directory && dest_is_directory)
48 return base::PLATFORM_FILE_ERROR_NOT_A_FILE;
49
50 // It is an error to copy/move an entry into the same path.
51 if (src_file_path.value() == dest_file_path.value())
52 return base::PLATFORM_FILE_ERROR_EXISTS;
53
54 if (dest_is_directory) {
55 // It is an error to copy/move an entry to a non-empty directory.
56 // Otherwise the copy/move attempt must overwrite the destination, but
57 // the file_util's Copy or Move method doesn't perform overwrite
58 // on all platforms, so we delete the destination directory here.
59 // TODO(kinuko): may be better to change the file_util::{Copy,Move}.
60 if (!file_util::Delete(dest_file_path, false /* recursive */)) {
61 if (!file_util::IsDirectoryEmpty(dest_file_path))
62 return base::PLATFORM_FILE_ERROR_NOT_EMPTY;
63 return base::PLATFORM_FILE_ERROR_FAILED;
64 }
65 }
66 return base::PLATFORM_FILE_OK;
67}
68
kkanetkar@chromium.org48710682010-11-03 05:36:52 +090069} // anonymous namespace
kinuko@chromium.org1a078042010-10-07 17:35:09 +090070
dumi@chromium.orgc980e402010-08-21 07:42:50 +090071class MessageLoopRelay
72 : public base::RefCountedThreadSafe<MessageLoopRelay> {
73 public:
74 MessageLoopRelay()
75 : origin_message_loop_proxy_(
nduca@chromium.orgba048612011-08-16 05:33:46 +090076 base::MessageLoopProxy::current()),
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +090077 error_code_(base::PLATFORM_FILE_OK) {
dumi@chromium.orgc980e402010-08-21 07:42:50 +090078 }
79
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +090080 bool Start(scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
dumi@chromium.orgc980e402010-08-21 07:42:50 +090081 const tracked_objects::Location& from_here) {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +090082 return message_loop_proxy->PostTask(
dumi@chromium.orgc980e402010-08-21 07:42:50 +090083 from_here,
84 NewRunnableMethod(this, &MessageLoopRelay::ProcessOnTargetThread));
85 }
86
87 protected:
88 friend class base::RefCountedThreadSafe<MessageLoopRelay>;
89 virtual ~MessageLoopRelay() {}
90
91 // Called to perform work on the FILE thread.
92 virtual void RunWork() = 0;
93
94 // Called to notify the callback on the origin thread.
95 virtual void RunCallback() = 0;
96
dumi@chromium.org50f197d2010-09-01 04:30:27 +090097 void set_error_code(base::PlatformFileError error_code) {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +090098 error_code_ = error_code;
99 }
100
dumi@chromium.org50f197d2010-09-01 04:30:27 +0900101 base::PlatformFileError error_code() const {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900102 return error_code_;
103 }
104
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900105 private:
106 void ProcessOnTargetThread() {
107 RunWork();
108 origin_message_loop_proxy_->PostTask(
109 FROM_HERE,
110 NewRunnableMethod(this, &MessageLoopRelay::RunCallback));
111 }
112
113 scoped_refptr<base::MessageLoopProxy> origin_message_loop_proxy_;
dumi@chromium.org50f197d2010-09-01 04:30:27 +0900114 base::PlatformFileError error_code_;
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900115};
116
117class RelayCreateOrOpen : public MessageLoopRelay {
118 public:
119 RelayCreateOrOpen(
120 scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
121 const FilePath& file_path,
122 int file_flags,
jhawkins@chromium.org3a6573d2011-10-18 03:40:30 +0900123 const base::FileUtilProxy::CreateOrOpenCallback& callback)
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900124 : message_loop_proxy_(message_loop_proxy),
125 file_path_(file_path),
126 file_flags_(file_flags),
127 callback_(callback),
128 file_handle_(base::kInvalidPlatformFileValue),
129 created_(false) {
jhawkins@chromium.org3a6573d2011-10-18 03:40:30 +0900130 DCHECK_EQ(false, callback.is_null());
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900131 }
132
133 protected:
134 virtual ~RelayCreateOrOpen() {
135 if (file_handle_ != base::kInvalidPlatformFileValue)
136 base::FileUtilProxy::Close(message_loop_proxy_, file_handle_, NULL);
137 }
138
139 virtual void RunWork() {
kinuko@chromium.orgaf334b22010-10-12 11:17:14 +0900140 if (!file_util::DirectoryExists(file_path_.DirName())) {
141 // If its parent does not exist, should return NOT_FOUND error.
142 set_error_code(base::PLATFORM_FILE_ERROR_NOT_FOUND);
143 return;
144 }
dumi@chromium.org50f197d2010-09-01 04:30:27 +0900145 base::PlatformFileError error_code = base::PLATFORM_FILE_OK;
146 file_handle_ = base::CreatePlatformFile(file_path_, file_flags_,
147 &created_, &error_code);
148 set_error_code(error_code);
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900149 }
150
151 virtual void RunCallback() {
jhawkins@chromium.org3a6573d2011-10-18 03:40:30 +0900152 callback_.Run(error_code(), base::PassPlatformFile(&file_handle_),
153 created_);
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900154 }
155
156 private:
157 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
158 FilePath file_path_;
159 int file_flags_;
jhawkins@chromium.org3a6573d2011-10-18 03:40:30 +0900160 base::FileUtilProxy::CreateOrOpenCallback callback_;
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900161 base::PlatformFile file_handle_;
162 bool created_;
163};
164
165class RelayCreateTemporary : public MessageLoopRelay {
166 public:
167 RelayCreateTemporary(
168 scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
noelutz@google.comf56dab22011-06-14 05:29:50 +0900169 int additional_file_flags,
jhawkins@chromium.orgd90c4f52011-10-18 04:29:29 +0900170 const base::FileUtilProxy::CreateTemporaryCallback& callback)
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900171 : message_loop_proxy_(message_loop_proxy),
noelutz@google.comf56dab22011-06-14 05:29:50 +0900172 additional_file_flags_(additional_file_flags),
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900173 callback_(callback),
174 file_handle_(base::kInvalidPlatformFileValue) {
jhawkins@chromium.orgd90c4f52011-10-18 04:29:29 +0900175 DCHECK_EQ(false, callback.is_null());
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900176 }
177
178 protected:
179 virtual ~RelayCreateTemporary() {
180 if (file_handle_ != base::kInvalidPlatformFileValue)
181 base::FileUtilProxy::Close(message_loop_proxy_, file_handle_, NULL);
182 }
183
184 virtual void RunWork() {
185 // TODO(darin): file_util should have a variant of CreateTemporaryFile
186 // that returns a FilePath and a PlatformFile.
187 file_util::CreateTemporaryFile(&file_path_);
188
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900189 int file_flags =
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900190 base::PLATFORM_FILE_WRITE |
noelutz@google.comf56dab22011-06-14 05:29:50 +0900191 base::PLATFORM_FILE_TEMPORARY |
192 base::PLATFORM_FILE_CREATE_ALWAYS |
193 additional_file_flags_;
194
dumi@chromium.org50f197d2010-09-01 04:30:27 +0900195 base::PlatformFileError error_code = base::PLATFORM_FILE_OK;
196 file_handle_ = base::CreatePlatformFile(file_path_, file_flags,
197 NULL, &error_code);
198 set_error_code(error_code);
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900199 }
200
201 virtual void RunCallback() {
jhawkins@chromium.orgd90c4f52011-10-18 04:29:29 +0900202 callback_.Run(error_code(), base::PassPlatformFile(&file_handle_),
203 file_path_);
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900204 }
205
206 private:
207 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
noelutz@google.comf56dab22011-06-14 05:29:50 +0900208 int additional_file_flags_;
jhawkins@chromium.orgd90c4f52011-10-18 04:29:29 +0900209 base::FileUtilProxy::CreateTemporaryCallback callback_;
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900210 base::PlatformFile file_handle_;
211 FilePath file_path_;
212};
213
214class RelayWithStatusCallback : public MessageLoopRelay {
215 public:
216 explicit RelayWithStatusCallback(
217 base::FileUtilProxy::StatusCallback* callback)
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900218 : callback_(callback) {
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900219 // It is OK for callback to be NULL.
220 }
221
222 protected:
223 virtual void RunCallback() {
224 // The caller may not have been interested in the result.
225 if (callback_) {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900226 callback_->Run(error_code());
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900227 delete callback_;
228 }
229 }
230
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900231 private:
232 base::FileUtilProxy::StatusCallback* callback_;
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900233};
234
235class RelayClose : public RelayWithStatusCallback {
236 public:
237 RelayClose(base::PlatformFile file_handle,
238 base::FileUtilProxy::StatusCallback* callback)
239 : RelayWithStatusCallback(callback),
240 file_handle_(file_handle) {
241 }
242
243 protected:
244 virtual void RunWork() {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900245 if (!base::ClosePlatformFile(file_handle_))
dumi@chromium.org50f197d2010-09-01 04:30:27 +0900246 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900247 }
248
249 private:
250 base::PlatformFile file_handle_;
251};
252
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +0900253class RelayEnsureFileExists : public MessageLoopRelay {
254 public:
255 RelayEnsureFileExists(
256 scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
257 const FilePath& file_path,
jhawkins@chromium.org70bffc12011-10-18 04:39:59 +0900258 const base::FileUtilProxy::EnsureFileExistsCallback& callback)
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +0900259 : message_loop_proxy_(message_loop_proxy),
260 file_path_(file_path),
261 callback_(callback),
262 created_(false) {
jhawkins@chromium.org70bffc12011-10-18 04:39:59 +0900263 DCHECK_EQ(false, callback.is_null());
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +0900264 }
265
266 protected:
267 virtual void RunWork() {
268 if (!file_util::DirectoryExists(file_path_.DirName())) {
269 // If its parent does not exist, should return NOT_FOUND error.
270 set_error_code(base::PLATFORM_FILE_ERROR_NOT_FOUND);
271 return;
272 }
273 base::PlatformFileError error_code = base::PLATFORM_FILE_OK;
274 // Tries to create the |file_path_| exclusively. This should fail
275 // with PLATFORM_FILE_ERROR_EXISTS if the path already exists.
276 base::PlatformFile handle = base::CreatePlatformFile(
277 file_path_,
278 base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_READ,
279 &created_, &error_code);
280 if (error_code == base::PLATFORM_FILE_ERROR_EXISTS) {
281 // Make sure created_ is false.
282 created_ = false;
283 error_code = base::PLATFORM_FILE_OK;
284 }
285 if (handle != base::kInvalidPlatformFileValue)
286 base::ClosePlatformFile(handle);
287 set_error_code(error_code);
288 }
289
290 virtual void RunCallback() {
jhawkins@chromium.org70bffc12011-10-18 04:39:59 +0900291 callback_.Run(error_code(), created_);
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +0900292 }
293
294 private:
295 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
296 FilePath file_path_;
jhawkins@chromium.org70bffc12011-10-18 04:39:59 +0900297 base::FileUtilProxy::EnsureFileExistsCallback callback_;
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +0900298 bool created_;
299};
300
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900301class RelayDelete : public RelayWithStatusCallback {
302 public:
303 RelayDelete(const FilePath& file_path,
304 bool recursive,
305 base::FileUtilProxy::StatusCallback* callback)
306 : RelayWithStatusCallback(callback),
307 file_path_(file_path),
308 recursive_(recursive) {
309 }
310
311 protected:
312 virtual void RunWork() {
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900313 if (!file_util::PathExists(file_path_)) {
314 set_error_code(base::PLATFORM_FILE_ERROR_NOT_FOUND);
315 return;
316 }
317 if (!file_util::Delete(file_path_, recursive_)) {
318 if (!recursive_ && !file_util::IsDirectoryEmpty(file_path_)) {
kinuko@chromium.org1a078042010-10-07 17:35:09 +0900319 set_error_code(base::PLATFORM_FILE_ERROR_NOT_EMPTY);
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900320 return;
321 }
dumi@chromium.org50f197d2010-09-01 04:30:27 +0900322 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900323 }
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900324 }
325
326 private:
327 FilePath file_path_;
328 bool recursive_;
329};
330
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900331class RelayCopy : public RelayWithStatusCallback {
332 public:
333 RelayCopy(const FilePath& src_file_path,
334 const FilePath& dest_file_path,
335 base::FileUtilProxy::StatusCallback* callback)
336 : RelayWithStatusCallback(callback),
337 src_file_path_(src_file_path),
338 dest_file_path_(dest_file_path) {
339 }
340
341 protected:
342 virtual void RunWork() {
kinuko@chromium.org1a078042010-10-07 17:35:09 +0900343 set_error_code(PerformCommonCheckAndPreparationForMoveAndCopy(
344 src_file_path_, dest_file_path_));
345 if (error_code() != base::PLATFORM_FILE_OK)
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900346 return;
kinuko@chromium.org31583c32010-10-07 06:44:35 +0900347 if (!file_util::CopyDirectory(src_file_path_, dest_file_path_,
kinuko@chromium.org1a078042010-10-07 17:35:09 +0900348 true /* recursive */))
kinuko@chromium.org31583c32010-10-07 06:44:35 +0900349 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900350 }
351
352 private:
353 FilePath src_file_path_;
354 FilePath dest_file_path_;
355};
356
357class RelayMove : public RelayWithStatusCallback {
358 public:
359 RelayMove(const FilePath& src_file_path,
360 const FilePath& dest_file_path,
361 base::FileUtilProxy::StatusCallback* callback)
362 : RelayWithStatusCallback(callback),
363 src_file_path_(src_file_path),
364 dest_file_path_(dest_file_path) {
365 }
366
367 protected:
368 virtual void RunWork() {
kinuko@chromium.org1a078042010-10-07 17:35:09 +0900369 set_error_code(PerformCommonCheckAndPreparationForMoveAndCopy(
370 src_file_path_, dest_file_path_));
371 if (error_code() != base::PLATFORM_FILE_OK)
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900372 return;
kinuko@chromium.org1a078042010-10-07 17:35:09 +0900373 if (!file_util::Move(src_file_path_, dest_file_path_))
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900374 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900375 }
376
377 private:
378 FilePath src_file_path_;
379 FilePath dest_file_path_;
380};
381
382class RelayCreateDirectory : public RelayWithStatusCallback {
383 public:
384 RelayCreateDirectory(
385 const FilePath& file_path,
386 bool exclusive,
kinuko@chromium.orgc483d792010-09-08 09:50:41 +0900387 bool recursive,
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900388 base::FileUtilProxy::StatusCallback* callback)
389 : RelayWithStatusCallback(callback),
390 file_path_(file_path),
kinuko@chromium.orgc483d792010-09-08 09:50:41 +0900391 exclusive_(exclusive),
392 recursive_(recursive) {
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900393 }
394
395 protected:
396 virtual void RunWork() {
397 bool path_exists = file_util::PathExists(file_path_);
398 // If parent dir of file doesn't exist.
kinuko@chromium.orgc483d792010-09-08 09:50:41 +0900399 if (!recursive_ && !file_util::PathExists(file_path_.DirName())) {
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900400 set_error_code(base::PLATFORM_FILE_ERROR_NOT_FOUND);
401 return;
402 }
403 if (exclusive_ && path_exists) {
404 set_error_code(base::PLATFORM_FILE_ERROR_EXISTS);
405 return;
406 }
407 // If file exists at the path.
408 if (path_exists && !file_util::DirectoryExists(file_path_)) {
409 set_error_code(base::PLATFORM_FILE_ERROR_EXISTS);
410 return;
411 }
412 if (!file_util::CreateDirectory(file_path_))
413 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
414 }
415
416 private:
417 FilePath file_path_;
418 bool exclusive_;
kinuko@chromium.orgc483d792010-09-08 09:50:41 +0900419 bool recursive_;
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900420};
421
422class RelayReadDirectory : public MessageLoopRelay {
423 public:
424 RelayReadDirectory(const FilePath& file_path,
425 base::FileUtilProxy::ReadDirectoryCallback* callback)
426 : callback_(callback), file_path_(file_path) {
427 DCHECK(callback);
428 }
429
430 protected:
431 virtual void RunWork() {
432 // TODO(kkanetkar): Implement directory read in multiple chunks.
433 if (!file_util::DirectoryExists(file_path_)) {
434 set_error_code(base::PLATFORM_FILE_ERROR_NOT_FOUND);
435 return;
436 }
437
438 file_util::FileEnumerator file_enum(
tfarina@chromium.orga3a4db72011-08-15 22:09:27 +0900439 file_path_, false, static_cast<file_util::FileEnumerator::FileType>(
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900440 file_util::FileEnumerator::FILES |
441 file_util::FileEnumerator::DIRECTORIES));
442 FilePath current;
443 while (!(current = file_enum.Next()).empty()) {
kkanetkar@chromium.org48710682010-11-03 05:36:52 +0900444 base::FileUtilProxy::Entry entry;
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900445 file_util::FileEnumerator::FindInfo info;
446 file_enum.GetFindInfo(&info);
kinuko@chromium.org83604d12010-09-03 07:28:49 +0900447 entry.is_directory = file_enum.IsDirectory(info);
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900448 // This will just give the entry's name instead of entire path
449 // if we use current.value().
450 entry.name = file_util::FileEnumerator::GetFilename(info).value();
tzik@chromium.org09987c32011-07-19 14:03:03 +0900451 entry.size = file_util::FileEnumerator::GetFilesize(info);
452 entry.last_modified_time =
453 file_util::FileEnumerator::GetLastModifiedTime(info);
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900454 entries_.push_back(entry);
455 }
456 }
457
458 virtual void RunCallback() {
459 callback_->Run(error_code(), entries_);
460 delete callback_;
461 }
462
463 private:
464 base::FileUtilProxy::ReadDirectoryCallback* callback_;
465 FilePath file_path_;
kkanetkar@chromium.org48710682010-11-03 05:36:52 +0900466 std::vector<base::FileUtilProxy::Entry> entries_;
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900467};
468
jianli@chromium.org9ed1f9d2010-08-31 11:42:36 +0900469class RelayGetFileInfo : public MessageLoopRelay {
470 public:
471 RelayGetFileInfo(const FilePath& file_path,
472 base::FileUtilProxy::GetFileInfoCallback* callback)
473 : callback_(callback),
dumi@chromium.org50f197d2010-09-01 04:30:27 +0900474 file_path_(file_path) {
jianli@chromium.org9ed1f9d2010-08-31 11:42:36 +0900475 DCHECK(callback);
476 }
477
478 protected:
479 virtual void RunWork() {
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900480 if (!file_util::PathExists(file_path_)) {
481 set_error_code(base::PLATFORM_FILE_ERROR_NOT_FOUND);
482 return;
483 }
dumi@chromium.org50f197d2010-09-01 04:30:27 +0900484 if (!file_util::GetFileInfo(file_path_, &file_info_))
485 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
jianli@chromium.org9ed1f9d2010-08-31 11:42:36 +0900486 }
487
488 virtual void RunCallback() {
dumi@chromium.org50f197d2010-09-01 04:30:27 +0900489 callback_->Run(error_code(), file_info_);
jianli@chromium.org9ed1f9d2010-08-31 11:42:36 +0900490 delete callback_;
491 }
492
493 private:
494 base::FileUtilProxy::GetFileInfoCallback* callback_;
495 FilePath file_path_;
dumi@chromium.org97ae2612010-09-03 11:28:37 +0900496 base::PlatformFileInfo file_info_;
jianli@chromium.org9ed1f9d2010-08-31 11:42:36 +0900497};
498
dumi@chromium.org23915982010-09-10 12:01:14 +0900499class RelayGetFileInfoFromPlatformFile : public MessageLoopRelay {
500 public:
501 RelayGetFileInfoFromPlatformFile(
502 base::PlatformFile file,
503 base::FileUtilProxy::GetFileInfoCallback* callback)
504 : callback_(callback),
505 file_(file) {
506 DCHECK(callback);
507 }
508
509 protected:
510 virtual void RunWork() {
511 if (!base::GetPlatformFileInfo(file_, &file_info_))
512 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
513 }
514
515 virtual void RunCallback() {
516 callback_->Run(error_code(), file_info_);
517 delete callback_;
518 }
519
520 private:
521 base::FileUtilProxy::GetFileInfoCallback* callback_;
522 base::PlatformFile file_;
523 base::PlatformFileInfo file_info_;
524};
525
526class RelayRead : public MessageLoopRelay {
527 public:
528 RelayRead(base::PlatformFile file,
529 int64 offset,
dumi@chromium.org23915982010-09-10 12:01:14 +0900530 int bytes_to_read,
darin@chromium.org44a99732011-02-04 09:39:34 +0900531 base::FileUtilProxy::ReadCallback* callback)
dumi@chromium.org23915982010-09-10 12:01:14 +0900532 : file_(file),
533 offset_(offset),
darin@chromium.org44a99732011-02-04 09:39:34 +0900534 buffer_(new char[bytes_to_read]),
dumi@chromium.org23915982010-09-10 12:01:14 +0900535 bytes_to_read_(bytes_to_read),
536 callback_(callback),
537 bytes_read_(0) {
538 }
539
540 protected:
541 virtual void RunWork() {
darin@chromium.org44a99732011-02-04 09:39:34 +0900542 bytes_read_ = base::ReadPlatformFile(file_, offset_, buffer_.get(),
dumi@chromium.org23915982010-09-10 12:01:14 +0900543 bytes_to_read_);
544 if (bytes_read_ < 0)
545 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
546 }
547
548 virtual void RunCallback() {
549 if (callback_) {
darin@chromium.org44a99732011-02-04 09:39:34 +0900550 callback_->Run(error_code(), buffer_.get(), bytes_read_);
dumi@chromium.org23915982010-09-10 12:01:14 +0900551 delete callback_;
552 }
553 }
554
555 private:
556 base::PlatformFile file_;
557 int64 offset_;
darin@chromium.org44a99732011-02-04 09:39:34 +0900558 scoped_array<char> buffer_;
dumi@chromium.org23915982010-09-10 12:01:14 +0900559 int bytes_to_read_;
darin@chromium.org44a99732011-02-04 09:39:34 +0900560 base::FileUtilProxy::ReadCallback* callback_;
dumi@chromium.org23915982010-09-10 12:01:14 +0900561 int bytes_read_;
562};
563
564class RelayWrite : public MessageLoopRelay {
565 public:
566 RelayWrite(base::PlatformFile file,
ericu@google.com6a652222010-10-05 11:26:47 +0900567 int64 offset,
dumi@chromium.org23915982010-09-10 12:01:14 +0900568 const char* buffer,
569 int bytes_to_write,
darin@chromium.org44a99732011-02-04 09:39:34 +0900570 base::FileUtilProxy::WriteCallback* callback)
dumi@chromium.org23915982010-09-10 12:01:14 +0900571 : file_(file),
572 offset_(offset),
darin@chromium.org44a99732011-02-04 09:39:34 +0900573 buffer_(new char[bytes_to_write]),
dumi@chromium.org23915982010-09-10 12:01:14 +0900574 bytes_to_write_(bytes_to_write),
finnur@chromium.org899d4e02011-03-15 18:56:27 +0900575 callback_(callback),
576 bytes_written_(0) {
darin@chromium.org44a99732011-02-04 09:39:34 +0900577 memcpy(buffer_.get(), buffer, bytes_to_write);
dumi@chromium.org23915982010-09-10 12:01:14 +0900578 }
579
580 protected:
581 virtual void RunWork() {
darin@chromium.org44a99732011-02-04 09:39:34 +0900582 bytes_written_ = base::WritePlatformFile(file_, offset_, buffer_.get(),
dumi@chromium.org23915982010-09-10 12:01:14 +0900583 bytes_to_write_);
584 if (bytes_written_ < 0)
585 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
586 }
587
588 virtual void RunCallback() {
589 if (callback_) {
590 callback_->Run(error_code(), bytes_written_);
591 delete callback_;
592 }
593 }
594
595 private:
596 base::PlatformFile file_;
597 int64 offset_;
darin@chromium.org44a99732011-02-04 09:39:34 +0900598 scoped_array<char> buffer_;
dumi@chromium.org23915982010-09-10 12:01:14 +0900599 int bytes_to_write_;
darin@chromium.org44a99732011-02-04 09:39:34 +0900600 base::FileUtilProxy::WriteCallback* callback_;
dumi@chromium.org23915982010-09-10 12:01:14 +0900601 int bytes_written_;
602};
603
604class RelayTouch : public RelayWithStatusCallback {
605 public:
606 RelayTouch(base::PlatformFile file,
607 const base::Time& last_access_time,
608 const base::Time& last_modified_time,
609 base::FileUtilProxy::StatusCallback* callback)
610 : RelayWithStatusCallback(callback),
611 file_(file),
612 last_access_time_(last_access_time),
613 last_modified_time_(last_modified_time) {
614 }
615
616 protected:
617 virtual void RunWork() {
618 if (!base::TouchPlatformFile(file_, last_access_time_, last_modified_time_))
619 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
620 }
621
622 private:
623 base::PlatformFile file_;
624 base::Time last_access_time_;
625 base::Time last_modified_time_;
626};
627
dumi@chromium.org12c2e2b2010-09-24 10:09:32 +0900628class RelayTouchFilePath : public RelayWithStatusCallback {
629 public:
630 RelayTouchFilePath(const FilePath& file_path,
631 const base::Time& last_access_time,
632 const base::Time& last_modified_time,
633 base::FileUtilProxy::StatusCallback* callback)
634 : RelayWithStatusCallback(callback),
evan@chromium.orgd719ede2010-09-25 05:07:41 +0900635 file_path_(file_path),
dumi@chromium.org12c2e2b2010-09-24 10:09:32 +0900636 last_access_time_(last_access_time),
637 last_modified_time_(last_modified_time) {
638 }
639
640 protected:
641 virtual void RunWork() {
642 if (!file_util::TouchFile(
643 file_path_, last_access_time_, last_modified_time_))
644 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
645 }
646
647 private:
648 FilePath file_path_;
649 base::Time last_access_time_;
650 base::Time last_modified_time_;
651};
652
ericu@google.com6a652222010-10-05 11:26:47 +0900653class RelayTruncatePlatformFile : public RelayWithStatusCallback {
dumi@chromium.org23915982010-09-10 12:01:14 +0900654 public:
ericu@google.com6a652222010-10-05 11:26:47 +0900655 RelayTruncatePlatformFile(base::PlatformFile file,
656 int64 length,
657 base::FileUtilProxy::StatusCallback* callback)
dumi@chromium.org23915982010-09-10 12:01:14 +0900658 : RelayWithStatusCallback(callback),
659 file_(file),
660 length_(length) {
661 }
662
663 protected:
664 virtual void RunWork() {
665 if (!base::TruncatePlatformFile(file_, length_))
666 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
667 }
668
669 private:
670 base::PlatformFile file_;
671 int64 length_;
672};
673
ericu@google.com6a652222010-10-05 11:26:47 +0900674class RelayTruncate : public RelayWithStatusCallback {
675 public:
676 RelayTruncate(const FilePath& path,
677 int64 length,
678 base::FileUtilProxy::StatusCallback* callback)
679 : RelayWithStatusCallback(callback),
680 path_(path),
681 length_(length) {
682 }
683
684 protected:
685 virtual void RunWork() {
686 base::PlatformFileError error_code(base::PLATFORM_FILE_ERROR_FAILED);
687 base::PlatformFile file =
688 base::CreatePlatformFile(
689 path_,
690 base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_WRITE,
691 NULL,
692 &error_code);
693 if (error_code != base::PLATFORM_FILE_OK) {
694 set_error_code(error_code);
695 return;
696 }
697 if (!base::TruncatePlatformFile(file, length_))
698 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
699 base::ClosePlatformFile(file);
700 }
701
702 private:
703 FilePath path_;
704 int64 length_;
705};
706
dumi@chromium.org23915982010-09-10 12:01:14 +0900707class RelayFlush : public RelayWithStatusCallback {
708 public:
709 RelayFlush(base::PlatformFile file,
710 base::FileUtilProxy::StatusCallback* callback)
711 : RelayWithStatusCallback(callback),
712 file_(file) {
713 }
714
715 protected:
716 virtual void RunWork() {
717 if (!base::FlushPlatformFile(file_))
718 set_error_code(base::PLATFORM_FILE_ERROR_FAILED);
719 }
720
721 private:
722 base::PlatformFile file_;
723};
724
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900725bool Start(const tracked_objects::Location& from_here,
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900726 scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
727 scoped_refptr<MessageLoopRelay> relay) {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900728 return relay->Start(message_loop_proxy, from_here);
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900729}
730
731} // namespace
732
733namespace base {
734
735// static
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900736bool FileUtilProxy::CreateOrOpen(
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900737 scoped_refptr<MessageLoopProxy> message_loop_proxy,
738 const FilePath& file_path, int file_flags,
jhawkins@chromium.org3a6573d2011-10-18 03:40:30 +0900739 const CreateOrOpenCallback& callback) {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900740 return Start(FROM_HERE, message_loop_proxy, new RelayCreateOrOpen(
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +0900741 message_loop_proxy, file_path, file_flags, callback));
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900742}
743
744// static
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900745bool FileUtilProxy::CreateTemporary(
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900746 scoped_refptr<MessageLoopProxy> message_loop_proxy,
noelutz@google.comf56dab22011-06-14 05:29:50 +0900747 int additional_file_flags,
jhawkins@chromium.orgd90c4f52011-10-18 04:29:29 +0900748 const CreateTemporaryCallback& callback) {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900749 return Start(FROM_HERE, message_loop_proxy,
noelutz@google.comf56dab22011-06-14 05:29:50 +0900750 new RelayCreateTemporary(message_loop_proxy,
751 additional_file_flags,
752 callback));
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900753}
754
755// static
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900756bool FileUtilProxy::Close(scoped_refptr<MessageLoopProxy> message_loop_proxy,
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900757 base::PlatformFile file_handle,
758 StatusCallback* callback) {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900759 return Start(FROM_HERE, message_loop_proxy,
760 new RelayClose(file_handle, callback));
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900761}
762
763// static
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +0900764bool FileUtilProxy::EnsureFileExists(
765 scoped_refptr<MessageLoopProxy> message_loop_proxy,
766 const FilePath& file_path,
jhawkins@chromium.org70bffc12011-10-18 04:39:59 +0900767 const EnsureFileExistsCallback& callback) {
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +0900768 return Start(FROM_HERE, message_loop_proxy, new RelayEnsureFileExists(
769 message_loop_proxy, file_path, callback));
770}
771
erg@google.com37c078e2011-01-11 09:50:59 +0900772// Retrieves the information about a file. It is invalid to pass NULL for the
773// callback.
774bool FileUtilProxy::GetFileInfo(
775 scoped_refptr<MessageLoopProxy> message_loop_proxy,
776 const FilePath& file_path,
777 GetFileInfoCallback* callback) {
778 return Start(FROM_HERE, message_loop_proxy, new RelayGetFileInfo(
779 file_path, callback));
780}
781
kinuko@chromium.org850eb6d2010-10-15 09:37:34 +0900782// static
erg@google.com37c078e2011-01-11 09:50:59 +0900783bool FileUtilProxy::GetFileInfoFromPlatformFile(
784 scoped_refptr<MessageLoopProxy> message_loop_proxy,
785 PlatformFile file,
786 GetFileInfoCallback* callback) {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900787 return Start(FROM_HERE, message_loop_proxy,
erg@google.com37c078e2011-01-11 09:50:59 +0900788 new RelayGetFileInfoFromPlatformFile(file, callback));
789}
790
791// static
792bool FileUtilProxy::ReadDirectory(
793 scoped_refptr<MessageLoopProxy> message_loop_proxy,
794 const FilePath& file_path,
795 ReadDirectoryCallback* callback) {
796 return Start(FROM_HERE, message_loop_proxy, new RelayReadDirectory(
797 file_path, callback));
798}
799
800// static
801bool FileUtilProxy::CreateDirectory(
802 scoped_refptr<MessageLoopProxy> message_loop_proxy,
803 const FilePath& file_path,
804 bool exclusive,
805 bool recursive,
806 StatusCallback* callback) {
807 return Start(FROM_HERE, message_loop_proxy, new RelayCreateDirectory(
808 file_path, exclusive, recursive, callback));
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900809}
810
811// static
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900812bool FileUtilProxy::Copy(scoped_refptr<MessageLoopProxy> message_loop_proxy,
813 const FilePath& src_file_path,
814 const FilePath& dest_file_path,
815 StatusCallback* callback) {
816 return Start(FROM_HERE, message_loop_proxy,
817 new RelayCopy(src_file_path, dest_file_path, callback));
818}
819
820// static
821bool FileUtilProxy::Move(scoped_refptr<MessageLoopProxy> message_loop_proxy,
822 const FilePath& src_file_path,
823 const FilePath& dest_file_path,
824 StatusCallback* callback) {
825 return Start(FROM_HERE, message_loop_proxy,
826 new RelayMove(src_file_path, dest_file_path, callback));
827}
828
829// static
erg@google.com37c078e2011-01-11 09:50:59 +0900830bool FileUtilProxy::Delete(scoped_refptr<MessageLoopProxy> message_loop_proxy,
831 const FilePath& file_path,
832 bool recursive,
833 StatusCallback* callback) {
834 return Start(FROM_HERE, message_loop_proxy,
835 new RelayDelete(file_path, recursive, callback));
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900836}
837
838// static
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900839bool FileUtilProxy::RecursiveDelete(
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900840 scoped_refptr<MessageLoopProxy> message_loop_proxy,
841 const FilePath& file_path,
842 StatusCallback* callback) {
dumi@chromium.org6dedd6d2010-08-25 05:26:23 +0900843 return Start(FROM_HERE, message_loop_proxy,
844 new RelayDelete(file_path, true, callback));
dumi@chromium.orgc980e402010-08-21 07:42:50 +0900845}
846
dumi@chromium.org23915982010-09-10 12:01:14 +0900847// static
dumi@chromium.org23915982010-09-10 12:01:14 +0900848bool FileUtilProxy::Read(
849 scoped_refptr<MessageLoopProxy> message_loop_proxy,
850 PlatformFile file,
851 int64 offset,
dumi@chromium.org23915982010-09-10 12:01:14 +0900852 int bytes_to_read,
darin@chromium.org44a99732011-02-04 09:39:34 +0900853 ReadCallback* callback) {
kinuko@chromium.org6e168d32011-08-19 19:14:27 +0900854 if (bytes_to_read < 0) {
855 delete callback;
sanga@chromium.orgf5cff132011-08-18 01:16:27 +0900856 return false;
kinuko@chromium.org6e168d32011-08-19 19:14:27 +0900857 }
dumi@chromium.org23915982010-09-10 12:01:14 +0900858 return Start(FROM_HERE, message_loop_proxy,
darin@chromium.org44a99732011-02-04 09:39:34 +0900859 new RelayRead(file, offset, bytes_to_read, callback));
dumi@chromium.org23915982010-09-10 12:01:14 +0900860}
861
862// static
863bool FileUtilProxy::Write(
864 scoped_refptr<MessageLoopProxy> message_loop_proxy,
865 PlatformFile file,
866 int64 offset,
867 const char* buffer,
868 int bytes_to_write,
darin@chromium.org44a99732011-02-04 09:39:34 +0900869 WriteCallback* callback) {
kinuko@chromium.org6e168d32011-08-19 19:14:27 +0900870 if (bytes_to_write <= 0) {
871 delete callback;
sanga@chromium.org21d251f2011-08-18 01:45:48 +0900872 return false;
kinuko@chromium.org6e168d32011-08-19 19:14:27 +0900873 }
dumi@chromium.org23915982010-09-10 12:01:14 +0900874 return Start(FROM_HERE, message_loop_proxy,
875 new RelayWrite(file, offset, buffer, bytes_to_write, callback));
876}
877
878// static
879bool FileUtilProxy::Touch(
880 scoped_refptr<MessageLoopProxy> message_loop_proxy,
881 PlatformFile file,
882 const base::Time& last_access_time,
883 const base::Time& last_modified_time,
884 StatusCallback* callback) {
885 return Start(FROM_HERE, message_loop_proxy,
886 new RelayTouch(file, last_access_time, last_modified_time,
887 callback));
888}
889
890// static
dumi@chromium.org12c2e2b2010-09-24 10:09:32 +0900891bool FileUtilProxy::Touch(
892 scoped_refptr<MessageLoopProxy> message_loop_proxy,
893 const FilePath& file_path,
894 const base::Time& last_access_time,
895 const base::Time& last_modified_time,
896 StatusCallback* callback) {
897 return Start(FROM_HERE, message_loop_proxy,
898 new RelayTouchFilePath(file_path, last_access_time,
899 last_modified_time, callback));
900}
901
902// static
dumi@chromium.org23915982010-09-10 12:01:14 +0900903bool FileUtilProxy::Truncate(
904 scoped_refptr<MessageLoopProxy> message_loop_proxy,
905 PlatformFile file,
ericu@google.com6a652222010-10-05 11:26:47 +0900906 int64 length,
dumi@chromium.org23915982010-09-10 12:01:14 +0900907 StatusCallback* callback) {
908 return Start(FROM_HERE, message_loop_proxy,
ericu@google.com6a652222010-10-05 11:26:47 +0900909 new RelayTruncatePlatformFile(file, length, callback));
910}
911
912// static
913bool FileUtilProxy::Truncate(
914 scoped_refptr<MessageLoopProxy> message_loop_proxy,
915 const FilePath& path,
916 int64 length,
917 StatusCallback* callback) {
918 return Start(FROM_HERE, message_loop_proxy,
919 new RelayTruncate(path, length, callback));
dumi@chromium.org23915982010-09-10 12:01:14 +0900920}
921
922// static
923bool FileUtilProxy::Flush(
924 scoped_refptr<MessageLoopProxy> message_loop_proxy,
925 PlatformFile file,
926 StatusCallback* callback) {
927 return Start(FROM_HERE, message_loop_proxy, new RelayFlush(file, callback));
928}
929
kkanetkar@chromium.org3a3bdea2010-09-02 12:43:36 +0900930} // namespace base