Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / mojo / public / cpp / bindings / callback.h.pump
blobb459762807eac4374383999ffc6d902bc79274af
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 $var MAX_ARITY = 7
10 // Copyright 2014 The Chromium Authors. All rights reserved.
11 // Use of this source code is governed by a BSD-style license that can be
12 // found in the LICENSE file.
14 #ifndef MOJO_PUBLIC_CPP_BINDINGS_CALLBACK_H_
15 #define MOJO_PUBLIC_CPP_BINDINGS_CALLBACK_H_
17 #include "mojo/public/cpp/bindings/lib/callback_internal.h"
18 #include "mojo/public/cpp/bindings/lib/shared_ptr.h"
19 #include "mojo/public/cpp/bindings/lib/template_util.h"
21 namespace mojo {
23 template <typename Sig>
24 class Callback;
26 $range ARITY 0..MAX_ARITY
27 $for ARITY [[
28 $range ARG 1..ARITY
30 template <$for ARG , [[typename A$(ARG)]]>
31 class Callback<void($for ARG , [[A$(ARG)]])> {
32  public:
33   struct Runnable {
34     virtual ~Runnable() {}
35     virtual void Run($if ARITY > 0 [[
37         ]]$for ARG ,
38         [[typename internal::Callback_ParamTraits<A$(ARG)>::ForwardType a$(ARG)]]) const = 0;
39   };
41   Callback() {}
43   // The Callback assumes ownership of |runnable|.
44   explicit Callback(Runnable* runnable) : sink_(runnable) {}
46   // Any class that is copy-constructable and has a compatible Run method may
47   // be adapted to a Callback using this constructor.
48   template <typename Sink>
49   Callback(const Sink& sink) : sink_(new Adapter<Sink>(sink)) {}
51   void Run($if ARITY > 1 [[
53       ]]$for ARG ,
54       [[typename internal::Callback_ParamTraits<A$(ARG)>::ForwardType a$(ARG)]]) const {
55     if (sink_.get())
56       sink_->Run($if ARITY > 1 [[
58           ]]$for ARG ,
59           [[internal::Forward(a$(ARG))]]);
60   }
62   bool is_null() const {
63     return !sink_.get();
64   }
66  private:
67   template <typename Sink>
68   struct Adapter : public Runnable {
69     explicit Adapter(const Sink& sink) : sink(sink) {}
70     virtual void Run($if ARITY > 0 [[
72         ]]$for ARG ,
73         [[typename internal::Callback_ParamTraits<A$(ARG)>::ForwardType a$(ARG)]]) const MOJO_OVERRIDE {
74       sink.Run($if ARITY > 1 [[
76           ]]$for ARG ,
77           [[internal::Forward(a$(ARG))]]);
78     }
79     Sink sink;
80   };
82   internal::SharedPtr<Runnable> sink_;
85 ]]  $$ for ARITY
87 typedef Callback<void()> Closure;
89 }  // namespace mojo
91 #endif  // MOJO_PUBLIC_CPP_BINDINGS_CALLBACK_H_