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