Index: extensions/common/one_shot_event.cc |
diff --git a/extensions/common/one_shot_event.cc b/extensions/common/one_shot_event.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b3c6913551cdacb1b9302950bce572e2e0b82576 |
--- /dev/null |
+++ b/extensions/common/one_shot_event.cc |
@@ -0,0 +1,66 @@ |
+// Copyright (c) 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 "extensions/common/one_shot_event.h" |
+ |
+#include "base/callback.h" |
+#include "base/location.h" |
+#include "base/message_loop/message_loop_proxy.h" |
+#include "base/task_runner.h" |
+ |
+using base::TaskRunner; |
+ |
+namespace extensions { |
+ |
+struct OneShotEvent::TaskInfo { |
+ TaskInfo() {} |
+ TaskInfo(const tracked_objects::Location& from_here, |
+ const scoped_refptr<TaskRunner>& runner, |
+ const base::Closure& task) |
+ : from_here(from_here), runner(runner), task(task) { |
+ CHECK(runner != NULL); // Detect mistakes with a decent stack frame. |
not at google - send to devlin
2013/05/16 15:51:08
just CHECK(runner)?
Jeffrey Yasskin
2013/05/16 19:05:36
I have no idea. Sure.
|
+ } |
+ tracked_objects::Location from_here; |
+ scoped_refptr<TaskRunner> runner; |
+ base::Closure task; |
+}; |
+ |
+OneShotEvent::OneShotEvent() : signaled_(false) {} |
+OneShotEvent::~OneShotEvent() {} |
+ |
+void OneShotEvent::ThenRun(const tracked_objects::Location& from_here, |
+ const base::Closure& task) const { |
not at google - send to devlin
2013/05/16 15:51:08
indentation +1
looks like there are a couple of ot
Jeffrey Yasskin
2013/05/16 19:05:36
Oops, done.
|
+ ThenRun(from_here, task, base::MessageLoopProxy::current()); |
+} |
+ |
+void OneShotEvent::ThenRun(const tracked_objects::Location& from_here, |
+ const base::Closure& task, |
+ const scoped_refptr<TaskRunner>& runner) const { |
+ DCHECK(thread_checker_.CalledOnValidThread()); |
+ |
+ if (is_signaled()) { |
not at google - send to devlin
2013/05/16 15:51:08
I actually wonder if this may at some point cause
Jeffrey Yasskin
2013/05/16 19:05:36
We talked about this offline, and agreed on the fo
Matt Perry
2013/05/16 19:12:04
RunWhenSignaled?
Jeffrey Yasskin
2013/05/16 19:14:42
I dislike that one because it implies the task wil
Jeffrey Yasskin
2013/05/16 21:36:16
A quick vote in the extensions room concluded that
|
+ runner->PostTask(from_here, task); |
+ } else { |
+ tasks_.push_back(TaskInfo(from_here, runner, task)); |
+ } |
+} |
+ |
+void OneShotEvent::Signal() { |
+ DCHECK(thread_checker_.CalledOnValidThread()); |
+ |
+ CHECK(!signaled_) << "Only call Signal once."; |
+ |
+ signaled_ = true; |
+ // After this point, a call to ThenRun() from one of the queued |
+ // tasks could proceed immediately, but the fact that this object is |
+ // single-threaded prevents that from being relevant. |
+ |
+ // We could randomize tasks_ in debug mode in order to check that |
+ // the order doesn't matter... |
+ for (size_t i = 0; i < tasks_.size(); ++i) { |
+ tasks_[i].runner->PostTask(tasks_[i].from_here, tasks_[i].task); |
+ } |
+} |
+ |
+} // namespace extensions |