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: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
#include "IDBRequest.h"
|
|
|
|
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
|
2013-09-25 04:21:20 -07:00
|
|
|
#include "mozilla/ContentEvents.h"
|
2013-07-31 15:28:15 -07:00
|
|
|
#include "mozilla/dom/IDBOpenDBRequestBinding.h"
|
2013-08-22 22:17:10 -07:00
|
|
|
#include "mozilla/dom/UnionTypes.h"
|
2010-06-23 12:46:08 -07:00
|
|
|
#include "nsComponentManagerUtils.h"
|
2011-10-03 12:11:31 -07:00
|
|
|
#include "nsDOMClassInfoID.h"
|
2010-08-26 13:57:25 -07:00
|
|
|
#include "nsDOMJSUtils.h"
|
2011-10-03 12:11:31 -07:00
|
|
|
#include "nsContentUtils.h"
|
2013-05-22 09:05:26 -07:00
|
|
|
#include "nsCxPusher.h"
|
2010-11-10 15:26:03 -08:00
|
|
|
#include "nsEventDispatcher.h"
|
2012-06-29 09:48:34 -07:00
|
|
|
#include "nsJSUtils.h"
|
2010-08-26 13:57:25 -07:00
|
|
|
#include "nsPIDOMWindow.h"
|
2013-09-23 10:25:00 -07:00
|
|
|
#include "nsString.h"
|
2010-06-23 12:46:08 -07:00
|
|
|
#include "nsThreadUtils.h"
|
2012-01-03 07:27:39 -08:00
|
|
|
#include "nsWrapperCacheInlines.h"
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2011-01-06 22:21:36 -08:00
|
|
|
#include "AsyncConnectionHelper.h"
|
2013-08-22 22:17:10 -07:00
|
|
|
#include "IDBCursor.h"
|
2010-06-23 12:46:08 -07:00
|
|
|
#include "IDBEvents.h"
|
2012-08-29 17:50:28 -07:00
|
|
|
#include "IDBFactory.h"
|
2013-08-22 22:17:10 -07:00
|
|
|
#include "IDBIndex.h"
|
|
|
|
#include "IDBObjectStore.h"
|
2010-11-10 15:26:03 -08:00
|
|
|
#include "IDBTransaction.h"
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2013-03-15 23:58:50 -07:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
|
|
|
uint64_t gNextSerialNumber = 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
2010-06-23 12:46:08 -07:00
|
|
|
USING_INDEXEDDB_NAMESPACE
|
2013-09-17 08:16:02 -07:00
|
|
|
using mozilla::dom::OwningIDBObjectStoreOrIDBIndexOrIDBCursor;
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2010-11-10 15:26:03 -08:00
|
|
|
IDBRequest::IDBRequest()
|
2011-01-06 22:21:36 -08:00
|
|
|
: mResultVal(JSVAL_VOID),
|
2012-07-30 07:20:58 -07:00
|
|
|
mActorParent(nullptr),
|
2013-03-15 23:58:50 -07:00
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
|
|
|
mSerialNumber(gNextSerialNumber++),
|
|
|
|
#endif
|
2012-06-01 10:21:12 -07:00
|
|
|
mErrorCode(NS_OK),
|
2013-03-15 23:58:50 -07:00
|
|
|
mLineNo(0),
|
|
|
|
mHaveResultOrErrorCode(false)
|
2010-11-10 15:26:03 -08:00
|
|
|
{
|
2011-01-06 22:21:36 -08:00
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
2013-07-31 15:28:15 -07:00
|
|
|
|
|
|
|
SetIsDOMBinding();
|
2010-11-10 15:26:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
IDBRequest::~IDBRequest()
|
|
|
|
{
|
2012-11-27 17:37:57 -08:00
|
|
|
mResultVal = JSVAL_VOID;
|
2011-01-06 22:21:36 -08:00
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
2010-11-10 15:26:03 -08:00
|
|
|
}
|
|
|
|
|
2010-09-09 15:15:38 -07:00
|
|
|
// static
|
2010-08-26 13:57:25 -07:00
|
|
|
already_AddRefed<IDBRequest>
|
2013-08-22 22:17:10 -07:00
|
|
|
IDBRequest::Create(IDBWrapperCache* aOwnerCache,
|
2013-06-20 11:05:33 -07:00
|
|
|
IDBTransaction* aTransaction)
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
2011-01-06 22:21:36 -08:00
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
2010-08-26 13:57:25 -07:00
|
|
|
nsRefPtr<IDBRequest> request(new IDBRequest());
|
|
|
|
|
2010-11-10 15:26:03 -08:00
|
|
|
request->mTransaction = aTransaction;
|
2012-03-12 17:56:07 -07:00
|
|
|
request->BindToOwner(aOwnerCache);
|
2012-11-29 14:54:14 -08:00
|
|
|
request->SetScriptOwner(aOwnerCache->GetScriptOwner());
|
2013-06-20 11:05:33 -07:00
|
|
|
request->CaptureCaller();
|
2012-06-29 09:48:34 -07:00
|
|
|
|
2010-08-26 13:57:25 -07:00
|
|
|
return request.forget();
|
2010-06-23 12:46:08 -07:00
|
|
|
}
|
|
|
|
|
2013-08-22 22:17:10 -07:00
|
|
|
// static
|
|
|
|
already_AddRefed<IDBRequest>
|
|
|
|
IDBRequest::Create(IDBObjectStore* aSourceAsObjectStore,
|
|
|
|
IDBWrapperCache* aOwnerCache,
|
|
|
|
IDBTransaction* aTransaction)
|
|
|
|
{
|
|
|
|
nsRefPtr<IDBRequest> request = Create(aOwnerCache, aTransaction);
|
|
|
|
|
|
|
|
request->mSourceAsObjectStore = aSourceAsObjectStore;
|
|
|
|
|
|
|
|
return request.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
already_AddRefed<IDBRequest>
|
|
|
|
IDBRequest::Create(IDBIndex* aSourceAsIndex,
|
|
|
|
IDBWrapperCache* aOwnerCache,
|
|
|
|
IDBTransaction* aTransaction)
|
|
|
|
{
|
|
|
|
nsRefPtr<IDBRequest> request = Create(aOwnerCache, aTransaction);
|
|
|
|
|
|
|
|
request->mSourceAsIndex = aSourceAsIndex;
|
|
|
|
|
|
|
|
return request.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
already_AddRefed<IDBRequest>
|
|
|
|
IDBRequest::Create(IDBCursor* aSourceAsCursor,
|
|
|
|
IDBWrapperCache* aOwnerCache,
|
|
|
|
IDBTransaction* aTransaction)
|
|
|
|
{
|
|
|
|
nsRefPtr<IDBRequest> request = Create(aOwnerCache, aTransaction);
|
|
|
|
|
|
|
|
request->mSourceAsCursor = aSourceAsCursor;
|
|
|
|
|
|
|
|
return request.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
|
|
|
IDBRequest::AssertSourceIsCorrect() const
|
|
|
|
{
|
|
|
|
// At most one of mSourceAs* is allowed to be non-null. Check that by
|
|
|
|
// summing the double negation of each one and asserting the sum is at most
|
|
|
|
// 1.
|
|
|
|
|
|
|
|
MOZ_ASSERT(!!mSourceAsObjectStore + !!mSourceAsIndex + !!mSourceAsCursor <= 1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
2013-09-17 08:16:02 -07:00
|
|
|
IDBRequest::GetSource(Nullable<OwningIDBObjectStoreOrIDBIndexOrIDBCursor>& aSource) const
|
2013-08-22 22:17:10 -07:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
AssertSourceIsCorrect();
|
|
|
|
|
|
|
|
if (mSourceAsObjectStore) {
|
|
|
|
aSource.SetValue().SetAsIDBObjectStore() = mSourceAsObjectStore;
|
|
|
|
} else if (mSourceAsIndex) {
|
|
|
|
aSource.SetValue().SetAsIDBIndex() = mSourceAsIndex;
|
|
|
|
} else if (mSourceAsCursor) {
|
|
|
|
aSource.SetValue().SetAsIDBCursor() = mSourceAsCursor;
|
|
|
|
} else {
|
|
|
|
aSource.SetNull();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:21:36 -08:00
|
|
|
void
|
|
|
|
IDBRequest::Reset()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
mResultVal = JSVAL_VOID;
|
|
|
|
mHaveResultOrErrorCode = false;
|
2012-07-30 07:20:58 -07:00
|
|
|
mError = nullptr;
|
2011-01-06 22:21:36 -08:00
|
|
|
}
|
|
|
|
|
2011-01-26 17:53:02 -08:00
|
|
|
nsresult
|
2011-10-20 09:10:56 -07:00
|
|
|
IDBRequest::NotifyHelperCompleted(HelperBase* aHelper)
|
2011-01-06 22:21:36 -08:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
2011-01-26 17:53:02 -08:00
|
|
|
NS_ASSERTION(!mHaveResultOrErrorCode, "Already called!");
|
|
|
|
NS_ASSERTION(JSVAL_IS_VOID(mResultVal), "Should be undefined!");
|
|
|
|
|
|
|
|
mHaveResultOrErrorCode = true;
|
|
|
|
|
|
|
|
nsresult rv = aHelper->GetResultCode();
|
|
|
|
|
|
|
|
// If the request failed then set the error code and return.
|
|
|
|
if (NS_FAILED(rv)) {
|
2012-06-01 10:21:12 -07:00
|
|
|
SetError(rv);
|
2011-01-26 17:53:02 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-09-20 11:20:15 -07:00
|
|
|
// See if our window is still valid. If not then we're going to pretend that
|
|
|
|
// we never completed.
|
|
|
|
if (NS_FAILED(CheckInnerWindowCorrectness())) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-01-26 17:53:02 -08:00
|
|
|
// Otherwise we need to get the result from the helper.
|
2013-02-26 11:04:13 -08:00
|
|
|
AutoPushJSContext cx(GetJSContext());
|
2012-06-01 10:21:12 -07:00
|
|
|
if (!cx) {
|
|
|
|
NS_WARNING("Failed to get safe JSContext!");
|
|
|
|
rv = NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR;
|
|
|
|
SetError(rv);
|
|
|
|
return rv;
|
2012-01-23 08:18:14 -08:00
|
|
|
}
|
2012-01-24 02:03:37 -08:00
|
|
|
|
2013-07-31 15:28:15 -07:00
|
|
|
JS::Rooted<JSObject*> global(cx, IDBWrapperCache::GetParentObject());
|
2012-01-24 02:03:37 -08:00
|
|
|
NS_ASSERTION(global, "This should never be null!");
|
2011-01-26 17:53:02 -08:00
|
|
|
|
2012-08-21 18:42:53 -07:00
|
|
|
JSAutoCompartment ac(cx, global);
|
|
|
|
AssertIsRooted();
|
|
|
|
|
2013-06-18 03:00:37 -07:00
|
|
|
JS::Rooted<JS::Value> value(cx);
|
2013-06-21 06:12:46 -07:00
|
|
|
rv = aHelper->GetSuccessResult(cx, &value);
|
2012-08-21 18:42:53 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_WARNING("GetSuccessResult failed!");
|
2012-01-24 02:03:37 -08:00
|
|
|
}
|
2011-01-06 22:21:36 -08:00
|
|
|
|
2011-01-26 17:53:02 -08:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2012-07-30 07:20:58 -07:00
|
|
|
mError = nullptr;
|
2013-06-18 03:00:37 -07:00
|
|
|
mResultVal = value;
|
2011-01-06 22:21:36 -08:00
|
|
|
}
|
|
|
|
else {
|
2012-06-01 10:21:12 -07:00
|
|
|
SetError(rv);
|
2011-01-26 17:53:02 -08:00
|
|
|
mResultVal = JSVAL_VOID;
|
2011-01-06 22:21:36 -08:00
|
|
|
}
|
2011-01-26 17:53:02 -08:00
|
|
|
|
|
|
|
return rv;
|
2011-01-06 22:21:36 -08:00
|
|
|
}
|
|
|
|
|
2012-04-11 14:55:21 -07:00
|
|
|
void
|
2012-06-01 10:21:12 -07:00
|
|
|
IDBRequest::NotifyHelperSentResultsToChildProcess(nsresult aRv)
|
2012-04-11 14:55:21 -07:00
|
|
|
{
|
2012-06-01 10:21:12 -07:00
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
NS_ASSERTION(!mHaveResultOrErrorCode, "Already called!");
|
|
|
|
NS_ASSERTION(JSVAL_IS_VOID(mResultVal), "Should be undefined!");
|
|
|
|
|
|
|
|
// See if our window is still valid. If not then we're going to pretend that
|
|
|
|
// we never completed.
|
|
|
|
if (NS_FAILED(CheckInnerWindowCorrectness())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mHaveResultOrErrorCode = true;
|
|
|
|
|
|
|
|
if (NS_FAILED(aRv)) {
|
|
|
|
SetError(aRv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
IDBRequest::SetError(nsresult aRv)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_FAILED(aRv), "Er, what?");
|
2012-04-11 14:55:21 -07:00
|
|
|
NS_ASSERTION(!mError, "Already have an error?");
|
|
|
|
|
2012-06-01 10:21:12 -07:00
|
|
|
mHaveResultOrErrorCode = true;
|
2013-05-18 10:52:06 -07:00
|
|
|
mError = new mozilla::dom::DOMError(GetOwner(), aRv);
|
2012-06-01 10:21:12 -07:00
|
|
|
mErrorCode = aRv;
|
|
|
|
|
|
|
|
mResultVal = JSVAL_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsresult
|
|
|
|
IDBRequest::GetErrorCode() const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
NS_ASSERTION(mHaveResultOrErrorCode, "Don't call me yet!");
|
|
|
|
return mErrorCode;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
JSContext*
|
|
|
|
IDBRequest::GetJSContext()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
JSContext* cx;
|
|
|
|
|
|
|
|
if (GetScriptOwner()) {
|
2013-04-18 08:36:03 -07:00
|
|
|
return nsContentUtils::GetSafeJSContext();
|
2012-06-01 10:21:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
nsIScriptContext* sc = GetContextForEventHandlers(&rv);
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
|
|
|
NS_ENSURE_TRUE(sc, nullptr);
|
2012-06-01 10:21:12 -07:00
|
|
|
|
|
|
|
cx = sc->GetNativeContext();
|
|
|
|
NS_ASSERTION(cx, "Failed to get a context!");
|
|
|
|
|
|
|
|
return cx;
|
2012-04-11 14:55:21 -07:00
|
|
|
}
|
|
|
|
|
2012-06-29 09:48:34 -07:00
|
|
|
void
|
2013-06-20 11:05:33 -07:00
|
|
|
IDBRequest::CaptureCaller()
|
2012-06-29 09:48:34 -07:00
|
|
|
{
|
2013-06-20 11:05:33 -07:00
|
|
|
AutoJSContext cx;
|
2012-06-29 09:48:34 -07:00
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
const char* filename = nullptr;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t lineNo = 0;
|
2013-06-20 11:05:33 -07:00
|
|
|
if (!nsJSUtils::GetCallingLocation(cx, &filename, &lineNo)) {
|
|
|
|
// If our caller is in another process, we won't have a JSContext on the
|
|
|
|
// stack, and AutoJSContext will push the SafeJSContext. But that won't have
|
|
|
|
// any script on it (certainly not after the push), so GetCallingLocation
|
|
|
|
// will fail when it calls JS_DescribeScriptedCaller. That's fine.
|
2012-06-29 09:48:34 -07:00
|
|
|
NS_WARNING("Failed to get caller.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mFilename.Assign(NS_ConvertUTF8toUTF16(filename));
|
|
|
|
mLineNo = lineNo;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
IDBRequest::FillScriptErrorEvent(nsScriptErrorEvent* aEvent) const
|
|
|
|
{
|
|
|
|
aEvent->lineNr = mLineNo;
|
|
|
|
aEvent->fileName = mFilename.get();
|
|
|
|
}
|
|
|
|
|
2013-07-31 15:28:15 -07:00
|
|
|
mozilla::dom::IDBRequestReadyState
|
|
|
|
IDBRequest::ReadyState() const
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
2011-01-06 22:21:36 -08:00
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
2012-11-09 19:29:07 -08:00
|
|
|
if (IsPending()) {
|
2013-07-31 15:28:15 -07:00
|
|
|
return IDBRequestReadyState::Pending;
|
2012-03-12 21:44:45 -07:00
|
|
|
}
|
2011-10-20 09:10:56 -07:00
|
|
|
|
2013-07-31 15:28:15 -07:00
|
|
|
return IDBRequestReadyState::Done;
|
2010-06-23 12:46:08 -07:00
|
|
|
}
|
|
|
|
|
2013-07-31 15:28:15 -07:00
|
|
|
JSObject*
|
|
|
|
IDBRequest::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope)
|
2010-12-09 18:14:09 -08:00
|
|
|
{
|
2013-07-31 15:28:15 -07:00
|
|
|
return IDBRequestBinding::Wrap(aCx, aScope, this);
|
2010-12-09 18:14:09 -08:00
|
|
|
}
|
|
|
|
|
2013-07-31 15:28:15 -07:00
|
|
|
JS::Value
|
|
|
|
IDBRequest::GetResult(JSContext* aCx, mozilla::ErrorResult& aRv) const
|
2011-01-06 22:21:36 -08:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
if (!mHaveResultOrErrorCode) {
|
2011-01-26 17:53:02 -08:00
|
|
|
// XXX Need a real error code here.
|
2013-07-31 15:28:15 -07:00
|
|
|
aRv.Throw(NS_ERROR_DOM_INDEXEDDB_NOT_ALLOWED_ERR);
|
2011-01-06 22:21:36 -08:00
|
|
|
}
|
|
|
|
|
2013-07-31 15:28:15 -07:00
|
|
|
return mResultVal;
|
2011-01-06 22:21:36 -08:00
|
|
|
}
|
|
|
|
|
2013-05-18 10:52:06 -07:00
|
|
|
mozilla::dom::DOMError*
|
|
|
|
IDBRequest::GetError(mozilla::ErrorResult& aRv)
|
2011-01-06 22:21:36 -08:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
2011-01-26 17:53:02 -08:00
|
|
|
if (!mHaveResultOrErrorCode) {
|
2013-05-18 10:52:06 -07:00
|
|
|
aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR);
|
|
|
|
return nullptr;
|
2011-01-06 22:21:36 -08:00
|
|
|
}
|
|
|
|
|
2013-05-18 10:52:06 -07:00
|
|
|
return mError;
|
|
|
|
}
|
|
|
|
|
2013-08-01 18:29:05 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(IDBRequest)
|
|
|
|
|
2012-01-24 02:03:37 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(IDBRequest, IDBWrapperCache)
|
|
|
|
// Don't need NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS because
|
|
|
|
// nsDOMEventTargetHelper does it for us.
|
2013-08-22 22:17:10 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mSourceAsObjectStore)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mSourceAsIndex)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mSourceAsCursor)
|
2012-11-14 23:32:40 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mTransaction)
|
2013-05-27 13:43:09 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mError)
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2012-01-24 02:03:37 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(IDBRequest, IDBWrapperCache)
|
|
|
|
tmp->mResultVal = JSVAL_VOID;
|
2013-08-22 22:17:10 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mSourceAsObjectStore)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mSourceAsIndex)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mSourceAsCursor)
|
2012-11-14 23:32:40 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mTransaction)
|
2013-05-27 13:43:09 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mError)
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
2012-01-24 02:03:37 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(IDBRequest, IDBWrapperCache)
|
|
|
|
// Don't need NS_IMPL_CYCLE_COLLECTION_TRACE_PRESERVED_WRAPPER because
|
|
|
|
// nsDOMEventTargetHelper does it for us.
|
2012-06-10 16:44:50 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JSVAL_MEMBER_CALLBACK(mResultVal)
|
2011-01-06 22:21:36 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
2010-06-23 12:46:08 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(IDBRequest)
|
2012-01-24 02:03:37 -08:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(IDBWrapperCache)
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2012-01-24 02:03:37 -08:00
|
|
|
NS_IMPL_ADDREF_INHERITED(IDBRequest, IDBWrapperCache)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(IDBRequest, IDBWrapperCache)
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2010-11-10 15:26:03 -08:00
|
|
|
nsresult
|
|
|
|
IDBRequest::PreHandleEvent(nsEventChainPreVisitor& aVisitor)
|
|
|
|
{
|
2011-01-06 22:21:36 -08:00
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
aVisitor.mCanHandle = true;
|
2010-11-10 15:26:03 -08:00
|
|
|
aVisitor.mParentTarget = mTransaction;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-07-31 15:28:15 -07:00
|
|
|
IDBOpenDBRequest::IDBOpenDBRequest()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
SetIsDOMBinding();
|
|
|
|
}
|
|
|
|
|
2011-10-20 09:10:56 -07:00
|
|
|
IDBOpenDBRequest::~IDBOpenDBRequest()
|
2011-01-06 22:21:36 -08:00
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
}
|
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
// static
|
2011-10-20 09:10:56 -07:00
|
|
|
already_AddRefed<IDBOpenDBRequest>
|
2012-08-29 17:50:28 -07:00
|
|
|
IDBOpenDBRequest::Create(IDBFactory* aFactory,
|
|
|
|
nsPIDOMWindow* aOwner,
|
2013-06-20 11:05:33 -07:00
|
|
|
JS::Handle<JSObject*> aScriptOwner)
|
2010-10-19 10:58:52 -07:00
|
|
|
{
|
2011-01-06 22:21:36 -08:00
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
2012-08-29 17:50:28 -07:00
|
|
|
NS_ASSERTION(aFactory, "Null pointer!");
|
|
|
|
|
|
|
|
nsRefPtr<IDBOpenDBRequest> request = new IDBOpenDBRequest();
|
2010-10-19 10:58:52 -07:00
|
|
|
|
2012-03-12 17:56:07 -07:00
|
|
|
request->BindToOwner(aOwner);
|
2012-11-29 14:54:14 -08:00
|
|
|
request->SetScriptOwner(aScriptOwner);
|
2013-06-20 11:05:33 -07:00
|
|
|
request->CaptureCaller();
|
2012-08-29 17:50:28 -07:00
|
|
|
request->mFactory = aFactory;
|
2012-06-29 09:48:34 -07:00
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
return request.forget();
|
|
|
|
}
|
|
|
|
|
2011-01-06 22:21:36 -08:00
|
|
|
void
|
2011-10-20 09:10:56 -07:00
|
|
|
IDBOpenDBRequest::SetTransaction(IDBTransaction* aTransaction)
|
|
|
|
{
|
2012-06-01 10:21:12 -07:00
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
|
|
|
|
NS_ASSERTION(!aTransaction || !mTransaction,
|
|
|
|
"Shouldn't have a transaction here!");
|
|
|
|
|
2011-10-20 09:10:56 -07:00
|
|
|
mTransaction = aTransaction;
|
|
|
|
}
|
|
|
|
|
2013-08-01 18:29:05 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(IDBOpenDBRequest)
|
|
|
|
|
2011-10-20 09:10:56 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(IDBOpenDBRequest,
|
2010-10-19 10:58:52 -07:00
|
|
|
IDBRequest)
|
2012-11-14 23:32:40 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mFactory)
|
2010-10-19 10:58:52 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2011-10-20 09:10:56 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(IDBOpenDBRequest,
|
2010-10-19 10:58:52 -07:00
|
|
|
IDBRequest)
|
2012-08-29 17:50:28 -07:00
|
|
|
// Don't unlink mFactory!
|
2010-10-19 10:58:52 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
2011-10-20 09:10:56 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(IDBOpenDBRequest)
|
2010-10-19 10:58:52 -07:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(IDBRequest)
|
|
|
|
|
2011-10-20 09:10:56 -07:00
|
|
|
NS_IMPL_ADDREF_INHERITED(IDBOpenDBRequest, IDBRequest)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(IDBOpenDBRequest, IDBRequest)
|
2010-10-19 10:58:52 -07:00
|
|
|
|
2012-06-01 10:21:12 -07:00
|
|
|
nsresult
|
|
|
|
IDBOpenDBRequest::PostHandleEvent(nsEventChainPostVisitor& aVisitor)
|
|
|
|
{
|
2012-06-29 09:48:34 -07:00
|
|
|
return IndexedDatabaseManager::FireWindowOnError(GetOwner(), aVisitor);
|
2012-06-01 10:21:12 -07:00
|
|
|
}
|
2013-07-31 15:28:15 -07:00
|
|
|
|
|
|
|
JSObject*
|
|
|
|
IDBOpenDBRequest::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope)
|
|
|
|
{
|
|
|
|
return IDBOpenDBRequestBinding::Wrap(aCx, aScope, this);
|
|
|
|
}
|