2010-06-23 19:46:08 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-05-03 19:32:37 +00:00
|
|
|
/* vim: set ts=8 sts=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
|
|
|
|
2016-02-16 21:46:08 +00:00
|
|
|
#ifndef mozilla_dom_idbrequest_h__
|
|
|
|
#define mozilla_dom_idbrequest_h__
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
#include "js/RootingAPI.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-07-31 22:28:15 +00:00
|
|
|
#include "mozilla/dom/IDBRequestBinding.h"
|
2019-03-29 18:05:11 +00:00
|
|
|
#include "mozilla/DOMEventTargetHelper.h"
|
2014-09-26 23:21:57 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2020-05-14 09:42:18 +00:00
|
|
|
#include "ReportInternalError.h"
|
2020-04-01 09:54:43 +00:00
|
|
|
#include "SafeRefPtr.h"
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2015-03-20 04:42:37 +00:00
|
|
|
#define PRIVATE_IDBREQUEST_IID \
|
|
|
|
{ \
|
|
|
|
0xe68901e5, 0x1d50, 0x4ee9, { \
|
|
|
|
0xaf, 0x49, 0x90, 0x99, 0x4a, 0xff, 0xc8, 0x39 \
|
|
|
|
} \
|
2018-11-30 10:46:48 +00:00
|
|
|
}
|
2015-03-20 04:42:37 +00:00
|
|
|
|
2019-03-29 18:05:11 +00:00
|
|
|
class nsIGlobalObject;
|
2010-08-26 20:57:25 +00:00
|
|
|
|
2013-08-23 05:17:10 +00:00
|
|
|
namespace mozilla {
|
2014-09-26 23:21:57 +00:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2013-08-23 05:17:10 +00:00
|
|
|
namespace dom {
|
2014-09-26 23:21:57 +00:00
|
|
|
|
2017-08-06 17:47:00 +00:00
|
|
|
class DOMException;
|
2013-08-23 05:17:10 +00:00
|
|
|
class IDBCursor;
|
2014-09-26 23:21:57 +00:00
|
|
|
class IDBDatabase;
|
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;
|
2016-02-16 21:46:08 +00:00
|
|
|
template <typename>
|
|
|
|
struct Nullable;
|
|
|
|
class OwningIDBObjectStoreOrIDBIndexOrIDBCursor;
|
2018-04-19 10:06:28 +00:00
|
|
|
class StrongWorkerRef;
|
2010-11-10 23:26:03 +00:00
|
|
|
|
2019-03-29 18:05:11 +00:00
|
|
|
class IDBRequest : public DOMEventTargetHelper {
|
2014-09-26 23:21:57 +00:00
|
|
|
protected:
|
|
|
|
// mSourceAsObjectStore and mSourceAsIndex are exclusive and one must always
|
|
|
|
// be set. mSourceAsCursor is sometimes set also.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<IDBObjectStore> mSourceAsObjectStore;
|
|
|
|
RefPtr<IDBIndex> mSourceAsIndex;
|
|
|
|
RefPtr<IDBCursor> mSourceAsCursor;
|
2014-09-26 23:21:57 +00:00
|
|
|
|
2020-04-21 14:32:51 +00:00
|
|
|
SafeRefPtr<IDBTransaction> mTransaction;
|
2014-09-26 23:21:57 +00:00
|
|
|
|
|
|
|
JS::Heap<JS::Value> mResultVal;
|
2017-08-06 17:47:00 +00:00
|
|
|
RefPtr<DOMException> mError;
|
2014-09-26 23:21:57 +00:00
|
|
|
|
|
|
|
nsString mFilename;
|
2014-10-16 04:56:52 +00:00
|
|
|
uint64_t mLoggingSerialNumber;
|
2014-09-26 23:21:57 +00:00
|
|
|
nsresult mErrorCode;
|
|
|
|
uint32_t mLineNo;
|
2015-09-02 01:01:02 +00:00
|
|
|
uint32_t mColumn;
|
2014-09-26 23:21:57 +00:00
|
|
|
bool mHaveResultOrErrorCode;
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
public:
|
2020-07-01 20:14:23 +00:00
|
|
|
[[nodiscard]] static MovingNotNull<RefPtr<IDBRequest>> Create(
|
2020-04-21 14:32:51 +00:00
|
|
|
JSContext* aCx, IDBDatabase* aDatabase,
|
|
|
|
SafeRefPtr<IDBTransaction> aTransaction);
|
2013-08-23 05:17:10 +00:00
|
|
|
|
2020-07-01 20:14:23 +00:00
|
|
|
[[nodiscard]] static MovingNotNull<RefPtr<IDBRequest>> Create(
|
2020-04-21 14:32:51 +00:00
|
|
|
JSContext* aCx, IDBObjectStore* aSource, IDBDatabase* aDatabase,
|
|
|
|
SafeRefPtr<IDBTransaction> aTransaction);
|
2013-08-23 05:17:10 +00:00
|
|
|
|
2020-07-01 20:14:23 +00:00
|
|
|
[[nodiscard]] static MovingNotNull<RefPtr<IDBRequest>> Create(
|
2020-04-21 14:32:51 +00:00
|
|
|
JSContext* aCx, IDBIndex* aSource, IDBDatabase* aDatabase,
|
|
|
|
SafeRefPtr<IDBTransaction> aTransaction);
|
2010-11-10 23:26:03 +00:00
|
|
|
|
2016-03-23 15:02:57 +00:00
|
|
|
static void CaptureCaller(JSContext* aCx, nsAString& aFilename,
|
|
|
|
uint32_t* aLineNo, uint32_t* aColumn);
|
2014-11-14 02:20:38 +00:00
|
|
|
|
2014-10-16 04:56:52 +00:00
|
|
|
static uint64_t NextSerialNumber();
|
|
|
|
|
2018-04-05 17:42:41 +00:00
|
|
|
// EventTarget
|
|
|
|
void GetEventTargetParent(EventChainPreVisitor& aVisitor) override;
|
2010-09-09 22:15:38 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
void GetSource(
|
|
|
|
Nullable<OwningIDBObjectStoreOrIDBIndexOrIDBCursor>& aSource) const;
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
void Reset();
|
2010-12-10 02:15:00 +00:00
|
|
|
|
2020-05-14 09:42:18 +00:00
|
|
|
template <typename ResultCallback>
|
|
|
|
void SetResult(const ResultCallback& aCallback) {
|
|
|
|
AssertIsOnOwningThread();
|
|
|
|
MOZ_ASSERT(!mHaveResultOrErrorCode);
|
|
|
|
MOZ_ASSERT(mResultVal.isUndefined());
|
|
|
|
MOZ_ASSERT(!mError);
|
|
|
|
|
|
|
|
// Already disconnected from the owner.
|
|
|
|
if (!GetOwnerGlobal()) {
|
|
|
|
SetError(NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// See this global is still valid.
|
|
|
|
if (NS_WARN_IF(NS_FAILED(CheckCurrentGlobalCorrectness()))) {
|
|
|
|
SetError(NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoJSAPI autoJS;
|
|
|
|
if (!autoJS.Init(GetOwnerGlobal())) {
|
|
|
|
IDB_WARNING("Failed to initialize AutoJSAPI!");
|
|
|
|
SetError(NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSContext* cx = autoJS.cx();
|
|
|
|
|
|
|
|
JS::Rooted<JS::Value> result(cx);
|
|
|
|
nsresult rv = aCallback(cx, &result);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
// This can only fail if the structured clone contains a mutable file
|
|
|
|
// and the child is not in the main thread and main process.
|
|
|
|
// In that case CreateAndWrapMutableFile() returns false which shows up
|
|
|
|
// as NS_ERROR_DOM_DATA_CLONE_ERR here.
|
|
|
|
MOZ_ASSERT(rv == NS_ERROR_DOM_DATA_CLONE_ERR);
|
|
|
|
|
|
|
|
// We are not setting a result or an error object here since we want to
|
|
|
|
// throw an exception when the 'result' property is being touched.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mError = nullptr;
|
|
|
|
|
|
|
|
mResultVal = result;
|
|
|
|
mozilla::HoldJSObjects(this);
|
|
|
|
|
|
|
|
mHaveResultOrErrorCode = true;
|
|
|
|
}
|
2011-10-20 16:10:56 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
void SetError(nsresult aRv);
|
2012-06-01 17:21:12 +00:00
|
|
|
|
|
|
|
nsresult GetErrorCode() const
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
return mErrorCode;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-12-17 06:26:15 +00:00
|
|
|
DOMException* GetErrorAfterResult() const
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
return mError;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
DOMException* GetError(ErrorResult& aRv);
|
2013-05-18 17:52:06 +00:00
|
|
|
|
2015-09-02 01:01:02 +00:00
|
|
|
void GetCallerLocation(nsAString& aFilename, uint32_t* aLineNo,
|
|
|
|
uint32_t* aColumn) const;
|
2012-06-29 16:48:34 +00:00
|
|
|
|
2012-11-10 03:29:07 +00:00
|
|
|
bool IsPending() const { return !mHaveResultOrErrorCode; }
|
|
|
|
|
2014-10-16 04:56:52 +00:00
|
|
|
uint64_t LoggingSerialNumber() const {
|
|
|
|
AssertIsOnOwningThread();
|
|
|
|
|
|
|
|
return mLoggingSerialNumber;
|
2013-03-16 06:58:50 +00:00
|
|
|
}
|
2014-10-16 04:56:52 +00:00
|
|
|
|
|
|
|
void SetLoggingSerialNumber(uint64_t aLoggingSerialNumber);
|
2013-03-16 06:58:50 +00:00
|
|
|
|
2019-03-29 18:05:11 +00:00
|
|
|
nsIGlobalObject* GetParentObject() const { return GetOwnerGlobal(); }
|
2013-07-31 22:28:15 +00:00
|
|
|
|
2014-06-11 20:26:52 +00:00
|
|
|
void GetResult(JS::MutableHandle<JS::Value> aResult, ErrorResult& aRv) const;
|
2014-06-03 14:36:46 +00:00
|
|
|
|
2014-06-11 20:26:52 +00:00
|
|
|
void GetResult(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
ErrorResult& aRv) const {
|
|
|
|
GetResult(aResult, aRv);
|
2014-06-03 14:36:46 +00:00
|
|
|
}
|
2013-07-31 22:28:15 +00:00
|
|
|
|
2020-04-21 14:32:51 +00:00
|
|
|
Maybe<IDBTransaction&> MaybeTransactionRef() const {
|
2014-09-26 23:21:57 +00:00
|
|
|
AssertIsOnOwningThread();
|
|
|
|
|
2020-04-21 14:32:51 +00:00
|
|
|
return mTransaction ? SomeRef(*mTransaction) : Nothing();
|
|
|
|
}
|
|
|
|
|
|
|
|
IDBTransaction& MutableTransactionRef() const {
|
|
|
|
AssertIsOnOwningThread();
|
|
|
|
|
|
|
|
return *mTransaction;
|
|
|
|
}
|
|
|
|
|
|
|
|
SafeRefPtr<IDBTransaction> AcquireTransaction() const {
|
|
|
|
AssertIsOnOwningThread();
|
|
|
|
|
|
|
|
return mTransaction.clonePtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
// For WebIDL binding.
|
|
|
|
RefPtr<IDBTransaction> GetTransaction() const {
|
|
|
|
AssertIsOnOwningThread();
|
|
|
|
|
|
|
|
return AsRefPtr(mTransaction.clonePtr());
|
2013-07-31 22:28:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
IDBRequestReadyState ReadyState() const;
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
void SetSource(IDBCursor* aSource);
|
|
|
|
|
2013-07-31 22:28:15 +00:00
|
|
|
IMPL_EVENT_HANDLER(success);
|
|
|
|
IMPL_EVENT_HANDLER(error);
|
|
|
|
|
2017-06-07 05:55:00 +00:00
|
|
|
void AssertIsOnOwningThread() const { NS_ASSERT_OWNINGTHREAD(IDBRequest); }
|
2014-09-26 23:21:57 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(IDBRequest,
|
2019-03-29 18:05:11 +00:00
|
|
|
DOMEventTargetHelper)
|
2014-09-26 23:21:57 +00:00
|
|
|
|
|
|
|
// nsWrapperCache
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2014-09-26 23:21:57 +00:00
|
|
|
|
2012-01-24 10:03:37 +00:00
|
|
|
protected:
|
2014-08-05 13:19:51 +00:00
|
|
|
explicit IDBRequest(IDBDatabase* aDatabase);
|
2019-03-29 18:05:11 +00:00
|
|
|
explicit IDBRequest(nsIGlobalObject* aGlobal);
|
2012-01-24 10:03:37 +00:00
|
|
|
~IDBRequest();
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
void InitMembers();
|
2013-08-23 05:17:10 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
void ConstructResult();
|
|
|
|
};
|
2014-09-13 16:12:19 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class IDBOpenDBRequest final : public IDBRequest {
|
2014-09-26 23:21:57 +00:00
|
|
|
// Only touched on the owning thread.
|
2020-04-01 09:54:43 +00:00
|
|
|
SafeRefPtr<IDBFactory> mFactory;
|
2014-09-26 23:21:57 +00:00
|
|
|
|
2018-04-19 10:06:28 +00:00
|
|
|
RefPtr<StrongWorkerRef> mWorkerRef;
|
2014-12-17 06:26:15 +00:00
|
|
|
|
2015-09-09 11:15:05 +00:00
|
|
|
const bool mFileHandleDisabled;
|
2017-06-16 11:06:36 +00:00
|
|
|
bool mIncreasedActiveDatabaseCount;
|
2015-09-09 11:15:05 +00:00
|
|
|
|
2010-10-19 17:58:52 +00:00
|
|
|
public:
|
2020-04-23 01:49:16 +00:00
|
|
|
[[nodiscard]] static RefPtr<IDBOpenDBRequest> Create(
|
2020-04-01 09:54:43 +00:00
|
|
|
JSContext* aCx, SafeRefPtr<IDBFactory> aFactory,
|
|
|
|
nsIGlobalObject* aGlobal);
|
2011-01-07 06:21:36 +00:00
|
|
|
|
2015-09-09 11:15:05 +00:00
|
|
|
bool IsFileHandleDisabled() const { return mFileHandleDisabled; }
|
|
|
|
|
2020-04-21 14:32:51 +00:00
|
|
|
void SetTransaction(SafeRefPtr<IDBTransaction> aTransaction);
|
2012-01-23 16:18:14 +00:00
|
|
|
|
2017-06-16 11:06:36 +00:00
|
|
|
void DispatchNonTransactionError(nsresult aErrorCode);
|
|
|
|
|
2014-12-17 06:26:15 +00:00
|
|
|
void NoteComplete();
|
|
|
|
|
2018-04-20 04:49:30 +00:00
|
|
|
// EventTarget
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult PostHandleEvent(EventChainPostVisitor& aVisitor) override;
|
2012-06-01 17:21:12 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
IMPL_EVENT_HANDLER(blocked);
|
|
|
|
IMPL_EVENT_HANDLER(upgradeneeded);
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(IDBOpenDBRequest, IDBRequest)
|
|
|
|
|
2013-07-31 22:28:15 +00:00
|
|
|
// nsWrapperCache
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2013-07-31 22:28:15 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
private:
|
2020-04-01 09:54:43 +00:00
|
|
|
IDBOpenDBRequest(SafeRefPtr<IDBFactory> aFactory, nsIGlobalObject* aGlobal,
|
2015-09-09 11:15:05 +00:00
|
|
|
bool aFileHandleDisabled);
|
2013-07-31 22:28:15 +00:00
|
|
|
|
2011-10-20 16:10:56 +00:00
|
|
|
~IDBOpenDBRequest();
|
2017-06-16 11:06:36 +00:00
|
|
|
|
|
|
|
void IncreaseActiveDatabaseCount();
|
|
|
|
|
|
|
|
void MaybeDecreaseActiveDatabaseCount();
|
2010-10-19 17:58:52 +00:00
|
|
|
};
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2016-02-16 21:46:08 +00:00
|
|
|
#endif // mozilla_dom_idbrequest_h__
|