/* -*- 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/. */ #include "base/basictypes.h" #include "IDBDatabase.h" #include "mozilla/Mutex.h" #include "mozilla/storage.h" #include "nsDOMClassInfo.h" #include "nsDOMLists.h" #include "nsJSUtils.h" #include "nsProxyRelease.h" #include "nsThreadUtils.h" #include "AsyncConnectionHelper.h" #include "CheckQuotaHelper.h" #include "DatabaseInfo.h" #include "IDBEvents.h" #include "IDBFileHandle.h" #include "IDBIndex.h" #include "IDBObjectStore.h" #include "IDBTransaction.h" #include "IDBFactory.h" #include "IndexedDatabaseManager.h" #include "TransactionThreadPool.h" #include "DictionaryHelpers.h" #include "nsContentUtils.h" #include "ipc/IndexedDBChild.h" USING_INDEXEDDB_NAMESPACE namespace { class NoRequestDatabaseHelper : public AsyncConnectionHelper { public: NoRequestDatabaseHelper(IDBTransaction* aTransaction) : AsyncConnectionHelper(aTransaction, nsnull) { NS_ASSERTION(IndexedDatabaseManager::IsMainProcess(), "Wrong process!"); NS_ASSERTION(aTransaction, "Null transaction!"); } virtual ChildProcessSendResult MaybeSendResponseToChildProcess(nsresult aResultCode) MOZ_OVERRIDE; virtual nsresult UnpackResponseFromParentProcess(const ResponseValue& aResponseValue) MOZ_OVERRIDE; virtual nsresult OnSuccess() MOZ_OVERRIDE; virtual void OnError() MOZ_OVERRIDE; }; class CreateObjectStoreHelper : public NoRequestDatabaseHelper { public: CreateObjectStoreHelper(IDBTransaction* aTransaction, IDBObjectStore* aObjectStore) : NoRequestDatabaseHelper(aTransaction), mObjectStore(aObjectStore) { } virtual nsresult DoDatabaseWork(mozIStorageConnection* aConnection) MOZ_OVERRIDE; virtual void ReleaseMainThreadObjects() MOZ_OVERRIDE; private: nsRefPtr mObjectStore; }; class DeleteObjectStoreHelper : public NoRequestDatabaseHelper { public: DeleteObjectStoreHelper(IDBTransaction* aTransaction, PRInt64 aObjectStoreId) : NoRequestDatabaseHelper(aTransaction), mObjectStoreId(aObjectStoreId) { } virtual nsresult DoDatabaseWork(mozIStorageConnection* aConnection) MOZ_OVERRIDE; private: // In-params. PRInt64 mObjectStoreId; }; class CreateFileHelper : public AsyncConnectionHelper { public: CreateFileHelper(IDBDatabase* aDatabase, IDBRequest* aRequest, const nsAString& aName, const nsAString& aType) : AsyncConnectionHelper(aDatabase, aRequest), mName(aName), mType(aType) { } ~CreateFileHelper() { } nsresult DoDatabaseWork(mozIStorageConnection* aConnection); nsresult GetSuccessResult(JSContext* aCx, jsval* aVal); void ReleaseMainThreadObjects() { mFileInfo = nsnull; AsyncConnectionHelper::ReleaseMainThreadObjects(); } virtual ChildProcessSendResult MaybeSendResponseToChildProcess( nsresult aResultCode) MOZ_OVERRIDE { return Success_NotSent; } virtual nsresult UnpackResponseFromParentProcess( const ResponseValue& aResponseValue) MOZ_OVERRIDE { MOZ_NOT_REACHED("Should never get here!"); return NS_ERROR_UNEXPECTED; } private: // In-params. nsString mName; nsString mType; // Out-params. nsRefPtr mFileInfo; }; NS_STACK_CLASS class AutoRemoveObjectStore { public: AutoRemoveObjectStore(DatabaseInfo* aInfo, const nsAString& aName) : mInfo(aInfo), mName(aName) { } ~AutoRemoveObjectStore() { if (mInfo) { mInfo->RemoveObjectStore(mName); } } void forget() { mInfo = nsnull; } private: DatabaseInfo* mInfo; nsString mName; }; } // anonymous namespace // static already_AddRefed IDBDatabase::Create(IDBWrapperCache* aOwnerCache, already_AddRefed aDatabaseInfo, const nsACString& aASCIIOrigin, FileManager* aFileManager) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); NS_ASSERTION(!aASCIIOrigin.IsEmpty(), "Empty origin!"); nsRefPtr databaseInfo(aDatabaseInfo); NS_ASSERTION(databaseInfo, "Null pointer!"); nsRefPtr db(new IDBDatabase()); db->BindToOwner(aOwnerCache); if (!db->SetScriptOwner(aOwnerCache->GetScriptOwner())) { return nsnull; } db->mDatabaseId = databaseInfo->id; db->mName = databaseInfo->name; db->mFilePath = databaseInfo->filePath; databaseInfo.swap(db->mDatabaseInfo); db->mASCIIOrigin = aASCIIOrigin; db->mFileManager = aFileManager; IndexedDatabaseManager* mgr = IndexedDatabaseManager::Get(); NS_ASSERTION(mgr, "This should never be null!"); if (!mgr->RegisterDatabase(db)) { // Either out of memory or shutting down. return nsnull; } return db.forget(); } IDBDatabase::IDBDatabase() : mDatabaseId(0), mActorChild(nsnull), mActorParent(nsnull), mInvalidated(0), mRegistered(false), mClosed(false), mRunningVersionChange(false) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); } IDBDatabase::~IDBDatabase() { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); NS_ASSERTION(!mActorParent, "Actor parent owns us, how can we be dying?!"); if (mActorChild) { NS_ASSERTION(!IndexedDatabaseManager::IsMainProcess(), "Wrong process!"); mActorChild->Send__delete__(mActorChild); NS_ASSERTION(!mActorChild, "Should have cleared in Send__delete__!"); } if (mRegistered) { CloseInternal(true); IndexedDatabaseManager* mgr = IndexedDatabaseManager::Get(); if (mgr) { mgr->UnregisterDatabase(this); } } nsContentUtils::ReleaseWrapper(static_cast(this), this); } void IDBDatabase::Invalidate() { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); if (IsInvalidated()) { return; } // Make sure we're closed too. Close(); // When the IndexedDatabaseManager needs to invalidate databases, all it has // is an origin, so we call back into the manager to cancel any prompts for // our owner. nsPIDOMWindow* owner = GetOwner(); if (owner) { IndexedDatabaseManager::CancelPromptsForWindow(owner); } mInvalidated = true; } bool IDBDatabase::IsInvalidated() { return !!mInvalidated; } void IDBDatabase::CloseInternal(bool aIsDead) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); if (!mClosed) { // If we're getting called from Unlink, avoid cloning the DatabaseInfo. { nsRefPtr previousInfo; mDatabaseInfo.swap(previousInfo); if (!aIsDead) { nsRefPtr clonedInfo = previousInfo->Clone(); clonedInfo.swap(mDatabaseInfo); } } IndexedDatabaseManager* mgr = IndexedDatabaseManager::Get(); if (mgr) { mgr->OnDatabaseClosed(this); } // And let the parent process know as well. if (mActorChild) { NS_ASSERTION(!IndexedDatabaseManager::IsMainProcess(), "Wrong process!"); mActorChild->SendClose(aIsDead); } mClosed = true; } } bool IDBDatabase::IsClosed() { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); return mClosed; } void IDBDatabase::EnterSetVersionTransaction() { NS_ASSERTION(!mRunningVersionChange, "How did that happen?"); mPreviousDatabaseInfo = mDatabaseInfo->Clone(); mRunningVersionChange = true; } void IDBDatabase::ExitSetVersionTransaction() { NS_ASSERTION(mRunningVersionChange, "How did that happen?"); mPreviousDatabaseInfo = nsnull; mRunningVersionChange = false; } void IDBDatabase::RevertToPreviousState() { mDatabaseInfo = mPreviousDatabaseInfo; mPreviousDatabaseInfo = nsnull; } void IDBDatabase::OnUnlink() { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); // We've been unlinked, at the very least we should be able to prevent further // transactions from starting and unblock any other SetVersion callers. CloseInternal(true); // No reason for the IndexedDatabaseManager to track us any longer. IndexedDatabaseManager* mgr = IndexedDatabaseManager::Get(); if (mgr) { mgr->UnregisterDatabase(this); // Don't try to unregister again in the destructor. mRegistered = false; } } nsresult IDBDatabase::CreateObjectStoreInternal(IDBTransaction* aTransaction, const ObjectStoreInfoGuts& aInfo, IDBObjectStore** _retval) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); NS_ASSERTION(aTransaction, "Null transaction!"); DatabaseInfo* databaseInfo = aTransaction->DBInfo(); nsRefPtr newInfo = new ObjectStoreInfo(); *static_cast(newInfo.get()) = aInfo; newInfo->nextAutoIncrementId = aInfo.autoIncrement ? 1 : 0; newInfo->comittedAutoIncrementId = newInfo->nextAutoIncrementId; if (!databaseInfo->PutObjectStore(newInfo)) { NS_WARNING("Put failed!"); return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR; } // Don't leave this in the hash if we fail below! AutoRemoveObjectStore autoRemove(databaseInfo, newInfo->name); nsRefPtr objectStore = aTransaction->GetOrCreateObjectStore(newInfo->name, newInfo, true); NS_ENSURE_TRUE(objectStore, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); if (IndexedDatabaseManager::IsMainProcess()) { nsRefPtr helper = new CreateObjectStoreHelper(aTransaction, objectStore); nsresult rv = helper->DispatchToTransactionPool(); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); } autoRemove.forget(); objectStore.forget(_retval); return NS_OK; } NS_IMPL_CYCLE_COLLECTION_CLASS(IDBDatabase) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(IDBDatabase, IDBWrapperCache) NS_CYCLE_COLLECTION_TRAVERSE_EVENT_HANDLER(abort) NS_CYCLE_COLLECTION_TRAVERSE_EVENT_HANDLER(error) NS_CYCLE_COLLECTION_TRAVERSE_EVENT_HANDLER(versionchange) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(IDBDatabase, IDBWrapperCache) NS_CYCLE_COLLECTION_UNLINK_EVENT_HANDLER(abort) NS_CYCLE_COLLECTION_UNLINK_EVENT_HANDLER(error) NS_CYCLE_COLLECTION_UNLINK_EVENT_HANDLER(versionchange) // Do some cleanup. tmp->OnUnlink(); NS_IMPL_CYCLE_COLLECTION_UNLINK_END NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(IDBDatabase) NS_INTERFACE_MAP_ENTRY(nsIIDBDatabase) NS_INTERFACE_MAP_ENTRY(nsIFileStorage) NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(IDBDatabase) NS_INTERFACE_MAP_END_INHERITING(IDBWrapperCache) NS_IMPL_ADDREF_INHERITED(IDBDatabase, IDBWrapperCache) NS_IMPL_RELEASE_INHERITED(IDBDatabase, IDBWrapperCache) DOMCI_DATA(IDBDatabase, IDBDatabase) NS_IMPL_EVENT_HANDLER(IDBDatabase, abort); NS_IMPL_EVENT_HANDLER(IDBDatabase, error); NS_IMPL_EVENT_HANDLER(IDBDatabase, versionchange); NS_IMETHODIMP IDBDatabase::GetName(nsAString& aName) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); aName.Assign(mName); return NS_OK; } NS_IMETHODIMP IDBDatabase::GetVersion(PRUint64* aVersion) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); DatabaseInfo* info = Info(); *aVersion = info->version; return NS_OK; } NS_IMETHODIMP IDBDatabase::GetObjectStoreNames(nsIDOMDOMStringList** aObjectStores) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); DatabaseInfo* info = Info(); nsAutoTArray objectStoreNames; if (!info->GetObjectStoreNames(objectStoreNames)) { NS_WARNING("Couldn't get names!"); return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR; } nsRefPtr list(new nsDOMStringList()); PRUint32 count = objectStoreNames.Length(); for (PRUint32 index = 0; index < count; index++) { NS_ENSURE_TRUE(list->Add(objectStoreNames[index]), NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); } list.forget(aObjectStores); return NS_OK; } NS_IMETHODIMP IDBDatabase::CreateObjectStore(const nsAString& aName, const jsval& aOptions, JSContext* aCx, nsIIDBObjectStore** _retval) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); IDBTransaction* transaction = AsyncConnectionHelper::GetCurrentTransaction(); if (!transaction || transaction->GetMode() != IDBTransaction::VERSION_CHANGE) { return NS_ERROR_DOM_INDEXEDDB_NOT_ALLOWED_ERR; } DatabaseInfo* databaseInfo = transaction->DBInfo(); mozilla::dom::IDBObjectStoreParameters params; KeyPath keyPath(0); nsTArray keyPathArray; nsresult rv; if (!JSVAL_IS_VOID(aOptions) && !JSVAL_IS_NULL(aOptions)) { rv = params.Init(aCx, &aOptions); if (NS_FAILED(rv)) { return rv; } // We need a default value here, which the XPIDL dictionary stuff doesn't // support. WebIDL shall save us all! JSBool hasProp = false; JSObject* obj = JSVAL_TO_OBJECT(aOptions); if (!JS_HasProperty(aCx, obj, "keyPath", &hasProp)) { return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR; } if (NS_FAILED(KeyPath::Parse(aCx, hasProp ? params.keyPath : JSVAL_NULL, &keyPath))) { return NS_ERROR_DOM_SYNTAX_ERR; } } if (databaseInfo->ContainsStoreName(aName)) { return NS_ERROR_DOM_INDEXEDDB_CONSTRAINT_ERR; } if (!keyPath.IsAllowedForObjectStore(params.autoIncrement)) { return NS_ERROR_DOM_INVALID_ACCESS_ERR; } ObjectStoreInfoGuts guts; guts.name = aName; guts.id = databaseInfo->nextObjectStoreId++; guts.keyPath = keyPath; guts.autoIncrement = params.autoIncrement; nsRefPtr objectStore; rv = CreateObjectStoreInternal(transaction, guts, getter_AddRefs(objectStore)); NS_ENSURE_SUCCESS(rv, rv); objectStore.forget(_retval); return NS_OK; } NS_IMETHODIMP IDBDatabase::DeleteObjectStore(const nsAString& aName) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); IDBTransaction* transaction = AsyncConnectionHelper::GetCurrentTransaction(); if (!transaction || transaction->GetMode() != IDBTransaction::VERSION_CHANGE) { return NS_ERROR_DOM_INDEXEDDB_NOT_ALLOWED_ERR; } DatabaseInfo* info = transaction->DBInfo(); ObjectStoreInfo* objectStoreInfo = info->GetObjectStore(aName); if (!objectStoreInfo) { return NS_ERROR_DOM_INDEXEDDB_NOT_FOUND_ERR; } nsresult rv; if (IndexedDatabaseManager::IsMainProcess()) { nsRefPtr helper = new DeleteObjectStoreHelper(transaction, objectStoreInfo->id); rv = helper->DispatchToTransactionPool(); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); } else { IndexedDBTransactionChild* actor = transaction->GetActorChild(); NS_ASSERTION(actor, "Must have an actor here!"); actor->SendDeleteObjectStore(nsString(aName)); } transaction->RemoveObjectStore(aName); return NS_OK; } NS_IMETHODIMP IDBDatabase::Transaction(const jsval& aStoreNames, const nsAString& aMode, JSContext* aCx, PRUint8 aOptionalArgCount, nsIIDBTransaction** _retval) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); if (IndexedDatabaseManager::IsShuttingDown()) { return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR; } if (mClosed) { return NS_ERROR_DOM_INDEXEDDB_NOT_ALLOWED_ERR; } if (mRunningVersionChange) { return NS_ERROR_DOM_INDEXEDDB_NOT_ALLOWED_ERR; } IDBTransaction::Mode transactionMode = IDBTransaction::READ_ONLY; if (aOptionalArgCount) { if (aMode.EqualsLiteral("readwrite")) { transactionMode = IDBTransaction::READ_WRITE; } else if (!aMode.EqualsLiteral("readonly")) { return NS_ERROR_TYPE_ERR; } } nsresult rv; nsTArray storesToOpen; if (!JSVAL_IS_PRIMITIVE(aStoreNames)) { JSObject* obj = JSVAL_TO_OBJECT(aStoreNames); // See if this is a JS array. if (JS_IsArrayObject(aCx, obj)) { uint32_t length; if (!JS_GetArrayLength(aCx, obj, &length)) { return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR; } if (!length) { return NS_ERROR_DOM_INVALID_ACCESS_ERR; } storesToOpen.SetCapacity(length); for (uint32_t index = 0; index < length; index++) { jsval val; JSString* jsstr; nsDependentJSString str; if (!JS_GetElement(aCx, obj, index, &val) || !(jsstr = JS_ValueToString(aCx, val)) || !str.init(aCx, jsstr)) { return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR; } storesToOpen.AppendElement(str); } NS_ASSERTION(!storesToOpen.IsEmpty(), "Must have something here or else code below will " "misbehave!"); } else { // Perhaps some kind of wrapped object? nsIXPConnect* xpc = nsContentUtils::XPConnect(); NS_ASSERTION(xpc, "This should never be null!"); nsCOMPtr wrapper; rv = xpc->GetWrappedNativeOfJSObject(aCx, obj, getter_AddRefs(wrapper)); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); if (wrapper) { nsISupports* wrappedObject = wrapper->Native(); NS_ENSURE_TRUE(wrappedObject, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); // We only accept DOMStringList. nsCOMPtr list = do_QueryInterface(wrappedObject); if (list) { PRUint32 length; rv = list->GetLength(&length); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); if (!length) { return NS_ERROR_DOM_INVALID_ACCESS_ERR; } storesToOpen.SetCapacity(length); for (PRUint32 index = 0; index < length; index++) { nsString* item = storesToOpen.AppendElement(); NS_ASSERTION(item, "This should never fail!"); rv = list->Item(index, *item); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); } NS_ASSERTION(!storesToOpen.IsEmpty(), "Must have something here or else code below will " "misbehave!"); } } } } // If our list is empty here then the argument must have been an object that // we don't support or a primitive. Either way we convert to a string. if (storesToOpen.IsEmpty()) { JSString* jsstr; nsDependentJSString str; if (!(jsstr = JS_ValueToString(aCx, aStoreNames)) || !str.init(aCx, jsstr)) { return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR; } storesToOpen.AppendElement(str); } // Now check to make sure the object store names we collected actually exist. DatabaseInfo* info = Info(); for (PRUint32 index = 0; index < storesToOpen.Length(); index++) { if (!info->ContainsStoreName(storesToOpen[index])) { return NS_ERROR_DOM_INDEXEDDB_NOT_FOUND_ERR; } } nsRefPtr transaction = IDBTransaction::Create(this, storesToOpen, transactionMode, false); NS_ENSURE_TRUE(transaction, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); transaction.forget(_retval); return NS_OK; } NS_IMETHODIMP IDBDatabase::MozCreateFileHandle(const nsAString& aName, const nsAString& aType, JSContext* aCx, nsIIDBRequest** _retval) { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); if (IndexedDatabaseManager::IsShuttingDown()) { return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR; } if (mClosed) { return NS_ERROR_DOM_INDEXEDDB_NOT_ALLOWED_ERR; } nsRefPtr request = IDBRequest::Create(nsnull, this, nsnull, aCx); nsRefPtr helper = new CreateFileHelper(this, request, aName, aType); IndexedDatabaseManager* manager = IndexedDatabaseManager::Get(); NS_ASSERTION(manager, "We should definitely have a manager here"); nsresult rv = helper->Dispatch(manager->IOThread()); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); request.forget(_retval); return NS_OK; } NS_IMETHODIMP IDBDatabase::Close() { NS_ASSERTION(NS_IsMainThread(), "Wrong thread!"); CloseInternal(false); NS_ASSERTION(mClosed, "Should have set the closed flag!"); return NS_OK; } nsISupports* IDBDatabase::StorageId() { return Id(); } bool IDBDatabase::IsStorageInvalidated() { return IsInvalidated(); } bool IDBDatabase::IsStorageShuttingDown() { return IndexedDatabaseManager::IsShuttingDown(); } void IDBDatabase::SetThreadLocals() { NS_ASSERTION(GetOwner(), "Should have owner!"); IndexedDatabaseManager::SetCurrentWindow(GetOwner()); } void IDBDatabase::UnsetThreadLocals() { IndexedDatabaseManager::SetCurrentWindow(nsnull); } nsresult IDBDatabase::PostHandleEvent(nsEventChainPostVisitor& aVisitor) { return IndexedDatabaseManager::FireWindowOnError(GetOwner(), aVisitor); } HelperBase::ChildProcessSendResult NoRequestDatabaseHelper::MaybeSendResponseToChildProcess(nsresult aResultCode) { NS_ASSERTION(IndexedDatabaseManager::IsMainProcess(), "Wrong process!"); return Success_NotSent; } nsresult NoRequestDatabaseHelper::UnpackResponseFromParentProcess( const ResponseValue& aResponseValue) { MOZ_NOT_REACHED("Should never get here!"); return NS_ERROR_UNEXPECTED; } nsresult NoRequestDatabaseHelper::OnSuccess() { NS_ASSERTION(IndexedDatabaseManager::IsMainProcess(), "Wrong process!"); return NS_OK; } void NoRequestDatabaseHelper::OnError() { NS_ASSERTION(IndexedDatabaseManager::IsMainProcess(), "Wrong process!"); mTransaction->Abort(GetResultCode()); } nsresult CreateObjectStoreHelper::DoDatabaseWork(mozIStorageConnection* aConnection) { nsCOMPtr stmt = mTransaction->GetCachedStatement(NS_LITERAL_CSTRING( "INSERT INTO object_store (id, auto_increment, name, key_path) " "VALUES (:id, :auto_increment, :name, :key_path)" )); NS_ENSURE_TRUE(stmt, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); mozStorageStatementScoper scoper(stmt); nsresult rv = stmt->BindInt64ByName(NS_LITERAL_CSTRING("id"), mObjectStore->Id()); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); rv = stmt->BindInt32ByName(NS_LITERAL_CSTRING("auto_increment"), mObjectStore->IsAutoIncrement() ? 1 : 0); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); rv = stmt->BindStringByName(NS_LITERAL_CSTRING("name"), mObjectStore->Name()); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); const KeyPath& keyPath = mObjectStore->GetKeyPath(); if (keyPath.IsValid()) { nsAutoString keyPathSerialization; keyPath.SerializeToString(keyPathSerialization); rv = stmt->BindStringByName(NS_LITERAL_CSTRING("key_path"), keyPathSerialization); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); } else { rv = stmt->BindNullByName(NS_LITERAL_CSTRING("key_path")); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); } rv = stmt->Execute(); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); return NS_OK; } void CreateObjectStoreHelper::ReleaseMainThreadObjects() { mObjectStore = nsnull; NoRequestDatabaseHelper::ReleaseMainThreadObjects(); } nsresult DeleteObjectStoreHelper::DoDatabaseWork(mozIStorageConnection* aConnection) { nsCOMPtr stmt = mTransaction->GetCachedStatement(NS_LITERAL_CSTRING( "DELETE FROM object_store " "WHERE id = :id " )); NS_ENSURE_TRUE(stmt, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); mozStorageStatementScoper scoper(stmt); nsresult rv = stmt->BindInt64ByName(NS_LITERAL_CSTRING("id"), mObjectStoreId); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); rv = stmt->Execute(); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); return NS_OK; } nsresult CreateFileHelper::DoDatabaseWork(mozIStorageConnection* aConnection) { FileManager* fileManager = mDatabase->Manager(); mFileInfo = fileManager->GetNewFileInfo(); NS_ENSURE_TRUE(mFileInfo, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); nsCOMPtr directory = fileManager->GetDirectory(); NS_ENSURE_TRUE(directory, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); nsCOMPtr file = fileManager->GetFileForId(directory, mFileInfo->Id()); NS_ENSURE_TRUE(file, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); nsresult rv = file->Create(nsIFile::NORMAL_FILE_TYPE, 0644); NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); return NS_OK; } nsresult CreateFileHelper::GetSuccessResult(JSContext* aCx, jsval* aVal) { nsRefPtr fileHandle = IDBFileHandle::Create(mDatabase, mName, mType, mFileInfo.forget()); NS_ENSURE_TRUE(fileHandle, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR); return WrapNative(aCx, NS_ISUPPORTS_CAST(nsIDOMFileHandle*, fileHandle), aVal); }