/* * Copyright (C) 2015 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 "IDBCursor.h" #if ENABLE(INDEXED_DATABASE) #include "ExceptionCode.h" #include "IDBBindingUtilities.h" #include "IDBDatabase.h" #include "IDBDatabaseException.h" #include "IDBGetResult.h" #include "IDBIndex.h" #include "IDBIterateCursorData.h" #include "IDBObjectStore.h" #include "IDBRequest.h" #include "IDBTransaction.h" #include "Logging.h" #include "ScriptExecutionContext.h" #include #include #include using namespace JSC; namespace WebCore { Ref IDBCursor::create(IDBTransaction& transaction, IDBObjectStore& objectStore, const IDBCursorInfo& info) { return adoptRef(*new IDBCursor(transaction, objectStore, info)); } Ref IDBCursor::create(IDBTransaction& transaction, IDBIndex& index, const IDBCursorInfo& info) { return adoptRef(*new IDBCursor(transaction, index, info)); } IDBCursor::IDBCursor(IDBTransaction& transaction, IDBObjectStore& objectStore, const IDBCursorInfo& info) : ActiveDOMObject(transaction.scriptExecutionContext()) , m_info(info) , m_source(&objectStore) { ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); suspendIfNeeded(); } IDBCursor::IDBCursor(IDBTransaction& transaction, IDBIndex& index, const IDBCursorInfo& info) : ActiveDOMObject(transaction.scriptExecutionContext()) , m_info(info) , m_source(&index) { ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); suspendIfNeeded(); } IDBCursor::~IDBCursor() { ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); } bool IDBCursor::sourcesDeleted() const { ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); return WTF::switchOn(m_source, [] (const RefPtr& objectStore) { return objectStore->isDeleted(); }, [] (const RefPtr& index) { return index->isDeleted() || index->objectStore().isDeleted(); } ); } IDBObjectStore& IDBCursor::effectiveObjectStore() const { return WTF::switchOn(m_source, [] (const RefPtr& objectStore) -> IDBObjectStore& { return *objectStore; }, [] (const RefPtr& index) -> IDBObjectStore& { return index->objectStore(); } ); } IDBTransaction& IDBCursor::transaction() const { ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); return effectiveObjectStore().transaction(); } ExceptionOr> IDBCursor::update(ExecState& state, JSValue value) { LOG(IndexedDB, "IDBCursor::update"); ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); if (sourcesDeleted()) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The cursor's source or effective object store has been deleted.") }; if (!transaction().isActive()) return Exception { IDBDatabaseException::TransactionInactiveError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The transaction is inactive or finished.") }; if (transaction().isReadOnly()) return Exception { IDBDatabaseException::ReadOnlyError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The record may not be updated inside a read-only transaction.") }; if (!m_gotValue) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The cursor is being iterated or has iterated past its end.") }; if (!isKeyCursorWithValue()) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The cursor is a key cursor.") }; auto& objectStore = effectiveObjectStore(); auto& optionalKeyPath = objectStore.info().keyPath(); const bool usesInLineKeys = !!optionalKeyPath; if (usesInLineKeys) { RefPtr keyPathKey = maybeCreateIDBKeyFromScriptValueAndKeyPath(state, value, optionalKeyPath.value()); IDBKeyData keyPathKeyData(keyPathKey.get()); if (!keyPathKey || keyPathKeyData != m_currentPrimaryKeyData) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The effective object store of this cursor uses in-line keys and evaluating the key path of the value parameter results in a different value than the cursor's effective key.") }; } auto putResult = effectiveObjectStore().putForCursorUpdate(state, value, m_currentPrimaryKey.get()); if (putResult.hasException()) return putResult.releaseException(); auto request = putResult.releaseReturnValue(); request->setSource(*this); ++m_outstandingRequestCount; return WTFMove(request); } ExceptionOr IDBCursor::advance(unsigned count) { LOG(IndexedDB, "IDBCursor::advance"); ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); if (!m_request) return Exception { IDBDatabaseException::InvalidStateError }; if (!count) return Exception { TypeError, ASCIILiteral("Failed to execute 'advance' on 'IDBCursor': A count argument with value 0 (zero) was supplied, must be greater than 0.") }; if (!transaction().isActive()) return Exception { IDBDatabaseException::TransactionInactiveError, ASCIILiteral("Failed to execute 'advance' on 'IDBCursor': The transaction is inactive or finished.") }; if (sourcesDeleted()) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'advance' on 'IDBCursor': The cursor's source or effective object store has been deleted.") }; if (!m_gotValue) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'advance' on 'IDBCursor': The cursor is being iterated or has iterated past its end.") }; m_gotValue = false; uncheckedIterateCursor(IDBKeyData(), count); return { }; } ExceptionOr IDBCursor::continuePrimaryKey(ExecState& state, JSValue keyValue, JSValue primaryKeyValue) { if (!transaction().isActive()) return Exception { IDBDatabaseException::TransactionInactiveError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The transaction is inactive or finished.") }; if (sourcesDeleted()) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The cursor's source or effective object store has been deleted.") }; if (!WTF::holds_alternative>(m_source)) return Exception { IDBDatabaseException::InvalidAccessError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The cursor's source is not an index.") }; auto direction = m_info.cursorDirection(); if (direction != IndexedDB::CursorDirection::Next && direction != IndexedDB::CursorDirection::Prev) return Exception { IDBDatabaseException::InvalidAccessError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The cursor's direction must be either \"next\" or \"prev\".") }; if (!m_gotValue) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The cursor is being iterated or has iterated past its end.") }; RefPtr key = scriptValueToIDBKey(state, keyValue); if (!key->isValid()) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The first parameter is not a valid key.") }; RefPtr primaryKey = scriptValueToIDBKey(state, primaryKeyValue); if (!primaryKey->isValid()) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The second parameter is not a valid key.") }; IDBKeyData keyData = { key.get() }; IDBKeyData primaryKeyData = { primaryKey.get() }; if (keyData < m_currentKeyData && direction == IndexedDB::CursorDirection::Next) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The first parameter is less than this cursor's position and this cursor's direction is \"next\".") }; if (keyData > m_currentKeyData && direction == IndexedDB::CursorDirection::Prev) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The first parameter is greater than this cursor's position and this cursor's direction is \"prev\".") }; if (keyData == m_currentKeyData) { if (primaryKeyData <= m_currentPrimaryKeyData && direction == IndexedDB::CursorDirection::Next) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The key parameters represent a position less-than-or-equal-to this cursor's position and this cursor's direction is \"next\".") }; if (primaryKeyData >= m_currentPrimaryKeyData && direction == IndexedDB::CursorDirection::Prev) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The key parameters represent a position greater-than-or-equal-to this cursor's position and this cursor's direction is \"prev\".") }; } m_gotValue = false; uncheckedIterateCursor(keyData, primaryKeyData); return { }; } ExceptionOr IDBCursor::continueFunction(ExecState& execState, JSValue keyValue) { RefPtr key; if (!keyValue.isUndefined()) key = scriptValueToIDBKey(execState, keyValue); return continueFunction(key.get()); } ExceptionOr IDBCursor::continueFunction(const IDBKeyData& key) { LOG(IndexedDB, "IDBCursor::continueFunction (to key %s)", key.loggingString().utf8().data()); ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); if (!m_request) return Exception { IDBDatabaseException::InvalidStateError }; if (!transaction().isActive()) return Exception { IDBDatabaseException::TransactionInactiveError, ASCIILiteral("Failed to execute 'continue' on 'IDBCursor': The transaction is inactive or finished.") }; if (sourcesDeleted()) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'continue' on 'IDBCursor': The cursor's source or effective object store has been deleted.") }; if (!m_gotValue) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'continue' on 'IDBCursor': The cursor is being iterated or has iterated past its end.") }; if (!key.isNull() && !key.isValid()) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'continue' on 'IDBCursor': The parameter is not a valid key.") }; if (m_info.isDirectionForward()) { if (!key.isNull() && key.compare(m_currentKeyData) <= 0) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'continue' on 'IDBCursor': The parameter is less than or equal to this cursor's position.") }; } else { if (!key.isNull() && key.compare(m_currentKeyData) >= 0) return Exception { IDBDatabaseException::DataError, ASCIILiteral("Failed to execute 'continue' on 'IDBCursor': The parameter is greater than or equal to this cursor's position.") }; } m_gotValue = false; uncheckedIterateCursor(key, 0); return { }; } void IDBCursor::uncheckedIterateCursor(const IDBKeyData& key, unsigned count) { ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); ++m_outstandingRequestCount; m_request->willIterateCursor(*this); transaction().iterateCursor(*this, { key, { }, count }); } void IDBCursor::uncheckedIterateCursor(const IDBKeyData& key, const IDBKeyData& primaryKey) { ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); ++m_outstandingRequestCount; m_request->willIterateCursor(*this); transaction().iterateCursor(*this, { key, primaryKey, 0 }); } ExceptionOr> IDBCursor::deleteFunction(ExecState& state) { LOG(IndexedDB, "IDBCursor::deleteFunction"); ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); if (sourcesDeleted()) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'delete' on 'IDBCursor': The cursor's source or effective object store has been deleted.") }; if (!transaction().isActive()) return Exception { IDBDatabaseException::TransactionInactiveError, ASCIILiteral("Failed to execute 'delete' on 'IDBCursor': The transaction is inactive or finished.") }; if (transaction().isReadOnly()) return Exception { IDBDatabaseException::ReadOnlyError, ASCIILiteral("Failed to execute 'delete' on 'IDBCursor': The record may not be deleted inside a read-only transaction.") }; if (!m_gotValue) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'delete' on 'IDBCursor': The cursor is being iterated or has iterated past its end.") }; if (!isKeyCursorWithValue()) return Exception { IDBDatabaseException::InvalidStateError, ASCIILiteral("Failed to execute 'delete' on 'IDBCursor': The cursor is a key cursor.") }; auto result = effectiveObjectStore().deleteFunction(state, m_currentPrimaryKey.get()); if (result.hasException()) return result.releaseException(); auto request = result.releaseReturnValue(); request->setSource(*this); ++m_outstandingRequestCount; return WTFMove(request); } void IDBCursor::setGetResult(IDBRequest& request, const IDBGetResult& getResult) { LOG(IndexedDB, "IDBCursor::setGetResult - current key %s", getResult.keyData().loggingString().substring(0, 100).utf8().data()); ASSERT(currentThread() == effectiveObjectStore().transaction().database().originThreadID()); auto* context = request.scriptExecutionContext(); if (!context) return; auto* exec = context->execState(); if (!exec) return; if (!getResult.isDefined()) { m_currentKey = { }; m_currentKeyData = { }; m_currentPrimaryKey = { }; m_currentPrimaryKeyData = { }; m_currentValue = { }; m_gotValue = false; return; } auto& vm = context->vm(); // FIXME: This conversion should be done lazily, when script needs the JSValues, so that global object // of the IDBCursor wrapper can be used, rather than the lexicalGlobalObject. m_currentKey = { vm, toJS(*exec, *exec->lexicalGlobalObject(), getResult.keyData().maybeCreateIDBKey().get()) }; m_currentKeyData = getResult.keyData(); m_currentPrimaryKey = { vm, toJS(*exec, *exec->lexicalGlobalObject(), getResult.primaryKeyData().maybeCreateIDBKey().get()) }; m_currentPrimaryKeyData = getResult.primaryKeyData(); if (isKeyCursorWithValue()) m_currentValue = { vm, deserializeIDBValueToJSValue(*exec, getResult.value()) }; else m_currentValue = { }; m_gotValue = true; } const char* IDBCursor::activeDOMObjectName() const { return "IDBCursor"; } bool IDBCursor::canSuspendForDocumentSuspension() const { return false; } bool IDBCursor::hasPendingActivity() const { return m_outstandingRequestCount; } void IDBCursor::decrementOutstandingRequestCount() { ASSERT(m_outstandingRequestCount); --m_outstandingRequestCount; } } // namespace WebCore #endif // ENABLE(INDEXED_DATABASE)