1 // Copyright (c) 2011 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.
5 #ifndef BASE_OBSERVER_LIST_H__
6 #define BASE_OBSERVER_LIST_H__
12 #include "base/basictypes.h"
13 #include "base/logging.h"
14 #include "base/memory/weak_ptr.h"
16 ///////////////////////////////////////////////////////////////////////////////
20 // A container for a list of observers. Unlike a normal STL vector or list,
21 // this container can be modified during iteration without invalidating the
22 // iterator. So, it safely handles the case of an observer removing itself
23 // or other observers from the list while observers are being notified.
33 // virtual void OnFoo(MyWidget* w) = 0;
34 // virtual void OnBar(MyWidget* w, int x, int y) = 0;
37 // void AddObserver(Observer* obs) {
38 // observer_list_.AddObserver(obs);
41 // void RemoveObserver(Observer* obs) {
42 // observer_list_.RemoveObserver(obs);
46 // FOR_EACH_OBSERVER(Observer, observer_list_, OnFoo(this));
49 // void NotifyBar(int x, int y) {
50 // FOR_EACH_OBSERVER(Observer, observer_list_, OnBar(this, x, y));
54 // ObserverList<Observer> observer_list_;
58 ///////////////////////////////////////////////////////////////////////////////
60 template <typename ObserverType
>
61 class ObserverListThreadSafe
;
63 template <class ObserverType
>
64 class ObserverListBase
65 : public base::SupportsWeakPtr
<ObserverListBase
<ObserverType
> > {
67 // Enumeration of which observers are notified.
68 enum NotificationType
{
69 // Specifies that any observers added during notification are notified.
70 // This is the default type if non type is provided to the constructor.
73 // Specifies that observers added while sending out notification are not
78 // An iterator class that can be used to access the list of observers. See
79 // also the FOR_EACH_OBSERVER macro defined below.
82 Iterator(ObserverListBase
<ObserverType
>& list
)
83 : list_(list
.AsWeakPtr()),
85 max_index_(list
.type_
== NOTIFY_ALL
?
86 std::numeric_limits
<size_t>::max() :
87 list
.observers_
.size()) {
88 ++list_
->notify_depth_
;
92 if (list_
.get() && --list_
->notify_depth_
== 0)
96 ObserverType
* GetNext() {
99 ListType
& observers
= list_
->observers_
;
100 // Advance if the current element is null
101 size_t max_index
= std::min(max_index_
, observers
.size());
102 while (index_
< max_index
&& !observers
[index_
])
104 return index_
< max_index
? observers
[index_
++] : NULL
;
108 base::WeakPtr
<ObserverListBase
<ObserverType
> > list_
;
113 ObserverListBase() : notify_depth_(0), type_(NOTIFY_ALL
) {}
114 explicit ObserverListBase(NotificationType type
)
115 : notify_depth_(0), type_(type
) {}
117 // Add an observer to the list. An observer should not be added to
118 // the same list more than once.
119 void AddObserver(ObserverType
* obs
) {
120 if (std::find(observers_
.begin(), observers_
.end(), obs
)
121 != observers_
.end()) {
122 NOTREACHED() << "Observers can only be added once!";
125 observers_
.push_back(obs
);
128 // Remove an observer from the list if it is in the list.
129 void RemoveObserver(ObserverType
* obs
) {
130 typename
ListType::iterator it
=
131 std::find(observers_
.begin(), observers_
.end(), obs
);
132 if (it
!= observers_
.end()) {
136 observers_
.erase(it
);
141 bool HasObserver(ObserverType
* observer
) const {
142 for (size_t i
= 0; i
< observers_
.size(); ++i
) {
143 if (observers_
[i
] == observer
)
151 for (typename
ListType::iterator it
= observers_
.begin();
152 it
!= observers_
.end(); ++it
) {
161 size_t size() const { return observers_
.size(); }
165 std::remove(observers_
.begin(), observers_
.end(),
166 static_cast<ObserverType
*>(NULL
)), observers_
.end());
170 friend class ObserverListThreadSafe
<ObserverType
>;
172 typedef std::vector
<ObserverType
*> ListType
;
176 NotificationType type_
;
178 friend class ObserverListBase::Iterator
;
180 DISALLOW_COPY_AND_ASSIGN(ObserverListBase
);
183 template <class ObserverType
, bool check_empty
= false>
184 class ObserverList
: public ObserverListBase
<ObserverType
> {
186 typedef typename ObserverListBase
<ObserverType
>::NotificationType
190 explicit ObserverList(NotificationType type
)
191 : ObserverListBase
<ObserverType
>(type
) {}
194 // When check_empty is true, assert that the list is empty on destruction.
196 ObserverListBase
<ObserverType
>::Compact();
197 DCHECK_EQ(ObserverListBase
<ObserverType
>::size(), 0U);
201 bool might_have_observers() const {
202 return ObserverListBase
<ObserverType
>::size() != 0;
206 #define FOR_EACH_OBSERVER(ObserverType, observer_list, func) \
208 if ((observer_list).might_have_observers()) { \
209 ObserverListBase<ObserverType>::Iterator \
210 it_inside_observer_macro(observer_list); \
212 while ((obs = it_inside_observer_macro.GetNext()) != NULL) \
217 #endif // BASE_OBSERVER_LIST_H__