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
|
// Copyright (c) 2010 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/glue/plugins/pepper_file_system.h"
#include "base/logging.h"
#include "base/ref_counted.h"
#include "base/weak_ptr.h"
#include "third_party/ppapi/c/dev/ppb_file_system_dev.h"
#include "third_party/ppapi/c/pp_completion_callback.h"
#include "third_party/ppapi/c/pp_time.h"
#include "webkit/fileapi/file_system_callback_dispatcher.h"
#include "webkit/glue/plugins/pepper_resource.h"
#include "webkit/glue/plugins/pepper_error_util.h"
#include "webkit/glue/plugins/pepper_file_ref.h"
#include "webkit/glue/plugins/pepper_plugin_delegate.h"
#include "webkit/glue/plugins/pepper_plugin_instance.h"
#include "webkit/glue/plugins/pepper_plugin_module.h"
#include "webkit/glue/plugins/pepper_resource.h"
namespace pepper {
namespace {
// Instances of this class are deleted when RunCallback() is called.
class StatusCallback : public fileapi::FileSystemCallbackDispatcher {
public:
StatusCallback(base::WeakPtr<pepper::PluginModule> module,
PP_CompletionCallback callback)
: module_(module),
callback_(callback) {
}
// FileSystemCallbackDispatcher implementation.
virtual void DidSucceed() {
RunCallback(base::PLATFORM_FILE_OK);
}
virtual void DidReadMetadata(const base::PlatformFileInfo&) {
NOTREACHED();
}
virtual void DidReadDirectory(
const std::vector<base::file_util_proxy::Entry>&, bool) {
NOTREACHED();
}
virtual void DidOpenFileSystem(const std::string&, const FilePath&) {
NOTREACHED();
}
virtual void DidFail(base::PlatformFileError error_code) {
RunCallback(error_code);
}
private:
void RunCallback(base::PlatformFileError error_code) {
if (!module_.get() || !callback_.func)
return;
PP_RunCompletionCallback(
&callback_, pepper::PlatformFileErrorToPepperError(error_code));
delete this;
}
base::WeakPtr<pepper::PluginModule> module_;
PP_CompletionCallback callback_;
};
// Instances of this class are deleted when RunCallback() is called.
class QueryInfoCallback : public fileapi::FileSystemCallbackDispatcher {
public:
QueryInfoCallback(base::WeakPtr<pepper::PluginModule> module,
PP_CompletionCallback callback,
PP_FileInfo_Dev* info,
PP_FileSystemType_Dev file_system_type)
: module_(module),
callback_(callback),
info_(info),
file_system_type_(file_system_type) {
DCHECK(info_);
}
// FileSystemCallbackDispatcher implementation.
virtual void DidSucceed() {
NOTREACHED();
}
virtual void DidReadMetadata(const base::PlatformFileInfo& file_info) {
RunCallback(base::PLATFORM_FILE_OK, file_info);
}
virtual void DidReadDirectory(
const std::vector<base::file_util_proxy::Entry>&, bool) {
NOTREACHED();
}
virtual void DidOpenFileSystem(const std::string&, const FilePath&) {
NOTREACHED();
}
virtual void DidFail(base::PlatformFileError error_code) {
RunCallback(error_code, base::PlatformFileInfo());
}
private:
void RunCallback(base::PlatformFileError error_code,
const base::PlatformFileInfo& file_info) {
if (!module_.get() || !callback_.func)
return;
if (error_code == base::PLATFORM_FILE_OK) {
info_->size = file_info.size;
info_->creation_time = file_info.creation_time.ToDoubleT();
info_->last_access_time = file_info.last_accessed.ToDoubleT();
info_->last_modified_time = file_info.last_modified.ToDoubleT();
info_->system_type = file_system_type_;
if (file_info.is_directory)
info_->type = PP_FILETYPE_DIRECTORY;
else
info_->type = PP_FILETYPE_REGULAR;
}
PP_RunCompletionCallback(
&callback_, pepper::PlatformFileErrorToPepperError(error_code));
delete this;
}
base::WeakPtr<pepper::PluginModule> module_;
PP_CompletionCallback callback_;
PP_FileInfo_Dev* info_;
PP_FileSystemType_Dev file_system_type_;
};
int32_t MakeDirectory(PP_Resource directory_ref_id,
bool make_ancestors,
PP_CompletionCallback callback) {
scoped_refptr<FileRef> directory_ref(
Resource::GetAs<FileRef>(directory_ref_id));
if (!directory_ref)
return PP_ERROR_BADRESOURCE;
if (directory_ref->file_system_type() == PP_FILESYSTEMTYPE_EXTERNAL)
return PP_ERROR_FAILED;
PluginModule* module = directory_ref->module();
if (!module->GetSomeInstance()->delegate()->MakeDirectory(
directory_ref->system_path(), make_ancestors,
new StatusCallback(module->AsWeakPtr(), callback)))
return PP_ERROR_FAILED;
return PP_ERROR_WOULDBLOCK;
}
int32_t Query(PP_Resource file_ref_id,
PP_FileInfo_Dev* info,
PP_CompletionCallback callback) {
scoped_refptr<FileRef> file_ref(Resource::GetAs<FileRef>(file_ref_id));
if (!file_ref)
return PP_ERROR_BADRESOURCE;
PluginModule* module = file_ref->module();
if (!module->GetSomeInstance()->delegate()->Query(
file_ref->system_path(),
new QueryInfoCallback(module->AsWeakPtr(), callback,
info, file_ref->file_system_type())))
return PP_ERROR_FAILED;
return PP_ERROR_WOULDBLOCK;
}
int32_t Touch(PP_Resource file_ref_id,
PP_Time last_access_time,
PP_Time last_modified_time,
PP_CompletionCallback callback) {
scoped_refptr<FileRef> file_ref(Resource::GetAs<FileRef>(file_ref_id));
if (!file_ref)
return PP_ERROR_BADRESOURCE;
PluginModule* module = file_ref->module();
if (!module->GetSomeInstance()->delegate()->Touch(
file_ref->system_path(), base::Time::FromDoubleT(last_access_time),
base::Time::FromDoubleT(last_modified_time),
new StatusCallback(module->AsWeakPtr(), callback)))
return PP_ERROR_FAILED;
return PP_ERROR_WOULDBLOCK;
}
int32_t Delete(PP_Resource file_ref_id,
PP_CompletionCallback callback) {
scoped_refptr<FileRef> file_ref(Resource::GetAs<FileRef>(file_ref_id));
if (!file_ref)
return PP_ERROR_BADRESOURCE;
if (file_ref->file_system_type() == PP_FILESYSTEMTYPE_EXTERNAL)
return PP_ERROR_FAILED;
PluginModule* module = file_ref->module();
if (!module->GetSomeInstance()->delegate()->Delete(
file_ref->system_path(),
new StatusCallback(module->AsWeakPtr(), callback)))
return PP_ERROR_FAILED;
return PP_ERROR_WOULDBLOCK;
}
int32_t Rename(PP_Resource file_ref_id,
PP_Resource new_file_ref_id,
PP_CompletionCallback callback) {
scoped_refptr<FileRef> file_ref(Resource::GetAs<FileRef>(file_ref_id));
if (!file_ref)
return PP_ERROR_BADRESOURCE;
scoped_refptr<FileRef> new_file_ref(
Resource::GetAs<FileRef>(new_file_ref_id));
if (!new_file_ref)
return PP_ERROR_BADRESOURCE;
if ((file_ref->file_system_type() == PP_FILESYSTEMTYPE_EXTERNAL) ||
(file_ref->file_system_type() != new_file_ref->file_system_type()))
return PP_ERROR_FAILED;
PluginModule* module = file_ref->module();
if (!module->GetSomeInstance()->delegate()->Rename(
file_ref->system_path(), new_file_ref->system_path(),
new StatusCallback(module->AsWeakPtr(), callback)))
return PP_ERROR_FAILED;
return PP_ERROR_WOULDBLOCK;
}
const PPB_FileSystem_Dev ppb_filesystem = {
&MakeDirectory,
&Query,
&Touch,
&Delete,
&Rename
};
} // namespace
const PPB_FileSystem_Dev* FileSystem::GetInterface() {
return &ppb_filesystem;
}
} // namespace pepper
|