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"
|
|
|
|
|
|
|
|
#include "nsIIDBRequest.h"
|
2011-10-20 09:10:56 -07:00
|
|
|
#include "nsIIDBOpenDBRequest.h"
|
2012-02-07 18:53:33 -08:00
|
|
|
#include "nsDOMEventTargetHelper.h"
|
2012-01-24 02:03:37 -08:00
|
|
|
#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;
|
|
|
|
|
2010-06-23 12:46:08 -07:00
|
|
|
BEGIN_INDEXEDDB_NAMESPACE
|
|
|
|
|
2011-10-20 09:10:56 -07:00
|
|
|
class HelperBase;
|
2012-08-29 17:50:28 -07:00
|
|
|
class IDBFactory;
|
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
|
|
|
|
2012-01-24 02:03:37 -08:00
|
|
|
class IDBRequest : public IDBWrapperCache,
|
2010-06-23 12:46:08 -07:00
|
|
|
public nsIIDBRequest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIIDBREQUEST
|
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
|
|
|
|
already_AddRefed<IDBRequest> Create(nsISupports* aSource,
|
2012-01-24 02:03:37 -08:00
|
|
|
IDBWrapperCache* aOwnerCache,
|
2012-06-29 09:48:34 -07:00
|
|
|
IDBTransaction* aTransaction,
|
|
|
|
JSContext* aCallingCx);
|
2010-11-10 15:26:03 -08:00
|
|
|
|
2011-06-23 19:18:00 -07:00
|
|
|
// nsIDOMEventTarget
|
2010-11-10 15:26:03 -08:00
|
|
|
virtual nsresult PreHandleEvent(nsEventChainPreVisitor& aVisitor);
|
2010-09-09 15:15:38 -07:00
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
nsISupports* Source()
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
2010-10-19 10:58:52 -07:00
|
|
|
return mSource;
|
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
|
|
|
|
|
|
|
|
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 15:15:38 -07:00
|
|
|
|
2012-06-29 09:48:34 -07:00
|
|
|
void CaptureCaller(JSContext* aCx);
|
|
|
|
|
|
|
|
void FillScriptErrorEvent(nsScriptErrorEvent* aEvent) const;
|
|
|
|
|
2013-04-25 05:30:28 -07:00
|
|
|
bool IsPending() const
|
2012-11-09 19:29:07 -08:00
|
|
|
{
|
|
|
|
return !mHaveResultOrErrorCode;
|
|
|
|
}
|
|
|
|
|
2012-01-24 02:03:37 -08:00
|
|
|
protected:
|
|
|
|
IDBRequest();
|
|
|
|
~IDBRequest();
|
|
|
|
|
2010-09-09 15:15:38 -07:00
|
|
|
nsCOMPtr<nsISupports> mSource;
|
2010-11-10 15:26:03 -08:00
|
|
|
nsRefPtr<IDBTransaction> mTransaction;
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2011-01-06 22:21:36 -08:00
|
|
|
jsval mResultVal;
|
2013-04-25 05:30:28 -07:00
|
|
|
|
2012-04-11 14:55:21 -07:00
|
|
|
nsCOMPtr<nsIDOMDOMError> mError;
|
2013-04-25 05:30:28 -07:00
|
|
|
|
2012-06-01 10:21:12 -07:00
|
|
|
IndexedDBRequestParentBase* mActorParent;
|
2013-04-25 05:30:28 -07:00
|
|
|
|
2013-03-15 23:58:50 -07:00
|
|
|
nsresult mErrorCode;
|
|
|
|
bool mHaveResultOrErrorCode;
|
2013-04-25 05:30:28 -07:00
|
|
|
|
|
|
|
nsString mFilename;
|
|
|
|
uint32_t mLineNo;
|
2010-06-23 12:46:08 -07:00
|
|
|
};
|
|
|
|
|
2011-10-20 09:10:56 -07:00
|
|
|
class IDBOpenDBRequest : public IDBRequest,
|
|
|
|
public nsIIDBOpenDBRequest
|
2010-10-19 10:58:52 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_FORWARD_NSIIDBREQUEST(IDBRequest::)
|
2011-10-20 09:10:56 -07:00
|
|
|
NS_DECL_NSIIDBOPENDBREQUEST
|
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,
|
2012-06-29 09:48:34 -07:00
|
|
|
JSObject* aScriptOwner,
|
|
|
|
JSContext* aCallingCx);
|
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
|
|
|
|
virtual nsresult PostHandleEvent(nsEventChainPostVisitor& aVisitor);
|
|
|
|
|
2012-08-29 17:50:28 -07:00
|
|
|
IDBFactory*
|
|
|
|
Factory() const
|
|
|
|
{
|
|
|
|
return mFactory;
|
|
|
|
}
|
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
protected:
|
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__
|