summaryrefslogtreecommitdiff
path: root/chromium/content/browser/indexed_db/indexed_db_context_impl.h
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@digia.com>2013-08-15 21:46:11 +0200
committerZeno Albisser <zeno.albisser@digia.com>2013-08-15 21:46:11 +0200
commit679147eead574d186ebf3069647b4c23e8ccace6 (patch)
treefc247a0ac8ff119f7c8550879ebb6d3dd8d1ff69 /chromium/content/browser/indexed_db/indexed_db_context_impl.h
downloadqtwebengine-chromium-679147eead574d186ebf3069647b4c23e8ccace6.tar.gz
Initial import.
Diffstat (limited to 'chromium/content/browser/indexed_db/indexed_db_context_impl.h')
-rw-r--r--chromium/content/browser/indexed_db/indexed_db_context_impl.h145
1 files changed, 145 insertions, 0 deletions
diff --git a/chromium/content/browser/indexed_db/indexed_db_context_impl.h b/chromium/content/browser/indexed_db/indexed_db_context_impl.h
new file mode 100644
index 00000000000..3c76465e6bf
--- /dev/null
+++ b/chromium/content/browser/indexed_db/indexed_db_context_impl.h
@@ -0,0 +1,145 @@
+// Copyright (c) 2012 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 CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CONTEXT_IMPL_H_
+#define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CONTEXT_IMPL_H_
+
+#include <map>
+#include <set>
+#include <vector>
+
+#include "base/compiler_specific.h"
+#include "base/files/file_path.h"
+#include "base/gtest_prod_util.h"
+#include "base/memory/scoped_ptr.h"
+#include "content/browser/browser_main_loop.h"
+#include "content/browser/indexed_db/indexed_db_factory.h"
+#include "content/public/browser/indexed_db_context.h"
+#include "url/gurl.h"
+#include "webkit/common/quota/quota_types.h"
+
+class GURL;
+
+namespace base {
+class ListValue;
+class FilePath;
+class SequencedTaskRunner;
+}
+
+namespace quota {
+class QuotaManagerProxy;
+class SpecialStoragePolicy;
+}
+
+namespace content {
+
+class IndexedDBConnection;
+
+class CONTENT_EXPORT IndexedDBContextImpl
+ : NON_EXPORTED_BASE(public IndexedDBContext) {
+ public:
+ // If |data_path| is empty, nothing will be saved to disk.
+ IndexedDBContextImpl(const base::FilePath& data_path,
+ quota::SpecialStoragePolicy* special_storage_policy,
+ quota::QuotaManagerProxy* quota_manager_proxy,
+ base::SequencedTaskRunner* task_runner);
+
+ IndexedDBFactory* GetIDBFactory();
+
+ // The indexed db directory.
+ static const base::FilePath::CharType kIndexedDBDirectory[];
+
+ // Disables the exit-time deletion of session-only data.
+ void SetForceKeepSessionState() { force_keep_session_state_ = true; }
+
+ // IndexedDBContext implementation:
+ virtual base::TaskRunner* TaskRunner() const OVERRIDE;
+ virtual std::vector<GURL> GetAllOrigins() OVERRIDE;
+ virtual std::vector<IndexedDBInfo> GetAllOriginsInfo() OVERRIDE;
+ virtual int64 GetOriginDiskUsage(const GURL& origin_url) OVERRIDE;
+ virtual base::Time GetOriginLastModified(const GURL& origin_url) OVERRIDE;
+ virtual void DeleteForOrigin(const GURL& origin_url) OVERRIDE;
+ virtual base::FilePath GetFilePathForTesting(
+ const std::string& origin_id) const OVERRIDE;
+ virtual void SetTaskRunnerForTesting(base::SequencedTaskRunner* task_runner)
+ OVERRIDE;
+
+ // Methods called by IndexedDBDispatcherHost for quota support.
+ void ConnectionOpened(const GURL& origin_url, IndexedDBConnection* db);
+ void ConnectionClosed(const GURL& origin_url, IndexedDBConnection* db);
+ void TransactionComplete(const GURL& origin_url);
+ bool WouldBeOverQuota(const GURL& origin_url, int64 additional_bytes);
+ bool IsOverQuota(const GURL& origin_url);
+
+ quota::QuotaManagerProxy* quota_manager_proxy();
+
+ base::ListValue* GetAllOriginsDetails();
+ void ForceClose(const GURL& origin_url);
+ base::FilePath GetFilePath(const GURL& origin_url);
+ base::FilePath data_path() const { return data_path_; }
+ bool IsInOriginSet(const GURL& origin_url) {
+ std::set<GURL>* set = GetOriginSet();
+ return set->find(origin_url) != set->end();
+ }
+ size_t GetConnectionCount(const GURL& origin_url);
+
+ // For unit tests allow to override the |data_path_|.
+ void set_data_path_for_testing(const base::FilePath& data_path) {
+ data_path_ = data_path;
+ }
+
+ protected:
+ virtual ~IndexedDBContextImpl();
+
+ private:
+ FRIEND_TEST_ALL_PREFIXES(IndexedDBTest, ClearLocalState);
+ FRIEND_TEST_ALL_PREFIXES(IndexedDBTest, ClearSessionOnlyDatabases);
+ FRIEND_TEST_ALL_PREFIXES(IndexedDBTest, SetForceKeepSessionState);
+ FRIEND_TEST_ALL_PREFIXES(IndexedDBTest, ForceCloseOpenDatabasesOnDelete);
+ friend class IndexedDBQuotaClientTest;
+
+ typedef std::map<GURL, int64> OriginToSizeMap;
+ class IndexedDBGetUsageAndQuotaCallback;
+
+ base::FilePath GetIndexedDBFilePath(const std::string& origin_id) const;
+ int64 ReadUsageFromDisk(const GURL& origin_url) const;
+ void EnsureDiskUsageCacheInitialized(const GURL& origin_url);
+ void QueryDiskAndUpdateQuotaUsage(const GURL& origin_url);
+ void GotUsageAndQuota(const GURL& origin_url,
+ quota::QuotaStatusCode,
+ int64 usage,
+ int64 quota);
+ void GotUpdatedQuota(const GURL& origin_url, int64 usage, int64 quota);
+ void QueryAvailableQuota(const GURL& origin_url);
+
+ std::set<GURL>* GetOriginSet();
+ bool AddToOriginSet(const GURL& origin_url) {
+ return GetOriginSet()->insert(origin_url).second;
+ }
+ void RemoveFromOriginSet(const GURL& origin_url) {
+ GetOriginSet()->erase(origin_url);
+ }
+
+ // Only for testing.
+ void ResetCaches();
+
+ scoped_refptr<IndexedDBFactory> factory_;
+ base::FilePath data_path_;
+ // If true, nothing (not even session-only data) should be deleted on exit.
+ bool force_keep_session_state_;
+ scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_;
+ scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_;
+ base::SequencedTaskRunner* task_runner_;
+ scoped_ptr<std::set<GURL> > origin_set_;
+ OriginToSizeMap origin_size_map_;
+ OriginToSizeMap space_available_map_;
+ typedef std::set<IndexedDBConnection*> ConnectionSet;
+ std::map<GURL, ConnectionSet> connections_;
+
+ DISALLOW_COPY_AND_ASSIGN(IndexedDBContextImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CONTEXT_IMPL_H_