2010-06-23 23:46:08 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-05-03 22:32:37 +03:00
|
|
|
/* vim: set ts=8 sts=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_idbevents_h__
|
|
|
|
#define mozilla_dom_indexeddb_idbevents_h__
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
#include "js/RootingAPI.h"
|
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
2014-09-18 03:36:01 +04:00
|
|
|
#include "mozilla/dom/Event.h"
|
|
|
|
#include "mozilla/dom/Nullable.h"
|
2014-09-13 20:12:19 +04:00
|
|
|
|
2014-09-18 03:36:01 +04:00
|
|
|
#define IDBVERSIONCHANGEEVENT_IID \
|
2014-09-27 03:21:57 +04:00
|
|
|
{0x3b65d4c3, 0x73ad, 0x492e, {0xb1, 0x2d, 0x15, 0xf9, 0xda, 0xc2, 0x08, 0x4b}}
|
|
|
|
|
|
|
|
class nsAString;
|
|
|
|
class nsDependentString;
|
|
|
|
|
|
|
|
namespace mozilla {
|
2014-09-13 20:12:19 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
class ErrorResult;
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class EventTarget;
|
|
|
|
class GlobalObject;
|
|
|
|
struct IDBVersionChangeEventInit;
|
|
|
|
|
|
|
|
namespace indexedDB {
|
2010-06-23 23:46:08 +04:00
|
|
|
|
2011-11-23 18:15:15 +04:00
|
|
|
enum Bubbles {
|
|
|
|
eDoesNotBubble,
|
|
|
|
eDoesBubble
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Cancelable {
|
|
|
|
eNotCancelable,
|
|
|
|
eCancelable
|
|
|
|
};
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
extern const char16_t* kAbortEventType;
|
|
|
|
extern const char16_t* kBlockedEventType;
|
|
|
|
extern const char16_t* kCompleteEventType;
|
|
|
|
extern const char16_t* kErrorEventType;
|
|
|
|
extern const char16_t* kSuccessEventType;
|
|
|
|
extern const char16_t* kUpgradeNeededEventType;
|
|
|
|
extern const char16_t* kVersionChangeEventType;
|
|
|
|
|
2013-03-09 15:34:29 +04:00
|
|
|
already_AddRefed<nsIDOMEvent>
|
2014-09-27 03:21:57 +04:00
|
|
|
CreateGenericEvent(EventTarget* aOwner,
|
|
|
|
const nsDependentString& aType,
|
2011-11-23 18:15:15 +04:00
|
|
|
Bubbles aBubbles,
|
|
|
|
Cancelable aCancelable);
|
2010-06-23 23:46:08 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class IDBVersionChangeEvent final : public Event
|
2010-10-19 21:58:52 +04:00
|
|
|
{
|
2014-09-27 03:21:57 +04:00
|
|
|
uint64_t mOldVersion;
|
|
|
|
Nullable<uint64_t> mNewVersion;
|
|
|
|
|
2010-10-19 21:58:52 +04:00
|
|
|
public:
|
2014-09-27 03:21:57 +04:00
|
|
|
static already_AddRefed<IDBVersionChangeEvent>
|
|
|
|
Create(EventTarget* aOwner,
|
|
|
|
const nsDependentString& aName,
|
|
|
|
uint64_t aOldVersion,
|
|
|
|
uint64_t aNewVersion)
|
|
|
|
{
|
|
|
|
Nullable<uint64_t> newVersion(aNewVersion);
|
|
|
|
return CreateInternal(aOwner, aName, aOldVersion, newVersion);
|
|
|
|
}
|
2010-10-19 21:58:52 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
static already_AddRefed<IDBVersionChangeEvent>
|
|
|
|
Create(EventTarget* aOwner,
|
|
|
|
const nsDependentString& aName,
|
|
|
|
uint64_t aOldVersion)
|
2013-03-12 21:45:59 +04:00
|
|
|
{
|
2014-09-27 03:21:57 +04:00
|
|
|
Nullable<uint64_t> newVersion(0);
|
|
|
|
newVersion.SetNull();
|
|
|
|
return CreateInternal(aOwner, aName, aOldVersion, newVersion);
|
2013-03-12 21:45:59 +04:00
|
|
|
}
|
|
|
|
|
2013-07-05 21:57:28 +04:00
|
|
|
static already_AddRefed<IDBVersionChangeEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
2013-07-22 16:15:43 +04:00
|
|
|
const nsAString& aType,
|
2013-07-05 21:57:28 +04:00
|
|
|
const IDBVersionChangeEventInit& aOptions,
|
2014-09-27 03:21:57 +04:00
|
|
|
ErrorResult& aRv);
|
2013-07-05 21:57:28 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
uint64_t
|
|
|
|
OldVersion() const
|
2013-03-12 21:45:59 +04:00
|
|
|
{
|
|
|
|
return mOldVersion;
|
|
|
|
}
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
Nullable<uint64_t>
|
|
|
|
GetNewVersion() const
|
2013-03-12 21:45:59 +04:00
|
|
|
{
|
2014-09-27 03:21:57 +04:00
|
|
|
return mNewVersion;
|
2013-03-12 21:45:59 +04:00
|
|
|
}
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(IDBVERSIONCHANGEEVENT_IID)
|
2010-10-19 21:58:52 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_FORWARD_TO_EVENT
|
2014-09-18 03:36:01 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
virtual JSObject*
|
2015-03-21 19:28:04 +03:00
|
|
|
WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2010-10-19 21:58:52 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
private:
|
|
|
|
IDBVersionChangeEvent(EventTarget* aOwner, uint64_t aOldVersion)
|
2014-03-05 04:37:43 +04:00
|
|
|
: Event(aOwner, nullptr, nullptr)
|
2014-09-27 03:21:57 +04:00
|
|
|
, mOldVersion(aOldVersion)
|
2013-03-12 21:45:59 +04:00
|
|
|
{
|
|
|
|
}
|
2014-09-27 03:21:57 +04:00
|
|
|
|
|
|
|
~IDBVersionChangeEvent()
|
|
|
|
{ }
|
2010-10-19 21:58:52 +04:00
|
|
|
|
2013-07-05 21:57:28 +04:00
|
|
|
static already_AddRefed<IDBVersionChangeEvent>
|
2014-09-27 03:21:57 +04:00
|
|
|
CreateInternal(EventTarget* aOwner,
|
|
|
|
const nsAString& aName,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint64_t aOldVersion,
|
2014-09-27 03:21:57 +04:00
|
|
|
Nullable<uint64_t> aNewVersion);
|
2010-10-19 21:58:52 +04:00
|
|
|
};
|
|
|
|
|
2014-03-28 12:45:02 +04:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(IDBVersionChangeEvent, IDBVERSIONCHANGEEVENT_IID)
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
} // namespace indexedDB
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2010-06-23 23:46:08 +04:00
|
|
|
|
|
|
|
#endif // mozilla_dom_indexeddb_idbevents_h__
|