// 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. #ifndef WEBKIT_BROWSER_QUOTA_QUOTA_CALLBACKS_H_ #define WEBKIT_BROWSER_QUOTA_QUOTA_CALLBACKS_H_ #include #include #include #include #include "base/basictypes.h" #include "base/callback.h" #include "base/tuple.h" #include "webkit/common/quota/quota_status_code.h" #include "webkit/common/quota/quota_types.h" class GURL; namespace quota { struct UsageInfo; typedef std::vector UsageInfoEntries; // Common callback types that are used throughout in the quota module. typedef base::Callback GlobalUsageCallback; typedef base::Callback QuotaCallback; typedef base::Callback UsageCallback; typedef base::Callback AvailableSpaceCallback; typedef base::Callback StatusCallback; typedef base::Callback& origins, StorageType type)> GetOriginsCallback; typedef base::Callback GetUsageInfoCallback; template void DispatchToCallback(const CallbackType& callback, const Args& args) { DispatchToMethod(&callback, &CallbackType::Run, args); } // Simple template wrapper for a callback queue. template class CallbackQueue { public: // Returns true if the given |callback| is the first one added to the queue. bool Add(const CallbackType& callback) { callbacks_.push_back(callback); return (callbacks_.size() == 1); } bool HasCallbacks() const { return !callbacks_.empty(); } // Runs the callbacks added to the queue and clears the queue. void Run(const Args& args) { typedef typename std::vector::iterator iterator; for (iterator iter = callbacks_.begin(); iter != callbacks_.end(); ++iter) DispatchToCallback(*iter, args); callbacks_.clear(); } private: std::vector callbacks_; }; typedef CallbackQueue > GlobalUsageCallbackQueue; typedef CallbackQueue > UsageCallbackQueue; typedef CallbackQueue > AvailableSpaceCallbackQueue; typedef CallbackQueue > GlobalQuotaCallbackQueue; typedef CallbackQueue ClosureQueue; template class CallbackQueueMap { public: typedef CallbackQueue CallbackQueueType; typedef std::map CallbackMap; typedef typename CallbackMap::iterator iterator; bool Add(const Key& key, const CallbackType& callback) { return callback_map_[key].Add(callback); } bool HasCallbacks(const Key& key) const { return (callback_map_.find(key) != callback_map_.end()); } bool HasAnyCallbacks() const { return !callback_map_.empty(); } iterator Begin() { return callback_map_.begin(); } iterator End() { return callback_map_.end(); } void Clear() { callback_map_.clear(); } // Runs the callbacks added for the given |key| and clears the key // from the map. void Run(const Key& key, const Args& args) { if (!this->HasCallbacks(key)) return; CallbackQueueType& queue = callback_map_[key]; queue.Run(args); callback_map_.erase(key); } private: CallbackMap callback_map_; }; typedef CallbackQueueMap > HostUsageCallbackMap; typedef CallbackQueueMap > HostQuotaCallbackMap; } // namespace quota #endif // WEBKIT_QUOTA_QUOTA_TYPES_H_