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
|
// 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/plugins/ppapi/callbacks.h"
#include <algorithm>
#include "base/compiler_specific.h"
#include "base/logging.h"
#include "base/message_loop.h"
#include "ppapi/c/pp_completion_callback.h"
#include "ppapi/c/pp_errors.h"
namespace webkit {
namespace ppapi {
// CallbackTracker -------------------------------------------------------------
CallbackTracker::CallbackTracker() {
}
void CallbackTracker::AbortAll() {
// Iterate over a copy since |Abort()| calls |Remove()| (indirectly).
// TODO(viettrungluu): This obviously isn't so efficient.
CallbackSetMap pending_callbacks_copy = pending_callbacks_;
for (CallbackSetMap::iterator it1 = pending_callbacks_copy.begin();
it1 != pending_callbacks_copy.end(); ++it1) {
for (CallbackSet::iterator it2 = it1->second.begin();
it2 != it1->second.end(); ++it2) {
(*it2)->Abort();
}
}
}
void CallbackTracker::PostAbortForResource(PP_Resource resource_id) {
CHECK(resource_id != 0);
CallbackSetMap::iterator it1 = pending_callbacks_.find(resource_id);
if (it1 == pending_callbacks_.end())
return;
for (CallbackSet::iterator it2 = it1->second.begin();
it2 != it1->second.end(); ++it2) {
// Post the abort.
(*it2)->PostAbort();
}
}
CallbackTracker::~CallbackTracker() {
// All callbacks must be aborted before destruction.
CHECK_EQ(0u, pending_callbacks_.size());
}
void CallbackTracker::Add(
const scoped_refptr<TrackedCallback>& tracked_callback) {
PP_Resource resource_id = tracked_callback->resource_id();
DCHECK(pending_callbacks_[resource_id].find(tracked_callback) ==
pending_callbacks_[resource_id].end());
pending_callbacks_[resource_id].insert(tracked_callback);
}
void CallbackTracker::Remove(
const scoped_refptr<TrackedCallback>& tracked_callback) {
CallbackSetMap::iterator map_it =
pending_callbacks_.find(tracked_callback->resource_id());
DCHECK(map_it != pending_callbacks_.end());
CallbackSet::iterator it = map_it->second.find(tracked_callback);
DCHECK(it != map_it->second.end());
map_it->second.erase(it);
// If there are no pending callbacks left for this ID, get rid of the entry.
if (map_it->second.empty())
pending_callbacks_.erase(map_it);
}
// TrackedCallback -------------------------------------------------------------
TrackedCallback::TrackedCallback(const scoped_refptr<CallbackTracker>& tracker,
PP_Resource resource_id)
: ALLOW_THIS_IN_INITIALIZER_LIST(abort_impl_factory_(this)),
tracker_(tracker),
resource_id_(resource_id),
completed_(false),
aborted_(false) {
tracker_->Add(make_scoped_refptr(this));
}
void TrackedCallback::Abort() {
if (!completed()) {
aborted_ = true;
AbortImpl();
}
}
void TrackedCallback::PostAbort() {
if (!completed()) {
aborted_ = true;
// Post a task for the abort (only if necessary).
if (abort_impl_factory_.empty()) {
MessageLoop::current()->PostTask(
FROM_HERE,
abort_impl_factory_.NewRunnableMethod(&TrackedCallback::AbortImpl));
}
}
}
TrackedCallback::~TrackedCallback() {
// The tracker must ensure that the callback is completed (maybe abortively).
DCHECK(completed_);
}
void TrackedCallback::MarkAsCompleted() {
DCHECK(!completed());
// We will be removed; maintain a reference to ensure we won't be deleted
// until we're done.
scoped_refptr<TrackedCallback> thiz = this;
completed_ = true;
tracker_->Remove(thiz);
tracker_ = NULL;
}
// TrackedCompletionCallback ---------------------------------------------------
TrackedCompletionCallback::TrackedCompletionCallback(
const scoped_refptr<CallbackTracker>& tracker,
PP_Resource resource_id,
const PP_CompletionCallback& callback)
: TrackedCallback(tracker, resource_id),
callback_(callback) {
}
void TrackedCompletionCallback::Run(int32_t result) {
if (!completed()) {
// Cancel any pending calls.
abort_impl_factory_.RevokeAll();
// Copy |callback_| and look at |aborted()| now, since |MarkAsCompleted()|
// may delete us.
PP_CompletionCallback callback = callback_;
if (aborted())
result = PP_ERROR_ABORTED;
// Do this before running the callback in case of reentrancy (which
// shouldn't happen, but avoid strange failures).
MarkAsCompleted();
PP_RunCompletionCallback(&callback, result);
}
}
void TrackedCompletionCallback::AbortImpl() {
Run(PP_ERROR_ABORTED);
}
} // namespace ppapi
} // namespace webkit
|