OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2014 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ | 11 #ifndef WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ |
12 #define WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ | 12 #define WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ |
13 | 13 |
14 #include "webrtc/rtc_base/atomicops.h" | |
15 #include "webrtc/rtc_base/bind.h" | 14 #include "webrtc/rtc_base/bind.h" |
16 #include "webrtc/rtc_base/criticalsection.h" | 15 #include "webrtc/rtc_base/criticalsection.h" |
| 16 #include "webrtc/rtc_base/event.h" |
17 #include "webrtc/rtc_base/messagehandler.h" | 17 #include "webrtc/rtc_base/messagehandler.h" |
| 18 #include "webrtc/rtc_base/refcountedobject.h" |
| 19 #include "webrtc/rtc_base/scoped_ref_ptr.h" |
18 #include "webrtc/rtc_base/sigslot.h" | 20 #include "webrtc/rtc_base/sigslot.h" |
19 #include "webrtc/rtc_base/thread.h" | 21 #include "webrtc/rtc_base/thread.h" |
20 #include "webrtc/rtc_base/thread_annotations.h" | 22 #include "webrtc/rtc_base/thread_annotations.h" |
21 | 23 |
22 namespace rtc { | 24 namespace rtc { |
23 | 25 |
24 class AsyncInvoker; | 26 class AsyncInvoker; |
25 | 27 |
26 // Helper class for AsyncInvoker. Runs a task and triggers a callback | 28 // Helper class for AsyncInvoker. Runs a task and triggers a callback |
27 // on the calling thread if necessary. | 29 // on the calling thread if necessary. |
28 class AsyncClosure { | 30 class AsyncClosure { |
29 public: | 31 public: |
30 explicit AsyncClosure(AsyncInvoker* invoker) : invoker_(invoker) {} | 32 explicit AsyncClosure(AsyncInvoker* invoker); |
31 virtual ~AsyncClosure(); | 33 virtual ~AsyncClosure(); |
32 // Runs the asynchronous task, and triggers a callback to the calling | 34 // Runs the asynchronous task, and triggers a callback to the calling |
33 // thread if needed. Should be called from the target thread. | 35 // thread if needed. Should be called from the target thread. |
34 virtual void Execute() = 0; | 36 virtual void Execute() = 0; |
35 | 37 |
36 protected: | 38 protected: |
37 AsyncInvoker* invoker_; | 39 AsyncInvoker* invoker_; |
| 40 // Reference counted so that if the AsyncInvoker destructor finishes before |
| 41 // an AsyncClosure's destructor that's about to call |
| 42 // "invocation_complete_->Set()", it's not dereferenced after being |
| 43 // destroyed. |
| 44 scoped_refptr<RefCountedObject<Event>> invocation_complete_; |
38 }; | 45 }; |
39 | 46 |
40 // Simple closure that doesn't trigger a callback for the calling thread. | 47 // Simple closure that doesn't trigger a callback for the calling thread. |
41 template <class FunctorT> | 48 template <class FunctorT> |
42 class FireAndForgetAsyncClosure : public AsyncClosure { | 49 class FireAndForgetAsyncClosure : public AsyncClosure { |
43 public: | 50 public: |
44 explicit FireAndForgetAsyncClosure(AsyncInvoker* invoker, | 51 explicit FireAndForgetAsyncClosure(AsyncInvoker* invoker, |
45 const FunctorT& functor) | 52 const FunctorT& functor) |
46 : AsyncClosure(invoker), functor_(functor) {} | 53 : AsyncClosure(invoker), functor_(functor) {} |
47 virtual void Execute() { | 54 virtual void Execute() { |
48 functor_(); | 55 functor_(); |
49 } | 56 } |
50 private: | 57 private: |
51 FunctorT functor_; | 58 FunctorT functor_; |
52 }; | 59 }; |
53 | 60 |
54 } // namespace rtc | 61 } // namespace rtc |
55 | 62 |
56 #endif // WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ | 63 #endif // WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ |
OLD | NEW |