[email protected] | 3fe674d | 2012-04-05 17:52:10 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 4 | |
| 5 | #include "base/observer_list.h" |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 6 | #include "base/observer_list_threadsafe.h" |
[email protected] | 3c0d45e | 2010-09-17 19:33:06 | [diff] [blame] | 7 | |
| 8 | #include <vector> |
| 9 | |
[email protected] | a6ffd7d | 2011-10-12 20:26:50 | [diff] [blame] | 10 | #include "base/compiler_specific.h" |
skyostil | 054861d | 2015-04-30 19:06:15 | [diff] [blame] | 11 | #include "base/location.h" |
[email protected] | a6ffd7d | 2011-10-12 20:26:50 | [diff] [blame] | 12 | #include "base/memory/weak_ptr.h" |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 13 | #include "base/run_loop.h" |
skyostil | 054861d | 2015-04-30 19:06:15 | [diff] [blame] | 14 | #include "base/single_thread_task_runner.h" |
[email protected] | ce072a7 | 2010-12-31 20:02:16 | [diff] [blame] | 15 | #include "base/threading/platform_thread.h" |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 16 | #include "testing/gtest/include/gtest/gtest.h" |
| 17 | |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 18 | namespace base { |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 19 | namespace { |
| 20 | |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 21 | class Foo { |
| 22 | public: |
| 23 | virtual void Observe(int x) = 0; |
[email protected] | bf92cfbe | 2008-08-08 16:37:43 | [diff] [blame] | 24 | virtual ~Foo() {} |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 25 | }; |
| 26 | |
| 27 | class Adder : public Foo { |
| 28 | public: |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 29 | explicit Adder(int scaler) : total(0), scaler_(scaler) {} |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 30 | void Observe(int x) override { total += x * scaler_; } |
| 31 | ~Adder() override {} |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 32 | int total; |
[email protected] | 4410618 | 2012-04-06 03:53:02 | [diff] [blame] | 33 | |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 34 | private: |
| 35 | int scaler_; |
| 36 | }; |
| 37 | |
| 38 | class Disrupter : public Foo { |
| 39 | public: |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 40 | Disrupter(ObserverList<Foo>* list, Foo* doomed) |
[email protected] | 4410618 | 2012-04-06 03:53:02 | [diff] [blame] | 41 | : list_(list), |
| 42 | doomed_(doomed) { |
| 43 | } |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 44 | ~Disrupter() override {} |
| 45 | void Observe(int x) override { list_->RemoveObserver(doomed_); } |
[email protected] | 4410618 | 2012-04-06 03:53:02 | [diff] [blame] | 46 | |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 47 | private: |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 48 | ObserverList<Foo>* list_; |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 49 | Foo* doomed_; |
| 50 | }; |
| 51 | |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 52 | class ThreadSafeDisrupter : public Foo { |
| 53 | public: |
| 54 | ThreadSafeDisrupter(ObserverListThreadSafe<Foo>* list, Foo* doomed) |
[email protected] | 4410618 | 2012-04-06 03:53:02 | [diff] [blame] | 55 | : list_(list), |
| 56 | doomed_(doomed) { |
| 57 | } |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 58 | ~ThreadSafeDisrupter() override {} |
| 59 | void Observe(int x) override { list_->RemoveObserver(doomed_); } |
[email protected] | 4410618 | 2012-04-06 03:53:02 | [diff] [blame] | 60 | |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 61 | private: |
| 62 | ObserverListThreadSafe<Foo>* list_; |
| 63 | Foo* doomed_; |
| 64 | }; |
| 65 | |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 66 | template <typename ObserverListType> |
[email protected] | b3e2fad0 | 2008-10-31 03:32:06 | [diff] [blame] | 67 | class AddInObserve : public Foo { |
| 68 | public: |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 69 | explicit AddInObserve(ObserverListType* observer_list) |
[email protected] | b3e2fad0 | 2008-10-31 03:32:06 | [diff] [blame] | 70 | : added(false), |
| 71 | observer_list(observer_list), |
| 72 | adder(1) { |
| 73 | } |
[email protected] | 4410618 | 2012-04-06 03:53:02 | [diff] [blame] | 74 | |
nick | c0b00106 | 2015-04-22 23:17:20 | [diff] [blame] | 75 | void Observe(int x) override { |
[email protected] | b3e2fad0 | 2008-10-31 03:32:06 | [diff] [blame] | 76 | if (!added) { |
| 77 | added = true; |
| 78 | observer_list->AddObserver(&adder); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | bool added; |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 83 | ObserverListType* observer_list; |
[email protected] | b3e2fad0 | 2008-10-31 03:32:06 | [diff] [blame] | 84 | Adder adder; |
| 85 | }; |
| 86 | |
| 87 | |
[email protected] | ce29201 | 2009-11-05 18:46:47 | [diff] [blame] | 88 | static const int kThreadRunTime = 2000; // ms to run the multi-threaded test. |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 89 | |
| 90 | // A thread for use in the ThreadSafeObserver test |
| 91 | // which will add and remove itself from the notification |
| 92 | // list repeatedly. |
| 93 | class AddRemoveThread : public PlatformThread::Delegate, |
| 94 | public Foo { |
| 95 | public: |
| 96 | AddRemoveThread(ObserverListThreadSafe<Foo>* list, bool notify) |
| 97 | : list_(list), |
robliao | 6f5e423 | 2015-04-23 22:45:32 | [diff] [blame] | 98 | loop_(nullptr), |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 99 | in_list_(false), |
| 100 | start_(Time::Now()), |
| 101 | count_observes_(0), |
| 102 | count_addtask_(0), |
[email protected] | a6ffd7d | 2011-10-12 20:26:50 | [diff] [blame] | 103 | do_notifies_(notify), |
[email protected] | c9f977b | 2013-04-25 12:17:15 | [diff] [blame] | 104 | weak_factory_(this) { |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 105 | } |
| 106 | |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 107 | ~AddRemoveThread() override {} |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 108 | |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 109 | void ThreadMain() override { |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 110 | loop_ = new MessageLoop(); // Fire up a message loop. |
skyostil | 054861d | 2015-04-30 19:06:15 | [diff] [blame] | 111 | loop_->task_runner()->PostTask( |
[email protected] | a6ffd7d | 2011-10-12 20:26:50 | [diff] [blame] | 112 | FROM_HERE, |
| 113 | base::Bind(&AddRemoveThread::AddTask, weak_factory_.GetWeakPtr())); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 114 | loop_->Run(); |
[email protected] | 52a261f | 2009-03-03 15:01:12 | [diff] [blame] | 115 | //LOG(ERROR) << "Loop 0x" << std::hex << loop_ << " done. " << |
| 116 | // count_observes_ << ", " << count_addtask_; |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 117 | delete loop_; |
| 118 | loop_ = reinterpret_cast<MessageLoop*>(0xdeadbeef); |
[email protected] | bd60d73 | 2009-01-05 19:40:53 | [diff] [blame] | 119 | delete this; |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | // This task just keeps posting to itself in an attempt |
| 123 | // to race with the notifier. |
| 124 | void AddTask() { |
| 125 | count_addtask_++; |
| 126 | |
| 127 | if ((Time::Now() - start_).InMilliseconds() > kThreadRunTime) { |
[email protected] | b026e35d | 2010-10-19 02:31:03 | [diff] [blame] | 128 | VLOG(1) << "DONE!"; |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 129 | return; |
| 130 | } |
| 131 | |
| 132 | if (!in_list_) { |
| 133 | list_->AddObserver(this); |
| 134 | in_list_ = true; |
| 135 | } |
| 136 | |
| 137 | if (do_notifies_) { |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 138 | list_->Notify(FROM_HERE, &Foo::Observe, 10); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 139 | } |
| 140 | |
skyostil | 054861d | 2015-04-30 19:06:15 | [diff] [blame] | 141 | loop_->task_runner()->PostTask( |
[email protected] | a6ffd7d | 2011-10-12 20:26:50 | [diff] [blame] | 142 | FROM_HERE, |
| 143 | base::Bind(&AddRemoveThread::AddTask, weak_factory_.GetWeakPtr())); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | void Quit() { |
skyostil | 054861d | 2015-04-30 19:06:15 | [diff] [blame] | 147 | loop_->task_runner()->PostTask(FROM_HERE, |
| 148 | MessageLoop::QuitWhenIdleClosure()); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 149 | } |
| 150 | |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 151 | void Observe(int x) override { |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 152 | count_observes_++; |
| 153 | |
| 154 | // If we're getting called after we removed ourselves from |
| 155 | // the list, that is very bad! |
| 156 | DCHECK(in_list_); |
| 157 | |
| 158 | // This callback should fire on the appropriate thread |
| 159 | EXPECT_EQ(loop_, MessageLoop::current()); |
| 160 | |
| 161 | list_->RemoveObserver(this); |
| 162 | in_list_ = false; |
| 163 | } |
| 164 | |
| 165 | private: |
| 166 | ObserverListThreadSafe<Foo>* list_; |
| 167 | MessageLoop* loop_; |
| 168 | bool in_list_; // Are we currently registered for notifications. |
| 169 | // in_list_ is only used on |this| thread. |
| 170 | Time start_; // The time we started the test. |
| 171 | |
| 172 | int count_observes_; // Number of times we observed. |
| 173 | int count_addtask_; // Number of times thread AddTask was called |
| 174 | bool do_notifies_; // Whether these threads should do notifications. |
| 175 | |
[email protected] | a6ffd7d | 2011-10-12 20:26:50 | [diff] [blame] | 176 | base::WeakPtrFactory<AddRemoveThread> weak_factory_; |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 177 | }; |
| 178 | |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 179 | TEST(ObserverListTest, BasicTest) { |
| 180 | ObserverList<Foo> observer_list; |
[email protected] | 631739f | 2011-06-05 07:07:12 | [diff] [blame] | 181 | Adder a(1), b(-1), c(1), d(-1), e(-1); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 182 | Disrupter evil(&observer_list, &c); |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 183 | |
| 184 | observer_list.AddObserver(&a); |
| 185 | observer_list.AddObserver(&b); |
| 186 | |
mgiuca | 64ccf236 | 2014-11-10 06:44:23 | [diff] [blame] | 187 | EXPECT_TRUE(observer_list.HasObserver(&a)); |
| 188 | EXPECT_FALSE(observer_list.HasObserver(&c)); |
| 189 | |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 190 | FOR_EACH_OBSERVER(Foo, observer_list, Observe(10)); |
| 191 | |
| 192 | observer_list.AddObserver(&evil); |
| 193 | observer_list.AddObserver(&c); |
| 194 | observer_list.AddObserver(&d); |
| 195 | |
[email protected] | 631739f | 2011-06-05 07:07:12 | [diff] [blame] | 196 | // Removing an observer not in the list should do nothing. |
| 197 | observer_list.RemoveObserver(&e); |
| 198 | |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 199 | FOR_EACH_OBSERVER(Foo, observer_list, Observe(10)); |
| 200 | |
[email protected] | 14cf910 | 2012-08-23 09:59:19 | [diff] [blame] | 201 | EXPECT_EQ(20, a.total); |
| 202 | EXPECT_EQ(-20, b.total); |
| 203 | EXPECT_EQ(0, c.total); |
| 204 | EXPECT_EQ(-10, d.total); |
| 205 | EXPECT_EQ(0, e.total); |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 206 | } |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 207 | |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 208 | TEST(ObserverListThreadSafeTest, BasicTest) { |
| 209 | MessageLoop loop; |
| 210 | |
| 211 | scoped_refptr<ObserverListThreadSafe<Foo> > observer_list( |
| 212 | new ObserverListThreadSafe<Foo>); |
| 213 | Adder a(1); |
| 214 | Adder b(-1); |
| 215 | Adder c(1); |
| 216 | Adder d(-1); |
| 217 | ThreadSafeDisrupter evil(observer_list.get(), &c); |
| 218 | |
| 219 | observer_list->AddObserver(&a); |
| 220 | observer_list->AddObserver(&b); |
| 221 | |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 222 | observer_list->Notify(FROM_HERE, &Foo::Observe, 10); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 223 | RunLoop().RunUntilIdle(); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 224 | |
| 225 | observer_list->AddObserver(&evil); |
| 226 | observer_list->AddObserver(&c); |
| 227 | observer_list->AddObserver(&d); |
| 228 | |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 229 | observer_list->Notify(FROM_HERE, &Foo::Observe, 10); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 230 | RunLoop().RunUntilIdle(); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 231 | |
[email protected] | 14cf910 | 2012-08-23 09:59:19 | [diff] [blame] | 232 | EXPECT_EQ(20, a.total); |
| 233 | EXPECT_EQ(-20, b.total); |
| 234 | EXPECT_EQ(0, c.total); |
| 235 | EXPECT_EQ(-10, d.total); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 236 | } |
| 237 | |
[email protected] | 631739f | 2011-06-05 07:07:12 | [diff] [blame] | 238 | TEST(ObserverListThreadSafeTest, RemoveObserver) { |
| 239 | MessageLoop loop; |
| 240 | |
| 241 | scoped_refptr<ObserverListThreadSafe<Foo> > observer_list( |
| 242 | new ObserverListThreadSafe<Foo>); |
| 243 | Adder a(1), b(1); |
| 244 | |
[email protected] | 3fe674d | 2012-04-05 17:52:10 | [diff] [blame] | 245 | // A workaround for the compiler bug. See http://crbug.com/121960. |
| 246 | EXPECT_NE(&a, &b); |
| 247 | |
[email protected] | 631739f | 2011-06-05 07:07:12 | [diff] [blame] | 248 | // Should do nothing. |
| 249 | observer_list->RemoveObserver(&a); |
| 250 | observer_list->RemoveObserver(&b); |
| 251 | |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 252 | observer_list->Notify(FROM_HERE, &Foo::Observe, 10); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 253 | RunLoop().RunUntilIdle(); |
[email protected] | 631739f | 2011-06-05 07:07:12 | [diff] [blame] | 254 | |
[email protected] | 14cf910 | 2012-08-23 09:59:19 | [diff] [blame] | 255 | EXPECT_EQ(0, a.total); |
| 256 | EXPECT_EQ(0, b.total); |
[email protected] | 631739f | 2011-06-05 07:07:12 | [diff] [blame] | 257 | |
| 258 | observer_list->AddObserver(&a); |
| 259 | |
| 260 | // Should also do nothing. |
| 261 | observer_list->RemoveObserver(&b); |
| 262 | |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 263 | observer_list->Notify(FROM_HERE, &Foo::Observe, 10); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 264 | RunLoop().RunUntilIdle(); |
[email protected] | 631739f | 2011-06-05 07:07:12 | [diff] [blame] | 265 | |
[email protected] | 14cf910 | 2012-08-23 09:59:19 | [diff] [blame] | 266 | EXPECT_EQ(10, a.total); |
| 267 | EXPECT_EQ(0, b.total); |
[email protected] | 631739f | 2011-06-05 07:07:12 | [diff] [blame] | 268 | } |
| 269 | |
[email protected] | c2b1b30 | 2011-11-23 20:34:04 | [diff] [blame] | 270 | TEST(ObserverListThreadSafeTest, WithoutMessageLoop) { |
| 271 | scoped_refptr<ObserverListThreadSafe<Foo> > observer_list( |
| 272 | new ObserverListThreadSafe<Foo>); |
| 273 | |
| 274 | Adder a(1), b(1), c(1); |
| 275 | |
| 276 | // No MessageLoop, so these should not be added. |
| 277 | observer_list->AddObserver(&a); |
| 278 | observer_list->AddObserver(&b); |
| 279 | |
| 280 | { |
| 281 | // Add c when there's a loop. |
| 282 | MessageLoop loop; |
| 283 | observer_list->AddObserver(&c); |
| 284 | |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 285 | observer_list->Notify(FROM_HERE, &Foo::Observe, 10); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 286 | RunLoop().RunUntilIdle(); |
[email protected] | c2b1b30 | 2011-11-23 20:34:04 | [diff] [blame] | 287 | |
| 288 | EXPECT_EQ(0, a.total); |
| 289 | EXPECT_EQ(0, b.total); |
| 290 | EXPECT_EQ(10, c.total); |
| 291 | |
| 292 | // Now add a when there's a loop. |
| 293 | observer_list->AddObserver(&a); |
| 294 | |
| 295 | // Remove c when there's a loop. |
| 296 | observer_list->RemoveObserver(&c); |
| 297 | |
| 298 | // Notify again. |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 299 | observer_list->Notify(FROM_HERE, &Foo::Observe, 20); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 300 | RunLoop().RunUntilIdle(); |
[email protected] | c2b1b30 | 2011-11-23 20:34:04 | [diff] [blame] | 301 | |
| 302 | EXPECT_EQ(20, a.total); |
| 303 | EXPECT_EQ(0, b.total); |
| 304 | EXPECT_EQ(10, c.total); |
| 305 | } |
| 306 | |
| 307 | // Removing should always succeed with or without a loop. |
| 308 | observer_list->RemoveObserver(&a); |
| 309 | |
| 310 | // Notifying should not fail but should also be a no-op. |
| 311 | MessageLoop loop; |
| 312 | observer_list->AddObserver(&b); |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 313 | observer_list->Notify(FROM_HERE, &Foo::Observe, 30); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 314 | RunLoop().RunUntilIdle(); |
[email protected] | c2b1b30 | 2011-11-23 20:34:04 | [diff] [blame] | 315 | |
| 316 | EXPECT_EQ(20, a.total); |
| 317 | EXPECT_EQ(30, b.total); |
| 318 | EXPECT_EQ(10, c.total); |
| 319 | } |
| 320 | |
[email protected] | 3c0d45e | 2010-09-17 19:33:06 | [diff] [blame] | 321 | class FooRemover : public Foo { |
| 322 | public: |
| 323 | explicit FooRemover(ObserverListThreadSafe<Foo>* list) : list_(list) {} |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 324 | ~FooRemover() override {} |
[email protected] | 3c0d45e | 2010-09-17 19:33:06 | [diff] [blame] | 325 | |
| 326 | void AddFooToRemove(Foo* foo) { |
| 327 | foos_.push_back(foo); |
| 328 | } |
| 329 | |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 330 | void Observe(int x) override { |
[email protected] | 3c0d45e | 2010-09-17 19:33:06 | [diff] [blame] | 331 | std::vector<Foo*> tmp; |
| 332 | tmp.swap(foos_); |
| 333 | for (std::vector<Foo*>::iterator it = tmp.begin(); |
| 334 | it != tmp.end(); ++it) { |
| 335 | list_->RemoveObserver(*it); |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | private: |
| 340 | const scoped_refptr<ObserverListThreadSafe<Foo> > list_; |
| 341 | std::vector<Foo*> foos_; |
| 342 | }; |
| 343 | |
| 344 | TEST(ObserverListThreadSafeTest, RemoveMultipleObservers) { |
| 345 | MessageLoop loop; |
| 346 | scoped_refptr<ObserverListThreadSafe<Foo> > observer_list( |
| 347 | new ObserverListThreadSafe<Foo>); |
| 348 | |
[email protected] | 3703e92 | 2013-05-31 21:37:53 | [diff] [blame] | 349 | FooRemover a(observer_list.get()); |
[email protected] | 3c0d45e | 2010-09-17 19:33:06 | [diff] [blame] | 350 | Adder b(1); |
| 351 | |
| 352 | observer_list->AddObserver(&a); |
| 353 | observer_list->AddObserver(&b); |
| 354 | |
| 355 | a.AddFooToRemove(&a); |
| 356 | a.AddFooToRemove(&b); |
| 357 | |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 358 | observer_list->Notify(FROM_HERE, &Foo::Observe, 1); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 359 | RunLoop().RunUntilIdle(); |
[email protected] | 3c0d45e | 2010-09-17 19:33:06 | [diff] [blame] | 360 | } |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 361 | |
| 362 | // A test driver for a multi-threaded notification loop. Runs a number |
| 363 | // of observer threads, each of which constantly adds/removes itself |
| 364 | // from the observer list. Optionally, if cross_thread_notifies is set |
| 365 | // to true, the observer threads will also trigger notifications to |
| 366 | // all observers. |
[email protected] | 52a261f | 2009-03-03 15:01:12 | [diff] [blame] | 367 | static void ThreadSafeObserverHarness(int num_threads, |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 368 | bool cross_thread_notifies) { |
| 369 | MessageLoop loop; |
| 370 | |
| 371 | const int kMaxThreads = 15; |
| 372 | num_threads = num_threads > kMaxThreads ? kMaxThreads : num_threads; |
| 373 | |
| 374 | scoped_refptr<ObserverListThreadSafe<Foo> > observer_list( |
| 375 | new ObserverListThreadSafe<Foo>); |
| 376 | Adder a(1); |
| 377 | Adder b(-1); |
| 378 | Adder c(1); |
| 379 | Adder d(-1); |
| 380 | |
| 381 | observer_list->AddObserver(&a); |
| 382 | observer_list->AddObserver(&b); |
| 383 | |
| 384 | AddRemoveThread* threaded_observer[kMaxThreads]; |
[email protected] | ce072a7 | 2010-12-31 20:02:16 | [diff] [blame] | 385 | base::PlatformThreadHandle threads[kMaxThreads]; |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 386 | for (int index = 0; index < num_threads; index++) { |
| 387 | threaded_observer[index] = new AddRemoveThread(observer_list.get(), false); |
| 388 | EXPECT_TRUE(PlatformThread::Create(0, |
| 389 | threaded_observer[index], &threads[index])); |
| 390 | } |
| 391 | |
| 392 | Time start = Time::Now(); |
| 393 | while (true) { |
| 394 | if ((Time::Now() - start).InMilliseconds() > kThreadRunTime) |
| 395 | break; |
| 396 | |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 397 | observer_list->Notify(FROM_HERE, &Foo::Observe, 10); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 398 | |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 399 | RunLoop().RunUntilIdle(); |
[email protected] | 503631c | 2008-10-22 23:09:21 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | for (int index = 0; index < num_threads; index++) { |
| 403 | threaded_observer[index]->Quit(); |
| 404 | PlatformThread::Join(threads[index]); |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | TEST(ObserverListThreadSafeTest, CrossThreadObserver) { |
| 409 | // Use 7 observer threads. Notifications only come from |
| 410 | // the main thread. |
| 411 | ThreadSafeObserverHarness(7, false); |
| 412 | } |
| 413 | |
| 414 | TEST(ObserverListThreadSafeTest, CrossThreadNotifications) { |
| 415 | // Use 3 observer threads. Notifications will fire from |
| 416 | // the main thread and all 3 observer threads. |
| 417 | ThreadSafeObserverHarness(3, true); |
| 418 | } |
[email protected] | b3e2fad0 | 2008-10-31 03:32:06 | [diff] [blame] | 419 | |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 420 | TEST(ObserverListThreadSafeTest, OutlivesMessageLoop) { |
| 421 | MessageLoop* loop = new MessageLoop; |
| 422 | scoped_refptr<ObserverListThreadSafe<Foo> > observer_list( |
| 423 | new ObserverListThreadSafe<Foo>); |
| 424 | |
| 425 | Adder a(1); |
| 426 | observer_list->AddObserver(&a); |
| 427 | delete loop; |
| 428 | // Test passes if we don't crash here. |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 429 | observer_list->Notify(FROM_HERE, &Foo::Observe, 1); |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 430 | } |
| 431 | |
[email protected] | b3e2fad0 | 2008-10-31 03:32:06 | [diff] [blame] | 432 | TEST(ObserverListTest, Existing) { |
| 433 | ObserverList<Foo> observer_list(ObserverList<Foo>::NOTIFY_EXISTING_ONLY); |
| 434 | Adder a(1); |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 435 | AddInObserve<ObserverList<Foo> > b(&observer_list); |
[email protected] | b3e2fad0 | 2008-10-31 03:32:06 | [diff] [blame] | 436 | |
| 437 | observer_list.AddObserver(&a); |
| 438 | observer_list.AddObserver(&b); |
| 439 | |
| 440 | FOR_EACH_OBSERVER(Foo, observer_list, Observe(1)); |
| 441 | |
| 442 | EXPECT_TRUE(b.added); |
| 443 | // B's adder should not have been notified because it was added during |
[email protected] | 6be50d7 | 2014-05-08 23:49:40 | [diff] [blame] | 444 | // notification. |
[email protected] | b3e2fad0 | 2008-10-31 03:32:06 | [diff] [blame] | 445 | EXPECT_EQ(0, b.adder.total); |
| 446 | |
| 447 | // Notify again to make sure b's adder is notified. |
| 448 | FOR_EACH_OBSERVER(Foo, observer_list, Observe(1)); |
| 449 | EXPECT_EQ(1, b.adder.total); |
| 450 | } |
[email protected] | 84aebed | 2010-02-25 03:09:41 | [diff] [blame] | 451 | |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 452 | // Same as above, but for ObserverListThreadSafe |
| 453 | TEST(ObserverListThreadSafeTest, Existing) { |
| 454 | MessageLoop loop; |
| 455 | scoped_refptr<ObserverListThreadSafe<Foo> > observer_list( |
| 456 | new ObserverListThreadSafe<Foo>(ObserverList<Foo>::NOTIFY_EXISTING_ONLY)); |
| 457 | Adder a(1); |
| 458 | AddInObserve<ObserverListThreadSafe<Foo> > b(observer_list.get()); |
| 459 | |
| 460 | observer_list->AddObserver(&a); |
| 461 | observer_list->AddObserver(&b); |
| 462 | |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 463 | observer_list->Notify(FROM_HERE, &Foo::Observe, 1); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 464 | RunLoop().RunUntilIdle(); |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 465 | |
| 466 | EXPECT_TRUE(b.added); |
| 467 | // B's adder should not have been notified because it was added during |
[email protected] | 6be50d7 | 2014-05-08 23:49:40 | [diff] [blame] | 468 | // notification. |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 469 | EXPECT_EQ(0, b.adder.total); |
| 470 | |
| 471 | // Notify again to make sure b's adder is notified. |
reillyg | 9a77a72 | 2015-02-09 20:18:33 | [diff] [blame] | 472 | observer_list->Notify(FROM_HERE, &Foo::Observe, 1); |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 473 | RunLoop().RunUntilIdle(); |
[email protected] | 920b1fe | 2011-08-09 21:29:59 | [diff] [blame] | 474 | EXPECT_EQ(1, b.adder.total); |
| 475 | } |
| 476 | |
[email protected] | 84aebed | 2010-02-25 03:09:41 | [diff] [blame] | 477 | class AddInClearObserve : public Foo { |
| 478 | public: |
| 479 | explicit AddInClearObserve(ObserverList<Foo>* list) |
| 480 | : list_(list), added_(false), adder_(1) {} |
| 481 | |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 482 | void Observe(int /* x */) override { |
[email protected] | 84aebed | 2010-02-25 03:09:41 | [diff] [blame] | 483 | list_->Clear(); |
| 484 | list_->AddObserver(&adder_); |
| 485 | added_ = true; |
| 486 | } |
| 487 | |
| 488 | bool added() const { return added_; } |
| 489 | const Adder& adder() const { return adder_; } |
| 490 | |
| 491 | private: |
| 492 | ObserverList<Foo>* const list_; |
| 493 | |
| 494 | bool added_; |
| 495 | Adder adder_; |
| 496 | }; |
| 497 | |
| 498 | TEST(ObserverListTest, ClearNotifyAll) { |
| 499 | ObserverList<Foo> observer_list; |
| 500 | AddInClearObserve a(&observer_list); |
| 501 | |
| 502 | observer_list.AddObserver(&a); |
| 503 | |
| 504 | FOR_EACH_OBSERVER(Foo, observer_list, Observe(1)); |
| 505 | EXPECT_TRUE(a.added()); |
| 506 | EXPECT_EQ(1, a.adder().total) |
| 507 | << "Adder should observe once and have sum of 1."; |
| 508 | } |
| 509 | |
| 510 | TEST(ObserverListTest, ClearNotifyExistingOnly) { |
| 511 | ObserverList<Foo> observer_list(ObserverList<Foo>::NOTIFY_EXISTING_ONLY); |
| 512 | AddInClearObserve a(&observer_list); |
| 513 | |
| 514 | observer_list.AddObserver(&a); |
| 515 | |
| 516 | FOR_EACH_OBSERVER(Foo, observer_list, Observe(1)); |
| 517 | EXPECT_TRUE(a.added()); |
| 518 | EXPECT_EQ(0, a.adder().total) |
| 519 | << "Adder should not observe, so sum should still be 0."; |
| 520 | } |
| 521 | |
[email protected] | 671b74d | 2011-06-09 03:41:18 | [diff] [blame] | 522 | class ListDestructor : public Foo { |
| 523 | public: |
| 524 | explicit ListDestructor(ObserverList<Foo>* list) : list_(list) {} |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 525 | ~ListDestructor() override {} |
[email protected] | 4410618 | 2012-04-06 03:53:02 | [diff] [blame] | 526 | |
dcheng | 5648818 | 2014-10-21 10:54:51 | [diff] [blame] | 527 | void Observe(int x) override { delete list_; } |
[email protected] | 2e58cbd | 2012-08-06 01:03:05 | [diff] [blame] | 528 | |
[email protected] | 671b74d | 2011-06-09 03:41:18 | [diff] [blame] | 529 | private: |
| 530 | ObserverList<Foo>* list_; |
| 531 | }; |
| 532 | |
| 533 | |
| 534 | TEST(ObserverListTest, IteratorOutlivesList) { |
| 535 | ObserverList<Foo>* observer_list = new ObserverList<Foo>; |
| 536 | ListDestructor a(observer_list); |
| 537 | observer_list->AddObserver(&a); |
| 538 | |
| 539 | FOR_EACH_OBSERVER(Foo, *observer_list, Observe(0)); |
| 540 | // If this test fails, there'll be Valgrind errors when this function goes out |
| 541 | // of scope. |
| 542 | } |
| 543 | |
[email protected] | 84aebed | 2010-02-25 03:09:41 | [diff] [blame] | 544 | } // namespace |
[email protected] | 7ff48ca | 2013-02-06 16:56:19 | [diff] [blame] | 545 | } // namespace base |