mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
110 lines
2.9 KiB
C++
110 lines
2.9 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_indexeddb_idbfactory_h__
|
|
#define mozilla_dom_indexeddb_idbfactory_h__
|
|
|
|
#include "mozilla/dom/indexedDB/IndexedDatabase.h"
|
|
|
|
#include "mozIStorageConnection.h"
|
|
#include "nsIIDBFactory.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
class nsIAtom;
|
|
class nsPIDOMWindow;
|
|
|
|
BEGIN_INDEXEDDB_NAMESPACE
|
|
|
|
struct DatabaseInfo;
|
|
class IDBDatabase;
|
|
class IDBOpenDBRequest;
|
|
class IndexedDBChild;
|
|
class IndexedDBParent;
|
|
|
|
struct ObjectStoreInfo;
|
|
|
|
class IDBFactory MOZ_FINAL : public nsIIDBFactory
|
|
{
|
|
typedef nsTArray<nsRefPtr<ObjectStoreInfo> > ObjectStoreInfoArray;
|
|
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(IDBFactory)
|
|
NS_DECL_NSIIDBFACTORY
|
|
|
|
static nsresult Create(nsPIDOMWindow* aWindow,
|
|
const nsACString& aASCIIOrigin,
|
|
IDBFactory** aFactory);
|
|
|
|
static nsresult Create(nsPIDOMWindow* aWindow,
|
|
nsIIDBFactory** aFactory)
|
|
{
|
|
nsRefPtr<IDBFactory> factory;
|
|
nsresult rv = Create(aWindow, EmptyCString(), getter_AddRefs(factory));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
factory.forget(aFactory);
|
|
return NS_OK;
|
|
}
|
|
|
|
static nsresult Create(JSContext* aCx,
|
|
JSObject* aOwningObject,
|
|
IDBFactory** aFactory);
|
|
|
|
static already_AddRefed<mozIStorageConnection>
|
|
GetConnection(const nsAString& aDatabaseFilePath);
|
|
|
|
static nsresult
|
|
LoadDatabaseInformation(mozIStorageConnection* aConnection,
|
|
nsIAtom* aDatabaseId,
|
|
PRUint64* aVersion,
|
|
ObjectStoreInfoArray& aObjectStores);
|
|
|
|
static nsresult
|
|
SetDatabaseMetadata(DatabaseInfo* aDatabaseInfo,
|
|
PRUint64 aVersion,
|
|
ObjectStoreInfoArray& aObjectStores);
|
|
|
|
nsresult
|
|
OpenCommon(const nsAString& aName,
|
|
PRInt64 aVersion,
|
|
bool aDeleting,
|
|
IDBOpenDBRequest** _retval);
|
|
|
|
void
|
|
SetActor(IndexedDBChild* aActorChild)
|
|
{
|
|
NS_ASSERTION(!aActorChild || !mActorChild, "Shouldn't have more than one!");
|
|
mActorChild = aActorChild;
|
|
}
|
|
|
|
void
|
|
SetActor(IndexedDBParent* aActorParent)
|
|
{
|
|
NS_ASSERTION(!aActorParent || !mActorParent, "Shouldn't have more than one!");
|
|
mActorParent = aActorParent;
|
|
}
|
|
|
|
private:
|
|
IDBFactory();
|
|
~IDBFactory();
|
|
|
|
nsCString mASCIIOrigin;
|
|
|
|
// If this factory lives on a window then mWindow must be non-null. Otherwise
|
|
// mOwningObject must be non-null.
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
|
JSObject* mOwningObject;
|
|
|
|
IndexedDBChild* mActorChild;
|
|
IndexedDBParent* mActorParent;
|
|
};
|
|
|
|
END_INDEXEDDB_NAMESPACE
|
|
|
|
#endif // mozilla_dom_indexeddb_idbfactory_h__
|