[email protected] | 1192339c | 2012-03-24 20:37:27 | [diff] [blame] | 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 |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | // This defines helpful methods for dealing with Callbacks. Because Callbacks |
| 6 | // are implemented using templates, with a class per callback signature, adding |
| 7 | // methods to Callback<> itself is unattractive (lots of extra code gets |
| 8 | // generated). Instead, consider adding methods here. |
[email protected] | 1192339c | 2012-03-24 20:37:27 | [diff] [blame] | 9 | |
| 10 | #ifndef BASE_CALLBACK_HELPERS_H_ |
| 11 | #define BASE_CALLBACK_HELPERS_H_ |
| 12 | |
jdoerrie | 19cf521 | 2019-04-26 09:50:47 | [diff] [blame] | 13 | #include <type_traits> |
tzik | faa3495 | 2017-04-20 12:19:50 | [diff] [blame] | 14 | #include <utility> |
| 15 | |
| 16 | #include "base/atomicops.h" |
| 17 | #include "base/bind.h" |
[email protected] | 1192339c | 2012-03-24 20:37:27 | [diff] [blame] | 18 | #include "base/callback.h" |
[email protected] | 1c232c2 | 2013-08-30 02:04:04 | [diff] [blame] | 19 | #include "base/compiler_specific.h" |
avi | 9b6f4293 | 2015-12-26 22:15:14 | [diff] [blame] | 20 | #include "base/macros.h" |
tzik | faa3495 | 2017-04-20 12:19:50 | [diff] [blame] | 21 | #include "base/memory/ptr_util.h" |
[email protected] | 1192339c | 2012-03-24 20:37:27 | [diff] [blame] | 22 | |
| 23 | namespace base { |
| 24 | |
jdoerrie | 19cf521 | 2019-04-26 09:50:47 | [diff] [blame] | 25 | namespace internal { |
Daniel Cheng | bbd4729 | 2019-04-25 02:20:15 | [diff] [blame] | 26 | |
jdoerrie | 19cf521 | 2019-04-26 09:50:47 | [diff] [blame] | 27 | template <typename T> |
| 28 | struct IsBaseCallbackImpl : std::false_type {}; |
| 29 | |
| 30 | template <typename R, typename... Args> |
| 31 | struct IsBaseCallbackImpl<OnceCallback<R(Args...)>> : std::true_type {}; |
| 32 | |
| 33 | template <typename R, typename... Args> |
| 34 | struct IsBaseCallbackImpl<RepeatingCallback<R(Args...)>> : std::true_type {}; |
| 35 | |
| 36 | } // namespace internal |
| 37 | |
| 38 | template <typename T> |
| 39 | using IsBaseCallback = internal::IsBaseCallbackImpl<std::decay_t<T>>; |
| 40 | |
| 41 | // SFINAE friendly enabler allowing to overload methods for both Repeating and |
| 42 | // OnceCallbacks. |
| 43 | // |
| 44 | // Usage: |
| 45 | // template <template <typename> class CallbackType, |
| 46 | // ... other template args ..., |
| 47 | // typename = EnableIfIsBaseCallback<CallbackType>> |
| 48 | // void DoStuff(CallbackType<...> cb, ...); |
| 49 | template <template <typename> class CallbackType> |
| 50 | using EnableIfIsBaseCallback = |
| 51 | std::enable_if_t<IsBaseCallback<CallbackType<void()>>::value>; |
| 52 | |
tzik | faa3495 | 2017-04-20 12:19:50 | [diff] [blame] | 53 | namespace internal { |
| 54 | |
| 55 | template <typename... Args> |
| 56 | class AdaptCallbackForRepeatingHelper final { |
| 57 | public: |
| 58 | explicit AdaptCallbackForRepeatingHelper(OnceCallback<void(Args...)> callback) |
| 59 | : callback_(std::move(callback)) { |
| 60 | DCHECK(callback_); |
| 61 | } |
| 62 | |
| 63 | void Run(Args... args) { |
| 64 | if (subtle::NoBarrier_AtomicExchange(&has_run_, 1)) |
| 65 | return; |
| 66 | DCHECK(callback_); |
| 67 | std::move(callback_).Run(std::forward<Args>(args)...); |
| 68 | } |
| 69 | |
| 70 | private: |
| 71 | volatile subtle::Atomic32 has_run_ = 0; |
| 72 | base::OnceCallback<void(Args...)> callback_; |
| 73 | |
| 74 | DISALLOW_COPY_AND_ASSIGN(AdaptCallbackForRepeatingHelper); |
| 75 | }; |
| 76 | |
| 77 | } // namespace internal |
| 78 | |
| 79 | // Wraps the given OnceCallback into a RepeatingCallback that relays its |
| 80 | // invocation to the original OnceCallback on the first invocation. The |
| 81 | // following invocations are just ignored. |
Avi Drissman | aed8223 | 2018-03-20 13:36:57 | [diff] [blame] | 82 | // |
| 83 | // Note that this deliberately subverts the Once/Repeating paradigm of Callbacks |
| 84 | // but helps ease the migration from old-style Callbacks. Avoid if possible; use |
| 85 | // if necessary for migration. TODO(tzik): Remove it. https://crbug.com/730593 |
tzik | faa3495 | 2017-04-20 12:19:50 | [diff] [blame] | 86 | template <typename... Args> |
| 87 | RepeatingCallback<void(Args...)> AdaptCallbackForRepeating( |
| 88 | OnceCallback<void(Args...)> callback) { |
| 89 | using Helper = internal::AdaptCallbackForRepeatingHelper<Args...>; |
| 90 | return base::BindRepeating(&Helper::Run, |
Jeremy Roman | 9532f25 | 2017-08-16 23:27:24 | [diff] [blame] | 91 | std::make_unique<Helper>(std::move(callback))); |
tzik | faa3495 | 2017-04-20 12:19:50 | [diff] [blame] | 92 | } |
| 93 | |
sergeyu | e4be191 | 2016-06-25 00:51:09 | [diff] [blame] | 94 | // ScopedClosureRunner is akin to std::unique_ptr<> for Closures. It ensures |
| 95 | // that the Closure is executed no matter how the current scope exits. |
[email protected] | 1c232c2 | 2013-08-30 02:04:04 | [diff] [blame] | 96 | class BASE_EXPORT ScopedClosureRunner { |
| 97 | public: |
| 98 | ScopedClosureRunner(); |
tzik | 398065c | 2017-08-08 05:19:40 | [diff] [blame] | 99 | explicit ScopedClosureRunner(OnceClosure closure); |
[email protected] | 1c232c2 | 2013-08-30 02:04:04 | [diff] [blame] | 100 | ~ScopedClosureRunner(); |
| 101 | |
sergeyu | e4be191 | 2016-06-25 00:51:09 | [diff] [blame] | 102 | ScopedClosureRunner(ScopedClosureRunner&& other); |
| 103 | |
sergeyu | 668613aa | 2016-07-08 00:34:27 | [diff] [blame] | 104 | // Releases the current closure if it's set and replaces it with the closure |
| 105 | // from |other|. |
sergeyu | e4be191 | 2016-06-25 00:51:09 | [diff] [blame] | 106 | ScopedClosureRunner& operator=(ScopedClosureRunner&& other); |
| 107 | |
| 108 | // Calls the current closure and resets it, so it wont be called again. |
sergeyu | 668613aa | 2016-07-08 00:34:27 | [diff] [blame] | 109 | void RunAndReset(); |
sergeyu | e4be191 | 2016-06-25 00:51:09 | [diff] [blame] | 110 | |
sergeyu | 668613aa | 2016-07-08 00:34:27 | [diff] [blame] | 111 | // Replaces closure with the new one releasing the old one without calling it. |
tzik | 398065c | 2017-08-08 05:19:40 | [diff] [blame] | 112 | void ReplaceClosure(OnceClosure closure); |
sergeyu | e4be191 | 2016-06-25 00:51:09 | [diff] [blame] | 113 | |
| 114 | // Releases the Closure without calling. |
tzik | 398065c | 2017-08-08 05:19:40 | [diff] [blame] | 115 | OnceClosure Release() WARN_UNUSED_RESULT; |
[email protected] | 1c232c2 | 2013-08-30 02:04:04 | [diff] [blame] | 116 | |
| 117 | private: |
tzik | 398065c | 2017-08-08 05:19:40 | [diff] [blame] | 118 | OnceClosure closure_; |
[email protected] | 1c232c2 | 2013-08-30 02:04:04 | [diff] [blame] | 119 | |
| 120 | DISALLOW_COPY_AND_ASSIGN(ScopedClosureRunner); |
| 121 | }; |
| 122 | |
[email protected] | 1192339c | 2012-03-24 20:37:27 | [diff] [blame] | 123 | } // namespace base |
| 124 | |
| 125 | #endif // BASE_CALLBACK_HELPERS_H_ |