Add OWNERS to content/browser/quota
[chromium-blink-merge.git] / base / files / file_util_proxy.cc
blob0942e7a2761027f7b6b8ad1de5224d833e5fa612
1 // Copyright (c) 2012 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.
5 #include "base/files/file_util_proxy.h"
7 #include "base/bind.h"
8 #include "base/bind_helpers.h"
9 #include "base/files/file_util.h"
10 #include "base/location.h"
11 #include "base/task_runner.h"
12 #include "base/task_runner_util.h"
14 namespace base {
16 namespace {
18 void CallWithTranslatedParameter(const FileUtilProxy::StatusCallback& callback,
19 bool value) {
20 DCHECK(!callback.is_null());
21 callback.Run(value ? File::FILE_OK : File::FILE_ERROR_FAILED);
24 class GetFileInfoHelper {
25 public:
26 GetFileInfoHelper()
27 : error_(File::FILE_OK) {}
29 void RunWorkForFilePath(const FilePath& file_path) {
30 if (!PathExists(file_path)) {
31 error_ = File::FILE_ERROR_NOT_FOUND;
32 return;
34 if (!GetFileInfo(file_path, &file_info_))
35 error_ = File::FILE_ERROR_FAILED;
38 void Reply(const FileUtilProxy::GetFileInfoCallback& callback) {
39 if (!callback.is_null()) {
40 callback.Run(error_, file_info_);
44 private:
45 File::Error error_;
46 File::Info file_info_;
47 DISALLOW_COPY_AND_ASSIGN(GetFileInfoHelper);
50 File::Error DeleteAdapter(const FilePath& file_path, bool recursive) {
51 if (!PathExists(file_path)) {
52 return File::FILE_ERROR_NOT_FOUND;
54 if (!base::DeleteFile(file_path, recursive)) {
55 if (!recursive && !base::IsDirectoryEmpty(file_path)) {
56 return File::FILE_ERROR_NOT_EMPTY;
58 return File::FILE_ERROR_FAILED;
60 return File::FILE_OK;
63 } // namespace
65 // Retrieves the information about a file. It is invalid to pass NULL for the
66 // callback.
67 bool FileUtilProxy::GetFileInfo(
68 TaskRunner* task_runner,
69 const FilePath& file_path,
70 const GetFileInfoCallback& callback) {
71 GetFileInfoHelper* helper = new GetFileInfoHelper;
72 return task_runner->PostTaskAndReply(
73 FROM_HERE,
74 Bind(&GetFileInfoHelper::RunWorkForFilePath,
75 Unretained(helper), file_path),
76 Bind(&GetFileInfoHelper::Reply, Owned(helper), callback));
79 // static
80 bool FileUtilProxy::DeleteFile(TaskRunner* task_runner,
81 const FilePath& file_path,
82 bool recursive,
83 const StatusCallback& callback) {
84 return base::PostTaskAndReplyWithResult(
85 task_runner, FROM_HERE,
86 Bind(&DeleteAdapter, file_path, recursive),
87 callback);
90 // static
91 bool FileUtilProxy::Touch(
92 TaskRunner* task_runner,
93 const FilePath& file_path,
94 const Time& last_access_time,
95 const Time& last_modified_time,
96 const StatusCallback& callback) {
97 return base::PostTaskAndReplyWithResult(
98 task_runner,
99 FROM_HERE,
100 Bind(&TouchFile, file_path, last_access_time, last_modified_time),
101 Bind(&CallWithTranslatedParameter, callback));
104 } // namespace base