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

Unified Diff: chrome/browser/sync_file_system/drive_backend/callback_tracker.h

Issue 310383002: [SyncFS] Introduce CallbackTracker to handle callback abortion (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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: chrome/browser/sync_file_system/drive_backend/callback_tracker.h
diff --git a/chrome/browser/sync_file_system/drive_backend/callback_tracker.h b/chrome/browser/sync_file_system/drive_backend/callback_tracker.h
new file mode 100644
index 0000000000000000000000000000000000000000..3943452ec87a60284744677e9bbc3601d595a473
--- /dev/null
+++ b/chrome/browser/sync_file_system/drive_backend/callback_tracker.h
@@ -0,0 +1,72 @@
+// Copyright 2014 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.
+
+#ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_CALLBACK_TRACKER_H_
+#define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_CALLBACK_TRACKER_H_
+
+#include <map>
+
+#include "base/bind.h"
+#include "base/callback_forward.h"
+#include "base/memory/weak_ptr.h"
+#include "chrome/browser/sync_file_system/drive_backend/callback_tracker_internal.h"
+
+namespace sync_file_system {
+namespace drive_backend {
+
+// A helper class to ensure one-shot callback to be called exactly once.
+//
+// Usage:
+// class Foo {
+// private:
+// CallbackTracker callback_tracker_;
+// };
+//
+// void DoSomethingAsync(const SomeCallbackType& callback) {
+// base::Closure abort_case_handler = base::Bind(callback, ABORT_ERROR);
+//
+// SomeCallbackType wrapped_callback =
+// callback_tracker_.Register(
+// abort_case_handler, callback);
+//
+// // The body of the operation goes here.
+// }
+class CallbackTracker {
+ public:
+ typedef std::map<internal::AbortHelper*, base::Closure> AbortClosureByHelper;
+
+ CallbackTracker();
+ ~CallbackTracker();
+
+ // Returns a wrapped callback.
+ // Upon AbortAll() call, CallbackTracker invokes |abort_closure| and voids all
+ // wrapped callbacks returned by Register().
+ // Invocation of the wrapped callback unregisters |callback| from
+ // CallbackTracker.
+ template <typename T>
+ base::Callback<T> Register(const base::Closure& abort_closure,
+ const base::Callback<T>& callback) {
+ internal::AbortHelper* helper = new internal::AbortHelper(this);
+ helpers_[helper] = abort_closure;
+ return base::Bind(&internal::InvokeAndInvalidateHelper<T>::Run,
+ helper->AsWeakPtr(), callback);
+ }
+
+ void AbortAll();
+
+ private:
+ friend class internal::AbortHelper;
+
+ scoped_ptr<internal::AbortHelper> PassAbortHelper(
+ internal::AbortHelper* helper);
+
+ AbortClosureByHelper helpers_; // Owns Wrapper.
nhiroki 2014/06/04 09:16:47 What's "Wrapper"?
tzik 2014/06/04 09:45:24 Ah, it's the old name of Helper. Updated!
+
+ DISALLOW_COPY_AND_ASSIGN(CallbackTracker);
+};
+
+} // namespace drive_backend
+} // namespace sync_file_system
+
+#endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_CALLBACK_TRACKER_H_

Powered by Google App Engine
This is Rietveld 408576698