1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
/*
* Copyright (C) 2008, 2009, 2010, 2013 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "LocalStorageDatabase.h"
#include "LocalStorageDatabaseTracker.h"
#include "WorkQueue.h"
#include <WebCore/FileSystem.h>
#include <WebCore/SQLiteStatement.h>
#include <WebCore/SQLiteTransaction.h>
#include <WebCore/SecurityOrigin.h>
#include <WebCore/StorageMap.h>
#include <wtf/PassRefPtr.h>
#include <wtf/text/StringHash.h>
#include <wtf/text/WTFString.h>
using namespace WebCore;
static const double databaseUpdateIntervalInSeconds = 1.0;
static const int maximumItemsToUpdate = 100;
namespace WebKit {
PassRefPtr<LocalStorageDatabase> LocalStorageDatabase::create(PassRefPtr<WorkQueue> queue, PassRefPtr<LocalStorageDatabaseTracker> tracker, PassRefPtr<SecurityOrigin> securityOrigin)
{
return adoptRef(new LocalStorageDatabase(queue, tracker, securityOrigin));
}
LocalStorageDatabase::LocalStorageDatabase(PassRefPtr<WorkQueue> queue, PassRefPtr<LocalStorageDatabaseTracker> tracker, PassRefPtr<SecurityOrigin> securityOrigin)
: m_queue(queue)
, m_tracker(tracker)
, m_securityOrigin(securityOrigin)
, m_databasePath(m_tracker->databasePath(m_securityOrigin.get()))
, m_failedToOpenDatabase(false)
, m_didImportItems(false)
, m_isClosed(false)
, m_didScheduleDatabaseUpdate(false)
, m_shouldClearItems(false)
{
}
LocalStorageDatabase::~LocalStorageDatabase()
{
ASSERT(m_isClosed);
}
void LocalStorageDatabase::openDatabase(DatabaseOpeningStrategy openingStrategy)
{
ASSERT(!m_database.isOpen());
ASSERT(!m_failedToOpenDatabase);
if (!tryToOpenDatabase(openingStrategy)) {
m_failedToOpenDatabase = true;
return;
}
if (m_database.isOpen())
m_tracker->didOpenDatabaseWithOrigin(m_securityOrigin.get());
}
bool LocalStorageDatabase::tryToOpenDatabase(DatabaseOpeningStrategy openingStrategy)
{
if (!fileExists(m_databasePath) && openingStrategy == SkipIfNonExistent)
return true;
if (m_databasePath.isEmpty()) {
LOG_ERROR("Filename for local storage database is empty - cannot open for persistent storage");
return false;
}
if (!m_database.open(m_databasePath)) {
LOG_ERROR("Failed to open database file %s for local storage", m_databasePath.utf8().data());
return false;
}
// Since a WorkQueue isn't bound to a specific thread, we have to disable threading checks
// even though we never access the database from different threads simultaneously.
m_database.disableThreadingChecks();
if (!migrateItemTableIfNeeded()) {
// We failed to migrate the item table. In order to avoid trying to migrate the table over and over,
// just delete it and start from scratch.
if (!m_database.executeCommand("DROP TABLE ItemTable"))
LOG_ERROR("Failed to delete table ItemTable for local storage");
}
if (!m_database.executeCommand("CREATE TABLE IF NOT EXISTS ItemTable (key TEXT UNIQUE ON CONFLICT REPLACE, value BLOB NOT NULL ON CONFLICT FAIL)")) {
LOG_ERROR("Failed to create table ItemTable for local storage");
return false;
}
return true;
}
bool LocalStorageDatabase::migrateItemTableIfNeeded()
{
if (!m_database.tableExists("ItemTable"))
return true;
SQLiteStatement query(m_database, "SELECT value FROM ItemTable LIMIT 1");
// This query isn't ever executed, it's just used to check the column type.
if (query.isColumnDeclaredAsBlob(0))
return true;
// Create a new table with the right type, copy all the data over to it and then replace the new table with the old table.
static const char* commands[] = {
"DROP TABLE IF EXISTS ItemTable2",
"CREATE TABLE ItemTable2 (key TEXT UNIQUE ON CONFLICT REPLACE, value BLOB NOT NULL ON CONFLICT FAIL)",
"INSERT INTO ItemTable2 SELECT * from ItemTable",
"DROP TABLE ItemTable",
"ALTER TABLE ItemTable2 RENAME TO ItemTable",
0,
};
SQLiteTransaction transaction(m_database, false);
transaction.begin();
for (size_t i = 0; commands[i]; ++i) {
if (m_database.executeCommand(commands[i]))
continue;
LOG_ERROR("Failed to migrate table ItemTable for local storage when executing: %s", commands[i]);
transaction.rollback();
return false;
}
transaction.commit();
return true;
}
void LocalStorageDatabase::importItems(StorageMap& storageMap)
{
if (m_didImportItems)
return;
// FIXME: If it can't import, then the default WebKit behavior should be that of private browsing,
// not silently ignoring it. https://bugs.webkit.org/show_bug.cgi?id=25894
// We set this to true even if we don't end up importing any items due to failure because
// there's really no good way to recover other than not importing anything.
m_didImportItems = true;
openDatabase(SkipIfNonExistent);
if (!m_database.isOpen())
return;
SQLiteStatement query(m_database, "SELECT key, value FROM ItemTable");
if (query.prepare() != SQLResultOk) {
LOG_ERROR("Unable to select items from ItemTable for local storage");
return;
}
HashMap<String, String> items;
int result = query.step();
while (result == SQLResultRow) {
items.set(query.getColumnText(0), query.getColumnBlobAsString(1));
result = query.step();
}
if (result != SQLResultDone) {
LOG_ERROR("Error reading items from ItemTable for local storage");
return;
}
storageMap.importItems(items);
}
void LocalStorageDatabase::setItem(const String& key, const String& value)
{
itemDidChange(key, value);
}
void LocalStorageDatabase::removeItem(const String& key)
{
itemDidChange(key, String());
}
void LocalStorageDatabase::clear()
{
m_changedItems.clear();
m_shouldClearItems = true;
scheduleDatabaseUpdate();
}
void LocalStorageDatabase::close()
{
ASSERT(!m_isClosed);
m_isClosed = true;
if (m_didScheduleDatabaseUpdate) {
updateDatabaseWithChangedItems(m_changedItems);
m_changedItems.clear();
}
bool isEmpty = databaseIsEmpty();
if (m_database.isOpen())
m_database.close();
if (isEmpty)
m_tracker->deleteDatabaseWithOrigin(m_securityOrigin.get());
}
void LocalStorageDatabase::itemDidChange(const String& key, const String& value)
{
m_changedItems.set(key, value);
scheduleDatabaseUpdate();
}
void LocalStorageDatabase::scheduleDatabaseUpdate()
{
if (m_didScheduleDatabaseUpdate)
return;
m_didScheduleDatabaseUpdate = true;
m_queue->dispatchAfterDelay(bind(&LocalStorageDatabase::updateDatabase, this), databaseUpdateIntervalInSeconds);
}
void LocalStorageDatabase::updateDatabase()
{
if (m_isClosed)
return;
ASSERT(m_didScheduleDatabaseUpdate);
m_didScheduleDatabaseUpdate = false;
HashMap<String, String> changedItems;
if (m_changedItems.size() <= maximumItemsToUpdate) {
// There are few enough changed items that we can just always write all of them.
m_changedItems.swap(changedItems);
} else {
for (int i = 0; i < maximumItemsToUpdate; ++i) {
HashMap<String, String>::iterator it = m_changedItems.begin();
changedItems.add(it->key, it->value);
m_changedItems.remove(it);
}
ASSERT(changedItems.size() <= maximumItemsToUpdate);
// Reschedule the update for the remaining items.
scheduleDatabaseUpdate();
}
updateDatabaseWithChangedItems(changedItems);
}
void LocalStorageDatabase::updateDatabaseWithChangedItems(const HashMap<String, String>& changedItems)
{
if (!m_database.isOpen())
openDatabase(CreateIfNonExistent);
if (!m_database.isOpen())
return;
if (m_shouldClearItems) {
m_shouldClearItems = false;
SQLiteStatement clearStatement(m_database, "DELETE FROM ItemTable");
if (clearStatement.prepare() != SQLResultOk) {
LOG_ERROR("Failed to prepare clear statement - cannot write to local storage database");
return;
}
int result = clearStatement.step();
if (result != SQLResultDone) {
LOG_ERROR("Failed to clear all items in the local storage database - %i", result);
return;
}
}
SQLiteStatement insertStatement(m_database, "INSERT INTO ItemTable VALUES (?, ?)");
if (insertStatement.prepare() != SQLResultOk) {
LOG_ERROR("Failed to prepare insert statement - cannot write to local storage database");
return;
}
SQLiteStatement deleteStatement(m_database, "DELETE FROM ItemTable WHERE key=?");
if (deleteStatement.prepare() != SQLResultOk) {
LOG_ERROR("Failed to prepare delete statement - cannot write to local storage database");
return;
}
SQLiteTransaction transaction(m_database);
transaction.begin();
HashMap<String, String>::const_iterator it = changedItems.begin();
const HashMap<String, String>::const_iterator end = changedItems.end();
for (; it != end; ++it) {
// A null value means that the key/value pair should be deleted.
SQLiteStatement& statement = it->value.isNull() ? deleteStatement : insertStatement;
statement.bindText(1, it->key);
// If we're inserting a key/value pair, bind the value as well.
if (!it->value.isNull())
statement.bindBlob(2, it->value);
int result = statement.step();
if (result != SQLResultDone) {
LOG_ERROR("Failed to update item in the local storage database - %i", result);
break;
}
statement.reset();
}
transaction.commit();
}
bool LocalStorageDatabase::databaseIsEmpty()
{
if (!m_database.isOpen())
return false;
SQLiteStatement query(m_database, "SELECT COUNT(*) FROM ItemTable");
if (query.prepare() != SQLResultOk) {
LOG_ERROR("Unable to count number of rows in ItemTable for local storage");
return false;
}
int result = query.step();
if (result != SQLResultRow) {
LOG_ERROR("No results when counting number of rows in ItemTable for local storage");
return false;
}
return !query.getColumnInt(0);
}
} // namespace WebKit
|