2010-06-23 23:46:08 +04: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 15:12:37 +04: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 23:46:08 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_indexeddb_idbrequest_h__
|
|
|
|
#define mozilla_dom_indexeddb_idbrequest_h__
|
|
|
|
|
2013-06-05 20:15:48 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2010-06-23 23:46:08 +04:00
|
|
|
#include "mozilla/dom/indexedDB/IndexedDatabase.h"
|
|
|
|
|
|
|
|
#include "nsIIDBRequest.h"
|
2011-10-20 20:10:56 +04:00
|
|
|
#include "nsIIDBOpenDBRequest.h"
|
2012-02-08 06:53:33 +04:00
|
|
|
#include "nsDOMEventTargetHelper.h"
|
2012-01-24 14:03:37 +04:00
|
|
|
#include "mozilla/dom/indexedDB/IDBWrapperCache.h"
|
2013-05-18 21:52:06 +04:00
|
|
|
#include "mozilla/dom/DOMError.h"
|
2010-06-23 23:46:08 +04:00
|
|
|
|
2010-08-27 00:57:25 +04:00
|
|
|
class nsIScriptContext;
|
|
|
|
class nsPIDOMWindow;
|
|
|
|
|
2010-06-23 23:46:08 +04:00
|
|
|
BEGIN_INDEXEDDB_NAMESPACE
|
|
|
|
|
2011-10-20 20:10:56 +04:00
|
|
|
class HelperBase;
|
2012-08-30 04:50:28 +04:00
|
|
|
class IDBFactory;
|
2010-11-11 02:26:03 +03:00
|
|
|
class IDBTransaction;
|
2012-06-01 21:21:12 +04:00
|
|
|
class IndexedDBRequestParentBase;
|
2010-11-11 02:26:03 +03:00
|
|
|
|
2012-01-24 14:03:37 +04:00
|
|
|
class IDBRequest : public IDBWrapperCache,
|
2010-06-23 23:46:08 +04:00
|
|
|
public nsIIDBRequest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIIDBREQUEST
|
2011-01-07 09:21:36 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(IDBRequest,
|
2012-01-24 14:03:37 +04:00
|
|
|
IDBWrapperCache)
|
2010-06-23 23:46:08 +04:00
|
|
|
|
2010-09-10 02:15:38 +04:00
|
|
|
static
|
|
|
|
already_AddRefed<IDBRequest> Create(nsISupports* aSource,
|
2012-01-24 14:03:37 +04:00
|
|
|
IDBWrapperCache* aOwnerCache,
|
2013-06-20 22:05:33 +04:00
|
|
|
IDBTransaction* aTransaction);
|
2010-11-11 02:26:03 +03:00
|
|
|
|
2011-06-24 06:18:00 +04:00
|
|
|
// nsIDOMEventTarget
|
2013-06-05 20:15:48 +04:00
|
|
|
virtual nsresult PreHandleEvent(nsEventChainPreVisitor& aVisitor) MOZ_OVERRIDE;
|
2010-09-10 02:15:38 +04:00
|
|
|
|
2010-10-19 21:58:52 +04:00
|
|
|
nsISupports* Source()
|
2010-06-23 23:46:08 +04:00
|
|
|
{
|
2010-10-19 21:58:52 +04:00
|
|
|
return mSource;
|
2010-06-23 23:46:08 +04:00
|
|
|
}
|
|
|
|
|
2011-01-07 09:21:36 +03:00
|
|
|
void Reset();
|
2010-12-10 05:15:00 +03:00
|
|
|
|
2011-10-20 20:10:56 +04:00
|
|
|
nsresult NotifyHelperCompleted(HelperBase* aHelper);
|
2012-06-01 21:21:12 +04:00
|
|
|
void NotifyHelperSentResultsToChildProcess(nsresult aRv);
|
2011-10-20 20:10:56 +04:00
|
|
|
|
2012-06-01 21:21:12 +04:00
|
|
|
void SetError(nsresult aRv);
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
GetErrorCode() const
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
return mErrorCode;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-05-18 21:52:06 +04:00
|
|
|
DOMError* GetError(ErrorResult& aRv);
|
|
|
|
|
2012-06-01 21:21:12 +04: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-10 02:15:38 +04:00
|
|
|
|
2013-06-20 22:05:33 +04:00
|
|
|
void CaptureCaller();
|
2012-06-29 20:48:34 +04:00
|
|
|
|
|
|
|
void FillScriptErrorEvent(nsScriptErrorEvent* aEvent) const;
|
|
|
|
|
2013-03-16 10:58:50 +04:00
|
|
|
bool
|
|
|
|
IsPending() const
|
2012-11-10 07:29:07 +04:00
|
|
|
{
|
|
|
|
return !mHaveResultOrErrorCode;
|
|
|
|
}
|
|
|
|
|
2013-03-16 10:58:50 +04:00
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
|
|
|
uint64_t
|
|
|
|
GetSerialNumber() const
|
|
|
|
{
|
|
|
|
return mSerialNumber;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-01-24 14:03:37 +04:00
|
|
|
protected:
|
|
|
|
IDBRequest();
|
|
|
|
~IDBRequest();
|
|
|
|
|
2010-09-10 02:15:38 +04:00
|
|
|
nsCOMPtr<nsISupports> mSource;
|
2010-11-11 02:26:03 +03:00
|
|
|
nsRefPtr<IDBTransaction> mTransaction;
|
2010-06-23 23:46:08 +04:00
|
|
|
|
2013-06-18 14:00:37 +04:00
|
|
|
JS::Heap<JS::Value> mResultVal;
|
2013-05-18 21:52:06 +04:00
|
|
|
nsRefPtr<mozilla::dom::DOMError> mError;
|
2012-06-01 21:21:12 +04:00
|
|
|
IndexedDBRequestParentBase* mActorParent;
|
2013-04-25 16:30:28 +04:00
|
|
|
nsString mFilename;
|
2013-03-16 10:58:50 +04:00
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
|
|
|
uint64_t mSerialNumber;
|
|
|
|
#endif
|
|
|
|
nsresult mErrorCode;
|
2013-04-25 16:30:28 +04:00
|
|
|
uint32_t mLineNo;
|
2013-03-16 10:58:50 +04:00
|
|
|
bool mHaveResultOrErrorCode;
|
2010-06-23 23:46:08 +04:00
|
|
|
};
|
|
|
|
|
2011-10-20 20:10:56 +04:00
|
|
|
class IDBOpenDBRequest : public IDBRequest,
|
|
|
|
public nsIIDBOpenDBRequest
|
2010-10-19 21:58:52 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_FORWARD_NSIIDBREQUEST(IDBRequest::)
|
2011-10-20 20:10:56 +04:00
|
|
|
NS_DECL_NSIIDBOPENDBREQUEST
|
2012-01-24 14:03:37 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(IDBOpenDBRequest, IDBRequest)
|
2010-10-19 21:58:52 +04:00
|
|
|
|
|
|
|
static
|
2011-10-20 20:10:56 +04:00
|
|
|
already_AddRefed<IDBOpenDBRequest>
|
2012-08-30 04:50:28 +04:00
|
|
|
Create(IDBFactory* aFactory,
|
|
|
|
nsPIDOMWindow* aOwner,
|
2013-06-20 22:05:33 +04:00
|
|
|
JS::Handle<JSObject*> aScriptOwner);
|
2011-01-07 09:21:36 +03:00
|
|
|
|
2012-01-24 14:03:37 +04:00
|
|
|
void SetTransaction(IDBTransaction* aTransaction);
|
2012-01-23 20:18:14 +04:00
|
|
|
|
2012-06-01 21:21:12 +04:00
|
|
|
// nsIDOMEventTarget
|
2013-06-05 20:15:48 +04:00
|
|
|
virtual nsresult PostHandleEvent(nsEventChainPostVisitor& aVisitor) MOZ_OVERRIDE;
|
2012-06-01 21:21:12 +04:00
|
|
|
|
2013-05-18 21:52:06 +04:00
|
|
|
DOMError* GetError(ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
return IDBRequest::GetError(aRv);
|
|
|
|
}
|
|
|
|
|
2012-08-30 04:50:28 +04:00
|
|
|
IDBFactory*
|
|
|
|
Factory() const
|
|
|
|
{
|
|
|
|
return mFactory;
|
|
|
|
}
|
|
|
|
|
2010-10-19 21:58:52 +04:00
|
|
|
protected:
|
2011-10-20 20:10:56 +04:00
|
|
|
~IDBOpenDBRequest();
|
|
|
|
|
2012-01-24 14:03:37 +04:00
|
|
|
// Only touched on the main thread.
|
2012-08-30 04:50:28 +04:00
|
|
|
nsRefPtr<IDBFactory> mFactory;
|
2010-10-19 21:58:52 +04:00
|
|
|
};
|
|
|
|
|
2010-06-23 23:46:08 +04:00
|
|
|
END_INDEXEDDB_NAMESPACE
|
|
|
|
|
|
|
|
#endif // mozilla_dom_indexeddb_idbrequest_h__
|