2010-06-23 19:46:08 +00: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 11:12:37 +00: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 19:46:08 +00:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_indexeddb_idbrequest_h__
|
|
|
|
#define mozilla_dom_indexeddb_idbrequest_h__
|
|
|
|
|
|
|
|
#include "mozilla/dom/indexedDB/IndexedDatabase.h"
|
|
|
|
|
2013-07-31 22:28:15 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-09-25 11:21:20 +00:00
|
|
|
#include "mozilla/EventForwards.h"
|
2013-05-18 17:52:06 +00:00
|
|
|
#include "mozilla/dom/DOMError.h"
|
2013-07-31 22:28:15 +00:00
|
|
|
#include "mozilla/dom/IDBRequestBinding.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
|
|
|
|
#include "mozilla/dom/indexedDB/IDBWrapperCache.h"
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2010-08-26 20:57:25 +00:00
|
|
|
class nsIScriptContext;
|
|
|
|
class nsPIDOMWindow;
|
|
|
|
|
2013-08-23 05:17:10 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-09-17 15:16:02 +00:00
|
|
|
class OwningIDBObjectStoreOrIDBIndexOrIDBCursor;
|
2013-08-23 05:17:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
BEGIN_INDEXEDDB_NAMESPACE
|
|
|
|
|
2011-10-20 16:10:56 +00:00
|
|
|
class HelperBase;
|
2013-08-23 05:17:10 +00:00
|
|
|
class IDBCursor;
|
2012-08-30 00:50:28 +00:00
|
|
|
class IDBFactory;
|
2013-08-23 05:17:10 +00:00
|
|
|
class IDBIndex;
|
|
|
|
class IDBObjectStore;
|
2010-11-10 23:26:03 +00:00
|
|
|
class IDBTransaction;
|
2012-06-01 17:21:12 +00:00
|
|
|
class IndexedDBRequestParentBase;
|
2010-11-10 23:26:03 +00:00
|
|
|
|
2013-07-31 22:28:15 +00:00
|
|
|
class IDBRequest : public IDBWrapperCache
|
2010-06-23 19:46:08 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2011-01-07 06:21:36 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(IDBRequest,
|
2012-01-24 10:03:37 +00:00
|
|
|
IDBWrapperCache)
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2010-09-09 22:15:38 +00:00
|
|
|
static
|
2013-11-04 12:57:53 +00:00
|
|
|
already_AddRefed<IDBRequest> Create(IDBDatabase* aDatabase,
|
2013-08-23 05:17:10 +00:00
|
|
|
IDBTransaction* aTransaction);
|
|
|
|
|
|
|
|
static
|
|
|
|
already_AddRefed<IDBRequest> Create(IDBObjectStore* aSource,
|
2013-11-04 12:57:53 +00:00
|
|
|
IDBDatabase* aDatabase,
|
2013-08-23 05:17:10 +00:00
|
|
|
IDBTransaction* aTransaction);
|
|
|
|
|
|
|
|
static
|
|
|
|
already_AddRefed<IDBRequest> Create(IDBIndex* aSource,
|
2013-11-04 12:57:53 +00:00
|
|
|
IDBDatabase* aDatabase,
|
2013-06-20 18:05:33 +00:00
|
|
|
IDBTransaction* aTransaction);
|
2010-11-10 23:26:03 +00:00
|
|
|
|
2011-06-24 02:18:00 +00:00
|
|
|
// nsIDOMEventTarget
|
2013-06-05 16:15:48 +00:00
|
|
|
virtual nsresult PreHandleEvent(nsEventChainPreVisitor& aVisitor) MOZ_OVERRIDE;
|
2010-09-09 22:15:38 +00:00
|
|
|
|
2013-09-17 15:16:02 +00:00
|
|
|
void GetSource(Nullable<OwningIDBObjectStoreOrIDBIndexOrIDBCursor>& aSource) const;
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2011-01-07 06:21:36 +00:00
|
|
|
void Reset();
|
2010-12-10 02:15:00 +00:00
|
|
|
|
2011-10-20 16:10:56 +00:00
|
|
|
nsresult NotifyHelperCompleted(HelperBase* aHelper);
|
2012-06-01 17:21:12 +00:00
|
|
|
void NotifyHelperSentResultsToChildProcess(nsresult aRv);
|
2011-10-20 16:10:56 +00:00
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
void SetError(nsresult aRv);
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
GetErrorCode() const
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
return mErrorCode;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-05-18 17:52:06 +00:00
|
|
|
DOMError* GetError(ErrorResult& aRv);
|
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
JSContext* GetJSContext();
|
|
|
|
|
|
|
|
void
|
|
|
|
SetActor(IndexedDBRequestParentBase* aActorParent)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!aActorParent || !mActorParent,
|
|
|
|
"Shouldn't have more than one!");
|
|
|
|
mActorParent = aActorParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
IndexedDBRequestParentBase*
|
|
|
|
GetActorParent() const
|
|
|
|
{
|
|
|
|
return mActorParent;
|
|
|
|
}
|
2010-09-09 22:15:38 +00:00
|
|
|
|
2013-06-20 18:05:33 +00:00
|
|
|
void CaptureCaller();
|
2012-06-29 16:48:34 +00:00
|
|
|
|
2013-09-27 06:20:56 +00:00
|
|
|
void FillScriptErrorEvent(mozilla::InternalScriptErrorEvent* aEvent) const;
|
2012-06-29 16:48:34 +00:00
|
|
|
|
2013-03-16 06:58:50 +00:00
|
|
|
bool
|
|
|
|
IsPending() const
|
2012-11-10 03:29:07 +00:00
|
|
|
{
|
|
|
|
return !mHaveResultOrErrorCode;
|
|
|
|
}
|
|
|
|
|
2013-03-16 06:58:50 +00:00
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
|
|
|
uint64_t
|
|
|
|
GetSerialNumber() const
|
|
|
|
{
|
|
|
|
return mSerialNumber;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-07-31 22:28:15 +00:00
|
|
|
// nsWrapperCache
|
|
|
|
virtual JSObject*
|
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
// WebIDL
|
|
|
|
nsPIDOMWindow*
|
|
|
|
GetParentObject() const
|
|
|
|
{
|
|
|
|
return GetOwner();
|
|
|
|
}
|
|
|
|
|
|
|
|
JS::Value
|
|
|
|
GetResult(JSContext* aCx, ErrorResult& aRv) const;
|
|
|
|
|
|
|
|
IDBTransaction*
|
|
|
|
GetTransaction() const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
return mTransaction;
|
|
|
|
}
|
|
|
|
|
|
|
|
IDBRequestReadyState
|
|
|
|
ReadyState() const;
|
|
|
|
|
|
|
|
IMPL_EVENT_HANDLER(success);
|
|
|
|
IMPL_EVENT_HANDLER(error);
|
|
|
|
|
2012-01-24 10:03:37 +00:00
|
|
|
protected:
|
|
|
|
IDBRequest();
|
|
|
|
~IDBRequest();
|
|
|
|
|
2013-08-23 05:17:10 +00:00
|
|
|
// At most one of these three fields can be non-null.
|
|
|
|
nsRefPtr<IDBObjectStore> mSourceAsObjectStore;
|
|
|
|
nsRefPtr<IDBIndex> mSourceAsIndex;
|
|
|
|
nsRefPtr<IDBCursor> mSourceAsCursor;
|
|
|
|
|
|
|
|
// Check that the above condition holds.
|
|
|
|
#ifdef DEBUG
|
|
|
|
void AssertSourceIsCorrect() const;
|
|
|
|
#else
|
|
|
|
void AssertSourceIsCorrect() const {}
|
|
|
|
#endif
|
|
|
|
|
2010-11-10 23:26:03 +00:00
|
|
|
nsRefPtr<IDBTransaction> mTransaction;
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2013-06-18 10:00:37 +00:00
|
|
|
JS::Heap<JS::Value> mResultVal;
|
2013-05-18 17:52:06 +00:00
|
|
|
nsRefPtr<mozilla::dom::DOMError> mError;
|
2012-06-01 17:21:12 +00:00
|
|
|
IndexedDBRequestParentBase* mActorParent;
|
2013-04-25 12:30:28 +00:00
|
|
|
nsString mFilename;
|
2013-03-16 06:58:50 +00:00
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
|
|
|
uint64_t mSerialNumber;
|
|
|
|
#endif
|
|
|
|
nsresult mErrorCode;
|
2013-04-25 12:30:28 +00:00
|
|
|
uint32_t mLineNo;
|
2013-03-16 06:58:50 +00:00
|
|
|
bool mHaveResultOrErrorCode;
|
2010-06-23 19:46:08 +00:00
|
|
|
};
|
|
|
|
|
2013-07-31 22:28:15 +00:00
|
|
|
class IDBOpenDBRequest : public IDBRequest
|
2010-10-19 17:58:52 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2012-01-24 10:03:37 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(IDBOpenDBRequest, IDBRequest)
|
2010-10-19 17:58:52 +00:00
|
|
|
|
|
|
|
static
|
2011-10-20 16:10:56 +00:00
|
|
|
already_AddRefed<IDBOpenDBRequest>
|
2012-08-30 00:50:28 +00:00
|
|
|
Create(IDBFactory* aFactory,
|
|
|
|
nsPIDOMWindow* aOwner,
|
2013-06-20 18:05:33 +00:00
|
|
|
JS::Handle<JSObject*> aScriptOwner);
|
2011-01-07 06:21:36 +00:00
|
|
|
|
2012-01-24 10:03:37 +00:00
|
|
|
void SetTransaction(IDBTransaction* aTransaction);
|
2012-01-23 16:18:14 +00:00
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
// nsIDOMEventTarget
|
2013-06-05 16:15:48 +00:00
|
|
|
virtual nsresult PostHandleEvent(nsEventChainPostVisitor& aVisitor) MOZ_OVERRIDE;
|
2012-06-01 17:21:12 +00:00
|
|
|
|
2013-05-18 17:52:06 +00:00
|
|
|
DOMError* GetError(ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
return IDBRequest::GetError(aRv);
|
|
|
|
}
|
|
|
|
|
2012-08-30 00:50:28 +00:00
|
|
|
IDBFactory*
|
|
|
|
Factory() const
|
|
|
|
{
|
|
|
|
return mFactory;
|
|
|
|
}
|
|
|
|
|
2013-07-31 22:28:15 +00:00
|
|
|
// nsWrapperCache
|
|
|
|
virtual JSObject*
|
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
// WebIDL
|
|
|
|
IMPL_EVENT_HANDLER(blocked);
|
|
|
|
IMPL_EVENT_HANDLER(upgradeneeded);
|
|
|
|
|
2010-10-19 17:58:52 +00:00
|
|
|
protected:
|
2013-07-31 22:28:15 +00:00
|
|
|
IDBOpenDBRequest();
|
2011-10-20 16:10:56 +00:00
|
|
|
~IDBOpenDBRequest();
|
|
|
|
|
2012-01-24 10:03:37 +00:00
|
|
|
// Only touched on the main thread.
|
2012-08-30 00:50:28 +00:00
|
|
|
nsRefPtr<IDBFactory> mFactory;
|
2010-10-19 17:58:52 +00:00
|
|
|
};
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
END_INDEXEDDB_NAMESPACE
|
|
|
|
|
|
|
|
#endif // mozilla_dom_indexeddb_idbrequest_h__
|