Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef WEBKIT_DOM_STORAGE_DOM_STORAGE_DATABASE_H_ | |
| 6 #define WEBKIT_DOM_STORAGE_DOM_STORAGE_DATABASE_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include <map> | |
| 10 | |
| 11 #include "base/file_path.h" | |
| 12 #include "base/gtest_prod_util.h" | |
| 13 #include "base/memory/scoped_ptr.h" | |
| 14 #include "base/nullable_string16.h" | |
| 15 #include "base/string16.h" | |
| 16 #include "sql/connection.h" | |
| 17 #include "webkit/dom_storage/dom_storage_types.h" | |
| 18 | |
| 19 namespace dom_storage { | |
| 20 | |
| 21 // Represents a SQLite based backing for DOM storage data. This | |
| 22 // class is designed to be used on a single thread. | |
| 23 class DomStorageDatabase { | |
| 24 public: | |
| 25 explicit DomStorageDatabase(const FilePath& file_path); | |
| 26 ~DomStorageDatabase(); | |
| 27 | |
| 28 // Reads all the key, value pairs stored in the database and returns | |
| 29 // them. |result| is assumed to be empty and any duplicate keys will | |
| 30 // be overwritten. If the database exists on disk then it will be | |
| 31 // opened. If it does not exist then it will not be created and | |
| 32 // |result| will be unmodified. | |
| 33 void ReadAllValues(ValuesMap* result); | |
| 34 | |
| 35 // Updates the backing database. Will remove all keys before updating | |
| 36 // the database if |clear_all_first| is set. Then all entries in | |
| 37 // |changes| will be examined - keys mapped to a null NullableString16 | |
| 38 // will be removed and all others will be inserted/updated as appropriate. | |
| 39 bool CommitChanges(bool clear_all_first, const ValuesMap& changes); | |
| 40 | |
| 41 private: | |
| 42 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, SimpleOpenAndClose); | |
| 43 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, TestLazyOpenIsLazy); | |
| 44 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, TestDetectSchemaVersion); | |
| 45 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, | |
| 46 TestLazyOpenUpgradesDatabase); | |
| 47 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, SimpleWriteAndReadBack); | |
| 48 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, WriteWithClear); | |
| 49 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, | |
| 50 UpgradeFromV1ToV2WithData); | |
| 51 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, | |
| 52 TestOpenCloseDataPreserved); | |
| 53 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, TestSimpleRemoveOneValue); | |
| 54 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, | |
| 55 TestCanOpenAndReadWebCoreDatabase); | |
| 56 FRIEND_TEST_ALL_PREFIXES(DomStorageDatabaseTest, | |
| 57 TestCanOpenFileThatIsNotADatabase); | |
| 58 | |
| 59 enum SchemaVersion { | |
| 60 INVALID, | |
| 61 V1, | |
| 62 V2 | |
| 63 }; | |
| 64 | |
| 65 // Open the database at file_path_ if it exists already and creates it if | |
| 66 // |create_if_needed| is true. | |
| 67 // Ensures we are at the correct database version and creates or updates | |
| 68 // tables as necessary. Returns false on failure. | |
| 69 bool LazyOpen(bool create_if_needed); | |
| 70 | |
| 71 // Analyses the database to verify that the connection that is open is indeed | |
| 72 // a valid database and works out the schema version. | |
| 73 SchemaVersion DetectSchemaVersion(); | |
| 74 | |
| 75 // Creates the database table at V1. Used when upgrading the database | |
|
michaeln
2012/02/08 22:12:08
comment is confusing
benm (inactive)
2012/02/09 11:59:57
It is! Fixed.
| |
| 76 // table to V2. | |
| 77 bool CreateTableV2(); | |
| 78 | |
| 79 // If we have issues while trying to open the file (corrupted databse, | |
| 80 // failing to upgrade, that sort of thing) this function will remove | |
| 81 // the file from disk and attempt to create a new database from | |
| 82 // scratch. | |
| 83 bool DeleteFileAndRecreate(); | |
| 84 | |
| 85 // Version 1 -> 2 migrates the value column in the ItemTable from a TEXT | |
| 86 // to a BLOB. Exisitng data is preserved on success. Returns false if the | |
| 87 // upgrade failed. If true is returned, the database is guaranteed to be at | |
| 88 // version 2. | |
| 89 bool UpgradeVersion1To2(); | |
| 90 | |
| 91 void Close(); | |
| 92 bool IsOpen() const { return db_.get() ? db_->is_open() : false; } | |
| 93 | |
| 94 #ifdef UNIT_TEST | |
| 95 // This constructor allows us to bypass the DCHECK in the public | |
| 96 // constructor that normally verifies a valid file path was passed to | |
| 97 // back the database on disk. We want to be able to run unit tests | |
| 98 // from in-memory databases where possible, so we use an empty | |
| 99 // backing file path to signify we should open the database in memory | |
| 100 // inside LazyOpen. This constructor will allow us to bypass the | |
| 101 // DCHECK when running the unit tests. | |
| 102 DomStorageDatabase(); | |
| 103 #endif | |
| 104 | |
| 105 // Path to the database on disk. | |
| 106 FilePath file_path_; | |
| 107 scoped_ptr<sql::Connection> db_; | |
| 108 bool failed_to_open_; | |
| 109 bool tried_to_recreate_; | |
| 110 }; | |
| 111 | |
| 112 } // namespace dom_storage | |
| 113 | |
| 114 #endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_DATABASE_H_ | |
| OLD | NEW |