| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/synchronization/waitable_event_watcher.h" | 5 #include "base/synchronization/waitable_event_watcher.h" |
| 6 | 6 |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 #include "base/synchronization/waitable_event.h" | 8 #include "base/synchronization/waitable_event.h" |
| 9 #include "base/win/object_watcher.h" | 9 #include "base/win/object_watcher.h" |
| 10 | 10 |
| 11 namespace base { | 11 namespace base { |
| 12 | 12 |
| 13 WaitableEventWatcher::ObjectWatcherHelper::ObjectWatcherHelper( |
| 14 WaitableEventWatcher* watcher) |
| 15 : watcher_(watcher) { |
| 16 }; |
| 17 |
| 18 void WaitableEventWatcher::ObjectWatcherHelper::OnObjectSignaled(HANDLE h) { |
| 19 watcher_->OnObjectSignaled(); |
| 20 } |
| 21 |
| 22 |
| 13 WaitableEventWatcher::WaitableEventWatcher() | 23 WaitableEventWatcher::WaitableEventWatcher() |
| 14 : event_(NULL) { | 24 : ALLOW_THIS_IN_INITIALIZER_LIST(helper_(this)), |
| 25 event_(NULL), |
| 26 delegate_(NULL) { |
| 15 } | 27 } |
| 16 | 28 |
| 17 WaitableEventWatcher::~WaitableEventWatcher() { | 29 WaitableEventWatcher::~WaitableEventWatcher() { |
| 18 } | 30 } |
| 19 | 31 |
| 20 bool WaitableEventWatcher::StartWatching( | 32 bool WaitableEventWatcher::StartWatching(WaitableEvent* event, |
| 21 WaitableEvent* event, | 33 Delegate* delegate) { |
| 22 const EventCallback& callback) { | 34 delegate_ = delegate; |
| 23 callback_ = callback; | |
| 24 event_ = event; | 35 event_ = event; |
| 25 return watcher_.StartWatching(event->handle(), this); | 36 |
| 37 return watcher_.StartWatching(event->handle(), &helper_); |
| 26 } | 38 } |
| 27 | 39 |
| 28 void WaitableEventWatcher::StopWatching() { | 40 void WaitableEventWatcher::StopWatching() { |
| 29 callback_.Reset(); | 41 delegate_ = NULL; |
| 30 event_ = NULL; | 42 event_ = NULL; |
| 31 watcher_.StopWatching(); | 43 watcher_.StopWatching(); |
| 32 } | 44 } |
| 33 | 45 |
| 34 WaitableEvent* WaitableEventWatcher::GetWatchedEvent() { | 46 WaitableEvent* WaitableEventWatcher::GetWatchedEvent() { |
| 35 return event_; | 47 return event_; |
| 36 } | 48 } |
| 37 | 49 |
| 38 void WaitableEventWatcher::OnObjectSignaled(HANDLE h) { | 50 void WaitableEventWatcher::OnObjectSignaled() { |
| 39 WaitableEvent* event = event_; | 51 WaitableEvent* event = event_; |
| 40 EventCallback callback = callback_; | 52 Delegate* delegate = delegate_; |
| 41 event_ = NULL; | 53 event_ = NULL; |
| 42 callback_.Reset(); | 54 delegate_ = NULL; |
| 43 DCHECK(event); | 55 DCHECK(event); |
| 44 | 56 |
| 45 callback.Run(event); | 57 delegate->OnWaitableEventSignaled(event); |
| 46 } | 58 } |
| 47 | 59 |
| 48 } // namespace base | 60 } // namespace base |
| OLD | NEW |