Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(645)

Unified Diff: mojo/system/waiter_list.cc

Issue 23621056: Initial in-process implementation of some Mojo primitives. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/system/waiter_list.cc
diff --git a/mojo/system/waiter_list.cc b/mojo/system/waiter_list.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6f2c44411eb10d89fef8229a30fa51e3b3b73665
--- /dev/null
+++ b/mojo/system/waiter_list.cc
@@ -0,0 +1,57 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "mojo/system/waiter_list.h"
+
+#include "base/logging.h"
+#include "mojo/system/waiter.h"
+
+namespace mojo {
+namespace system {
+
+WaiterList::WaiterList() {
+}
+
+WaiterList::~WaiterList() {
+ DCHECK(waiters_.empty());
+}
+
+void WaiterList::AwakeWaitersForStateChange(MojoWaitFlags satisfied_flags,
+ MojoWaitFlags satisfiable_flags) {
+ for (WaiterInfoList::iterator it = waiters_.begin(); it != waiters_.end();
+ ++it) {
+ if (it->flags & satisfied_flags)
+ it->waiter->Awake(it->wake_result);
+ else if (!(it->flags & satisfiable_flags))
+ it->waiter->Awake(MOJO_RESULT_FAILED_PRECONDITION);
+ }
+}
+
+void WaiterList::CancelAllWaiters() {
+ for (WaiterInfoList::iterator it = waiters_.begin(); it != waiters_.end();
+ ++it) {
+ it->waiter->Awake(MOJO_RESULT_CANCELLED);
+ }
+ waiters_.clear();
+}
+
+void WaiterList::AddWaiter(Waiter* waiter,
+ MojoWaitFlags flags,
+ MojoResult wake_result) {
+ waiters_.push_back(WaiterInfo(waiter, flags, wake_result));
+}
+
+void WaiterList::RemoveWaiter(Waiter* waiter) {
+ // We allow a thread to wait on the same handle multiple times simultaneously,
+ // so we need to scan the entire list and remove all occurrences of |waiter|.
+ for (WaiterInfoList::iterator it = waiters_.begin(); it != waiters_.end();) {
+ WaiterInfoList::iterator maybe_delete = it;
+ ++it;
+ if (maybe_delete->waiter == waiter)
+ waiters_.erase(maybe_delete);
+ }
+}
+
+} // namespace system
+} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698