/* * Copyright (C) 2010 Google 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 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 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 "IDBIndexBackendImpl.h" #if ENABLE(INDEXED_DATABASE) #include "CrossThreadTask.h" #include "IDBCallbacks.h" #include "IDBCursorBackendImpl.h" #include "IDBDatabaseBackendImpl.h" #include "IDBDatabaseException.h" #include "IDBKey.h" #include "IDBKeyRange.h" #include "IDBObjectStoreBackendImpl.h" #include "IDBSQLiteDatabase.h" #include "SQLiteDatabase.h" #include "SQLiteStatement.h" namespace WebCore { IDBIndexBackendImpl::IDBIndexBackendImpl(IDBSQLiteDatabase* database, int64_t id, const String& name, const String& storeName, const String& keyPath, bool unique) : m_database(database) , m_id(id) , m_name(name) , m_storeName(storeName) , m_keyPath(keyPath) , m_unique(unique) { } IDBIndexBackendImpl::IDBIndexBackendImpl(IDBSQLiteDatabase* database, const String& name, const String& storeName, const String& keyPath, bool unique) : m_database(database) , m_id(InvalidId) , m_name(name) , m_storeName(storeName) , m_keyPath(keyPath) , m_unique(unique) { } IDBIndexBackendImpl::~IDBIndexBackendImpl() { } void IDBIndexBackendImpl::openCursorInternal(ScriptExecutionContext*, PassRefPtr index, PassRefPtr range, unsigned short untypedDirection, bool objectCursor, PassRefPtr callbacks, PassRefPtr transaction) { // Several files depend on this order of selects. String sql = String("SELECT IndexData.id, IndexData.keyString, IndexData.keyDate, IndexData.keyNumber, ") + (objectCursor ? "ObjectStoreData.value " : "ObjectStoreData.keyString, ObjectStoreData.keyDate, ObjectStoreData.keyNumber ") + "FROM IndexData INNER JOIN ObjectStoreData ON IndexData.objectStoreDataId = ObjectStoreData.id WHERE "; bool lowerBound = range && range->lower(); bool upperBound = range && range->upper(); if (lowerBound) sql += range->lower()->lowerCursorWhereFragment(range->lowerWhereClauseComparisonOperator(), "IndexData."); if (upperBound) sql += range->upper()->upperCursorWhereFragment(range->upperWhereClauseComparisonOperator(), "IndexData."); sql += "IndexData.indexId = ? ORDER BY "; IDBCursor::Direction direction = static_cast(untypedDirection); if (direction == IDBCursor::NEXT || direction == IDBCursor::NEXT_NO_DUPLICATE) sql += "IndexData.keyString, IndexData.keyDate, IndexData.keyNumber, IndexData.id"; else sql += "IndexData.keyString DESC, IndexData.keyDate DESC, IndexData.keyNumber DESC, IndexData.id DESC"; OwnPtr query = adoptPtr(new SQLiteStatement(index->sqliteDatabase(), sql)); bool ok = query->prepare() == SQLResultOk; ASSERT_UNUSED(ok, ok); // FIXME: Better error handling? int indexColumn = 1; if (lowerBound) indexColumn += range->lower()->bind(*query, indexColumn); if (upperBound) indexColumn += range->upper()->bind(*query, indexColumn); query->bindInt64(indexColumn, index->id()); if (query->step() != SQLResultRow) { callbacks->onSuccess(); return; } RefPtr cursor = IDBCursorBackendImpl::create(index->m_database.get(), range, direction, query.release(), objectCursor, transaction.get()); callbacks->onSuccess(cursor.release()); } void IDBIndexBackendImpl::openCursor(PassRefPtr prpKeyRange, unsigned short direction, PassRefPtr prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) { RefPtr index = this; RefPtr keyRange = prpKeyRange; RefPtr callbacks = prpCallbacks; RefPtr transaction = transactionPtr; if (!transaction->scheduleTask(createCallbackTask(&openCursorInternal, index, keyRange, direction, true, callbacks, transaction))) ec = IDBDatabaseException::NOT_ALLOWED_ERR; } void IDBIndexBackendImpl::openKeyCursor(PassRefPtr prpKeyRange, unsigned short direction, PassRefPtr prpCallbacks, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) { RefPtr index = this; RefPtr keyRange = prpKeyRange; RefPtr callbacks = prpCallbacks; RefPtr transaction = transactionPtr; if (!transaction->scheduleTask(createCallbackTask(&openCursorInternal, index, keyRange, direction, false, callbacks, transaction))) ec = IDBDatabaseException::NOT_ALLOWED_ERR; } void IDBIndexBackendImpl::getInternal(ScriptExecutionContext*, PassRefPtr index, PassRefPtr key, bool getObject, PassRefPtr callbacks) { String sql = String("SELECT ") + (getObject ? "ObjectStoreData.value " : "ObjectStoreData.keyString, ObjectStoreData.keyDate, ObjectStoreData.keyNumber ") + "FROM IndexData INNER JOIN ObjectStoreData ON IndexData.objectStoreDataId = ObjectStoreData.id " + "WHERE IndexData.indexId = ? AND " + key->whereSyntax("IndexData.") + "ORDER BY IndexData.id LIMIT 1"; // Order by insertion order when all else fails. SQLiteStatement query(index->sqliteDatabase(), sql); bool ok = query.prepare() == SQLResultOk; ASSERT_UNUSED(ok, ok); // FIXME: Better error handling? query.bindInt64(1, index->id()); key->bind(query, 2); if (query.step() != SQLResultRow) { callbacks->onError(IDBDatabaseError::create(IDBDatabaseException::NOT_FOUND_ERR, "Key does not exist in the index.")); return; } if (getObject) callbacks->onSuccess(SerializedScriptValue::createFromWire(query.getColumnText(0))); else callbacks->onSuccess(IDBKey::fromQuery(query, 0)); ASSERT(query.step() != SQLResultRow); } void IDBIndexBackendImpl::get(PassRefPtr prpKey, PassRefPtr prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) { RefPtr index = this; RefPtr key = prpKey; RefPtr callbacks = prpCallbacks; if (!transaction->scheduleTask(createCallbackTask(&getInternal, index, key, true, callbacks))) ec = IDBDatabaseException::NOT_ALLOWED_ERR; } void IDBIndexBackendImpl::getKey(PassRefPtr prpKey, PassRefPtr prpCallbacks, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) { RefPtr index = this; RefPtr key = prpKey; RefPtr callbacks = prpCallbacks; if (!transaction->scheduleTask(createCallbackTask(&getInternal, index, key, false, callbacks))) ec = IDBDatabaseException::NOT_ALLOWED_ERR; } static String whereClause(IDBKey* key) { return "WHERE indexId = ? AND " + key->whereSyntax(); } static void bindWhereClause(SQLiteStatement& query, int64_t id, IDBKey* key) { query.bindInt64(1, id); key->bind(query, 2); } bool IDBIndexBackendImpl::addingKeyAllowed(IDBKey* key) { if (!m_unique) return true; SQLiteStatement query(sqliteDatabase(), "SELECT id FROM IndexData " + whereClause(key)); bool ok = query.prepare() == SQLResultOk; ASSERT_UNUSED(ok, ok); // FIXME: Better error handling? bindWhereClause(query, m_id, key); bool existingValue = query.step() == SQLResultRow; return !existingValue; } SQLiteDatabase& IDBIndexBackendImpl::sqliteDatabase() const { return m_database->db(); } } // namespace WebCore #endif // ENABLE(INDEXED_DATABASE)