[sql] Integrate SQLite recover.c module.
[chromium-blink-merge.git] / base / bind_internal.h.pump
blobf632b99e556db0aeb1669dabd1dc1b4b1be30e97
1 $$ This is a pump file for generating file templates.  Pump is a python
2 $$ script that is part of the Google Test suite of utilities.  Description
3 $$ can be found here:
4 $$
5 $$ http://code.google.com/p/googletest/wiki/PumpManual
6 $$
8 $$ See comment for MAX_ARITY in base/bind.h.pump.
9 $var MAX_ARITY = 7
10 $range ARITY 0..MAX_ARITY
12 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
13 // Use of this source code is governed by a BSD-style license that can be
14 // found in the LICENSE file.
16 #ifndef BASE_BIND_INTERNAL_H_
17 #define BASE_BIND_INTERNAL_H_
19 #include "base/bind_helpers.h"
20 #include "base/callback_internal.h"
21 #include "base/memory/raw_scoped_refptr_mismatch_checker.h"
22 #include "base/memory/weak_ptr.h"
23 #include "base/template_util.h"
24 #include "build/build_config.h"
26 #if defined(OS_WIN)
27 #include "base/bind_internal_win.h"
28 #endif
30 namespace base {
31 namespace internal {
33 // See base/callback.h for user documentation.
36 // CONCEPTS:
37 //  Runnable -- A type (really a type class) that has a single Run() method
38 //              and a RunType typedef that corresponds to the type of Run().
39 //              A Runnable can declare that it should treated like a method
40 //              call by including a typedef named IsMethod.  The value of
41 //              this typedef is NOT inspected, only the existence.  When a
42 //              Runnable declares itself a method, Bind() will enforce special
43 //              refcounting + WeakPtr handling semantics for the first
44 //              parameter which is expected to be an object.
45 //  Functor -- A copyable type representing something that should be called.
46 //             All function pointers, Callback<>, and Runnables are functors
47 //             even if the invocation syntax differs.
48 //  RunType -- A function type (as opposed to function _pointer_ type) for
49 //             a Run() function.  Usually just a convenience typedef.
50 //  (Bound)ArgsType -- A function type that is being (ab)used to store the
51 //                     types of set of arguments.  The "return" type is always
52 //                     void here.  We use this hack so that we do not need
53 //                     a new type name for each arity of type. (eg.,
54 //                     BindState1, BindState2).  This makes forward
55 //                     declarations and friending much much easier.
57 // Types:
58 //  RunnableAdapter<> -- Wraps the various "function" pointer types into an
59 //                       object that adheres to the Runnable interface.
60 //                       There are |3*ARITY| RunnableAdapter types.
61 //  FunctionTraits<> -- Type traits that unwrap a function signature into a
62 //                      a set of easier to use typedefs.  Used mainly for
63 //                      compile time asserts.
64 //                      There are |ARITY| FunctionTraits types.
65 //  ForceVoidReturn<> -- Helper class for translating function signatures to
66 //                       equivalent forms with a "void" return type.
67 //                    There are |ARITY| ForceVoidReturn types.
68 //  FunctorTraits<> -- Type traits used determine the correct RunType and
69 //                     RunnableType for a Functor.  This is where function
70 //                     signature adapters are applied.
71 //                    There are |ARITY| ForceVoidReturn types.
72 //  MakeRunnable<> -- Takes a Functor and returns an object in the Runnable
73 //                    type class that represents the underlying Functor.
74 //                    There are |O(1)| MakeRunnable types.
75 //  InvokeHelper<> -- Take a Runnable + arguments and actully invokes it.
76 //                    Handle the differing syntaxes needed for WeakPtr<> support,
77 //                    and for ignoring return values.  This is separate from
78 //                    Invoker to avoid creating multiple version of Invoker<>
79 //                    which grows at O(n^2) with the arity.
80 //                    There are |k*ARITY| InvokeHelper types.
81 //  Invoker<> -- Unwraps the curried parameters and executes the Runnable.
82 //               There are |(ARITY^2 + ARITY)/2| Invoketypes.
83 //  BindState<> -- Stores the curried parameters, and is the main entry point
84 //                 into the Bind() system, doing most of the type resolution.
85 //                 There are ARITY BindState types.
87 // RunnableAdapter<>
89 // The RunnableAdapter<> templates provide a uniform interface for invoking
90 // a function pointer, method pointer, or const method pointer. The adapter
91 // exposes a Run() method with an appropriate signature. Using this wrapper
92 // allows for writing code that supports all three pointer types without
93 // undue repetition.  Without it, a lot of code would need to be repeated 3
94 // times.
96 // For method pointers and const method pointers the first argument to Run()
97 // is considered to be the received of the method.  This is similar to STL's
98 // mem_fun().
100 // This class also exposes a RunType typedef that is the function type of the
101 // Run() function.
103 // If and only if the wrapper contains a method or const method pointer, an
104 // IsMethod typedef is exposed.  The existence of this typedef (NOT the value)
105 // marks that the wrapper should be considered a method wrapper.
107 template <typename Functor>
108 class RunnableAdapter;
110 $for ARITY [[
111 $range ARG 1..ARITY
113 // Function: Arity $(ARITY).
114 template <typename R[[]]
115 $if ARITY > 0[[, ]] $for ARG , [[typename A$(ARG)]]>
116 class RunnableAdapter<R(*)($for ARG , [[A$(ARG)]])> {
117  public:
118   typedef R (RunType)($for ARG , [[A$(ARG)]]);
120   explicit RunnableAdapter(R(*function)($for ARG , [[A$(ARG)]]))
121       : function_(function) {
122   }
124   R Run($for ARG , [[typename CallbackParamTraits<A$(ARG)>::ForwardType a$(ARG)]]) {
125     return function_($for ARG , [[CallbackForward(a$(ARG))]]);
126   }
128  private:
129   R (*function_)($for ARG , [[A$(ARG)]]);
132 // Method: Arity $(ARITY).
133 template <typename R, typename T[[]]
134 $if ARITY > 0[[, ]] $for ARG , [[typename A$(ARG)]]>
135 class RunnableAdapter<R(T::*)($for ARG , [[A$(ARG)]])> {
136  public:
137   typedef R (RunType)(T*[[]]
138 $if ARITY > 0[[, ]] $for ARG , [[A$(ARG)]]);
139   typedef true_type IsMethod;
141   explicit RunnableAdapter(R(T::*method)($for ARG , [[A$(ARG)]]))
142       : method_(method) {
143   }
145   R Run(T* object[[]]
146 $if ARITY > 0[[, ]]  $for ARG, [[typename CallbackParamTraits<A$(ARG)>::ForwardType a$(ARG)]]) {
147     return (object->*method_)($for ARG , [[CallbackForward(a$(ARG))]]);
148   }
150  private:
151   R (T::*method_)($for ARG , [[A$(ARG)]]);
154 // Const Method: Arity $(ARITY).
155 template <typename R, typename T[[]]
156 $if ARITY > 0[[, ]] $for ARG , [[typename A$(ARG)]]>
157 class RunnableAdapter<R(T::*)($for ARG , [[A$(ARG)]]) const> {
158  public:
159   typedef R (RunType)(const T*[[]]
160 $if ARITY > 0[[, ]] $for ARG , [[A$(ARG)]]);
161   typedef true_type IsMethod;
163   explicit RunnableAdapter(R(T::*method)($for ARG , [[A$(ARG)]]) const)
164       : method_(method) {
165   }
167   R Run(const T* object[[]]
168 $if ARITY > 0[[, ]]  $for ARG, [[typename CallbackParamTraits<A$(ARG)>::ForwardType a$(ARG)]]) {
169     return (object->*method_)($for ARG , [[CallbackForward(a$(ARG))]]);
170   }
172  private:
173   R (T::*method_)($for ARG , [[A$(ARG)]]) const;
176 ]]  $$ for ARITY
179 // FunctionTraits<>
181 // Breaks a function signature apart into typedefs for easier introspection.
182 template <typename Sig>
183 struct FunctionTraits;
185 $for ARITY [[
186 $range ARG 1..ARITY
188 template <typename R[[]]
189 $if ARITY > 0[[, ]] $for ARG , [[typename A$(ARG)]]>
190 struct FunctionTraits<R($for ARG , [[A$(ARG)]])> {
191   typedef R ReturnType;
192 $for ARG [[
194   typedef A$(ARG) A$(ARG)Type;
202 // ForceVoidReturn<>
204 // Set of templates that support forcing the function return type to void.
205 template <typename Sig>
206 struct ForceVoidReturn;
208 $for ARITY [[
209 $range ARG 1..ARITY
211 template <typename R[[]]
212 $if ARITY > 0[[, ]] $for ARG , [[typename A$(ARG)]]>
213 struct ForceVoidReturn<R($for ARG , [[A$(ARG)]])> {
214   typedef void(RunType)($for ARG , [[A$(ARG)]]);
217 ]]  $$ for ARITY
220 // FunctorTraits<>
222 // See description at top of file.
223 template <typename T>
224 struct FunctorTraits {
225   typedef RunnableAdapter<T> RunnableType;
226   typedef typename RunnableType::RunType RunType;
229 template <typename T>
230 struct FunctorTraits<IgnoreResultHelper<T> > {
231   typedef typename FunctorTraits<T>::RunnableType RunnableType;
232   typedef typename ForceVoidReturn<
233       typename RunnableType::RunType>::RunType RunType;
236 template <typename T>
237 struct FunctorTraits<Callback<T> > {
238   typedef Callback<T> RunnableType;
239   typedef typename Callback<T>::RunType RunType;
243 // MakeRunnable<>
245 // Converts a passed in functor to a RunnableType using type inference.
247 template <typename T>
248 typename FunctorTraits<T>::RunnableType MakeRunnable(const T& t) {
249   return RunnableAdapter<T>(t);
252 template <typename T>
253 typename FunctorTraits<T>::RunnableType
254 MakeRunnable(const IgnoreResultHelper<T>& t) {
255   return MakeRunnable(t.functor_);
258 template <typename T>
259 const typename FunctorTraits<Callback<T> >::RunnableType&
260 MakeRunnable(const Callback<T>& t) {
261   DCHECK(!t.is_null());
262   return t;
266 // InvokeHelper<>
268 // There are 3 logical InvokeHelper<> specializations: normal, void-return,
269 // WeakCalls.
271 // The normal type just calls the underlying runnable.
273 // We need a InvokeHelper to handle void return types in order to support
274 // IgnoreResult().  Normally, if the Runnable's RunType had a void return,
275 // the template system would just accept "return functor.Run()" ignoring
276 // the fact that a void function is being used with return. This piece of
277 // sugar breaks though when the Runnable's RunType is not void.  Thus, we
278 // need a partial specialization to change the syntax to drop the "return"
279 // from the invocation call.
281 // WeakCalls similarly need special syntax that is applied to the first
282 // argument to check if they should no-op themselves.
283 template <bool IsWeakCall, typename ReturnType, typename Runnable,
284           typename ArgsType>
285 struct InvokeHelper;
287 $for ARITY [[
288 $range ARG 1..ARITY
289 $range WEAKCALL_ARG 2..ARITY
291 template <typename ReturnType, typename Runnable[[]]
292 $if ARITY > 0 [[,]] $for ARG , [[typename A$(ARG)]]>
293 struct InvokeHelper<false, ReturnType, Runnable,
294     void($for ARG , [[A$(ARG)]])>  {
295   static ReturnType MakeItSo(Runnable runnable[[]]
296 $if ARITY > 0[[, ]] $for ARG , [[A$(ARG) a$(ARG)]]) {
297     return runnable.Run($for ARG , [[CallbackForward(a$(ARG))]]);
298   }
301 template <typename Runnable[[]]
302 $if ARITY > 0 [[,]] $for ARG , [[typename A$(ARG)]]>
303 struct InvokeHelper<false, void, Runnable,
304     void($for ARG , [[A$(ARG)]])>  {
305   static void MakeItSo(Runnable runnable[[]]
306 $if ARITY > 0[[, ]] $for ARG , [[A$(ARG) a$(ARG)]]) {
307     runnable.Run($for ARG , [[CallbackForward(a$(ARG))]]);
308   }
311 $if ARITY > 0 [[
313 template <typename Runnable[[]], typename BoundWeakPtr
314 $if ARITY > 1[[, ]] $for WEAKCALL_ARG , [[typename A$(WEAKCALL_ARG)]]>
315 struct InvokeHelper<true, void, Runnable,
316     void(BoundWeakPtr
317 $if ARITY > 1[[, ]] $for WEAKCALL_ARG , [[A$(WEAKCALL_ARG)]])>  {
318   static void MakeItSo(Runnable runnable, BoundWeakPtr weak_ptr
319 $if ARITY > 1[[, ]] $for WEAKCALL_ARG , [[A$(WEAKCALL_ARG) a$(WEAKCALL_ARG)]]) {
320     if (!weak_ptr.get()) {
321       return;
322     }
323     runnable.Run(weak_ptr.get()
324 $if ARITY > 1[[, ]] $for WEAKCALL_ARG , [[CallbackForward(a$(WEAKCALL_ARG))]]);
325   }
330 ]] $$ for ARITY
332 #if !defined(_MSC_VER)
334 template <typename ReturnType, typename Runnable, typename ArgsType>
335 struct InvokeHelper<true, ReturnType, Runnable, ArgsType> {
336   // WeakCalls are only supported for functions with a void return type.
337   // Otherwise, the function result would be undefined if the the WeakPtr<>
338   // is invalidated.
339   COMPILE_ASSERT(is_void<ReturnType>::value,
340                  weak_ptrs_can_only_bind_to_methods_without_return_values);
343 #endif
345 // Invoker<>
347 // See description at the top of the file.
348 template <int NumBound, typename Storage, typename RunType>
349 struct Invoker;
351 $for ARITY [[
353 $$ Number of bound arguments.
354 $range BOUND 0..ARITY
355 $for BOUND [[
357 $var UNBOUND = ARITY - BOUND
358 $range ARG 1..ARITY
359 $range BOUND_ARG 1..BOUND
360 $range UNBOUND_ARG (ARITY - UNBOUND + 1)..ARITY
362 // Arity $(ARITY) -> $(UNBOUND).
363 template <typename StorageType, typename R[[]]
364 $if ARITY > 0 [[,]][[]]
365 $for ARG , [[typename X$(ARG)]]>
366 struct Invoker<$(BOUND), StorageType, R($for ARG , [[X$(ARG)]])> {
367   typedef R(RunType)(BindStateBase*[[]]
368 $if UNBOUND != 0 [[, ]]
369 $for UNBOUND_ARG , [[typename CallbackParamTraits<X$(UNBOUND_ARG)>::ForwardType]]);
371   typedef R(UnboundRunType)($for UNBOUND_ARG , [[X$(UNBOUND_ARG)]]);
373   static R Run(BindStateBase* base[[]]
374 $if UNBOUND != 0 [[, ]][[]]
375 $for UNBOUND_ARG , [[
376 typename CallbackParamTraits<X$(UNBOUND_ARG)>::ForwardType x$(UNBOUND_ARG)
377 ]][[]]
378 ) {
379     StorageType* storage = static_cast<StorageType*>(base);
381     // Local references to make debugger stepping easier. If in a debugger,
382     // you really want to warp ahead and step through the
383     // InvokeHelper<>::MakeItSo() call below.
384 $for BOUND_ARG
387     typedef typename StorageType::Bound$(BOUND_ARG)UnwrapTraits Bound$(BOUND_ARG)UnwrapTraits;
391 $for BOUND_ARG
394     typename Bound$(BOUND_ARG)UnwrapTraits::ForwardType x$(BOUND_ARG) =
395         Bound$(BOUND_ARG)UnwrapTraits::Unwrap(storage->p$(BOUND_ARG)_);
398     return InvokeHelper<StorageType::IsWeakCall::value, R,
399            typename StorageType::RunnableType,
400            void(
401 $for BOUND_ARG , [[
402 typename Bound$(BOUND_ARG)UnwrapTraits::ForwardType
405 $if UNBOUND > 0 [[$if BOUND > 0 [[, ]]]][[]]
407 $for UNBOUND_ARG , [[
408 typename CallbackParamTraits<X$(UNBOUND_ARG)>::ForwardType x$(UNBOUND_ARG)
411                ::MakeItSo(storage->runnable_
412 $if ARITY > 0[[, ]] $for ARG , [[CallbackForward(x$(ARG))]]);
413   }
416 ]] $$ for BOUND
417 ]] $$ for ARITY
420 // BindState<>
422 // This stores all the state passed into Bind() and is also where most
423 // of the template resolution magic occurs.
425 // Runnable is the functor we are binding arguments to.
426 // RunType is type of the Run() function that the Invoker<> should use.
427 // Normally, this is the same as the RunType of the Runnable, but it can
428 // be different if an adapter like IgnoreResult() has been used.
430 // BoundArgsType contains the storage type for all the bound arguments by
431 // (ab)using a function type.
432 template <typename Runnable, typename RunType, typename BoundArgsType>
433 struct BindState;
435 $for ARITY [[
436 $range ARG 1..ARITY
438 template <typename Runnable, typename RunType[[]]
439 $if ARITY > 0[[, ]] $for ARG , [[typename P$(ARG)]]>
440 struct BindState<Runnable, RunType, void($for ARG , [[P$(ARG)]])> : public BindStateBase {
441   typedef Runnable RunnableType;
443 $if ARITY > 0 [[
444   typedef IsWeakMethod<HasIsMethodTag<Runnable>::value, P1> IsWeakCall;
445 ]] $else [[
446   typedef false_type IsWeakCall;
449   typedef Invoker<$(ARITY), BindState, RunType> InvokerType;
450   typedef typename InvokerType::UnboundRunType UnboundRunType;
452 $if ARITY > 0 [[
454   // Convenience typedefs for bound argument types.
456 $for ARG [[
457   typedef UnwrapTraits<P$(ARG)> Bound$(ARG)UnwrapTraits;
459 ]]  $$ for ARG
462 ]]  $$ if ARITY > 0
464 $$ The extra [[ ]] is needed to massage spacing. Silly pump.py.
465 [[  ]]$if ARITY == 0 [[explicit ]]BindState(const Runnable& runnable
466 $if ARITY > 0 [[, ]] $for ARG , [[const P$(ARG)& p$(ARG)]])
467       : runnable_(runnable)[[]]
468 $if ARITY == 0 [[
471 ]] $else [[
472 , $for ARG , [[
474         p$(ARG)_(p$(ARG))
475 ]] {
476     MaybeRefcount<HasIsMethodTag<Runnable>::value, P1>::AddRef(p1_);
479   }
481   virtual ~BindState() {
482 $if ARITY > 0 [[
483     MaybeRefcount<HasIsMethodTag<Runnable>::value, P1>::Release(p1_);
485   }
487   RunnableType runnable_;
489 $for ARG [[
490   P$(ARG) p$(ARG)_;
495 ]] $$ for ARITY
497 }  // namespace internal
498 }  // namespace base
500 #endif  // BASE_BIND_INTERNAL_H_