Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: ppapi/shared_impl/tracked_callback.h

Issue 923263003: PPAPI: Make TrackedCallback more threadsafe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_SHARED_IMPL_TRACKED_CALLBACK_H_ 5 #ifndef PPAPI_SHARED_IMPL_TRACKED_CALLBACK_H_
6 #define PPAPI_SHARED_IMPL_TRACKED_CALLBACK_H_ 6 #define PPAPI_SHARED_IMPL_TRACKED_CALLBACK_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/synchronization/condition_variable.h" 15 #include "base/synchronization/condition_variable.h"
16 #include "base/synchronization/lock.h"
16 #include "ppapi/c/pp_completion_callback.h" 17 #include "ppapi/c/pp_completion_callback.h"
17 #include "ppapi/c/pp_instance.h" 18 #include "ppapi/c/pp_instance.h"
18 #include "ppapi/c/pp_resource.h" 19 #include "ppapi/c/pp_resource.h"
19 #include "ppapi/shared_impl/ppapi_shared_export.h" 20 #include "ppapi/shared_impl/ppapi_shared_export.h"
20 #include "ppapi/shared_impl/ppb_message_loop_shared.h" 21 #include "ppapi/shared_impl/ppb_message_loop_shared.h"
21 22
22 namespace ppapi { 23 namespace ppapi {
23 24
24 class CallbackTracker; 25 class CallbackTracker;
25 class MessageLoopShared; 26 class MessageLoopShared;
(...skipping 19 matching lines...) Expand all
45 // The ability to post aborts is needed in many situations to ensure that the 46 // The ability to post aborts is needed in many situations to ensure that the
46 // plugin is not re-entered into. (Note that posting a task to just run 47 // plugin is not re-entered into. (Note that posting a task to just run
47 // |Abort()| is different and not correct; calling |PostAbort()| additionally 48 // |Abort()| is different and not correct; calling |PostAbort()| additionally
48 // guarantees that all subsequent completions will be abortive.) 49 // guarantees that all subsequent completions will be abortive.)
49 // 50 //
50 // This class is reference counted so that different things can hang on to it, 51 // This class is reference counted so that different things can hang on to it,
51 // and not worry too much about ensuring Pepper callback semantics. Note that 52 // and not worry too much about ensuring Pepper callback semantics. Note that
52 // the "owning" |CallbackTracker| will keep a reference until the callback is 53 // the "owning" |CallbackTracker| will keep a reference until the callback is
53 // completed. 54 // completed.
54 // 55 //
55 // Subclasses must do several things: 56 // A note on threading:
56 // - They must ensure that the callback is executed at most once (by looking at 57 // TrackedCallback is usable on any thread. It is *mostly* only used when
57 // |completed()| before running the callback). 58 // ppapi::ProxyLock is held. However, it's necessary that Run() can be called
58 // - They must ensure that the callback is run abortively if it is marked as to 59 // without the ProxyLock. This is used to allow signalling the callback from
bbudge 2015/02/25 23:51:31 It might not be clear to readers what "signalling
59 // be aborted (by looking at |aborted()| before running the callback). 60 // the IO thread. In particular, blocking callbacks may not have a message loop
60 // - They must call |MarkAsCompleted()| immediately before actually running the 61 // to which we could post.
61 // callback; see the comment for |MarkAsCompleted()| for a caveat.
62 class PPAPI_SHARED_EXPORT TrackedCallback 62 class PPAPI_SHARED_EXPORT TrackedCallback
63 : public base::RefCountedThreadSafe<TrackedCallback> { 63 : public base::RefCountedThreadSafe<TrackedCallback> {
64 public: 64 public:
65 // Create a tracked completion callback and register it with the tracker. The 65 // Create a tracked completion callback and register it with the tracker. The
66 // resource pointer is not stored. If |resource| is NULL, this callback will 66 // resource pointer is not stored. If |resource| is NULL, this callback will
67 // not be added to the callback tracker. 67 // not be added to the callback tracker.
68 TrackedCallback(Resource* resource, const PP_CompletionCallback& callback); 68 TrackedCallback(Resource* resource, const PP_CompletionCallback& callback);
69 69
70 // These run the callback in an abortive manner, or post a task to do so (but 70 // These run the callback in an abortive manner, or post a task to do so (but
71 // immediately marking the callback as to be aborted). 71 // immediately marking the callback as to be aborted).
72 void Abort(); 72 void Abort();
73 void PostAbort(); 73 void PostAbort();
74 74
75 // Run the callback with the given result. If the callback had previously been 75 // Run the callback with the given result. If the callback had previously been
76 // marked as to be aborted (by |PostAbort()|), |result| will be ignored and 76 // marked as to be aborted (by |PostAbort()|), |result| will be ignored and
77 // the callback will be run with result |PP_ERROR_ABORTED|. 77 // the callback will be run with result |PP_ERROR_ABORTED|.
78 // 78 //
79 // Run() will invoke the call immediately, if invoked from the target thread 79 // Run() will invoke the call immediately, if invoked from the target thread
80 // (as determined by target_loop_). If invoked on a different thread, the 80 // (as determined by target_loop_). If invoked on a different thread, the
81 // callback will be scheduled to run later on target_loop_. 81 // callback will be scheduled to run later on target_loop_.
82 void Run(int32_t result); 82 void Run(int32_t result);
83 void AcquireProxyLockAndRun(int32_t result);
83 // PostRun is like Run(), except it guarantees that the callback will be run 84 // PostRun is like Run(), except it guarantees that the callback will be run
84 // later. In particular, if you invoke PostRun on the same thread on which the 85 // later. In particular, if you invoke PostRun on the same thread on which the
85 // callback is targeted to run, it will *not* be run immediately. 86 // callback is targeted to run, it will *not* be run immediately.
86 void PostRun(int32_t result); 87 void PostRun(int32_t result);
87 88
88 // A task to perform cleanup or write output parameters before the callback 89 // A task to perform cleanup or write output parameters before the callback
89 // returns a result to the plugin. The |result| parameter has the result so 90 // returns a result to the plugin. The |result| parameter has the result so
90 // far, e.g. whether the callback has been aborted. If the callback hasn't 91 // far, e.g. whether the callback has been aborted. If the callback hasn't
91 // been aborted the return value of the task will become the callback result. 92 // been aborted the return value of the task will become the callback result.
92 // The task is always called on the same thread as the callback to the plugin. 93 // The task is always called on the same thread as the callback to the plugin.
93 typedef base::Callback<int32_t(int32_t /* result */)> CompletionTask; 94 typedef base::Callback<int32_t(int32_t /* result */)> CompletionTask;
94 95
95 // Sets a task that is run just before calling back into the plugin. This 96 // Sets a task that is run just before calling back into the plugin. This
96 // should only be called once. 97 // should only be called once. Note that the CompletionTask always runs while
98 // holding the ppapi::ProxyLock.
97 void set_completion_task(const CompletionTask& completion_task); 99 void set_completion_task(const CompletionTask& completion_task);
98 100
99 // Returns the ID of the resource which "owns" the callback, or 0 if the 101 // Returns the ID of the resource which "owns" the callback, or 0 if the
100 // callback is not associated with any resource. 102 // callback is not associated with any resource.
101 PP_Resource resource_id() const { return resource_id_; } 103 PP_Resource resource_id() const { return resource_id_; }
102 104
103 // Returns true if the callback was completed (possibly aborted). 105 // Returns true if the callback was completed (possibly aborted).
104 bool completed() const { return completed_; } 106 bool completed() const {
107 base::AutoLock acquire(lock_);
108 return completed_;
109 }
105 110
106 // Returns true if the callback was or should be aborted; this will be the 111 // Returns true if the callback was or should be aborted; this will be the
107 // case whenever |Abort()| or |PostAbort()| is called before a non-abortive 112 // case whenever |Abort()| or |PostAbort()| is called before a non-abortive
108 // completion. 113 // completion.
109 bool aborted() const { return aborted_; } 114 bool aborted() const {
115 base::AutoLock acquire(lock_);
116 return aborted_;
117 }
110 118
111 // Returns true if this is a blocking callback. 119 // Returns true if this is a blocking callback.
112 bool is_blocking() { return !callback_.func; } 120 bool is_blocking() const {
121 // This is set on construction and never changes after that, so there is
122 // no need to lock.
123 return !callback_.func;
124 }
113 125
114 MessageLoopShared* target_loop() const { return target_loop_.get(); } 126 MessageLoopShared* target_loop() const {
127 // This is set on construction and never changes after that, so there is
128 // no need to lock.
129 return target_loop_.get();
130 }
115 131
116 // Determines if the given callback is pending. A callback is pending if it 132 // Determines if the given callback is pending. A callback is pending if it
117 // has not completed and has not been aborted. When receiving a plugin call, 133 // has not completed and has not been aborted. When receiving a plugin call,
118 // use this to detect if |callback| represents an operation in progress. When 134 // use this to detect if |callback| represents an operation in progress. When
119 // finishing a plugin call, use this to determine whether to write 'out' 135 // finishing a plugin call, use this to determine whether to write 'out'
120 // params and Run |callback|. 136 // params and Run |callback|.
121 // NOTE: an aborted callback has not necessarily completed, so a false result 137 // NOTE: an aborted callback has not necessarily completed, so a false result
122 // doesn't imply that the callback has completed. 138 // doesn't imply that the callback has completed.
123 // As a convenience, if |callback| is null, this returns false. 139 // As a convenience, if |callback| is null, this returns false.
124 static bool IsPending(const scoped_refptr<TrackedCallback>& callback); 140 static bool IsPending(const scoped_refptr<TrackedCallback>& callback);
125 141
126 // Helper to determine if the given callback is scheduled to run on another 142 // Helper to determine if the given callback is scheduled to run on another
127 // message loop. 143 // message loop.
128 static bool IsScheduledToRun(const scoped_refptr<TrackedCallback>& callback); 144 static bool IsScheduledToRun(const scoped_refptr<TrackedCallback>& callback);
129 145
130 protected: 146 private:
131 bool is_required() { 147 bool is_required() {
132 return (callback_.func && 148 return (callback_.func &&
133 !(callback_.flags & PP_COMPLETIONCALLBACK_FLAG_OPTIONAL)); 149 !(callback_.flags & PP_COMPLETIONCALLBACK_FLAG_OPTIONAL));
134 } 150 }
135 bool is_optional() { 151 bool is_optional() {
bbudge 2015/02/25 23:51:31 This doesn't seem to be used anywhere. Can we elim
dmichael (off chromium) 2015/02/27 22:04:40 Done.
136 return (callback_.func && 152 return (callback_.func &&
137 (callback_.flags & PP_COMPLETIONCALLBACK_FLAG_OPTIONAL)); 153 (callback_.flags & PP_COMPLETIONCALLBACK_FLAG_OPTIONAL));
138 } 154 }
139 bool has_null_target_loop() const { return target_loop_.get() == NULL; } 155 bool has_null_target_loop() const { return target_loop_.get() == NULL; }
140 156
141 private: 157 // Same as PostRun(), but lock_ must already be held.
158 void PostRunImpl(int32_t result);
159
160 void SignalBlockingCallback(int32_t result);
161
142 // TrackedCallback and EnterBase manage dealing with how to invoke callbacks 162 // TrackedCallback and EnterBase manage dealing with how to invoke callbacks
143 // appropriately. Pepper interface implementations and proxies should not have 163 // appropriately. Pepper interface implementations and proxies should not have
144 // to check the type of callback, block, or mark them complete explicitly. 164 // to check the type of callback, block, or mark them complete explicitly.
bbudge 2015/02/25 23:51:31 Some of our resources do check whether callbacks a
dmichael (off chromium) 2015/02/27 22:04:40 Right. I tried improving & updating the callback.
145 friend class ppapi::thunk::subtle::EnterBase; 165 friend class ppapi::thunk::subtle::EnterBase;
146 166
147 // Block until the associated operation has completed. Returns the result. 167 // Block until the associated operation has completed. Returns the result.
148 // This must only be called on a non-main thread on a blocking callback. 168 // This must only be called on a non-main thread on a blocking callback.
149 int32_t BlockUntilComplete(); 169 int32_t BlockUntilComplete();
150 170
151 // Mark this object as complete and remove it from the tracker. This must only 171 // Mark this object as complete and remove it from the tracker. This must only
152 // be called once. Note that running this may result in this object being 172 // be called once. Note that running this may result in this object being
153 // deleted (so keep a reference if it'll still be needed). 173 // deleted (so keep a reference if it'll still be needed).
154 void MarkAsCompleted(); 174 void MarkAsCompleted();
175 void MarkAsCompletedWithLock();
155 176
156 // This class is ref counted. 177 // This class is ref counted.
157 friend class base::RefCountedThreadSafe<TrackedCallback>; 178 friend class base::RefCountedThreadSafe<TrackedCallback>;
158 virtual ~TrackedCallback(); 179 ~TrackedCallback();
180
181 mutable base::Lock lock_;
159 182
160 // Flag used by |PostAbort()| and |PostRun()| to check that we don't schedule 183 // Flag used by |PostAbort()| and |PostRun()| to check that we don't schedule
161 // the callback more than once. 184 // the callback more than once.
162 bool is_scheduled_; 185 bool is_scheduled_;
163 186
164 scoped_refptr<CallbackTracker> tracker_; 187 scoped_refptr<CallbackTracker> tracker_;
165 PP_Resource resource_id_; 188 PP_Resource resource_id_;
166 bool completed_; 189 bool completed_;
167 bool aborted_; 190 bool aborted_;
168 PP_CompletionCallback callback_; 191 PP_CompletionCallback callback_;
(...skipping 10 matching lines...) Expand all
179 // callback. Note that in-process, there is no lock, blocking callbacks are 202 // callback. Note that in-process, there is no lock, blocking callbacks are
180 // not allowed, and therefore this pointer will be NULL. 203 // not allowed, and therefore this pointer will be NULL.
181 scoped_ptr<base::ConditionVariable> operation_completed_condvar_; 204 scoped_ptr<base::ConditionVariable> operation_completed_condvar_;
182 205
183 DISALLOW_IMPLICIT_CONSTRUCTORS(TrackedCallback); 206 DISALLOW_IMPLICIT_CONSTRUCTORS(TrackedCallback);
184 }; 207 };
185 208
186 } // namespace ppapi 209 } // namespace ppapi
187 210
188 #endif // PPAPI_SHARED_IMPL_TRACKED_CALLBACK_H_ 211 #endif // PPAPI_SHARED_IMPL_TRACKED_CALLBACK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698