blob: b1e46dc444861929408e61df1580cc35006828b3 [file] [log] [blame]
/*
* 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 "IDBBindingUtilities.h"
#include "IDBDatabase.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 <JavaScriptCore/HeapInlines.h>
#include <JavaScriptCore/JSCJSValueInlines.h>
#include <JavaScriptCore/StrongInlines.h>
namespace WebCore {
using namespace JSC;
Ref<IDBCursor> IDBCursor::create(IDBTransaction& transaction, IDBObjectStore& objectStore, const IDBCursorInfo& info)
{
return adoptRef(*new IDBCursor(transaction, objectStore, info));
}
Ref<IDBCursor> 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(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
suspendIfNeeded();
}
IDBCursor::IDBCursor(IDBTransaction& transaction, IDBIndex& index, const IDBCursorInfo& info)
: ActiveDOMObject(transaction.scriptExecutionContext())
, m_info(info)
, m_source(&index)
{
ASSERT(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
suspendIfNeeded();
}
IDBCursor::~IDBCursor()
{
ASSERT(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
}
bool IDBCursor::sourcesDeleted() const
{
ASSERT(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
return WTF::switchOn(m_source,
[] (const RefPtr<IDBObjectStore>& objectStore) { return objectStore->isDeleted(); },
[] (const RefPtr<IDBIndex>& index) { return index->isDeleted() || index->objectStore().isDeleted(); }
);
}
IDBObjectStore& IDBCursor::effectiveObjectStore() const
{
return WTF::switchOn(m_source,
[] (const RefPtr<IDBObjectStore>& objectStore) -> IDBObjectStore& { return *objectStore; },
[] (const RefPtr<IDBIndex>& index) -> IDBObjectStore& { return index->objectStore(); }
);
}
IDBTransaction& IDBCursor::transaction() const
{
ASSERT(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
return effectiveObjectStore().transaction();
}
ExceptionOr<Ref<IDBRequest>> IDBCursor::update(ExecState& state, JSValue value)
{
LOG(IndexedDB, "IDBCursor::update");
ASSERT(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
if (sourcesDeleted())
return Exception { InvalidStateError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The cursor's source or effective object store has been deleted.") };
if (!transaction().isActive())
return Exception { TransactionInactiveError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The transaction is inactive or finished.") };
if (transaction().isReadOnly())
return Exception { ReadonlyError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The record may not be updated inside a read-only transaction.") };
if (!m_gotValue)
return Exception { InvalidStateError, ASCIILiteral("Failed to execute 'update' on 'IDBCursor': The cursor is being iterated or has iterated past its end.") };
if (!isKeyCursorWithValue())
return Exception { 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<IDBKey> keyPathKey = maybeCreateIDBKeyFromScriptValueAndKeyPath(state, value, optionalKeyPath.value());
IDBKeyData keyPathKeyData(keyPathKey.get());
if (!keyPathKey || keyPathKeyData != m_currentPrimaryKeyData)
return Exception { 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<void> IDBCursor::advance(unsigned count)
{
LOG(IndexedDB, "IDBCursor::advance");
ASSERT(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
if (!m_request)
return Exception { 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 { TransactionInactiveError, ASCIILiteral("Failed to execute 'advance' on 'IDBCursor': The transaction is inactive or finished.") };
if (sourcesDeleted())
return Exception { InvalidStateError, ASCIILiteral("Failed to execute 'advance' on 'IDBCursor': The cursor's source or effective object store has been deleted.") };
if (!m_gotValue)
return Exception { 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<void> IDBCursor::continuePrimaryKey(ExecState& state, JSValue keyValue, JSValue primaryKeyValue)
{
if (!transaction().isActive())
return Exception { TransactionInactiveError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The transaction is inactive or finished.") };
if (sourcesDeleted())
return Exception { InvalidStateError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The cursor's source or effective object store has been deleted.") };
if (!WTF::holds_alternative<RefPtr<IDBIndex>>(m_source))
return Exception { 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 { InvalidAccessError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The cursor's direction must be either \"next\" or \"prev\".") };
if (!m_gotValue)
return Exception { InvalidStateError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The cursor is being iterated or has iterated past its end.") };
RefPtr<IDBKey> key = scriptValueToIDBKey(state, keyValue);
if (!key->isValid())
return Exception { DataError, ASCIILiteral("Failed to execute 'continuePrimaryKey' on 'IDBCursor': The first parameter is not a valid key.") };
RefPtr<IDBKey> primaryKey = scriptValueToIDBKey(state, primaryKeyValue);
if (!primaryKey->isValid())
return Exception { 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 { 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 { 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 { 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 { 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<void> IDBCursor::continueFunction(ExecState& execState, JSValue keyValue)
{
RefPtr<IDBKey> key;
if (!keyValue.isUndefined())
key = scriptValueToIDBKey(execState, keyValue);
return continueFunction(key.get());
}
ExceptionOr<void> IDBCursor::continueFunction(const IDBKeyData& key)
{
LOG(IndexedDB, "IDBCursor::continueFunction (to key %s)", key.loggingString().utf8().data());
ASSERT(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
if (!m_request)
return Exception { InvalidStateError };
if (!transaction().isActive())
return Exception { TransactionInactiveError, ASCIILiteral("Failed to execute 'continue' on 'IDBCursor': The transaction is inactive or finished.") };
if (sourcesDeleted())
return Exception { InvalidStateError, ASCIILiteral("Failed to execute 'continue' on 'IDBCursor': The cursor's source or effective object store has been deleted.") };
if (!m_gotValue)
return Exception { 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 { 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 { 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 { 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(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
++m_outstandingRequestCount;
m_request->willIterateCursor(*this);
transaction().iterateCursor(*this, { key, { }, count });
}
void IDBCursor::uncheckedIterateCursor(const IDBKeyData& key, const IDBKeyData& primaryKey)
{
ASSERT(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
++m_outstandingRequestCount;
m_request->willIterateCursor(*this);
transaction().iterateCursor(*this, { key, primaryKey, 0 });
}
ExceptionOr<Ref<WebCore::IDBRequest>> IDBCursor::deleteFunction(ExecState& state)
{
LOG(IndexedDB, "IDBCursor::deleteFunction");
ASSERT(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
if (sourcesDeleted())
return Exception { InvalidStateError, ASCIILiteral("Failed to execute 'delete' on 'IDBCursor': The cursor's source or effective object store has been deleted.") };
if (!transaction().isActive())
return Exception { TransactionInactiveError, ASCIILiteral("Failed to execute 'delete' on 'IDBCursor': The transaction is inactive or finished.") };
if (transaction().isReadOnly())
return Exception { ReadonlyError, ASCIILiteral("Failed to execute 'delete' on 'IDBCursor': The record may not be deleted inside a read-only transaction.") };
if (!m_gotValue)
return Exception { InvalidStateError, ASCIILiteral("Failed to execute 'delete' on 'IDBCursor': The cursor is being iterated or has iterated past its end.") };
if (!isKeyCursorWithValue())
return Exception { 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(&effectiveObjectStore().transaction().database().originThread() == &Thread::current());
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)