// Copyright (c) 2011 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_DATABASE_DATABASE_CONNECTIONS_H_ #define WEBKIT_DATABASE_DATABASE_CONNECTIONS_H_ #include #include #include "base/memory/ref_counted.h" #include "base/string16.h" #include "base/synchronization/lock.h" #include "webkit/storage/webkit_storage_export.h" namespace base { class MessageLoopProxy; } namespace webkit_database { class WEBKIT_STORAGE_EXPORT DatabaseConnections { public: DatabaseConnections(); ~DatabaseConnections(); bool IsEmpty() const; bool IsDatabaseOpened(const base::string16& origin_identifier, const base::string16& database_name) const; bool IsOriginUsed(const base::string16& origin_identifier) const; // Returns true if this is the first connection. bool AddConnection(const base::string16& origin_identifier, const base::string16& database_name); // Returns true if the last connection was removed. bool RemoveConnection(const base::string16& origin_identifier, const base::string16& database_name); void RemoveAllConnections(); void RemoveConnections( const DatabaseConnections& connections, std::vector >* closed_dbs); // Database sizes can be kept only if IsDatabaseOpened returns true. int64 GetOpenDatabaseSize(const base::string16& origin_identifier, const base::string16& database_name) const; void SetOpenDatabaseSize(const base::string16& origin_identifier, const base::string16& database_name, int64 size); // Returns a list of the connections, . void ListConnections( std::vector > *list) const; private: // Mapping from name to typedef std::map > DBConnections; typedef std::map OriginConnections; mutable OriginConnections connections_; // mutable for GetOpenDatabaseSize // Returns true if the last connection was removed. bool RemoveConnectionsHelper(const base::string16& origin_identifier, const base::string16& database_name, int num_connections); }; // A wrapper class that provides thread-safety and the // ability to wait until all connections have closed. // Intended for use in renderer processes. class WEBKIT_STORAGE_EXPORT DatabaseConnectionsWrapper : public base::RefCountedThreadSafe { public: DatabaseConnectionsWrapper(); // The Wait and Has methods should only be called on the // main thread (the thread on which the wrapper is constructed). void WaitForAllDatabasesToClose(); bool HasOpenConnections(); // Add and Remove may be called on any thread. void AddOpenConnection(const base::string16& origin_identifier, const base::string16& database_name); void RemoveOpenConnection(const base::string16& origin_identifier, const base::string16& database_name); private: ~DatabaseConnectionsWrapper(); friend class base::RefCountedThreadSafe; bool waiting_for_dbs_to_close_; base::Lock open_connections_lock_; DatabaseConnections open_connections_; scoped_refptr main_thread_; }; } // namespace webkit_database #endif // WEBKIT_DATABASE_DATABASE_CONNECTIONS_H_