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
|
// Copyright (c) 2011 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 "webkit/fileapi/quota_file_util.h"
#include "base/file_util.h"
#include "base/logging.h"
#include "webkit/fileapi/file_system_context.h"
#include "webkit/fileapi/file_system_operation_context.h"
#include "webkit/fileapi/file_system_path_manager.h"
#include "webkit/fileapi/file_system_quota_util.h"
#include "webkit/quota/quota_manager.h"
using quota::QuotaManagerProxy;
namespace fileapi {
const int64 QuotaFileUtil::kNoLimit = kint64max;
namespace {
// Checks if copying in the same filesystem can be performed.
// This method is not called for moving within a single filesystem.
bool CanCopy(
const FilePath& src_file_path,
const FilePath& dest_file_path,
int64 allowed_bytes_growth,
int64* growth) {
base::PlatformFileInfo src_file_info;
if (!file_util::GetFileInfo(src_file_path, &src_file_info)) {
// Falling through to the actual copy/move operation.
return true;
}
base::PlatformFileInfo dest_file_info;
if (!file_util::GetFileInfo(dest_file_path, &dest_file_info))
dest_file_info.size = 0;
if (allowed_bytes_growth != QuotaFileUtil::kNoLimit &&
src_file_info.size - dest_file_info.size > allowed_bytes_growth)
return false;
if (growth != NULL)
*growth = src_file_info.size - dest_file_info.size;
return true;
}
// A helper class to hook quota_util() methods before and after modifications.
class ScopedOriginUpdateHelper {
public:
explicit ScopedOriginUpdateHelper(
FileSystemContext* context,
const GURL& origin_url,
FileSystemType type)
: origin_url_(origin_url),
type_(type) {
DCHECK(context);
DCHECK(type != kFileSystemTypeUnknown);
quota_util_ = context->GetQuotaUtil(type_);
quota_manager_proxy_ = context->quota_manager_proxy();
if (quota_util_)
quota_util_->StartUpdateOriginOnFileThread(origin_url_, type_);
}
~ScopedOriginUpdateHelper() {
if (quota_util_)
quota_util_->EndUpdateOriginOnFileThread(origin_url_, type_);
}
void NotifyUpdate(int64 growth) {
if (quota_util_)
quota_util_->UpdateOriginUsageOnFileThread(
quota_manager_proxy_, origin_url_, type_, growth);
}
private:
FileSystemQuotaUtil* quota_util_;
QuotaManagerProxy* quota_manager_proxy_;
const GURL& origin_url_;
FileSystemType type_;
DISALLOW_COPY_AND_ASSIGN(ScopedOriginUpdateHelper);
};
} // namespace (anonymous)
// static
QuotaFileUtil* QuotaFileUtil::GetInstance() {
return Singleton<QuotaFileUtil>::get();
}
base::PlatformFileError QuotaFileUtil::CopyOrMoveFile(
FileSystemOperationContext* fs_context,
const FilePath& src_file_path,
const FilePath& dest_file_path,
bool copy) {
DCHECK(fs_context);
// TODO(kinuko): For cross-filesystem move case we need 2 helpers, one for
// src and one for dest.
ScopedOriginUpdateHelper helper(
fs_context->file_system_context(),
fs_context->dest_origin_url(),
fs_context->dest_type());
int64 growth = 0;
// It assumes copy/move operations are always in the same fs currently.
// TODO(dmikurube): Do quota check if moving between different fs.
if (copy) {
int64 allowed_bytes_growth = fs_context->allowed_bytes_growth();
// The third argument (growth) is not used for now.
if (!CanCopy(src_file_path, dest_file_path, allowed_bytes_growth,
&growth))
return base::PLATFORM_FILE_ERROR_NO_SPACE;
} else {
base::PlatformFileInfo dest_file_info;
if (!file_util::GetFileInfo(dest_file_path, &dest_file_info))
dest_file_info.size = 0;
growth = -dest_file_info.size;
}
base::PlatformFileError error = FileSystemFileUtil::GetInstance()->
CopyOrMoveFile(fs_context, src_file_path, dest_file_path, copy);
if (error == base::PLATFORM_FILE_OK) {
// TODO(kinuko): For cross-filesystem move case, call this with -growth
// for source and growth for dest.
helper.NotifyUpdate(growth);
}
return error;
}
base::PlatformFileError QuotaFileUtil::DeleteFile(
FileSystemOperationContext* fs_context,
const FilePath& file_path) {
DCHECK(fs_context);
ScopedOriginUpdateHelper helper(
fs_context->file_system_context(),
fs_context->src_origin_url(),
fs_context->src_type());
int64 growth = 0;
base::PlatformFileInfo file_info;
if (!file_util::GetFileInfo(file_path, &file_info))
file_info.size = 0;
growth = -file_info.size;
base::PlatformFileError error = FileSystemFileUtil::GetInstance()->
DeleteFile(fs_context, file_path);
if (error == base::PLATFORM_FILE_OK)
helper.NotifyUpdate(growth);
return error;
}
base::PlatformFileError QuotaFileUtil::Truncate(
FileSystemOperationContext* fs_context,
const FilePath& path,
int64 length) {
int64 allowed_bytes_growth = fs_context->allowed_bytes_growth();
ScopedOriginUpdateHelper helper(
fs_context->file_system_context(),
fs_context->src_origin_url(),
fs_context->src_type());
int64 growth = 0;
base::PlatformFileInfo file_info;
if (!file_util::GetFileInfo(path, &file_info))
return base::PLATFORM_FILE_ERROR_FAILED;
growth = length - file_info.size;
if (allowed_bytes_growth != kNoLimit && growth > allowed_bytes_growth)
return base::PLATFORM_FILE_ERROR_NO_SPACE;
base::PlatformFileError error = FileSystemFileUtil::GetInstance()->Truncate(
fs_context, path, length);
if (error == base::PLATFORM_FILE_OK)
helper.NotifyUpdate(growth);
return error;
}
} // namespace fileapi
|