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