blob: 0c4bdfbfb1f1a2be5f28a02dc8faef28e3aa9a85 (
plain)
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
|
// 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 "ppapi/proxy/plugin_resource_tracker.h"
#include "base/logging.h"
#include "base/memory/singleton.h"
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/proxy/plugin_resource.h"
#include "ppapi/proxy/serialized_var.h"
namespace pp {
namespace proxy {
namespace {
// When non-NULL, this object overrides the ResourceTrackerSingleton.
PluginResourceTracker* g_resource_tracker_override = NULL;
} // namespace
PluginResourceTracker::ResourceInfo::ResourceInfo() : ref_count(0) {
}
PluginResourceTracker::ResourceInfo::ResourceInfo(int rc,
linked_ptr<PluginResource> r)
: ref_count(rc),
resource(r) {
}
PluginResourceTracker::ResourceInfo::ResourceInfo(const ResourceInfo& other)
: ref_count(other.ref_count),
resource(other.resource) {
}
PluginResourceTracker::ResourceInfo::~ResourceInfo() {
}
PluginResourceTracker::ResourceInfo&
PluginResourceTracker::ResourceInfo::operator=(
const ResourceInfo& other) {
ref_count = other.ref_count;
resource = other.resource;
return *this;
}
// Start counting resources at a high number to avoid collisions with vars (to
// help debugging).
PluginResourceTracker::PluginResourceTracker()
: last_resource_id_(0x00100000) {
}
PluginResourceTracker::~PluginResourceTracker() {
}
// static
void PluginResourceTracker::SetInstanceForTest(PluginResourceTracker* tracker) {
g_resource_tracker_override = tracker;
}
// static
PluginResourceTracker* PluginResourceTracker::GetInstance() {
if (g_resource_tracker_override)
return g_resource_tracker_override;
return Singleton<PluginResourceTracker>::get();
}
PluginResource* PluginResourceTracker::GetResourceObject(
PP_Resource pp_resource) {
ResourceMap::iterator found = resource_map_.find(pp_resource);
if (found == resource_map_.end())
return NULL;
return found->second.resource.get();
}
PP_Resource PluginResourceTracker::AddResource(
linked_ptr<PluginResource> object) {
if (object->host_resource().is_null()) {
// Prevent adding null resources or GetResourceObject(0) will return a
// valid pointer!
NOTREACHED();
return 0;
}
PP_Resource plugin_resource = ++last_resource_id_;
DCHECK(resource_map_.find(plugin_resource) == resource_map_.end());
resource_map_[plugin_resource] = ResourceInfo(1, object);
host_resource_map_[object->host_resource()] = plugin_resource;
return plugin_resource;
}
void PluginResourceTracker::AddRefResource(PP_Resource resource) {
ResourceMap::iterator found = resource_map_.find(resource);
if (found == resource_map_.end()) {
NOTREACHED();
return;
}
found->second.ref_count++;
}
void PluginResourceTracker::ReleaseResource(PP_Resource resource) {
ReleasePluginResourceRef(resource, true);
}
PP_Resource PluginResourceTracker::PluginResourceForHostResource(
const HostResource& resource) const {
HostResourceMap::const_iterator found = host_resource_map_.find(resource);
if (found == host_resource_map_.end())
return 0;
return found->second;
}
void PluginResourceTracker::ReleasePluginResourceRef(
const PP_Resource& resource,
bool notify_browser_on_release) {
ResourceMap::iterator found = resource_map_.find(resource);
if (found == resource_map_.end())
return;
found->second.ref_count--;
if (found->second.ref_count == 0) {
PluginResource* plugin_resource = found->second.resource.get();
if (notify_browser_on_release)
SendReleaseResourceToHost(resource, plugin_resource);
host_resource_map_.erase(plugin_resource->host_resource());
resource_map_.erase(found);
}
}
void PluginResourceTracker::SendReleaseResourceToHost(
PP_Resource resource_id,
PluginResource* resource) {
PluginDispatcher* dispatcher =
PluginDispatcher::GetForInstance(resource->instance());
if (dispatcher) {
dispatcher->Send(new PpapiHostMsg_PPBCore_ReleaseResource(
INTERFACE_ID_PPB_CORE, resource->host_resource()));
} else {
NOTREACHED();
}
}
} // namespace proxy
} // namespace pp
|