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
5 $$ http://code.google.com/p/googletest/wiki/PumpManual
8 $$ See comment for MAX_ARITY in base/bind.h.pump.
11 // Copyright 2013 The Chromium Authors. All rights reserved.
12 // Use of this source code is governed by a BSD-style license that can be
13 // found in the LICENSE file.
15 #ifndef BASE_CALLBACK_LIST_H_
16 #define BASE_CALLBACK_LIST_H_
20 #include "base/basictypes.h"
21 #include "base/callback.h"
22 #include "base/callback_internal.h"
23 #include "base/compiler_specific.h"
24 #include "base/logging.h"
25 #include "base/memory/scoped_ptr.h"
29 // A container for a list of callbacks. Unlike a normal STL vector or list,
30 // this container can be modified during iteration without invalidating the
31 // iterator. It safely handles the case of a callback removing itself
32 // or another callback from the list while callbacks are being run.
40 // typedef base::Callback<void(const Foo&)> OnFooCallback;
42 // scoped_ptr<base::CallbackList<void(const Foo&)>::Subscription>
43 // RegisterCallback(const OnFooCallback& cb) {
44 // return callback_list_.Add(cb);
48 // void NotifyFoo(const Foo& foo) {
49 // callback_list_.Notify(foo);
52 // base::CallbackList<void(const Foo&)> callback_list_;
54 // DISALLOW_COPY_AND_ASSIGN(MyWidget);
58 // class MyWidgetListener {
60 // MyWidgetListener::MyWidgetListener() {
61 // foo_subscription_ = MyWidget::GetCurrent()->RegisterCallback(
62 // base::Bind(&MyWidgetListener::OnFoo, this)));
65 // MyWidgetListener::~MyWidgetListener() {
66 // // Subscription gets deleted automatically and will deregister
67 // // the callback in the process.
71 // void OnFoo(const Foo& foo) {
75 // scoped_ptr<base::CallbackList<void(const Foo&)>::Subscription>
78 // DISALLOW_COPY_AND_ASSIGN(MyWidgetListener);
85 template <typename CallbackType>
86 class CallbackListBase {
90 Subscription(CallbackListBase<CallbackType>* list,
91 typename std::list<CallbackType>::iterator iter)
97 if (list_->active_iterator_count_)
100 list_->callbacks_.erase(iter_);
104 CallbackListBase<CallbackType>* list_;
105 typename std::list<CallbackType>::iterator iter_;
107 DISALLOW_COPY_AND_ASSIGN(Subscription);
110 // Add a callback to the list. The callback will remain registered until the
111 // returned Subscription is destroyed, which must occur before the
112 // CallbackList is destroyed.
113 scoped_ptr<Subscription> Add(const CallbackType& cb) {
114 DCHECK(!cb.is_null());
115 return scoped_ptr<Subscription>(
116 new Subscription(this, callbacks_.insert(callbacks_.end(), cb)));
120 // An iterator class that can be used to access the list of callbacks.
123 explicit Iterator(CallbackListBase<CallbackType>* list)
125 list_iter_(list_->callbacks_.begin()) {
126 ++list_->active_iterator_count_;
129 Iterator(const Iterator& iter)
131 list_iter_(iter.list_iter_) {
132 ++list_->active_iterator_count_;
136 if (list_ && --list_->active_iterator_count_ == 0) {
141 CallbackType* GetNext() {
142 while ((list_iter_ != list_->callbacks_.end()) && list_iter_->is_null())
145 CallbackType* cb = NULL;
146 if (list_iter_ != list_->callbacks_.end()) {
154 CallbackListBase<CallbackType>* list_;
155 typename std::list<CallbackType>::iterator list_iter_;
158 CallbackListBase() : active_iterator_count_(0) {}
160 ~CallbackListBase() {
161 DCHECK_EQ(0, active_iterator_count_);
162 DCHECK_EQ(0U, callbacks_.size());
165 // Returns an instance of a CallbackListBase::Iterator which can be used
167 Iterator GetIterator() {
168 return Iterator(this);
171 // Compact the list: remove any entries which were NULLed out during
174 typename std::list<CallbackType>::iterator it = callbacks_.begin();
175 while (it != callbacks_.end()) {
177 it = callbacks_.erase(it);
184 std::list<CallbackType> callbacks_;
185 int active_iterator_count_;
187 DISALLOW_COPY_AND_ASSIGN(CallbackListBase);
190 } // namespace internal
192 template <typename Sig> class CallbackList;
195 $range ARITY 0..MAX_ARITY
201 class CallbackList<void(void)>
202 : public internal::CallbackListBase<Callback<void(void)> > {
204 template <$for ARG , [[typename A$(ARG)]]>
205 class CallbackList<void($for ARG , [[A$(ARG)]])>
206 : public internal::CallbackListBase<Callback<void($for ARG , [[A$(ARG)]])> > {
212 typedef Callback<void(void)> CallbackType;
215 typedef Callback<void($for ARG , [[A$(ARG)]])> CallbackType;
221 void Notify($for ARG ,
222 [[typename internal::CallbackParamTraits<A$(ARG)>::ForwardType a$(ARG)]]) {
225 internal::CallbackListBase<CallbackType>::Iterator it =
229 typename internal::CallbackListBase<CallbackType>::Iterator it =
234 while ((cb = it.GetNext()) != NULL) {
235 cb->Run($for ARG , [[a$(ARG)]]);
240 DISALLOW_COPY_AND_ASSIGN(CallbackList);
247 #endif // BASE_CALLBACK_LIST_H_