2010-06-23 19:46:08 +00: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 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
|
|
|
|
|
|
|
#ifndef mozilla_dom_indexeddb_idbevents_h__
|
|
|
|
#define mozilla_dom_indexeddb_idbevents_h__
|
|
|
|
|
|
|
|
#include "mozilla/dom/indexedDB/IndexedDatabase.h"
|
|
|
|
|
2010-10-19 17:58:52 +00:00
|
|
|
#include "nsIIDBVersionChangeEvent.h"
|
2010-06-23 19:46:08 +00:00
|
|
|
#include "nsIRunnable.h"
|
|
|
|
|
|
|
|
#include "nsDOMEvent.h"
|
|
|
|
|
2010-06-28 18:51:06 +00:00
|
|
|
#include "mozilla/dom/indexedDB/IDBObjectStore.h"
|
2010-06-23 19:46:08 +00:00
|
|
|
|
|
|
|
#define SUCCESS_EVT_STR "success"
|
|
|
|
#define ERROR_EVT_STR "error"
|
|
|
|
#define COMPLETE_EVT_STR "complete"
|
|
|
|
#define ABORT_EVT_STR "abort"
|
2010-10-19 17:58:52 +00:00
|
|
|
#define VERSIONCHANGE_EVT_STR "versionchange"
|
|
|
|
#define BLOCKED_EVT_STR "blocked"
|
2011-10-20 16:10:56 +00:00
|
|
|
#define UPGRADENEEDED_EVT_STR "upgradeneeded"
|
2010-06-23 19:46:08 +00:00
|
|
|
|
|
|
|
BEGIN_INDEXEDDB_NAMESPACE
|
|
|
|
|
2011-11-23 14:15:15 +00:00
|
|
|
enum Bubbles {
|
|
|
|
eDoesNotBubble,
|
|
|
|
eDoesBubble
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Cancelable {
|
|
|
|
eNotCancelable,
|
|
|
|
eCancelable
|
|
|
|
};
|
|
|
|
|
2011-01-07 06:21:36 +00:00
|
|
|
already_AddRefed<nsDOMEvent>
|
|
|
|
CreateGenericEvent(const nsAString& aType,
|
2011-11-23 14:15:15 +00:00
|
|
|
Bubbles aBubbles,
|
|
|
|
Cancelable aCancelable);
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2011-01-07 06:21:36 +00:00
|
|
|
class IDBVersionChangeEvent : public nsDOMEvent,
|
2010-10-19 17:58:52 +00:00
|
|
|
public nsIIDBVersionChangeEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2011-01-07 06:21:36 +00:00
|
|
|
NS_FORWARD_TO_NSDOMEVENT
|
2010-10-19 17:58:52 +00:00
|
|
|
NS_DECL_NSIIDBVERSIONCHANGEEVENT
|
|
|
|
|
2011-10-20 16:10:56 +00:00
|
|
|
inline static already_AddRefed<nsDOMEvent>
|
2012-08-22 15:56:38 +00:00
|
|
|
Create(int64_t aOldVersion,
|
|
|
|
int64_t aNewVersion)
|
2010-10-19 17:58:52 +00:00
|
|
|
{
|
2011-10-20 16:10:56 +00:00
|
|
|
return CreateInternal(NS_LITERAL_STRING(VERSIONCHANGE_EVT_STR),
|
|
|
|
aOldVersion, aNewVersion);
|
2010-10-19 17:58:52 +00:00
|
|
|
}
|
|
|
|
|
2011-10-20 16:10:56 +00:00
|
|
|
inline static already_AddRefed<nsDOMEvent>
|
2012-08-22 15:56:38 +00:00
|
|
|
CreateBlocked(uint64_t aOldVersion,
|
|
|
|
uint64_t aNewVersion)
|
2010-10-19 17:58:52 +00:00
|
|
|
{
|
2011-10-20 16:10:56 +00:00
|
|
|
return CreateInternal(NS_LITERAL_STRING(BLOCKED_EVT_STR),
|
|
|
|
aOldVersion, aNewVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static already_AddRefed<nsDOMEvent>
|
2012-08-22 15:56:38 +00:00
|
|
|
CreateUpgradeNeeded(uint64_t aOldVersion,
|
|
|
|
uint64_t aNewVersion)
|
2011-10-20 16:10:56 +00:00
|
|
|
{
|
|
|
|
return CreateInternal(NS_LITERAL_STRING(UPGRADENEEDED_EVT_STR),
|
|
|
|
aOldVersion, aNewVersion);
|
2010-10-19 17:58:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static already_AddRefed<nsIRunnable>
|
2012-08-22 15:56:38 +00:00
|
|
|
CreateRunnable(uint64_t aOldVersion,
|
|
|
|
uint64_t aNewVersion,
|
2010-10-19 17:58:52 +00:00
|
|
|
nsIDOMEventTarget* aTarget)
|
|
|
|
{
|
2011-01-07 06:21:36 +00:00
|
|
|
return CreateRunnableInternal(NS_LITERAL_STRING(VERSIONCHANGE_EVT_STR),
|
2011-10-20 16:10:56 +00:00
|
|
|
aOldVersion, aNewVersion, aTarget);
|
2010-10-19 17:58:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<nsIRunnable>
|
2012-08-22 15:56:38 +00:00
|
|
|
CreateBlockedRunnable(uint64_t aOldVersion,
|
|
|
|
uint64_t aNewVersion,
|
2010-10-19 17:58:52 +00:00
|
|
|
nsIDOMEventTarget* aTarget)
|
|
|
|
{
|
2011-10-20 16:10:56 +00:00
|
|
|
return CreateRunnableInternal(NS_LITERAL_STRING(BLOCKED_EVT_STR),
|
|
|
|
aOldVersion, aNewVersion, aTarget);
|
2010-10-19 17:58:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2012-07-30 14:20:58 +00:00
|
|
|
IDBVersionChangeEvent() : nsDOMEvent(nullptr, nullptr) { }
|
2011-01-07 06:21:36 +00:00
|
|
|
virtual ~IDBVersionChangeEvent() { }
|
2010-10-19 17:58:52 +00:00
|
|
|
|
2011-10-20 16:10:56 +00:00
|
|
|
static already_AddRefed<nsDOMEvent>
|
2011-01-07 06:21:36 +00:00
|
|
|
CreateInternal(const nsAString& aType,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t aOldVersion,
|
|
|
|
uint64_t aNewVersion);
|
2010-10-19 17:58:52 +00:00
|
|
|
|
|
|
|
static already_AddRefed<nsIRunnable>
|
2011-01-07 06:21:36 +00:00
|
|
|
CreateRunnableInternal(const nsAString& aType,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t aOldVersion,
|
|
|
|
uint64_t aNewVersion,
|
2010-10-19 17:58:52 +00:00
|
|
|
nsIDOMEventTarget* aTarget);
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t mOldVersion;
|
|
|
|
uint64_t mNewVersion;
|
2010-10-19 17:58:52 +00:00
|
|
|
};
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
END_INDEXEDDB_NAMESPACE
|
|
|
|
|
|
|
|
#endif // mozilla_dom_indexeddb_idbevents_h__
|