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
|
// Copyright (c) 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 "ppapi/proxy/file_system_resource.h"
#include "base/bind.h"
#include "ipc/ipc_message.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/shared_impl/tracked_callback.h"
using ppapi::thunk::PPB_FileSystem_API;
namespace ppapi {
namespace proxy {
FileSystemResource::FileSystemResource(Connection connection,
PP_Instance instance,
PP_FileSystemType type)
: PluginResource(connection, instance),
type_(type),
called_open_(false) {
DCHECK(type_ != PP_FILESYSTEMTYPE_INVALID);
SendCreate(RENDERER, PpapiHostMsg_FileSystem_Create(type_));
}
FileSystemResource::~FileSystemResource() {
}
PPB_FileSystem_API* FileSystemResource::AsPPB_FileSystem_API() {
return this;
}
int32_t FileSystemResource::Open(int64_t expected_size,
scoped_refptr<TrackedCallback> callback) {
if (called_open_)
return PP_ERROR_FAILED;
called_open_ = true;
Call<PpapiPluginMsg_FileSystem_OpenReply>(RENDERER,
PpapiHostMsg_FileSystem_Open(expected_size),
base::Bind(&FileSystemResource::OpenComplete,
this,
callback));
return PP_OK_COMPLETIONPENDING;
}
PP_FileSystemType FileSystemResource::GetType() {
return type_;
}
void FileSystemResource::InitIsolatedFileSystem(const char* fsid) {
Post(RENDERER,
PpapiHostMsg_FileSystem_InitIsolatedFileSystem(std::string(fsid)));
}
void FileSystemResource::OpenComplete(
scoped_refptr<TrackedCallback> callback,
const ResourceMessageReplyParams& params) {
callback->Run(params.result());
}
} // namespace proxy
} // namespace ppapi
|