2010-06-23 12:46:08 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Indexed Database.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* The Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2010
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Ben Turner <bent.mozilla@gmail.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
#include "IDBCursor.h"
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
#include "nsIIDBDatabaseException.h"
|
|
|
|
#include "nsIVariant.h"
|
|
|
|
|
2010-08-26 13:57:25 -07:00
|
|
|
#include "jscntxt.h"
|
2010-06-23 12:46:08 -07:00
|
|
|
#include "mozilla/storage.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsDOMClassInfo.h"
|
|
|
|
#include "nsJSON.h"
|
|
|
|
#include "nsJSUtils.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
|
|
|
|
#include "AsyncConnectionHelper.h"
|
|
|
|
#include "DatabaseInfo.h"
|
|
|
|
#include "IDBEvents.h"
|
2010-06-28 11:51:06 -07:00
|
|
|
#include "IDBIndex.h"
|
2010-06-28 11:51:06 -07:00
|
|
|
#include "IDBObjectStore.h"
|
2010-06-28 09:46:21 -07:00
|
|
|
#include "IDBTransaction.h"
|
2010-06-23 12:46:08 -07:00
|
|
|
#include "Savepoint.h"
|
|
|
|
#include "TransactionThreadPool.h"
|
|
|
|
|
|
|
|
USING_INDEXEDDB_NAMESPACE
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class UpdateHelper : public AsyncConnectionHelper
|
|
|
|
{
|
|
|
|
public:
|
2010-06-28 09:46:21 -07:00
|
|
|
UpdateHelper(IDBTransaction* aTransaction,
|
2010-06-23 12:46:08 -07:00
|
|
|
IDBRequest* aRequest,
|
|
|
|
PRInt64 aObjectStoreID,
|
|
|
|
const nsAString& aValue,
|
|
|
|
const Key& aKey,
|
|
|
|
bool aAutoIncrement,
|
|
|
|
nsTArray<IndexUpdateInfo>& aIndexUpdateInfo)
|
|
|
|
: AsyncConnectionHelper(aTransaction, aRequest), mOSID(aObjectStoreID),
|
|
|
|
mValue(aValue), mKey(aKey), mAutoIncrement(aAutoIncrement)
|
|
|
|
{
|
|
|
|
mIndexUpdateInfo.SwapElements(aIndexUpdateInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint16 DoDatabaseWork(mozIStorageConnection* aConnection);
|
|
|
|
PRUint16 GetSuccessResult(nsIWritableVariant* aResult);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// In-params.
|
|
|
|
const PRInt64 mOSID;
|
|
|
|
const nsString mValue;
|
|
|
|
const Key mKey;
|
|
|
|
const bool mAutoIncrement;
|
|
|
|
nsTArray<IndexUpdateInfo> mIndexUpdateInfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RemoveHelper : public AsyncConnectionHelper
|
|
|
|
{
|
|
|
|
public:
|
2010-06-28 09:46:21 -07:00
|
|
|
RemoveHelper(IDBTransaction* aTransaction,
|
2010-06-23 12:46:08 -07:00
|
|
|
IDBRequest* aRequest,
|
|
|
|
PRInt64 aObjectStoreID,
|
|
|
|
const Key& aKey,
|
|
|
|
bool aAutoIncrement)
|
|
|
|
: AsyncConnectionHelper(aTransaction, aRequest), mOSID(aObjectStoreID),
|
|
|
|
mKey(aKey), mAutoIncrement(aAutoIncrement)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
PRUint16 DoDatabaseWork(mozIStorageConnection* aConnection);
|
|
|
|
PRUint16 GetSuccessResult(nsIWritableVariant* aResult);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// In-params.
|
|
|
|
const PRInt64 mOSID;
|
|
|
|
const nsString mValue;
|
|
|
|
const Key mKey;
|
|
|
|
const bool mAutoIncrement;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
BEGIN_INDEXEDDB_NAMESPACE
|
|
|
|
|
|
|
|
class ContinueRunnable : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
ContinueRunnable(IDBCursor* aCursor,
|
2010-06-23 12:46:08 -07:00
|
|
|
const Key& aKey)
|
|
|
|
: mCursor(aCursor), mKey(aKey)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
private:
|
2010-06-28 11:51:06 -07:00
|
|
|
nsRefPtr<IDBCursor> mCursor;
|
2010-06-23 12:46:08 -07:00
|
|
|
const Key mKey;
|
|
|
|
};
|
|
|
|
|
|
|
|
END_INDEXEDDB_NAMESPACE
|
|
|
|
|
|
|
|
// static
|
2010-06-28 11:51:06 -07:00
|
|
|
already_AddRefed<IDBCursor>
|
|
|
|
IDBCursor::Create(IDBRequest* aRequest,
|
|
|
|
IDBTransaction* aTransaction,
|
|
|
|
IDBObjectStore* aObjectStore,
|
|
|
|
PRUint16 aDirection,
|
|
|
|
nsTArray<KeyValuePair>& aData)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aObjectStore, "Null pointer!");
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
nsRefPtr<IDBCursor> cursor =
|
|
|
|
IDBCursor::CreateCommon(aRequest, aTransaction, aDirection);
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
cursor->mObjectStore = aObjectStore;
|
|
|
|
|
|
|
|
if (!cursor->mData.SwapElements(aData)) {
|
|
|
|
NS_ERROR("Out of memory?!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
NS_ASSERTION(!cursor->mData.IsEmpty(), "Should never have an empty set!");
|
|
|
|
|
|
|
|
cursor->mDataIndex = cursor->mData.Length() - 1;
|
|
|
|
cursor->mType = OBJECTSTORE;
|
|
|
|
|
|
|
|
return cursor.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2010-06-28 11:51:06 -07:00
|
|
|
already_AddRefed<IDBCursor>
|
|
|
|
IDBCursor::Create(IDBRequest* aRequest,
|
|
|
|
IDBTransaction* aTransaction,
|
|
|
|
IDBIndex* aIndex,
|
|
|
|
PRUint16 aDirection,
|
|
|
|
nsTArray<KeyKeyPair>& aData)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aIndex, "Null pointer!");
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
nsRefPtr<IDBCursor> cursor =
|
|
|
|
IDBCursor::CreateCommon(aRequest, aTransaction, aDirection);
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
cursor->mObjectStore = aIndex->ObjectStore();
|
|
|
|
cursor->mIndex = aIndex;
|
|
|
|
|
|
|
|
if (!cursor->mKeyData.SwapElements(aData)) {
|
|
|
|
NS_ERROR("Out of memory?!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
NS_ASSERTION(!cursor->mKeyData.IsEmpty(), "Should never have an empty set!");
|
|
|
|
|
|
|
|
cursor->mDataIndex = cursor->mKeyData.Length() - 1;
|
|
|
|
cursor->mType = INDEX;
|
|
|
|
|
|
|
|
return cursor.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2010-06-28 11:51:06 -07:00
|
|
|
already_AddRefed<IDBCursor>
|
|
|
|
IDBCursor::Create(IDBRequest* aRequest,
|
|
|
|
IDBTransaction* aTransaction,
|
|
|
|
IDBIndex* aIndex,
|
|
|
|
PRUint16 aDirection,
|
|
|
|
nsTArray<KeyValuePair>& aData)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aIndex, "Null pointer!");
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
nsRefPtr<IDBCursor> cursor =
|
|
|
|
IDBCursor::CreateCommon(aRequest, aTransaction, aDirection);
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
cursor->mObjectStore = aIndex->ObjectStore();
|
|
|
|
cursor->mIndex = aIndex;
|
|
|
|
|
|
|
|
if (!cursor->mData.SwapElements(aData)) {
|
|
|
|
NS_ERROR("Out of memory?!");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
NS_ASSERTION(!cursor->mData.IsEmpty(), "Should never have an empty set!");
|
|
|
|
|
|
|
|
cursor->mDataIndex = cursor->mData.Length() - 1;
|
|
|
|
cursor->mType = INDEXOBJECT;
|
|
|
|
|
|
|
|
return cursor.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2010-06-28 11:51:06 -07:00
|
|
|
already_AddRefed<IDBCursor>
|
|
|
|
IDBCursor::CreateCommon(IDBRequest* aRequest,
|
|
|
|
IDBTransaction* aTransaction,
|
|
|
|
PRUint16 aDirection)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
NS_ASSERTION(aRequest, "Null pointer!");
|
|
|
|
NS_ASSERTION(aTransaction, "Null pointer!");
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
nsRefPtr<IDBCursor> cursor(new IDBCursor());
|
2010-06-23 12:46:08 -07:00
|
|
|
cursor->mRequest = aRequest;
|
|
|
|
cursor->mTransaction = aTransaction;
|
|
|
|
cursor->mDirection = aDirection;
|
|
|
|
|
|
|
|
return cursor.forget();
|
|
|
|
}
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
IDBCursor::IDBCursor()
|
2010-06-23 12:46:08 -07:00
|
|
|
: mDirection(nsIIDBCursor::NEXT),
|
|
|
|
mCachedValue(JSVAL_VOID),
|
|
|
|
mHaveCachedValue(false),
|
2010-06-25 14:54:22 -07:00
|
|
|
mJSRuntime(nsnull),
|
2010-06-23 12:46:08 -07:00
|
|
|
mContinueCalled(false),
|
|
|
|
mDataIndex(0),
|
|
|
|
mType(OBJECTSTORE)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
}
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
IDBCursor::~IDBCursor()
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
2010-06-25 14:54:22 -07:00
|
|
|
if (mJSRuntime) {
|
|
|
|
js_RemoveRoot(mJSRuntime, &mCachedValue);
|
2010-06-23 12:46:08 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
NS_IMPL_ADDREF(IDBCursor)
|
|
|
|
NS_IMPL_RELEASE(IDBCursor)
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN(IDBCursor)
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, IDBRequest::Generator)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIIDBCursor)
|
2010-06-28 11:51:06 -07:00
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(IDBCursor)
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
DOMCI_DATA(IDBCursor, IDBCursor)
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-28 11:51:06 -07:00
|
|
|
IDBCursor::GetDirection(PRUint16* aDirection)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
*aDirection = mDirection;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-28 11:51:06 -07:00
|
|
|
IDBCursor::GetKey(nsIVariant** aKey)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
if (!mCachedKey) {
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIWritableVariant> variant =
|
|
|
|
do_CreateInstance(NS_VARIANT_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
const Key& key = mType == INDEX ?
|
|
|
|
mKeyData[mDataIndex].key :
|
|
|
|
mData[mDataIndex].key;
|
|
|
|
NS_ASSERTION(!key.IsUnset() && !key.IsNull(), "Bad key!");
|
|
|
|
|
|
|
|
if (key.IsString()) {
|
|
|
|
rv = variant->SetAsAString(key.StringValue());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
else if (key.IsInt()) {
|
|
|
|
rv = variant->SetAsInt64(key.IntValue());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_NOTREACHED("Huh?!");
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = variant->SetWritable(PR_FALSE);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsIWritableVariant* result;
|
|
|
|
variant.forget(&result);
|
|
|
|
|
|
|
|
mCachedKey = dont_AddRef(static_cast<nsIVariant*>(result));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIVariant> result(mCachedKey);
|
|
|
|
result.forget(aKey);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-28 15:22:41 -07:00
|
|
|
IDBCursor::GetValue(JSContext* aCx,
|
|
|
|
jsval* aValue)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
if (mType == INDEX) {
|
|
|
|
const Key& value = mKeyData[mDataIndex].value;
|
|
|
|
NS_ASSERTION(!value.IsUnset() && !value.IsNull(), "Bad key!");
|
|
|
|
|
2010-06-28 15:22:41 -07:00
|
|
|
rv = IDBObjectStore::GetJSValFromKey(value, aCx, aValue);
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mHaveCachedValue) {
|
2010-06-28 15:22:41 -07:00
|
|
|
JSAutoRequest ar(aCx);
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2010-06-25 14:54:22 -07:00
|
|
|
if (!mJSRuntime) {
|
2010-06-28 15:22:41 -07:00
|
|
|
JSRuntime* rt = JS_GetRuntime(aCx);
|
2010-06-25 14:54:22 -07:00
|
|
|
JSBool ok = js_AddRootRT(rt, &mCachedValue,
|
2010-06-30 11:54:20 -07:00
|
|
|
"IDBCursor::mCachedValue");
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_TRUE(ok, NS_ERROR_FAILURE);
|
|
|
|
|
2010-06-25 14:54:22 -07:00
|
|
|
mJSRuntime = rt;
|
2010-06-23 12:46:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIJSON> json(new nsJSON());
|
2010-06-28 15:22:41 -07:00
|
|
|
rv = json->DecodeToJSVal(mData[mDataIndex].value, aCx, &mCachedValue);
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
mHaveCachedValue = true;
|
|
|
|
}
|
|
|
|
|
2010-06-28 15:22:41 -07:00
|
|
|
*aValue = mCachedValue;
|
2010-06-23 12:46:08 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-07-14 23:19:36 -07:00
|
|
|
IDBCursor::Continue(const jsval &aKey,
|
2010-06-28 15:22:41 -07:00
|
|
|
JSContext* aCx,
|
2010-06-28 11:51:06 -07:00
|
|
|
PRUint8 aOptionalArgCount,
|
|
|
|
PRBool* _retval)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
if (!mObjectStore->TransactionIsOpen()) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mContinueCalled) {
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Key key;
|
2010-06-28 15:22:41 -07:00
|
|
|
nsresult rv = IDBObjectStore::GetKeyFromJSVal(aKey, key);
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (key.IsNull()) {
|
|
|
|
if (aOptionalArgCount) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
key = Key::UNSETKEY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TransactionThreadPool* pool = TransactionThreadPool::GetOrCreate();
|
|
|
|
NS_ENSURE_TRUE(pool, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsRefPtr<ContinueRunnable> runnable(new ContinueRunnable(this, key));
|
|
|
|
|
|
|
|
rv = pool->Dispatch(mTransaction, runnable, false, nsnull);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
mTransaction->OnNewRequest();
|
|
|
|
|
|
|
|
mContinueCalled = true;
|
|
|
|
|
|
|
|
*_retval = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-07-14 23:19:36 -07:00
|
|
|
IDBCursor::Update(const jsval &aValue,
|
2010-06-28 15:22:41 -07:00
|
|
|
JSContext* aCx,
|
2010-06-28 11:51:06 -07:00
|
|
|
nsIIDBRequest** _retval)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
if (mType != OBJECTSTORE) {
|
|
|
|
NS_NOTYETIMPLEMENTED("Implement me!");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mObjectStore->TransactionIsOpen()) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mObjectStore->IsWriteAllowed()) {
|
|
|
|
return NS_ERROR_OBJECT_IS_IMMUTABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Key& key = mData[mDataIndex].key;
|
|
|
|
NS_ASSERTION(!key.IsUnset() && !key.IsNull(), "Bad key!");
|
|
|
|
|
2010-06-28 15:22:41 -07:00
|
|
|
JSAutoRequest ar(aCx);
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2010-06-28 15:22:41 -07:00
|
|
|
js::AutoValueRooter clone(aCx);
|
|
|
|
nsresult rv = nsContentUtils::CreateStructuredClone(aCx, aValue,
|
2010-07-14 23:19:36 -07:00
|
|
|
clone.jsval_addr());
|
2010-06-23 12:46:08 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mObjectStore->KeyPath().IsEmpty()) {
|
|
|
|
// Make sure the object given has the correct keyPath value set on it or
|
|
|
|
// we will add it.
|
|
|
|
const nsString& keyPath = mObjectStore->KeyPath();
|
|
|
|
const jschar* keyPathChars = reinterpret_cast<const jschar*>(keyPath.get());
|
|
|
|
const size_t keyPathLen = keyPath.Length();
|
|
|
|
|
2010-06-28 15:22:41 -07:00
|
|
|
js::AutoValueRooter prop(aCx);
|
2010-07-14 23:19:36 -07:00
|
|
|
JSBool ok = JS_GetUCProperty(aCx, JSVAL_TO_OBJECT(clone.jsval_value()),
|
|
|
|
keyPathChars, keyPathLen, prop.jsval_addr());
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_TRUE(ok, NS_ERROR_FAILURE);
|
|
|
|
|
2010-07-14 23:19:36 -07:00
|
|
|
if (JSVAL_IS_VOID(prop.jsval_value())) {
|
|
|
|
rv = IDBObjectStore::GetJSValFromKey(key, aCx, prop.jsval_addr());
|
2010-06-28 15:22:41 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2010-07-14 23:19:36 -07:00
|
|
|
ok = JS_DefineUCProperty(aCx, JSVAL_TO_OBJECT(clone.jsval_value()),
|
|
|
|
keyPathChars, keyPathLen, prop.jsval_value(), nsnull,
|
2010-06-28 15:22:41 -07:00
|
|
|
nsnull, JSPROP_ENUMERATE);
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_TRUE(ok, NS_ERROR_FAILURE);
|
|
|
|
}
|
2010-06-28 15:22:41 -07:00
|
|
|
else {
|
|
|
|
Key newKey;
|
2010-07-14 23:19:36 -07:00
|
|
|
rv = IDBObjectStore::GetKeyFromJSVal(prop.jsval_value(), newKey);
|
2010-06-28 15:22:41 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2010-06-28 15:22:41 -07:00
|
|
|
if (newKey.IsUnset() || newKey.IsNull() || newKey != key) {
|
2010-06-23 12:46:08 -07:00
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTArray<IndexUpdateInfo> indexUpdateInfo;
|
2010-06-28 11:51:06 -07:00
|
|
|
rv = IDBObjectStore::GetIndexUpdateInfo(mObjectStore->GetObjectStoreInfo(),
|
2010-07-14 23:19:36 -07:00
|
|
|
aCx, clone.jsval_value(), indexUpdateInfo);
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIJSON> json(new nsJSON());
|
|
|
|
|
|
|
|
nsString jsonValue;
|
2010-07-14 23:19:36 -07:00
|
|
|
rv = json->EncodeFromJSVal(clone.jsval_addr(), aCx, jsonValue);
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-08-26 13:57:25 -07:00
|
|
|
nsRefPtr<IDBRequest> request =
|
|
|
|
GenerateWriteRequest(mTransaction->ScriptContext(), mTransaction->Owner());
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_TRUE(request, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsRefPtr<UpdateHelper> helper =
|
|
|
|
new UpdateHelper(mTransaction, request, mObjectStore->Id(), jsonValue, key,
|
|
|
|
mObjectStore->IsAutoIncrement(), indexUpdateInfo);
|
|
|
|
rv = helper->DispatchToTransactionPool();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-28 11:51:06 -07:00
|
|
|
IDBCursor::Remove(nsIIDBRequest** _retval)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
if (mType != OBJECTSTORE) {
|
|
|
|
NS_NOTYETIMPLEMENTED("Implement me!");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mObjectStore->TransactionIsOpen()) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mObjectStore->IsWriteAllowed()) {
|
|
|
|
return NS_ERROR_OBJECT_IS_IMMUTABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Key& key = mData[mDataIndex].key;
|
|
|
|
NS_ASSERTION(!key.IsUnset() && !key.IsNull(), "Bad key!");
|
|
|
|
|
2010-08-26 13:57:25 -07:00
|
|
|
nsRefPtr<IDBRequest> request =
|
|
|
|
GenerateWriteRequest(mTransaction->ScriptContext(), mTransaction->Owner());
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_ENSURE_TRUE(request, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsRefPtr<RemoveHelper> helper =
|
|
|
|
new RemoveHelper(mTransaction, request, mObjectStore->Id(), key,
|
|
|
|
mObjectStore->IsAutoIncrement());
|
|
|
|
nsresult rv = helper->DispatchToTransactionPool();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint16
|
|
|
|
UpdateHelper::DoDatabaseWork(mozIStorageConnection* aConnection)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aConnection, "Passed a null connection!");
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
NS_ASSERTION(!mKey.IsUnset() && !mKey.IsNull(), "Badness!");
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
mTransaction->AddStatement(false, true, mAutoIncrement);
|
|
|
|
NS_ENSURE_TRUE(stmt, nsIIDBDatabaseException::UNKNOWN_ERR);
|
|
|
|
|
|
|
|
mozStorageStatementScoper scoper(stmt);
|
|
|
|
|
|
|
|
Savepoint savepoint(mTransaction);
|
|
|
|
|
|
|
|
NS_NAMED_LITERAL_CSTRING(keyValue, "key_value");
|
|
|
|
|
|
|
|
rv = stmt->BindInt64ByName(NS_LITERAL_CSTRING("osid"), mOSID);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsIIDBDatabaseException::UNKNOWN_ERR);
|
|
|
|
|
|
|
|
if (mKey.IsInt()) {
|
|
|
|
rv = stmt->BindInt64ByName(keyValue, mKey.IntValue());
|
|
|
|
}
|
|
|
|
else if (mKey.IsString()) {
|
|
|
|
rv = stmt->BindStringByName(keyValue, mKey.StringValue());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_NOTREACHED("Unknown key type!");
|
|
|
|
}
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsIIDBDatabaseException::UNKNOWN_ERR);
|
|
|
|
|
|
|
|
rv = stmt->BindStringByName(NS_LITERAL_CSTRING("data"), mValue);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsIIDBDatabaseException::UNKNOWN_ERR);
|
|
|
|
|
|
|
|
if (NS_FAILED(stmt->Execute())) {
|
|
|
|
return nsIIDBDatabaseException::CONSTRAINT_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update our indexes if needed.
|
|
|
|
if (!mIndexUpdateInfo.IsEmpty()) {
|
|
|
|
PRInt64 objectDataId = mAutoIncrement ? mKey.IntValue() : LL_MININT;
|
2010-06-28 11:51:06 -07:00
|
|
|
rv = IDBObjectStore::UpdateIndexes(mTransaction, mOSID, mKey,
|
|
|
|
mAutoIncrement, true,
|
|
|
|
objectDataId, mIndexUpdateInfo);
|
2010-06-23 12:46:08 -07:00
|
|
|
if (rv == NS_ERROR_STORAGE_CONSTRAINT) {
|
|
|
|
return nsIIDBDatabaseException::CONSTRAINT_ERR;
|
|
|
|
}
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsIIDBDatabaseException::UNKNOWN_ERR);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = savepoint.Release();
|
|
|
|
return NS_SUCCEEDED(rv) ? OK : nsIIDBDatabaseException::UNKNOWN_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint16
|
|
|
|
UpdateHelper::GetSuccessResult(nsIWritableVariant* aResult)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!mKey.IsUnset() && !mKey.IsNull(), "Badness!");
|
|
|
|
|
|
|
|
if (mKey.IsString()) {
|
|
|
|
aResult->SetAsAString(mKey.StringValue());
|
|
|
|
}
|
|
|
|
else if (mKey.IsInt()) {
|
|
|
|
aResult->SetAsInt64(mKey.IntValue());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_NOTREACHED("Bad key!");
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint16
|
|
|
|
RemoveHelper::DoDatabaseWork(mozIStorageConnection* aConnection)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aConnection, "Passed a null connection!");
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
mTransaction->RemoveStatement(mAutoIncrement);
|
|
|
|
NS_ENSURE_TRUE(stmt, nsIIDBDatabaseException::UNKNOWN_ERR);
|
|
|
|
mozStorageStatementScoper scoper(stmt);
|
|
|
|
|
|
|
|
nsresult rv = stmt->BindInt64ByName(NS_LITERAL_CSTRING("osid"), mOSID);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsIIDBDatabaseException::UNKNOWN_ERR);
|
|
|
|
|
|
|
|
NS_ASSERTION(!mKey.IsUnset() && !mKey.IsNull(), "Must have a key here!");
|
|
|
|
|
|
|
|
NS_NAMED_LITERAL_CSTRING(key_value, "key_value");
|
|
|
|
|
|
|
|
if (mKey.IsInt()) {
|
|
|
|
rv = stmt->BindInt64ByName(key_value, mKey.IntValue());
|
|
|
|
}
|
|
|
|
else if (mKey.IsString()) {
|
|
|
|
rv = stmt->BindStringByName(key_value, mKey.StringValue());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_NOTREACHED("Unknown key type!");
|
|
|
|
}
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsIIDBDatabaseException::UNKNOWN_ERR);
|
|
|
|
|
|
|
|
// Search for it!
|
|
|
|
rv = stmt->Execute();
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsIIDBDatabaseException::UNKNOWN_ERR);
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint16
|
|
|
|
RemoveHelper::GetSuccessResult(nsIWritableVariant* aResult)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!mKey.IsUnset() && !mKey.IsNull(), "Badness!");
|
|
|
|
|
|
|
|
if (mKey.IsString()) {
|
|
|
|
aResult->SetAsAString(mKey.StringValue());
|
|
|
|
}
|
|
|
|
else if (mKey.IsInt()) {
|
|
|
|
aResult->SetAsInt64(mKey.IntValue());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_NOTREACHED("Unknown key type!");
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
ContinueRunnable::Run()
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
if (!NS_IsMainThread()) {
|
|
|
|
rv = NS_DispatchToMainThread(this, NS_DISPATCH_NORMAL);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove cached stuff from last time.
|
|
|
|
mCursor->mCachedKey = nsnull;
|
|
|
|
mCursor->mCachedValue = JSVAL_VOID;
|
|
|
|
mCursor->mHaveCachedValue = false;
|
|
|
|
mCursor->mContinueCalled = false;
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
if (mCursor->mType == IDBCursor::INDEX) {
|
2010-06-23 12:46:08 -07:00
|
|
|
mCursor->mKeyData.RemoveElementAt(mCursor->mDataIndex);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mCursor->mData.RemoveElementAt(mCursor->mDataIndex);
|
|
|
|
}
|
|
|
|
if (mCursor->mDataIndex) {
|
|
|
|
mCursor->mDataIndex--;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWritableVariant> variant =
|
|
|
|
do_CreateInstance(NS_VARIANT_CONTRACTID);
|
|
|
|
if (!variant) {
|
|
|
|
NS_ERROR("Couldn't create variant!");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
PRBool empty = mCursor->mType == IDBCursor::INDEX ?
|
2010-06-23 12:46:08 -07:00
|
|
|
mCursor->mKeyData.IsEmpty() :
|
|
|
|
mCursor->mData.IsEmpty();
|
|
|
|
|
|
|
|
if (empty) {
|
|
|
|
rv = variant->SetAsEmpty();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!mKey.IsUnset()) {
|
|
|
|
NS_ASSERTION(!mKey.IsNull(), "Huh?!");
|
|
|
|
|
|
|
|
NS_WARNING("Using a slow O(n) search for continue(key), do something "
|
|
|
|
"smarter!");
|
|
|
|
|
|
|
|
// Skip ahead to our next key match.
|
|
|
|
PRInt32 index = PRInt32(mCursor->mDataIndex);
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
if (mCursor->mType == IDBCursor::INDEX) {
|
2010-06-23 12:46:08 -07:00
|
|
|
while (index >= 0) {
|
|
|
|
const Key& key = mCursor->mKeyData[index].key;
|
|
|
|
if (mKey == key) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (key < mKey) {
|
|
|
|
index--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
index = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index >= 0) {
|
|
|
|
mCursor->mDataIndex = PRUint32(index);
|
|
|
|
mCursor->mKeyData.RemoveElementsAt(index + 1,
|
|
|
|
mCursor->mKeyData.Length() - index
|
|
|
|
- 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
while (index >= 0) {
|
|
|
|
const Key& key = mCursor->mData[index].key;
|
|
|
|
if (mKey == key) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (key < mKey) {
|
|
|
|
index--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
index = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index >= 0) {
|
|
|
|
mCursor->mDataIndex = PRUint32(index);
|
|
|
|
mCursor->mData.RemoveElementsAt(index + 1,
|
|
|
|
mCursor->mData.Length() - index - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = variant->SetAsISupports(static_cast<IDBRequest::Generator*>(mCursor));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = variant->SetWritable(PR_FALSE);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEvent> event =
|
|
|
|
IDBSuccessEvent::Create(mCursor->mRequest, variant, mCursor->mTransaction);
|
|
|
|
if (!event) {
|
|
|
|
NS_ERROR("Failed to create event!");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool dummy;
|
|
|
|
mCursor->mRequest->DispatchEvent(event, &dummy);
|
|
|
|
|
|
|
|
mCursor->mTransaction->OnRequestFinished();
|
|
|
|
|
|
|
|
mCursor = nsnull;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|