1 // Copyright 2014 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 #ifndef PPAPI_PROXY_FILE_MAPPING_RESOURCE_H_
6 #define PPAPI_PROXY_FILE_MAPPING_RESOURCE_H_
8 #include "ppapi/proxy/file_io_resource.h"
9 #include "ppapi/proxy/plugin_resource.h"
10 #include "ppapi/proxy/ppapi_proxy_export.h"
11 #include "ppapi/thunk/ppb_file_mapping_api.h"
16 // The proxy-side resource for PPB_FileMapping.
17 class PPAPI_PROXY_EXPORT FileMappingResource
18 : public PluginResource
,
19 public thunk::PPB_FileMapping_API
{
21 FileMappingResource(Connection connection
, PP_Instance instance
);
24 virtual ~FileMappingResource();
26 // Resource implementation.
27 virtual thunk::PPB_FileMapping_API
* AsPPB_FileMapping_API() OVERRIDE
;
29 // PPB_FileMapping_API implementation.
30 virtual int32_t Map(PP_Instance instance
,
37 scoped_refptr
<TrackedCallback
> callback
) OVERRIDE
;
38 virtual int32_t Unmap(PP_Instance instance
,
41 scoped_refptr
<TrackedCallback
> callback
) OVERRIDE
;
42 virtual int64_t GetMapPageSize(PP_Instance instance
) OVERRIDE
;
45 MapResult() : result(PP_ERROR_FAILED
), address(NULL
) {
50 void OnMapCompleted(void** mapped_address_out_param
,
52 scoped_refptr
<TrackedCallback
> callback
,
53 const MapResult
& map_result
);
55 // These functions perform potentially blocking operations so they should not
56 // be called on the main thread or while we hold the proxy lock. Their
57 // implementation is platform specific. See file_mapping_resource_posix.cc and
58 // file_mapping_resource_win.cc.
59 static MapResult
DoMapBlocking(
60 scoped_refptr
<FileIOResource::FileHandleHolder
> handle
,
66 static int32_t DoUnmapBlocking(const void* address
, int64_t length
);
67 // DoGetMapPageSize is platform-specific, but fast enough that we can call it
68 // on the main thread with the lock.
69 static int64_t DoGetMapPageSize();
71 DISALLOW_COPY_AND_ASSIGN(FileMappingResource
);
77 #endif // PPAPI_PROXY_FILE_MAPPING_RESOURCE_H_