forked from sanyaade-mobiledev/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbind_internal.h
2114 lines (1825 loc) · 85.2 KB
/
bind_internal.h
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This file was GENERATED by command:
// pump.py bind_internal.h.pump
// DO NOT EDIT BY HAND!!!
// Copyright (c) 2011 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.
#ifndef BASE_BIND_INTERNAL_H_
#define BASE_BIND_INTERNAL_H_
#include "base/bind_helpers.h"
#include "base/callback_internal.h"
#include "base/memory/raw_scoped_refptr_mismatch_checker.h"
#include "base/memory/weak_ptr.h"
#include "base/template_util.h"
#include "build/build_config.h"
#if defined(OS_WIN)
#include "base/bind_internal_win.h"
#endif
namespace base {
namespace internal {
// See base/callback.h for user documentation.
//
//
// CONCEPTS:
// Runnable -- A type (really a type class) that has a single Run() method
// and a RunType typedef that corresponds to the type of Run().
// A Runnable can declare that it should treated like a method
// call by including a typedef named IsMethod. The value of
// this typedef is NOT inspected, only the existence. When a
// Runnable declares itself a method, Bind() will enforce special
// refcounting + WeakPtr handling semantics for the first
// parameter which is expected to be an object.
// Functor -- A copyable type representing something that should be called.
// All function pointers, Callback<>, and Runnables are functors
// even if the invocation syntax differs.
// RunType -- A function type (as opposed to function _pointer_ type) for
// a Run() function. Usually just a convenience typedef.
// (Bound)ArgsType -- A function type that is being (ab)used to store the
// types of set of arguments. The "return" type is always
// void here. We use this hack so that we do not need
// a new type name for each arity of type. (eg.,
// BindState1, BindState2). This makes forward
// declarations and friending much much easier.
//
// Types:
// RunnableAdapter<> -- Wraps the various "function" pointer types into an
// object that adheres to the Runnable interface.
// FunctionTraits<> -- Type traits that unwrap a function signature into a
// a set of easier to use typedefs. Used mainly for
// compile time asserts.
// There are |ARITY| FunctionTraits types.
// ForceVoidReturn<> -- Helper class for translating function signatures to
// equivalent forms with a "void" return type.
// FunctorTraits<> -- Type traits used determine the correct RunType and
// RunnableType for a Functor. This is where function
// signature adapters are applied.
// MakeRunnable<> -- Takes a Functor and returns an object in the Runnable
// type class that represents the underlying Functor.
// There are |O(1)| MakeRunnable types.
// InvokeHelper<> -- Take a Runnable + arguments and actully invokes it.
// Handle the differing syntaxes needed for WeakPtr<> support,
// and for ignoring return values. This is separate from
// Invoker to avoid creating multiple version of Invoker<>
// which grows at O(n^2) with the arity.
// Invoker<> -- Unwraps the curried parameters and executes the Runnable.
// There are |(ARITY^2 + ARITY)/2| Invoketypes.
// BindState<> -- Stores the curried parameters, and is the main entry point
// into the Bind() system, doing most of the type resolution.
// There are ARITY BindState types.
// HasNonConstReferenceParam selects true_type when any of the parameters in
// |Sig| is a non-const reference.
// Implementation note: This non-specialized case handles zero-arity case only.
// Non-zero-arity cases should be handled by the specialization below.
template <typename Sig>
struct HasNonConstReferenceParam : false_type {};
// Implementation note: Select true_type if the first parameter is a non-const
// reference. Otherwise, skip the first parameter and check rest of parameters
// recursively.
template <typename R, typename T, typename... Args>
struct HasNonConstReferenceParam<R(T, Args...)>
: SelectType<is_non_const_reference<T>::value,
true_type,
HasNonConstReferenceParam<R(Args...)>>::Type {};
// HasRefCountedTypeAsRawPtr selects true_type when any of the |Args| is a raw
// pointer to a RefCounted type.
// Implementation note: This non-specialized case handles zero-arity case only.
// Non-zero-arity cases should be handled by the specialization below.
template <typename... Args>
struct HasRefCountedTypeAsRawPtr : false_type {};
// Implementation note: Select true_type if the first parameter is a raw pointer
// to a RefCounted type. Otherwise, skip the first parameter and check rest of
// parameters recursively.
template <typename T, typename... Args>
struct HasRefCountedTypeAsRawPtr<T, Args...>
: SelectType<NeedsScopedRefptrButGetsRawPtr<T>::value,
true_type,
HasRefCountedTypeAsRawPtr<Args...>>::Type {};
// BindsArrayToFirstArg selects true_type when |is_method| is true and the first
// item of |Args| is an array type.
// Implementation note: This non-specialized case handles !is_method case and
// zero-arity case only. Other cases should be handled by the specialization
// below.
template <bool is_method, typename... Args>
struct BindsArrayToFirstArg : false_type {};
template <typename T, typename... Args>
struct BindsArrayToFirstArg<true, T, Args...> : is_array<T> {};
// HasRefCountedParamAsRawPtr is the same to HasRefCountedTypeAsRawPtr except
// when |is_method| is true HasRefCountedParamAsRawPtr skips the first argument.
// Implementation note: This non-specialized case handles !is_method case and
// zero-arity case only. Other cases should be handled by the specialization
// below.
template <bool is_method, typename... Args>
struct HasRefCountedParamAsRawPtr : HasRefCountedTypeAsRawPtr<Args...> {};
template <typename T, typename... Args>
struct HasRefCountedParamAsRawPtr<true, T, Args...>
: HasRefCountedTypeAsRawPtr<Args...> {};
// RunnableAdapter<>
//
// The RunnableAdapter<> templates provide a uniform interface for invoking
// a function pointer, method pointer, or const method pointer. The adapter
// exposes a Run() method with an appropriate signature. Using this wrapper
// allows for writing code that supports all three pointer types without
// undue repetition. Without it, a lot of code would need to be repeated 3
// times.
//
// For method pointers and const method pointers the first argument to Run()
// is considered to be the received of the method. This is similar to STL's
// mem_fun().
//
// This class also exposes a RunType typedef that is the function type of the
// Run() function.
//
// If and only if the wrapper contains a method or const method pointer, an
// IsMethod typedef is exposed. The existence of this typedef (NOT the value)
// marks that the wrapper should be considered a method wrapper.
template <typename Functor>
class RunnableAdapter;
// Function.
template <typename R, typename... Args>
class RunnableAdapter<R(*)(Args...)> {
public:
typedef R (RunType)(Args...);
explicit RunnableAdapter(R(*function)(Args...))
: function_(function) {
}
R Run(typename CallbackParamTraits<Args>::ForwardType... args) {
return function_(CallbackForward(args)...);
}
private:
R (*function_)(Args...);
};
// Method.
template <typename R, typename T, typename... Args>
class RunnableAdapter<R(T::*)(Args...)> {
public:
typedef R (RunType)(T*, Args...);
typedef true_type IsMethod;
explicit RunnableAdapter(R(T::*method)(Args...))
: method_(method) {
}
R Run(T* object, typename CallbackParamTraits<Args>::ForwardType... args) {
return (object->*method_)(CallbackForward(args)...);
}
private:
R (T::*method_)(Args...);
};
// Const Method.
template <typename R, typename T, typename... Args>
class RunnableAdapter<R(T::*)(Args...) const> {
public:
typedef R (RunType)(const T*, Args...);
typedef true_type IsMethod;
explicit RunnableAdapter(R(T::*method)(Args...) const)
: method_(method) {
}
R Run(const T* object,
typename CallbackParamTraits<Args>::ForwardType... args) {
return (object->*method_)(CallbackForward(args)...);
}
private:
R (T::*method_)(Args...) const;
};
// TODO(tzik): Remove FunctionTraits after we finish removing bind.pump.
// FunctionTraits<>
//
// Breaks a function signature apart into typedefs for easier introspection.
template <typename Sig>
struct FunctionTraits;
template <typename R>
struct FunctionTraits<R()> {
typedef R ReturnType;
};
template <typename R, typename A1>
struct FunctionTraits<R(A1)> {
typedef R ReturnType;
typedef A1 A1Type;
};
template <typename R, typename A1, typename A2>
struct FunctionTraits<R(A1, A2)> {
typedef R ReturnType;
typedef A1 A1Type;
typedef A2 A2Type;
};
template <typename R, typename A1, typename A2, typename A3>
struct FunctionTraits<R(A1, A2, A3)> {
typedef R ReturnType;
typedef A1 A1Type;
typedef A2 A2Type;
typedef A3 A3Type;
};
template <typename R, typename A1, typename A2, typename A3, typename A4>
struct FunctionTraits<R(A1, A2, A3, A4)> {
typedef R ReturnType;
typedef A1 A1Type;
typedef A2 A2Type;
typedef A3 A3Type;
typedef A4 A4Type;
};
template <typename R, typename A1, typename A2, typename A3, typename A4,
typename A5>
struct FunctionTraits<R(A1, A2, A3, A4, A5)> {
typedef R ReturnType;
typedef A1 A1Type;
typedef A2 A2Type;
typedef A3 A3Type;
typedef A4 A4Type;
typedef A5 A5Type;
};
template <typename R, typename A1, typename A2, typename A3, typename A4,
typename A5, typename A6>
struct FunctionTraits<R(A1, A2, A3, A4, A5, A6)> {
typedef R ReturnType;
typedef A1 A1Type;
typedef A2 A2Type;
typedef A3 A3Type;
typedef A4 A4Type;
typedef A5 A5Type;
typedef A6 A6Type;
};
template <typename R, typename A1, typename A2, typename A3, typename A4,
typename A5, typename A6, typename A7>
struct FunctionTraits<R(A1, A2, A3, A4, A5, A6, A7)> {
typedef R ReturnType;
typedef A1 A1Type;
typedef A2 A2Type;
typedef A3 A3Type;
typedef A4 A4Type;
typedef A5 A5Type;
typedef A6 A6Type;
typedef A7 A7Type;
};
// ForceVoidReturn<>
//
// Set of templates that support forcing the function return type to void.
template <typename Sig>
struct ForceVoidReturn;
template <typename R, typename... Args>
struct ForceVoidReturn<R(Args...)> {
typedef void(RunType)(Args...);
};
// FunctorTraits<>
//
// See description at top of file.
template <typename T>
struct FunctorTraits {
typedef RunnableAdapter<T> RunnableType;
typedef typename RunnableType::RunType RunType;
};
template <typename T>
struct FunctorTraits<IgnoreResultHelper<T> > {
typedef typename FunctorTraits<T>::RunnableType RunnableType;
typedef typename ForceVoidReturn<
typename RunnableType::RunType>::RunType RunType;
};
template <typename T>
struct FunctorTraits<Callback<T> > {
typedef Callback<T> RunnableType;
typedef typename Callback<T>::RunType RunType;
};
// MakeRunnable<>
//
// Converts a passed in functor to a RunnableType using type inference.
template <typename T>
typename FunctorTraits<T>::RunnableType MakeRunnable(const T& t) {
return RunnableAdapter<T>(t);
}
template <typename T>
typename FunctorTraits<T>::RunnableType
MakeRunnable(const IgnoreResultHelper<T>& t) {
return MakeRunnable(t.functor_);
}
template <typename T>
const typename FunctorTraits<Callback<T> >::RunnableType&
MakeRunnable(const Callback<T>& t) {
DCHECK(!t.is_null());
return t;
}
// InvokeHelper<>
//
// There are 3 logical InvokeHelper<> specializations: normal, void-return,
// WeakCalls.
//
// The normal type just calls the underlying runnable.
//
// We need a InvokeHelper to handle void return types in order to support
// IgnoreResult(). Normally, if the Runnable's RunType had a void return,
// the template system would just accept "return functor.Run()" ignoring
// the fact that a void function is being used with return. This piece of
// sugar breaks though when the Runnable's RunType is not void. Thus, we
// need a partial specialization to change the syntax to drop the "return"
// from the invocation call.
//
// WeakCalls similarly need special syntax that is applied to the first
// argument to check if they should no-op themselves.
template <bool IsWeakCall, typename ReturnType, typename Runnable,
typename ArgsType>
struct InvokeHelper;
template <typename ReturnType, typename Runnable, typename... Args>
struct InvokeHelper<false, ReturnType, Runnable,
void(Args...)> {
static ReturnType MakeItSo(Runnable runnable, Args... args) {
return runnable.Run(CallbackForward(args)...);
}
};
template <typename Runnable, typename... Args>
struct InvokeHelper<false, void, Runnable, void(Args...)> {
static void MakeItSo(Runnable runnable, Args... args) {
runnable.Run(CallbackForward(args)...);
}
};
template <typename Runnable, typename BoundWeakPtr, typename... Args>
struct InvokeHelper<true, void, Runnable, void(BoundWeakPtr, Args...)> {
static void MakeItSo(Runnable runnable, BoundWeakPtr weak_ptr, Args... args) {
if (!weak_ptr.get()) {
return;
}
runnable.Run(weak_ptr.get(), CallbackForward(args)...);
}
};
#if !defined(_MSC_VER)
template <typename ReturnType, typename Runnable, typename ArgsType>
struct InvokeHelper<true, ReturnType, Runnable, ArgsType> {
// WeakCalls are only supported for functions with a void return type.
// Otherwise, the function result would be undefined if the the WeakPtr<>
// is invalidated.
COMPILE_ASSERT(is_void<ReturnType>::value,
weak_ptrs_can_only_bind_to_methods_without_return_values);
};
#endif
// Invoker<>
//
// See description at the top of the file.
template <int NumBound, typename Storage, typename RunType>
struct Invoker;
// Arity 0 -> 0.
template <typename StorageType, typename R>
struct Invoker<0, StorageType, R()> {
typedef R(RunType)(BindStateBase*);
typedef R(UnboundRunType)();
static R Run(BindStateBase* base) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void()>
::MakeItSo(storage->runnable_);
}
};
// Arity 1 -> 1.
template <typename StorageType, typename R,typename X1>
struct Invoker<0, StorageType, R(X1)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X1>::ForwardType);
typedef R(UnboundRunType)(X1);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X1>::ForwardType x1) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename CallbackParamTraits<X1>::ForwardType x1)>
::MakeItSo(storage->runnable_, CallbackForward(x1));
}
};
// Arity 1 -> 0.
template <typename StorageType, typename R,typename X1>
struct Invoker<1, StorageType, R(X1)> {
typedef R(RunType)(BindStateBase*);
typedef R(UnboundRunType)();
static R Run(BindStateBase* base) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType)>
::MakeItSo(storage->runnable_, CallbackForward(x1));
}
};
// Arity 2 -> 2.
template <typename StorageType, typename R,typename X1, typename X2>
struct Invoker<0, StorageType, R(X1, X2)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X1>::ForwardType,
typename CallbackParamTraits<X2>::ForwardType);
typedef R(UnboundRunType)(X1, X2);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X1>::ForwardType x1,
typename CallbackParamTraits<X2>::ForwardType x2) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename CallbackParamTraits<X1>::ForwardType x1,
typename CallbackParamTraits<X2>::ForwardType x2)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2));
}
};
// Arity 2 -> 1.
template <typename StorageType, typename R,typename X1, typename X2>
struct Invoker<1, StorageType, R(X1, X2)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X2>::ForwardType);
typedef R(UnboundRunType)(X2);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X2>::ForwardType x2) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename CallbackParamTraits<X2>::ForwardType x2)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2));
}
};
// Arity 2 -> 0.
template <typename StorageType, typename R,typename X1, typename X2>
struct Invoker<2, StorageType, R(X1, X2)> {
typedef R(RunType)(BindStateBase*);
typedef R(UnboundRunType)();
static R Run(BindStateBase* base) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typedef typename StorageType::Bound2UnwrapTraits Bound2UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
typename Bound2UnwrapTraits::ForwardType x2 =
Bound2UnwrapTraits::Unwrap(storage->p2_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename Bound2UnwrapTraits::ForwardType)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2));
}
};
// Arity 3 -> 3.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3>
struct Invoker<0, StorageType, R(X1, X2, X3)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X1>::ForwardType,
typename CallbackParamTraits<X2>::ForwardType,
typename CallbackParamTraits<X3>::ForwardType);
typedef R(UnboundRunType)(X1, X2, X3);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X1>::ForwardType x1,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename CallbackParamTraits<X1>::ForwardType x1,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3));
}
};
// Arity 3 -> 2.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3>
struct Invoker<1, StorageType, R(X1, X2, X3)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X2>::ForwardType,
typename CallbackParamTraits<X3>::ForwardType);
typedef R(UnboundRunType)(X2, X3);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3));
}
};
// Arity 3 -> 1.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3>
struct Invoker<2, StorageType, R(X1, X2, X3)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X3>::ForwardType);
typedef R(UnboundRunType)(X3);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X3>::ForwardType x3) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typedef typename StorageType::Bound2UnwrapTraits Bound2UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
typename Bound2UnwrapTraits::ForwardType x2 =
Bound2UnwrapTraits::Unwrap(storage->p2_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename Bound2UnwrapTraits::ForwardType,
typename CallbackParamTraits<X3>::ForwardType x3)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3));
}
};
// Arity 3 -> 0.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3>
struct Invoker<3, StorageType, R(X1, X2, X3)> {
typedef R(RunType)(BindStateBase*);
typedef R(UnboundRunType)();
static R Run(BindStateBase* base) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typedef typename StorageType::Bound2UnwrapTraits Bound2UnwrapTraits;
typedef typename StorageType::Bound3UnwrapTraits Bound3UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
typename Bound2UnwrapTraits::ForwardType x2 =
Bound2UnwrapTraits::Unwrap(storage->p2_);
typename Bound3UnwrapTraits::ForwardType x3 =
Bound3UnwrapTraits::Unwrap(storage->p3_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename Bound2UnwrapTraits::ForwardType,
typename Bound3UnwrapTraits::ForwardType)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3));
}
};
// Arity 4 -> 4.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3, typename X4>
struct Invoker<0, StorageType, R(X1, X2, X3, X4)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X1>::ForwardType,
typename CallbackParamTraits<X2>::ForwardType,
typename CallbackParamTraits<X3>::ForwardType,
typename CallbackParamTraits<X4>::ForwardType);
typedef R(UnboundRunType)(X1, X2, X3, X4);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X1>::ForwardType x1,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename CallbackParamTraits<X1>::ForwardType x1,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3),
CallbackForward(x4));
}
};
// Arity 4 -> 3.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3, typename X4>
struct Invoker<1, StorageType, R(X1, X2, X3, X4)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X2>::ForwardType,
typename CallbackParamTraits<X3>::ForwardType,
typename CallbackParamTraits<X4>::ForwardType);
typedef R(UnboundRunType)(X2, X3, X4);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3),
CallbackForward(x4));
}
};
// Arity 4 -> 2.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3, typename X4>
struct Invoker<2, StorageType, R(X1, X2, X3, X4)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X3>::ForwardType,
typename CallbackParamTraits<X4>::ForwardType);
typedef R(UnboundRunType)(X3, X4);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typedef typename StorageType::Bound2UnwrapTraits Bound2UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
typename Bound2UnwrapTraits::ForwardType x2 =
Bound2UnwrapTraits::Unwrap(storage->p2_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename Bound2UnwrapTraits::ForwardType,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3),
CallbackForward(x4));
}
};
// Arity 4 -> 1.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3, typename X4>
struct Invoker<3, StorageType, R(X1, X2, X3, X4)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X4>::ForwardType);
typedef R(UnboundRunType)(X4);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X4>::ForwardType x4) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typedef typename StorageType::Bound2UnwrapTraits Bound2UnwrapTraits;
typedef typename StorageType::Bound3UnwrapTraits Bound3UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
typename Bound2UnwrapTraits::ForwardType x2 =
Bound2UnwrapTraits::Unwrap(storage->p2_);
typename Bound3UnwrapTraits::ForwardType x3 =
Bound3UnwrapTraits::Unwrap(storage->p3_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename Bound2UnwrapTraits::ForwardType,
typename Bound3UnwrapTraits::ForwardType,
typename CallbackParamTraits<X4>::ForwardType x4)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3),
CallbackForward(x4));
}
};
// Arity 4 -> 0.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3, typename X4>
struct Invoker<4, StorageType, R(X1, X2, X3, X4)> {
typedef R(RunType)(BindStateBase*);
typedef R(UnboundRunType)();
static R Run(BindStateBase* base) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typedef typename StorageType::Bound2UnwrapTraits Bound2UnwrapTraits;
typedef typename StorageType::Bound3UnwrapTraits Bound3UnwrapTraits;
typedef typename StorageType::Bound4UnwrapTraits Bound4UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
typename Bound2UnwrapTraits::ForwardType x2 =
Bound2UnwrapTraits::Unwrap(storage->p2_);
typename Bound3UnwrapTraits::ForwardType x3 =
Bound3UnwrapTraits::Unwrap(storage->p3_);
typename Bound4UnwrapTraits::ForwardType x4 =
Bound4UnwrapTraits::Unwrap(storage->p4_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename Bound2UnwrapTraits::ForwardType,
typename Bound3UnwrapTraits::ForwardType,
typename Bound4UnwrapTraits::ForwardType)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3),
CallbackForward(x4));
}
};
// Arity 5 -> 5.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3, typename X4, typename X5>
struct Invoker<0, StorageType, R(X1, X2, X3, X4, X5)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X1>::ForwardType,
typename CallbackParamTraits<X2>::ForwardType,
typename CallbackParamTraits<X3>::ForwardType,
typename CallbackParamTraits<X4>::ForwardType,
typename CallbackParamTraits<X5>::ForwardType);
typedef R(UnboundRunType)(X1, X2, X3, X4, X5);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X1>::ForwardType x1,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4,
typename CallbackParamTraits<X5>::ForwardType x5) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename CallbackParamTraits<X1>::ForwardType x1,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4,
typename CallbackParamTraits<X5>::ForwardType x5)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3),
CallbackForward(x4), CallbackForward(x5));
}
};
// Arity 5 -> 4.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3, typename X4, typename X5>
struct Invoker<1, StorageType, R(X1, X2, X3, X4, X5)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X2>::ForwardType,
typename CallbackParamTraits<X3>::ForwardType,
typename CallbackParamTraits<X4>::ForwardType,
typename CallbackParamTraits<X5>::ForwardType);
typedef R(UnboundRunType)(X2, X3, X4, X5);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4,
typename CallbackParamTraits<X5>::ForwardType x5) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename CallbackParamTraits<X2>::ForwardType x2,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4,
typename CallbackParamTraits<X5>::ForwardType x5)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3),
CallbackForward(x4), CallbackForward(x5));
}
};
// Arity 5 -> 3.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3, typename X4, typename X5>
struct Invoker<2, StorageType, R(X1, X2, X3, X4, X5)> {
typedef R(RunType)(BindStateBase*,
typename CallbackParamTraits<X3>::ForwardType,
typename CallbackParamTraits<X4>::ForwardType,
typename CallbackParamTraits<X5>::ForwardType);
typedef R(UnboundRunType)(X3, X4, X5);
static R Run(BindStateBase* base,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4,
typename CallbackParamTraits<X5>::ForwardType x5) {
StorageType* storage = static_cast<StorageType*>(base);
// Local references to make debugger stepping easier. If in a debugger,
// you really want to warp ahead and step through the
// InvokeHelper<>::MakeItSo() call below.
typedef typename StorageType::Bound1UnwrapTraits Bound1UnwrapTraits;
typedef typename StorageType::Bound2UnwrapTraits Bound2UnwrapTraits;
typename Bound1UnwrapTraits::ForwardType x1 =
Bound1UnwrapTraits::Unwrap(storage->p1_);
typename Bound2UnwrapTraits::ForwardType x2 =
Bound2UnwrapTraits::Unwrap(storage->p2_);
return InvokeHelper<StorageType::IsWeakCall::value, R,
typename StorageType::RunnableType,
void(typename Bound1UnwrapTraits::ForwardType,
typename Bound2UnwrapTraits::ForwardType,
typename CallbackParamTraits<X3>::ForwardType x3,
typename CallbackParamTraits<X4>::ForwardType x4,
typename CallbackParamTraits<X5>::ForwardType x5)>
::MakeItSo(storage->runnable_, CallbackForward(x1),
CallbackForward(x2), CallbackForward(x3),
CallbackForward(x4), CallbackForward(x5));
}
};
// Arity 5 -> 2.
template <typename StorageType, typename R,typename X1, typename X2,
typename X3, typename X4, typename X5>