mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
459 lines
12 KiB
C++
459 lines
12 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Indexed Database.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* The Mozilla Foundation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2010
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Ben Turner <bent.mozilla@gmail.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#include "AsyncConnectionHelper.h"
|
|
|
|
#include "mozilla/storage.h"
|
|
#include "nsComponentManagerUtils.h"
|
|
#include "nsProxyRelease.h"
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "IDBEvents.h"
|
|
#include "IDBFactory.h"
|
|
#include "IDBTransaction.h"
|
|
#include "TransactionThreadPool.h"
|
|
|
|
using mozilla::TimeStamp;
|
|
using mozilla::TimeDuration;
|
|
|
|
USING_INDEXEDDB_NAMESPACE
|
|
|
|
namespace {
|
|
|
|
IDBTransaction* gCurrentTransaction = nsnull;
|
|
|
|
const PRUint32 kProgressHandlerGranularity = 1000;
|
|
const PRUint32 kDefaultTimeoutMS = 30000;
|
|
|
|
NS_STACK_CLASS
|
|
class TransactionPoolEventTarget : public nsIEventTarget
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIEVENTTARGET
|
|
|
|
TransactionPoolEventTarget(IDBTransaction* aTransaction)
|
|
: mTransaction(aTransaction)
|
|
{ }
|
|
|
|
private:
|
|
IDBTransaction* mTransaction;
|
|
};
|
|
|
|
} // anonymous namespace
|
|
|
|
AsyncConnectionHelper::AsyncConnectionHelper(IDBDatabase* aDatabase,
|
|
IDBRequest* aRequest)
|
|
: mDatabase(aDatabase),
|
|
mRequest(aRequest),
|
|
mTimeoutDuration(TimeDuration::FromMilliseconds(kDefaultTimeoutMS)),
|
|
mResultCode(NS_OK),
|
|
mDispatched(PR_FALSE)
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
}
|
|
|
|
AsyncConnectionHelper::AsyncConnectionHelper(IDBTransaction* aTransaction,
|
|
IDBRequest* aRequest)
|
|
: mDatabase(aTransaction->mDatabase),
|
|
mTransaction(aTransaction),
|
|
mRequest(aRequest),
|
|
mTimeoutDuration(TimeDuration::FromMilliseconds(kDefaultTimeoutMS)),
|
|
mResultCode(NS_OK),
|
|
mDispatched(PR_FALSE)
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
}
|
|
|
|
AsyncConnectionHelper::~AsyncConnectionHelper()
|
|
{
|
|
if (!NS_IsMainThread()) {
|
|
IDBDatabase* database;
|
|
mDatabase.forget(&database);
|
|
|
|
IDBTransaction* transaction;
|
|
mTransaction.forget(&transaction);
|
|
|
|
IDBRequest* request;
|
|
mRequest.forget(&request);
|
|
|
|
nsCOMPtr<nsIThread> mainThread;
|
|
NS_GetMainThread(getter_AddRefs(mainThread));
|
|
NS_WARN_IF_FALSE(mainThread, "Couldn't get the main thread!");
|
|
|
|
if (mainThread) {
|
|
if (database) {
|
|
NS_ProxyRelease(mainThread, static_cast<nsIIDBDatabase*>(database));
|
|
}
|
|
if (transaction) {
|
|
NS_ProxyRelease(mainThread,
|
|
static_cast<nsIIDBTransaction*>(transaction));
|
|
}
|
|
if (request) {
|
|
NS_ProxyRelease(mainThread, static_cast<nsIDOMEventTarget*>(request));
|
|
}
|
|
}
|
|
}
|
|
|
|
NS_ASSERTION(!mOldProgressHandler, "Should not have anything here!");
|
|
}
|
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS2(AsyncConnectionHelper, nsIRunnable,
|
|
mozIStorageProgressHandler)
|
|
|
|
NS_IMETHODIMP
|
|
AsyncConnectionHelper::Run()
|
|
{
|
|
if (NS_IsMainThread()) {
|
|
if (mRequest) {
|
|
mRequest->SetDone();
|
|
}
|
|
|
|
SetCurrentTransaction(mTransaction);
|
|
|
|
// Call OnError if the database had an error or if the OnSuccess handler
|
|
// has an error.
|
|
if (NS_FAILED(mResultCode) ||
|
|
NS_FAILED((mResultCode = OnSuccess(mRequest)))) {
|
|
OnError(mRequest, mResultCode);
|
|
}
|
|
|
|
NS_ASSERTION(GetCurrentTransaction() == mTransaction,
|
|
"Should be unchanged!");
|
|
SetCurrentTransaction(nsnull);
|
|
|
|
if (mDispatched && mTransaction) {
|
|
mTransaction->OnRequestFinished();
|
|
}
|
|
|
|
ReleaseMainThreadObjects();
|
|
|
|
NS_ASSERTION(!(mDatabase || mTransaction || mRequest), "Subclass didn't "
|
|
"call AsyncConnectionHelper::ReleaseMainThreadObjects!");
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult rv = NS_OK;
|
|
nsCOMPtr<mozIStorageConnection> connection;
|
|
|
|
if (mTransaction) {
|
|
rv = mTransaction->GetOrCreateConnection(getter_AddRefs(connection));
|
|
if (NS_SUCCEEDED(rv)) {
|
|
NS_ASSERTION(connection, "This should never be null!");
|
|
}
|
|
}
|
|
|
|
if (connection) {
|
|
rv = connection->SetProgressHandler(kProgressHandlerGranularity, this,
|
|
getter_AddRefs(mOldProgressHandler));
|
|
NS_WARN_IF_FALSE(NS_SUCCEEDED(rv), "SetProgressHandler failed!");
|
|
if (NS_SUCCEEDED(rv)) {
|
|
mStartTime = TimeStamp::Now();
|
|
}
|
|
}
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
bool hasSavepoint = false;
|
|
if (mDatabase) {
|
|
IDBFactory::SetCurrentDatabase(mDatabase);
|
|
|
|
// Make the first savepoint.
|
|
if (mTransaction) {
|
|
if (!(hasSavepoint = mTransaction->StartSavepoint())) {
|
|
NS_WARNING("Failed to make savepoint!");
|
|
}
|
|
}
|
|
}
|
|
|
|
mResultCode = DoDatabaseWork(connection);
|
|
|
|
if (mDatabase) {
|
|
IDBFactory::SetCurrentDatabase(nsnull);
|
|
|
|
// Release or roll back the savepoint depending on the error code.
|
|
if (hasSavepoint) {
|
|
NS_ASSERTION(mTransaction, "Huh?!");
|
|
if (NS_SUCCEEDED(mResultCode)) {
|
|
mTransaction->ReleaseSavepoint();
|
|
}
|
|
else {
|
|
mTransaction->RollbackSavepoint();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
// NS_ERROR_NOT_AVAILABLE is our special code for "database is invalidated"
|
|
// and we should fail with RECOVERABLE_ERR.
|
|
if (rv == NS_ERROR_NOT_AVAILABLE) {
|
|
mResultCode = NS_ERROR_DOM_INDEXEDDB_RECOVERABLE_ERR;
|
|
}
|
|
else {
|
|
mResultCode = NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR;
|
|
}
|
|
}
|
|
|
|
if (!mStartTime.IsNull()) {
|
|
nsCOMPtr<mozIStorageProgressHandler> handler;
|
|
rv = connection->RemoveProgressHandler(getter_AddRefs(handler));
|
|
NS_WARN_IF_FALSE(NS_SUCCEEDED(rv), "RemoveProgressHandler failed!");
|
|
#ifdef DEBUG
|
|
if (NS_SUCCEEDED(rv)) {
|
|
nsCOMPtr<nsISupports> handlerSupports(do_QueryInterface(handler));
|
|
nsCOMPtr<nsISupports> thisSupports =
|
|
do_QueryInterface(static_cast<nsIRunnable*>(this));
|
|
NS_ASSERTION(thisSupports == handlerSupports, "Mismatch!");
|
|
}
|
|
#endif
|
|
mStartTime = TimeStamp();
|
|
}
|
|
|
|
return NS_DispatchToMainThread(this, NS_DISPATCH_NORMAL);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
AsyncConnectionHelper::OnProgress(mozIStorageConnection* aConnection,
|
|
PRBool* _retval)
|
|
{
|
|
if (mDatabase && mDatabase->IsInvalidated()) {
|
|
// Someone is trying to delete the database file. Exit lightningfast!
|
|
*_retval = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
|
|
TimeDuration elapsed = TimeStamp::Now() - mStartTime;
|
|
if (elapsed >= mTimeoutDuration) {
|
|
*_retval = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
|
|
if (mOldProgressHandler) {
|
|
return mOldProgressHandler->OnProgress(aConnection, _retval);
|
|
}
|
|
|
|
*_retval = PR_FALSE;
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
AsyncConnectionHelper::Dispatch(nsIEventTarget* aDatabaseThread)
|
|
{
|
|
#ifdef DEBUG
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
{
|
|
PRBool sameThread;
|
|
nsresult rv = aDatabaseThread->IsOnCurrentThread(&sameThread);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "IsOnCurrentThread failed!");
|
|
NS_ASSERTION(!sameThread, "Dispatching to main thread not supported!");
|
|
}
|
|
#endif
|
|
|
|
nsresult rv = Init();
|
|
if (NS_FAILED(rv)) {
|
|
return rv;
|
|
}
|
|
|
|
rv = aDatabaseThread->Dispatch(this, NS_DISPATCH_NORMAL);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (mTransaction) {
|
|
mTransaction->OnNewRequest();
|
|
}
|
|
|
|
mDispatched = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
AsyncConnectionHelper::DispatchToTransactionPool()
|
|
{
|
|
NS_ASSERTION(mTransaction, "Only ok to call this with a transaction!");
|
|
TransactionPoolEventTarget target(mTransaction);
|
|
return Dispatch(&target);
|
|
}
|
|
|
|
// static
|
|
IDBTransaction*
|
|
AsyncConnectionHelper::GetCurrentTransaction()
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
return gCurrentTransaction;
|
|
}
|
|
|
|
// static
|
|
void
|
|
AsyncConnectionHelper::SetCurrentTransaction(IDBTransaction* aTransaction)
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
if (aTransaction) {
|
|
NS_ASSERTION(!gCurrentTransaction, "Overwriting current transaction!");
|
|
}
|
|
|
|
gCurrentTransaction = aTransaction;
|
|
}
|
|
|
|
|
|
nsresult
|
|
AsyncConnectionHelper::Init()
|
|
{
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
AsyncConnectionHelper::OnSuccess(nsIDOMEventTarget* aTarget)
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
nsCOMPtr<nsIWritableVariant> variant =
|
|
do_CreateInstance(NS_VARIANT_CONTRACTID);
|
|
if (!variant) {
|
|
NS_ERROR("Couldn't create variant!");
|
|
return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR;
|
|
}
|
|
|
|
nsresult rv = GetSuccessResult(variant);
|
|
if (NS_FAILED(rv)) {
|
|
return rv;
|
|
}
|
|
|
|
// Check to make sure we have a listener here before actually firing.
|
|
nsCOMPtr<nsPIDOMEventTarget> target(do_QueryInterface(aTarget));
|
|
if (target) {
|
|
nsIEventListenerManager* manager = target->GetListenerManager(PR_FALSE);
|
|
if (!manager ||
|
|
!manager->HasListenersFor(NS_LITERAL_STRING(SUCCESS_EVT_STR))) {
|
|
// No listeners here, skip creating and dispatching the event.
|
|
return NS_OK;
|
|
}
|
|
}
|
|
|
|
if (NS_FAILED(variant->SetWritable(PR_FALSE))) {
|
|
NS_ERROR("Failed to make variant readonly!");
|
|
return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR;
|
|
}
|
|
|
|
nsCOMPtr<nsIDOMEvent> event =
|
|
IDBSuccessEvent::Create(mRequest, variant, mTransaction);
|
|
if (!event) {
|
|
NS_ERROR("Failed to create event!");
|
|
return NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR;
|
|
}
|
|
|
|
PRBool dummy;
|
|
aTarget->DispatchEvent(event, &dummy);
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
AsyncConnectionHelper::OnError(nsIDOMEventTarget* aTarget,
|
|
nsresult aErrorCode)
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
// Make an error event and fire it at the target.
|
|
nsCOMPtr<nsIDOMEvent> event(IDBErrorEvent::Create(mRequest, aErrorCode));
|
|
if (!event) {
|
|
NS_ERROR("Failed to create event!");
|
|
return;
|
|
}
|
|
|
|
PRBool dummy;
|
|
aTarget->DispatchEvent(event, &dummy);
|
|
}
|
|
|
|
nsresult
|
|
AsyncConnectionHelper::GetSuccessResult(nsIWritableVariant* /* aResult */)
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
// Leave the variant remain set to empty.
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
AsyncConnectionHelper::ReleaseMainThreadObjects()
|
|
{
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
mDatabase = nsnull;
|
|
mTransaction = nsnull;
|
|
mRequest = nsnull;
|
|
}
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
TransactionPoolEventTarget::AddRef()
|
|
{
|
|
NS_NOTREACHED("Don't call me!");
|
|
return 2;
|
|
}
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
TransactionPoolEventTarget::Release()
|
|
{
|
|
NS_NOTREACHED("Don't call me!");
|
|
return 1;
|
|
}
|
|
|
|
NS_IMPL_QUERY_INTERFACE1(TransactionPoolEventTarget, nsIEventTarget)
|
|
|
|
NS_IMETHODIMP
|
|
TransactionPoolEventTarget::Dispatch(nsIRunnable* aRunnable,
|
|
PRUint32 aFlags)
|
|
{
|
|
NS_ASSERTION(aRunnable, "Null pointer!");
|
|
NS_ASSERTION(aFlags == NS_DISPATCH_NORMAL, "Unsupported!");
|
|
|
|
TransactionThreadPool* pool = TransactionThreadPool::GetOrCreate();
|
|
NS_ENSURE_TRUE(pool, NS_ERROR_FAILURE);
|
|
|
|
return pool->Dispatch(mTransaction, aRunnable, false, nsnull);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
TransactionPoolEventTarget::IsOnCurrentThread(PRBool* aResult)
|
|
{
|
|
*aResult = PR_FALSE;
|
|
return NS_OK;
|
|
}
|