2015-03-02 16:20:00 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=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 "mozilla/dom/cache/Context.h"
|
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
#include "mozilla/AutoRestore.h"
|
2015-03-02 16:20:00 +03:00
|
|
|
#include "mozilla/DebugOnly.h"
|
|
|
|
#include "mozilla/dom/cache/Action.h"
|
2015-06-26 08:22:46 +03:00
|
|
|
#include "mozilla/dom/cache/FileUtils.h"
|
2015-03-02 16:20:00 +03:00
|
|
|
#include "mozilla/dom/cache/Manager.h"
|
|
|
|
#include "mozilla/dom/cache/ManagerId.h"
|
2015-03-16 17:10:36 +03:00
|
|
|
#include "mozilla/dom/cache/OfflineStorage.h"
|
2015-03-02 16:20:00 +03:00
|
|
|
#include "mozilla/dom/quota/OriginOrPatternString.h"
|
|
|
|
#include "mozilla/dom/quota/QuotaManager.h"
|
2015-05-07 15:16:51 +03:00
|
|
|
#include "mozIStorageConnection.h"
|
2015-03-02 16:20:00 +03:00
|
|
|
#include "nsIFile.h"
|
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsIRunnable.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
using mozilla::dom::Nullable;
|
2015-05-07 15:16:51 +03:00
|
|
|
using mozilla::dom::cache::Action;
|
2015-03-02 16:20:00 +03:00
|
|
|
using mozilla::dom::cache::QuotaInfo;
|
2015-03-16 17:10:36 +03:00
|
|
|
using mozilla::dom::quota::Client;
|
2015-03-02 16:20:00 +03:00
|
|
|
using mozilla::dom::quota::OriginOrPatternString;
|
|
|
|
using mozilla::dom::quota::QuotaManager;
|
|
|
|
using mozilla::dom::quota::PERSISTENCE_TYPE_DEFAULT;
|
|
|
|
using mozilla::dom::quota::PersistenceType;
|
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
// Release our lock on the QuotaManager directory asynchronously.
|
2015-03-21 19:28:04 +03:00
|
|
|
class QuotaReleaseRunnable final : public nsRunnable
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
public:
|
2015-03-16 17:10:36 +03:00
|
|
|
explicit QuotaReleaseRunnable(const QuotaInfo& aQuotaInfo)
|
2015-03-02 16:20:00 +03:00
|
|
|
: mQuotaInfo(aQuotaInfo)
|
|
|
|
{ }
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD Run() override
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
QuotaManager* qm = QuotaManager::Get();
|
|
|
|
MOZ_ASSERT(qm);
|
|
|
|
qm->AllowNextSynchronizedOp(OriginOrPatternString::FromOrigin(mQuotaInfo.mOrigin),
|
|
|
|
Nullable<PersistenceType>(PERSISTENCE_TYPE_DEFAULT),
|
2015-03-16 17:10:36 +03:00
|
|
|
mQuotaInfo.mStorageId);
|
2015-03-02 16:20:00 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
~QuotaReleaseRunnable() { }
|
|
|
|
|
|
|
|
const QuotaInfo mQuotaInfo;
|
|
|
|
};
|
|
|
|
|
2015-05-07 15:16:51 +03:00
|
|
|
class NullAction final : public Action
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NullAction()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
RunOnTarget(Resolver* aResolver, const QuotaInfo&, Data*) override
|
|
|
|
{
|
|
|
|
// Resolve success immediately. This Action does no actual work.
|
|
|
|
MOZ_ASSERT(aResolver);
|
|
|
|
aResolver->Resolve(NS_OK);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace cache {
|
|
|
|
|
|
|
|
using mozilla::DebugOnly;
|
|
|
|
using mozilla::dom::quota::OriginOrPatternString;
|
|
|
|
using mozilla::dom::quota::QuotaManager;
|
|
|
|
using mozilla::dom::quota::PERSISTENCE_TYPE_DEFAULT;
|
|
|
|
using mozilla::dom::quota::PersistenceType;
|
|
|
|
|
2015-05-07 15:16:51 +03:00
|
|
|
class Context::Data final : public Action::Data
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit Data(nsIThread* aTarget)
|
|
|
|
: mTarget(aTarget)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mTarget);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual mozIStorageConnection*
|
2015-05-07 19:56:40 +03:00
|
|
|
GetConnection() const override
|
2015-05-07 15:16:51 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mTarget == NS_GetCurrentThread());
|
|
|
|
return mConnection;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
SetConnection(mozIStorageConnection* aConn) override
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mTarget == NS_GetCurrentThread());
|
|
|
|
MOZ_ASSERT(!mConnection);
|
|
|
|
mConnection = aConn;
|
|
|
|
MOZ_ASSERT(mConnection);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
~Data()
|
|
|
|
{
|
2015-06-10 16:37:16 +03:00
|
|
|
// We could proxy release our data here, but instead just assert. The
|
|
|
|
// Context code should guarantee that we are destroyed on the target
|
|
|
|
// thread. If we're not, then QuotaManager might race and try to clear the
|
|
|
|
// origin out from under us.
|
|
|
|
MOZ_ASSERT(mTarget == NS_GetCurrentThread());
|
2015-05-07 15:16:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIThread> mTarget;
|
|
|
|
nsCOMPtr<mozIStorageConnection> mConnection;
|
|
|
|
|
2015-06-10 16:37:16 +03:00
|
|
|
// Threadsafe counting because we're created on the PBackground thread
|
|
|
|
// and destroyed on the target IO thread.
|
2015-05-07 15:16:51 +03:00
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(Context::Data)
|
|
|
|
};
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
// Executed to perform the complicated dance of steps necessary to initialize
|
|
|
|
// the QuotaManager. This must be performed for each origin before any disk
|
|
|
|
// IO occurrs.
|
2015-03-21 19:28:04 +03:00
|
|
|
class Context::QuotaInitRunnable final : public nsIRunnable
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
QuotaInitRunnable(Context* aContext,
|
|
|
|
Manager* aManager,
|
2015-05-28 17:46:47 +03:00
|
|
|
Data* aData,
|
2015-05-28 17:46:47 +03:00
|
|
|
nsIThread* aTarget,
|
|
|
|
Action* aInitAction)
|
2015-03-02 16:20:00 +03:00
|
|
|
: mContext(aContext)
|
2015-03-16 17:10:36 +03:00
|
|
|
, mThreadsafeHandle(aContext->CreateThreadsafeHandle())
|
2015-03-02 16:20:00 +03:00
|
|
|
, mManager(aManager)
|
2015-05-28 17:46:47 +03:00
|
|
|
, mData(aData)
|
2015-05-28 17:46:47 +03:00
|
|
|
, mTarget(aTarget)
|
|
|
|
, mInitAction(aInitAction)
|
2015-03-02 16:20:00 +03:00
|
|
|
, mInitiatingThread(NS_GetCurrentThread())
|
2015-03-16 20:51:33 +03:00
|
|
|
, mResult(NS_OK)
|
2015-03-16 17:10:36 +03:00
|
|
|
, mState(STATE_INIT)
|
2015-03-25 17:16:40 +03:00
|
|
|
, mCanceled(false)
|
2015-03-16 17:10:36 +03:00
|
|
|
, mNeedsQuotaRelease(false)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mContext);
|
|
|
|
MOZ_ASSERT(mManager);
|
2015-05-28 17:46:47 +03:00
|
|
|
MOZ_ASSERT(mData);
|
2015-05-28 17:46:47 +03:00
|
|
|
MOZ_ASSERT(mTarget);
|
2015-03-02 16:20:00 +03:00
|
|
|
MOZ_ASSERT(mInitiatingThread);
|
2015-06-26 08:22:46 +03:00
|
|
|
MOZ_ASSERT(mInitAction);
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult Dispatch()
|
|
|
|
{
|
2015-03-25 17:16:40 +03:00
|
|
|
NS_ASSERT_OWNINGTHREAD(QuotaInitRunnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
MOZ_ASSERT(mState == STATE_INIT);
|
|
|
|
|
|
|
|
mState = STATE_CALL_WAIT_FOR_OPEN_ALLOWED;
|
|
|
|
nsresult rv = NS_DispatchToMainThread(this, nsIThread::DISPATCH_NORMAL);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
mState = STATE_COMPLETE;
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2015-03-25 17:16:40 +03:00
|
|
|
void Cancel()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(QuotaInitRunnable);
|
|
|
|
MOZ_ASSERT(!mCanceled);
|
|
|
|
mCanceled = true;
|
2015-05-28 17:46:47 +03:00
|
|
|
mInitAction->CancelOnInitiatingThread();
|
2015-03-25 17:16:40 +03:00
|
|
|
}
|
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
private:
|
|
|
|
class SyncResolver final : public Action::Resolver
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
2015-03-24 05:23:45 +03:00
|
|
|
public:
|
|
|
|
SyncResolver()
|
|
|
|
: mResolved(false)
|
|
|
|
, mResult(NS_OK)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
Resolve(nsresult aRv) override
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mResolved);
|
|
|
|
mResolved = true;
|
|
|
|
mResult = aRv;
|
|
|
|
};
|
2015-03-02 16:20:00 +03:00
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
bool Resolved() const { return mResolved; }
|
|
|
|
nsresult Result() const { return mResult; }
|
2015-03-02 16:20:00 +03:00
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
private:
|
|
|
|
~SyncResolver() { }
|
|
|
|
|
|
|
|
bool mResolved;
|
|
|
|
nsresult mResult;
|
|
|
|
|
|
|
|
NS_INLINE_DECL_REFCOUNTING(Context::QuotaInitRunnable::SyncResolver, override)
|
|
|
|
};
|
2015-03-02 16:20:00 +03:00
|
|
|
|
|
|
|
~QuotaInitRunnable()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mState == STATE_COMPLETE);
|
|
|
|
MOZ_ASSERT(!mContext);
|
2015-05-28 17:46:47 +03:00
|
|
|
MOZ_ASSERT(!mInitAction);
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
enum State
|
|
|
|
{
|
|
|
|
STATE_INIT,
|
|
|
|
STATE_CALL_WAIT_FOR_OPEN_ALLOWED,
|
|
|
|
STATE_WAIT_FOR_OPEN_ALLOWED,
|
|
|
|
STATE_ENSURE_ORIGIN_INITIALIZED,
|
2015-05-28 17:46:47 +03:00
|
|
|
STATE_RUN_ON_TARGET,
|
2015-03-02 16:20:00 +03:00
|
|
|
STATE_RUNNING,
|
|
|
|
STATE_COMPLETING,
|
|
|
|
STATE_COMPLETE
|
|
|
|
};
|
|
|
|
|
|
|
|
void Clear()
|
|
|
|
{
|
2015-03-25 17:16:40 +03:00
|
|
|
NS_ASSERT_OWNINGTHREAD(QuotaInitRunnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
MOZ_ASSERT(mContext);
|
|
|
|
mContext = nullptr;
|
|
|
|
mManager = nullptr;
|
2015-05-28 17:46:47 +03:00
|
|
|
mInitAction = nullptr;
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<Context> mContext;
|
2015-03-16 17:10:36 +03:00
|
|
|
nsRefPtr<ThreadsafeHandle> mThreadsafeHandle;
|
2015-03-02 16:20:00 +03:00
|
|
|
nsRefPtr<Manager> mManager;
|
2015-05-28 17:46:47 +03:00
|
|
|
nsRefPtr<Data> mData;
|
2015-05-28 17:46:47 +03:00
|
|
|
nsCOMPtr<nsIThread> mTarget;
|
|
|
|
nsRefPtr<Action> mInitAction;
|
2015-03-02 16:20:00 +03:00
|
|
|
nsCOMPtr<nsIThread> mInitiatingThread;
|
|
|
|
nsresult mResult;
|
|
|
|
QuotaInfo mQuotaInfo;
|
2015-03-16 17:10:36 +03:00
|
|
|
nsMainThreadPtrHandle<OfflineStorage> mOfflineStorage;
|
|
|
|
State mState;
|
2015-03-25 17:16:40 +03:00
|
|
|
Atomic<bool> mCanceled;
|
2015-03-16 17:10:36 +03:00
|
|
|
bool mNeedsQuotaRelease;
|
2015-03-02 16:20:00 +03:00
|
|
|
|
|
|
|
public:
|
2015-03-24 05:23:45 +03:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2015-03-02 16:20:00 +03:00
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
};
|
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
NS_IMPL_ISUPPORTS(mozilla::dom::cache::Context::QuotaInitRunnable, nsIRunnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
|
|
|
|
// The QuotaManager init state machine is represented in the following diagram:
|
|
|
|
//
|
|
|
|
// +---------------+
|
|
|
|
// | Start | Resolve(error)
|
|
|
|
// | (Orig Thread) +---------------------+
|
|
|
|
// +-------+-------+ |
|
|
|
|
// | |
|
|
|
|
// +----------v-----------+ |
|
|
|
|
// |CallWaitForOpenAllowed| Resolve(error) |
|
|
|
|
// | (Main Thread) +-----------------+
|
|
|
|
// +----------+-----------+ |
|
|
|
|
// | |
|
|
|
|
// +--------v---------+ |
|
|
|
|
// |WaitForOpenAllowed| Resolve(error) |
|
|
|
|
// | (Main Thread) +-------------------+
|
|
|
|
// +--------+---------+ |
|
|
|
|
// | |
|
|
|
|
// +----------v------------+ |
|
|
|
|
// |EnsureOriginInitialized| Resolve(error) |
|
|
|
|
// | (Quota IO Thread) +----------------+
|
|
|
|
// +----------+------------+ |
|
|
|
|
// | |
|
2015-05-28 17:46:47 +03:00
|
|
|
// +----------v------------+ |
|
|
|
|
// | RunOnTarget | Resolve(error) |
|
|
|
|
// | (Target Thread) +----------------+
|
|
|
|
// +----------+------------+ |
|
|
|
|
// | |
|
2015-03-02 16:20:00 +03:00
|
|
|
// +---------v---------+ +------v------+
|
2015-03-24 05:23:45 +03:00
|
|
|
// | Running | | Completing |
|
2015-05-28 17:46:47 +03:00
|
|
|
// | (Target Thread) +------------>(Orig Thread)|
|
2015-03-02 16:20:00 +03:00
|
|
|
// +-------------------+ +------+------+
|
|
|
|
// |
|
|
|
|
// +-----v----+
|
|
|
|
// | Complete |
|
|
|
|
// +----------+
|
|
|
|
//
|
|
|
|
// The initialization process proceeds through the main states. If an error
|
2015-03-24 05:23:45 +03:00
|
|
|
// occurs, then we transition to Completing state back on the original thread.
|
2015-03-02 16:20:00 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
Context::QuotaInitRunnable::Run()
|
|
|
|
{
|
|
|
|
// May run on different threads depending on the state. See individual
|
|
|
|
// state cases for thread assertions.
|
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
nsRefPtr<SyncResolver> resolver = new SyncResolver();
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
switch(mState) {
|
|
|
|
// -----------------------------------
|
|
|
|
case STATE_CALL_WAIT_FOR_OPEN_ALLOWED:
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-03-25 17:16:40 +03:00
|
|
|
|
2015-06-16 22:00:55 +03:00
|
|
|
if (mCanceled || QuotaManager::IsShuttingDown()) {
|
2015-03-25 17:16:40 +03:00
|
|
|
resolver->Resolve(NS_ERROR_ABORT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
QuotaManager* qm = QuotaManager::GetOrCreate();
|
|
|
|
if (!qm) {
|
2015-03-24 05:23:45 +03:00
|
|
|
resolver->Resolve(NS_ERROR_FAILURE);
|
|
|
|
break;
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<ManagerId> managerId = mManager->GetManagerId();
|
|
|
|
nsCOMPtr<nsIPrincipal> principal = managerId->Principal();
|
|
|
|
nsresult rv = qm->GetInfoFromPrincipal(principal,
|
|
|
|
&mQuotaInfo.mGroup,
|
|
|
|
&mQuotaInfo.mOrigin,
|
|
|
|
&mQuotaInfo.mIsApp);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
2015-03-24 05:23:45 +03:00
|
|
|
resolver->Resolve(rv);
|
|
|
|
break;
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
QuotaManager::GetStorageId(PERSISTENCE_TYPE_DEFAULT,
|
|
|
|
mQuotaInfo.mOrigin,
|
|
|
|
Client::DOMCACHE,
|
|
|
|
NS_LITERAL_STRING("cache"),
|
|
|
|
mQuotaInfo.mStorageId);
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
// QuotaManager::WaitForOpenAllowed() will hold a reference to us as
|
|
|
|
// a callback. We will then get executed again on the main thread when
|
|
|
|
// it is safe to open the quota directory.
|
|
|
|
mState = STATE_WAIT_FOR_OPEN_ALLOWED;
|
|
|
|
rv = qm->WaitForOpenAllowed(OriginOrPatternString::FromOrigin(mQuotaInfo.mOrigin),
|
|
|
|
Nullable<PersistenceType>(PERSISTENCE_TYPE_DEFAULT),
|
2015-03-16 17:10:36 +03:00
|
|
|
mQuotaInfo.mStorageId, this);
|
2015-03-02 16:20:00 +03:00
|
|
|
if (NS_FAILED(rv)) {
|
2015-03-24 05:23:45 +03:00
|
|
|
resolver->Resolve(rv);
|
|
|
|
break;
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// ------------------------------
|
|
|
|
case STATE_WAIT_FOR_OPEN_ALLOWED:
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-03-16 17:10:36 +03:00
|
|
|
|
|
|
|
mNeedsQuotaRelease = true;
|
|
|
|
|
2015-03-25 17:16:40 +03:00
|
|
|
if (mCanceled) {
|
|
|
|
resolver->Resolve(NS_ERROR_ABORT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
QuotaManager* qm = QuotaManager::Get();
|
|
|
|
MOZ_ASSERT(qm);
|
2015-03-16 17:10:36 +03:00
|
|
|
|
|
|
|
nsRefPtr<OfflineStorage> offlineStorage =
|
|
|
|
OfflineStorage::Register(mThreadsafeHandle, mQuotaInfo);
|
|
|
|
mOfflineStorage = new nsMainThreadPtrHolder<OfflineStorage>(offlineStorage);
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
mState = STATE_ENSURE_ORIGIN_INITIALIZED;
|
|
|
|
nsresult rv = qm->IOThread()->Dispatch(this, nsIThread::DISPATCH_NORMAL);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
2015-03-24 05:23:45 +03:00
|
|
|
resolver->Resolve(rv);
|
|
|
|
break;
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// ----------------------------------
|
|
|
|
case STATE_ENSURE_ORIGIN_INITIALIZED:
|
|
|
|
{
|
|
|
|
// Can't assert quota IO thread because its an idle thread that can get
|
|
|
|
// recreated. At least assert we're not on main thread or owning thread.
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(_mOwningThread.GetThread() != PR_GetCurrentThread());
|
|
|
|
|
2015-03-25 17:16:40 +03:00
|
|
|
if (mCanceled) {
|
|
|
|
resolver->Resolve(NS_ERROR_ABORT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
QuotaManager* qm = QuotaManager::Get();
|
|
|
|
MOZ_ASSERT(qm);
|
|
|
|
nsresult rv = qm->EnsureOriginIsInitialized(PERSISTENCE_TYPE_DEFAULT,
|
|
|
|
mQuotaInfo.mGroup,
|
|
|
|
mQuotaInfo.mOrigin,
|
|
|
|
mQuotaInfo.mIsApp,
|
|
|
|
getter_AddRefs(mQuotaInfo.mDir));
|
|
|
|
if (NS_FAILED(rv)) {
|
2015-03-24 05:23:45 +03:00
|
|
|
resolver->Resolve(rv);
|
|
|
|
break;
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
2015-05-28 17:46:47 +03:00
|
|
|
mState = STATE_RUN_ON_TARGET;
|
|
|
|
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(
|
|
|
|
mTarget->Dispatch(this, nsIThread::DISPATCH_NORMAL)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// -------------------
|
|
|
|
case STATE_RUN_ON_TARGET:
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_GetCurrentThread() == mTarget);
|
|
|
|
|
|
|
|
mState = STATE_RUNNING;
|
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
// Execute the provided initialization Action. The Action must Resolve()
|
|
|
|
// before returning.
|
2015-05-28 17:46:47 +03:00
|
|
|
mInitAction->RunOnTarget(resolver, mQuotaInfo, mData);
|
2015-03-24 05:23:45 +03:00
|
|
|
MOZ_ASSERT(resolver->Resolved());
|
2015-03-02 16:20:00 +03:00
|
|
|
|
2015-06-10 16:37:16 +03:00
|
|
|
mData = nullptr;
|
|
|
|
|
2015-06-26 08:22:46 +03:00
|
|
|
// If the database was opened, then we should always succeed when creating
|
|
|
|
// the marker file. If it wasn't opened successfully, then no need to
|
|
|
|
// create a marker file anyway.
|
|
|
|
if (NS_SUCCEEDED(resolver->Result())) {
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(CreateMarkerFile(mQuotaInfo)));
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// -------------------
|
|
|
|
case STATE_COMPLETING:
|
|
|
|
{
|
2015-03-25 17:16:40 +03:00
|
|
|
NS_ASSERT_OWNINGTHREAD(QuotaInitRunnable);
|
2015-06-26 08:22:46 +03:00
|
|
|
mInitAction->CompleteOnInitiatingThread(mResult);
|
2015-03-16 17:10:36 +03:00
|
|
|
mContext->OnQuotaInit(mResult, mQuotaInfo, mOfflineStorage);
|
2015-03-02 16:20:00 +03:00
|
|
|
mState = STATE_COMPLETE;
|
2015-03-16 17:10:36 +03:00
|
|
|
|
|
|
|
if (mNeedsQuotaRelease) {
|
|
|
|
// Unlock the quota dir if we locked it previously
|
|
|
|
nsCOMPtr<nsIRunnable> runnable = new QuotaReleaseRunnable(mQuotaInfo);
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(NS_DispatchToMainThread(runnable)));
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
// Explicitly cleanup here as the destructor could fire on any of
|
|
|
|
// the threads we have bounced through.
|
|
|
|
Clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// -----
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
MOZ_CRASH("unexpected state in QuotaInitRunnable");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
if (resolver->Resolved()) {
|
|
|
|
MOZ_ASSERT(mState == STATE_RUNNING || NS_FAILED(resolver->Result()));
|
|
|
|
|
|
|
|
MOZ_ASSERT(NS_SUCCEEDED(mResult));
|
|
|
|
mResult = resolver->Result();
|
|
|
|
|
|
|
|
mState = STATE_COMPLETING;
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(
|
|
|
|
mInitiatingThread->Dispatch(this, nsIThread::DISPATCH_NORMAL)));
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Runnable wrapper around Action objects dispatched on the Context. This
|
|
|
|
// runnable executes the Action on the appropriate threads while the Context
|
|
|
|
// is initialized.
|
2015-03-21 19:28:04 +03:00
|
|
|
class Context::ActionRunnable final : public nsIRunnable
|
2015-03-22 09:52:12 +03:00
|
|
|
, public Action::Resolver
|
2015-03-16 17:10:36 +03:00
|
|
|
, public Context::Activity
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
public:
|
2015-05-07 15:16:51 +03:00
|
|
|
ActionRunnable(Context* aContext, Data* aData, nsIEventTarget* aTarget,
|
|
|
|
Action* aAction, const QuotaInfo& aQuotaInfo)
|
2015-03-02 16:20:00 +03:00
|
|
|
: mContext(aContext)
|
2015-05-07 15:16:51 +03:00
|
|
|
, mData(aData)
|
2015-03-02 16:20:00 +03:00
|
|
|
, mTarget(aTarget)
|
|
|
|
, mAction(aAction)
|
|
|
|
, mQuotaInfo(aQuotaInfo)
|
|
|
|
, mInitiatingThread(NS_GetCurrentThread())
|
|
|
|
, mState(STATE_INIT)
|
|
|
|
, mResult(NS_OK)
|
2015-03-24 05:23:45 +03:00
|
|
|
, mExecutingRunOnTarget(false)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mContext);
|
2015-05-07 15:16:51 +03:00
|
|
|
// mData may be nullptr
|
2015-03-02 16:20:00 +03:00
|
|
|
MOZ_ASSERT(mTarget);
|
|
|
|
MOZ_ASSERT(mAction);
|
2015-05-13 23:35:34 +03:00
|
|
|
// mQuotaInfo.mDir may be nullptr if QuotaInitRunnable failed
|
2015-03-02 16:20:00 +03:00
|
|
|
MOZ_ASSERT(mInitiatingThread);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult Dispatch()
|
|
|
|
{
|
2015-03-25 17:16:40 +03:00
|
|
|
NS_ASSERT_OWNINGTHREAD(ActionRunnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
MOZ_ASSERT(mState == STATE_INIT);
|
|
|
|
|
|
|
|
mState = STATE_RUN_ON_TARGET;
|
|
|
|
nsresult rv = mTarget->Dispatch(this, nsIEventTarget::DISPATCH_NORMAL);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
mState = STATE_COMPLETE;
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
virtual bool
|
|
|
|
MatchesCacheId(CacheId aCacheId) const override
|
|
|
|
{
|
2015-03-25 17:16:40 +03:00
|
|
|
NS_ASSERT_OWNINGTHREAD(ActionRunnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
return mAction->MatchesCacheId(aCacheId);
|
|
|
|
}
|
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
virtual void
|
|
|
|
Cancel() override
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
2015-03-25 17:16:40 +03:00
|
|
|
NS_ASSERT_OWNINGTHREAD(ActionRunnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
mAction->CancelOnInitiatingThread();
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void Resolve(nsresult aRv) override
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mTarget == NS_GetCurrentThread());
|
|
|
|
MOZ_ASSERT(mState == STATE_RUNNING);
|
2015-03-24 05:23:45 +03:00
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
mResult = aRv;
|
2015-03-24 05:23:45 +03:00
|
|
|
|
|
|
|
// We ultimately must complete on the initiating thread, but bounce through
|
|
|
|
// the current thread again to ensure that we don't destroy objects and
|
|
|
|
// state out from under the currently running action's stack.
|
|
|
|
mState = STATE_RESOLVING;
|
|
|
|
|
|
|
|
// If we were resolved synchronously within Action::RunOnTarget() then we
|
|
|
|
// can avoid a thread bounce and just resolve once RunOnTarget() returns.
|
|
|
|
// The Run() method will handle this by looking at mState after
|
|
|
|
// RunOnTarget() returns.
|
|
|
|
if (mExecutingRunOnTarget) {
|
|
|
|
return;
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
2015-03-24 05:23:45 +03:00
|
|
|
|
|
|
|
// Otherwise we are in an asynchronous resolve. And must perform a thread
|
|
|
|
// bounce to run on the target thread again.
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(
|
|
|
|
mTarget->Dispatch(this, nsIThread::DISPATCH_NORMAL)));
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
~ActionRunnable()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mState == STATE_COMPLETE);
|
|
|
|
MOZ_ASSERT(!mContext);
|
|
|
|
MOZ_ASSERT(!mAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Clear()
|
|
|
|
{
|
2015-03-25 17:16:40 +03:00
|
|
|
NS_ASSERT_OWNINGTHREAD(ActionRunnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
MOZ_ASSERT(mContext);
|
|
|
|
MOZ_ASSERT(mAction);
|
2015-03-16 17:10:36 +03:00
|
|
|
mContext->RemoveActivity(this);
|
2015-03-02 16:20:00 +03:00
|
|
|
mContext = nullptr;
|
|
|
|
mAction = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum State
|
|
|
|
{
|
|
|
|
STATE_INIT,
|
|
|
|
STATE_RUN_ON_TARGET,
|
|
|
|
STATE_RUNNING,
|
2015-03-24 05:23:45 +03:00
|
|
|
STATE_RESOLVING,
|
2015-03-02 16:20:00 +03:00
|
|
|
STATE_COMPLETING,
|
|
|
|
STATE_COMPLETE
|
|
|
|
};
|
|
|
|
|
|
|
|
nsRefPtr<Context> mContext;
|
2015-05-07 15:16:51 +03:00
|
|
|
nsRefPtr<Data> mData;
|
2015-03-02 16:20:00 +03:00
|
|
|
nsCOMPtr<nsIEventTarget> mTarget;
|
|
|
|
nsRefPtr<Action> mAction;
|
|
|
|
const QuotaInfo mQuotaInfo;
|
|
|
|
nsCOMPtr<nsIThread> mInitiatingThread;
|
|
|
|
State mState;
|
|
|
|
nsresult mResult;
|
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
// Only accessible on target thread;
|
|
|
|
bool mExecutingRunOnTarget;
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
public:
|
2015-03-24 05:23:45 +03:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2015-03-02 16:20:00 +03:00
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
};
|
|
|
|
|
2015-03-24 05:23:45 +03:00
|
|
|
NS_IMPL_ISUPPORTS(mozilla::dom::cache::Context::ActionRunnable, nsIRunnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
|
|
|
|
// The ActionRunnable has a simpler state machine. It basically needs to run
|
|
|
|
// the action on the target thread and then complete on the original thread.
|
|
|
|
//
|
|
|
|
// +-------------+
|
|
|
|
// | Start |
|
|
|
|
// |(Orig Thread)|
|
|
|
|
// +-----+-------+
|
|
|
|
// |
|
|
|
|
// +-------v---------+
|
|
|
|
// | RunOnTarget |
|
2015-03-24 05:23:45 +03:00
|
|
|
// |Target IO Thread)+---+ Resolve()
|
|
|
|
// +-------+---------+ |
|
|
|
|
// | |
|
|
|
|
// +-------v----------+ |
|
|
|
|
// | Running | |
|
|
|
|
// |(Target IO Thread)| |
|
|
|
|
// +------------------+ |
|
|
|
|
// | Resolve() |
|
|
|
|
// +-------v----------+ |
|
|
|
|
// | Resolving <--+ +-------------+
|
|
|
|
// | | | Completing |
|
2015-03-02 16:20:00 +03:00
|
|
|
// |(Target IO Thread)+---------------------->(Orig Thread)|
|
|
|
|
// +------------------+ +-------+-----+
|
|
|
|
// |
|
|
|
|
// |
|
|
|
|
// +----v---+
|
|
|
|
// |Complete|
|
|
|
|
// +--------+
|
|
|
|
//
|
|
|
|
// Its important to note that synchronous actions will effectively Resolve()
|
|
|
|
// out of the Running state immediately. Asynchronous Actions may remain
|
|
|
|
// in the Running state for some time, but normally the ActionRunnable itself
|
|
|
|
// does not see any execution there. Its all handled internal to the Action.
|
|
|
|
NS_IMETHODIMP
|
|
|
|
Context::ActionRunnable::Run()
|
|
|
|
{
|
|
|
|
switch(mState) {
|
|
|
|
// ----------------------
|
|
|
|
case STATE_RUN_ON_TARGET:
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_GetCurrentThread() == mTarget);
|
2015-03-24 05:23:45 +03:00
|
|
|
MOZ_ASSERT(!mExecutingRunOnTarget);
|
|
|
|
|
|
|
|
// Note that we are calling RunOnTarget(). This lets us detect
|
|
|
|
// if Resolve() is called synchronously.
|
|
|
|
AutoRestore<bool> executingRunOnTarget(mExecutingRunOnTarget);
|
|
|
|
mExecutingRunOnTarget = true;
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
mState = STATE_RUNNING;
|
2015-05-07 15:16:51 +03:00
|
|
|
mAction->RunOnTarget(this, mQuotaInfo, mData);
|
|
|
|
|
|
|
|
mData = nullptr;
|
2015-03-24 05:23:45 +03:00
|
|
|
|
|
|
|
// Resolve was called synchronously from RunOnTarget(). We can
|
|
|
|
// immediately move to completing now since we are sure RunOnTarget()
|
|
|
|
// completed.
|
|
|
|
if (mState == STATE_RESOLVING) {
|
|
|
|
// Use recursion instead of switch case fall-through... Seems slightly
|
|
|
|
// easier to understand.
|
|
|
|
Run();
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// -----------------
|
|
|
|
case STATE_RESOLVING:
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_GetCurrentThread() == mTarget);
|
|
|
|
// The call to Action::RunOnTarget() must have returned now if we
|
|
|
|
// are running on the target thread again. We may now proceed
|
|
|
|
// with completion.
|
|
|
|
mState = STATE_COMPLETING;
|
|
|
|
// Shutdown must be delayed until all Contexts are destroyed. Crash
|
|
|
|
// for this invariant violation.
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(
|
|
|
|
mInitiatingThread->Dispatch(this, nsIThread::DISPATCH_NORMAL)));
|
2015-03-02 16:20:00 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// -------------------
|
|
|
|
case STATE_COMPLETING:
|
|
|
|
{
|
2015-03-25 17:16:40 +03:00
|
|
|
NS_ASSERT_OWNINGTHREAD(ActionRunnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
mAction->CompleteOnInitiatingThread(mResult);
|
|
|
|
mState = STATE_COMPLETE;
|
|
|
|
// Explicitly cleanup here as the destructor could fire on any of
|
|
|
|
// the threads we have bounced through.
|
|
|
|
Clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// -----------------
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
MOZ_CRASH("unexpected state in ActionRunnable");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
void
|
|
|
|
Context::ThreadsafeHandle::AllowToClose()
|
|
|
|
{
|
|
|
|
if (mOwningThread == NS_GetCurrentThread()) {
|
|
|
|
AllowToCloseOnOwningThread();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dispatch is guaranteed to succeed here because we block shutdown until
|
|
|
|
// all Contexts have been destroyed.
|
|
|
|
nsCOMPtr<nsIRunnable> runnable =
|
|
|
|
NS_NewRunnableMethod(this, &ThreadsafeHandle::AllowToCloseOnOwningThread);
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(
|
|
|
|
mOwningThread->Dispatch(runnable, nsIThread::DISPATCH_NORMAL)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::ThreadsafeHandle::InvalidateAndAllowToClose()
|
|
|
|
{
|
|
|
|
if (mOwningThread == NS_GetCurrentThread()) {
|
|
|
|
InvalidateAndAllowToCloseOnOwningThread();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dispatch is guaranteed to succeed here because we block shutdown until
|
|
|
|
// all Contexts have been destroyed.
|
|
|
|
nsCOMPtr<nsIRunnable> runnable =
|
|
|
|
NS_NewRunnableMethod(this, &ThreadsafeHandle::InvalidateAndAllowToCloseOnOwningThread);
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(
|
|
|
|
mOwningThread->Dispatch(runnable, nsIThread::DISPATCH_NORMAL)));
|
|
|
|
}
|
|
|
|
|
|
|
|
Context::ThreadsafeHandle::ThreadsafeHandle(Context* aContext)
|
|
|
|
: mStrongRef(aContext)
|
|
|
|
, mWeakRef(aContext)
|
|
|
|
, mOwningThread(NS_GetCurrentThread())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Context::ThreadsafeHandle::~ThreadsafeHandle()
|
|
|
|
{
|
|
|
|
// Normally we only touch mStrongRef on the owning thread. This is safe,
|
|
|
|
// however, because when we do use mStrongRef on the owning thread we are
|
|
|
|
// always holding a strong ref to the ThreadsafeHandle via the owning
|
|
|
|
// runnable. So we cannot run the ThreadsafeHandle destructor simultaneously.
|
|
|
|
if (!mStrongRef || mOwningThread == NS_GetCurrentThread()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dispatch is guaranteed to succeed here because we block shutdown until
|
|
|
|
// all Contexts have been destroyed.
|
|
|
|
nsCOMPtr<nsIRunnable> runnable =
|
|
|
|
NS_NewNonOwningRunnableMethod(mStrongRef.forget().take(), &Context::Release);
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(
|
|
|
|
mOwningThread->Dispatch(runnable, nsIThread::DISPATCH_NORMAL)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::ThreadsafeHandle::AllowToCloseOnOwningThread()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mOwningThread == NS_GetCurrentThread());
|
2015-05-07 15:16:51 +03:00
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
// A Context "closes" when its ref count drops to zero. Dropping this
|
|
|
|
// strong ref is necessary, but not sufficient for the close to occur.
|
|
|
|
// Any outstanding IO will continue and keep the Context alive. Once
|
|
|
|
// the Context is idle, it will be destroyed.
|
2015-05-07 15:16:51 +03:00
|
|
|
|
|
|
|
// First, tell the context to flush any target thread shared data. This
|
|
|
|
// data must be released on the target thread prior to running the Context
|
|
|
|
// destructor. This will schedule an Action which ensures that the
|
|
|
|
// ~Context() is not immediately executed when we drop the strong ref.
|
|
|
|
if (mStrongRef) {
|
|
|
|
mStrongRef->DoomTargetData();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now drop our strong ref and let Context finish running any outstanding
|
|
|
|
// Actions.
|
2015-03-16 17:10:36 +03:00
|
|
|
mStrongRef = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::ThreadsafeHandle::InvalidateAndAllowToCloseOnOwningThread()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mOwningThread == NS_GetCurrentThread());
|
|
|
|
// Cancel the Context through the weak reference. This means we can
|
|
|
|
// allow the Context to close by dropping the strong ref, but then
|
|
|
|
// still cancel ongoing IO if necessary.
|
|
|
|
if (mWeakRef) {
|
|
|
|
mWeakRef->Invalidate();
|
|
|
|
}
|
|
|
|
// We should synchronously have AllowToCloseOnOwningThread called when
|
|
|
|
// the Context is canceled.
|
|
|
|
MOZ_ASSERT(!mStrongRef);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::ThreadsafeHandle::ContextDestroyed(Context* aContext)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mOwningThread == NS_GetCurrentThread());
|
|
|
|
MOZ_ASSERT(!mStrongRef);
|
|
|
|
MOZ_ASSERT(mWeakRef);
|
|
|
|
MOZ_ASSERT(mWeakRef == aContext);
|
|
|
|
mWeakRef = nullptr;
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
// static
|
|
|
|
already_AddRefed<Context>
|
2015-05-07 15:16:51 +03:00
|
|
|
Context::Create(Manager* aManager, nsIThread* aTarget,
|
2015-05-28 17:46:47 +03:00
|
|
|
Action* aInitAction, Context* aOldContext)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
2015-05-07 15:16:51 +03:00
|
|
|
nsRefPtr<Context> context = new Context(aManager, aTarget);
|
2015-05-28 17:46:47 +03:00
|
|
|
context->Init(aInitAction, aOldContext);
|
2015-03-02 16:20:00 +03:00
|
|
|
return context.forget();
|
|
|
|
}
|
|
|
|
|
2015-05-07 15:16:51 +03:00
|
|
|
Context::Context(Manager* aManager, nsIThread* aTarget)
|
2015-03-02 16:20:00 +03:00
|
|
|
: mManager(aManager)
|
2015-05-07 15:16:51 +03:00
|
|
|
, mTarget(aTarget)
|
|
|
|
, mData(new Data(aTarget))
|
2015-04-20 21:14:57 +03:00
|
|
|
, mState(STATE_CONTEXT_PREINIT)
|
2015-06-26 08:22:46 +03:00
|
|
|
, mOrphanedData(false)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mManager);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-05-07 15:16:51 +03:00
|
|
|
Context::Dispatch(Action* aAction)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
MOZ_ASSERT(aAction);
|
|
|
|
|
2015-04-16 23:05:38 +03:00
|
|
|
MOZ_ASSERT(mState != STATE_CONTEXT_CANCELED);
|
2015-03-02 16:20:00 +03:00
|
|
|
if (mState == STATE_CONTEXT_CANCELED) {
|
|
|
|
return;
|
2015-04-20 21:14:57 +03:00
|
|
|
} else if (mState == STATE_CONTEXT_INIT ||
|
|
|
|
mState == STATE_CONTEXT_PREINIT) {
|
2015-03-02 16:20:00 +03:00
|
|
|
PendingAction* pending = mPendingActions.AppendElement();
|
|
|
|
pending->mAction = aAction;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(STATE_CONTEXT_READY);
|
2015-05-07 15:16:51 +03:00
|
|
|
DispatchAction(aAction);
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::CancelAll()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
2015-03-25 17:16:40 +03:00
|
|
|
|
2015-04-20 21:14:57 +03:00
|
|
|
// In PREINIT state we have not dispatch the init runnable yet. Just
|
|
|
|
// forget it.
|
|
|
|
if (mState == STATE_CONTEXT_PREINIT) {
|
|
|
|
mInitRunnable = nullptr;
|
|
|
|
|
|
|
|
// In INIT state we have dispatched the runnable, but not received the
|
|
|
|
// async completion yet. Cancel the runnable, but don't forget about it
|
|
|
|
// until we get OnQuotaInit() callback.
|
|
|
|
} else if (mState == STATE_CONTEXT_INIT) {
|
2015-03-25 17:16:40 +03:00
|
|
|
mInitRunnable->Cancel();
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
mState = STATE_CONTEXT_CANCELED;
|
|
|
|
mPendingActions.Clear();
|
2015-03-16 17:10:36 +03:00
|
|
|
{
|
|
|
|
ActivityList::ForwardIterator iter(mActivityList);
|
|
|
|
while (iter.HasMore()) {
|
|
|
|
iter.GetNext()->Cancel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
AllowToClose();
|
|
|
|
}
|
|
|
|
|
2015-04-16 23:05:38 +03:00
|
|
|
bool
|
|
|
|
Context::IsCanceled() const
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
return mState == STATE_CONTEXT_CANCELED;
|
|
|
|
}
|
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
void
|
|
|
|
Context::Invalidate()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
2015-04-16 23:05:38 +03:00
|
|
|
mManager->NoteClosing();
|
2015-03-16 17:10:36 +03:00
|
|
|
CancelAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::AllowToClose()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
if (mThreadsafeHandle) {
|
|
|
|
mThreadsafeHandle->AllowToClose();
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::CancelForCacheId(CacheId aCacheId)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
2015-03-16 17:10:36 +03:00
|
|
|
|
|
|
|
// Remove matching pending actions
|
|
|
|
for (int32_t i = mPendingActions.Length() - 1; i >= 0; --i) {
|
2015-03-02 16:20:00 +03:00
|
|
|
if (mPendingActions[i].mAction->MatchesCacheId(aCacheId)) {
|
|
|
|
mPendingActions.RemoveElementAt(i);
|
|
|
|
}
|
|
|
|
}
|
2015-03-16 17:10:36 +03:00
|
|
|
|
|
|
|
// Cancel activities and let them remove themselves
|
|
|
|
ActivityList::ForwardIterator iter(mActivityList);
|
|
|
|
while (iter.HasMore()) {
|
|
|
|
Activity* activity = iter.GetNext();
|
|
|
|
if (activity->MatchesCacheId(aCacheId)) {
|
|
|
|
activity->Cancel();
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Context::~Context()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
MOZ_ASSERT(mManager);
|
2015-06-10 16:37:16 +03:00
|
|
|
MOZ_ASSERT(!mData);
|
2015-03-02 16:20:00 +03:00
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
if (mThreadsafeHandle) {
|
|
|
|
mThreadsafeHandle->ContextDestroyed(this);
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
2015-06-26 08:22:46 +03:00
|
|
|
// Note, this may set the mOrphanedData flag.
|
2015-03-02 16:20:00 +03:00
|
|
|
mManager->RemoveContext(this);
|
2015-04-20 21:14:57 +03:00
|
|
|
|
2015-06-26 08:22:46 +03:00
|
|
|
if (mQuotaInfo.mDir && !mOrphanedData) {
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(DeleteMarkerFile(mQuotaInfo)));
|
|
|
|
}
|
|
|
|
|
2015-04-20 21:14:57 +03:00
|
|
|
if (mNextContext) {
|
|
|
|
mNextContext->Start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-28 17:46:47 +03:00
|
|
|
void
|
|
|
|
Context::Init(Action* aInitAction, Context* aOldContext)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
MOZ_ASSERT(!mInitRunnable);
|
|
|
|
|
|
|
|
// Do this here to avoid doing an AddRef() in the constructor
|
2015-05-28 17:46:47 +03:00
|
|
|
mInitRunnable = new QuotaInitRunnable(this, mManager, mData, mTarget,
|
|
|
|
aInitAction);
|
2015-05-28 17:46:47 +03:00
|
|
|
|
|
|
|
if (aOldContext) {
|
|
|
|
aOldContext->SetNextContext(this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Start();
|
|
|
|
}
|
|
|
|
|
2015-04-20 21:14:57 +03:00
|
|
|
void
|
|
|
|
Context::Start()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
|
|
|
|
// Previous context closing delayed our start, but then we were canceled.
|
|
|
|
// In this case, just do nothing here.
|
|
|
|
if (mState == STATE_CONTEXT_CANCELED) {
|
|
|
|
MOZ_ASSERT(!mInitRunnable);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(mState == STATE_CONTEXT_PREINIT);
|
|
|
|
mState = STATE_CONTEXT_INIT;
|
|
|
|
|
|
|
|
nsresult rv = mInitRunnable->Dispatch();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// Shutdown must be delayed until all Contexts are destroyed. Shutdown
|
|
|
|
// must also prevent any new Contexts from being constructed. Crash
|
|
|
|
// for this invariant violation.
|
|
|
|
MOZ_CRASH("Failed to dispatch QuotaInitRunnable.");
|
|
|
|
}
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-05-07 15:16:51 +03:00
|
|
|
Context::DispatchAction(Action* aAction, bool aDoomData)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
|
|
|
|
nsRefPtr<ActionRunnable> runnable =
|
2015-05-07 15:16:51 +03:00
|
|
|
new ActionRunnable(this, mData, mTarget, aAction, mQuotaInfo);
|
|
|
|
|
|
|
|
if (aDoomData) {
|
|
|
|
mData = nullptr;
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
nsresult rv = runnable->Dispatch();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// Shutdown must be delayed until all Contexts are destroyed. Crash
|
|
|
|
// for this invariant violation.
|
|
|
|
MOZ_CRASH("Failed to dispatch ActionRunnable to target thread.");
|
|
|
|
}
|
2015-03-16 17:10:36 +03:00
|
|
|
AddActivity(runnable);
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-16 17:10:36 +03:00
|
|
|
Context::OnQuotaInit(nsresult aRv, const QuotaInfo& aQuotaInfo,
|
|
|
|
nsMainThreadPtrHandle<OfflineStorage>& aOfflineStorage)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
|
2015-03-25 17:16:40 +03:00
|
|
|
MOZ_ASSERT(mInitRunnable);
|
|
|
|
mInitRunnable = nullptr;
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
mQuotaInfo = aQuotaInfo;
|
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
// Always save the offline storage to ensure QuotaManager does not shutdown
|
|
|
|
// before the Context has gone away.
|
|
|
|
MOZ_ASSERT(!mOfflineStorage);
|
|
|
|
mOfflineStorage = aOfflineStorage;
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
if (mState == STATE_CONTEXT_CANCELED || NS_FAILED(aRv)) {
|
|
|
|
for (uint32_t i = 0; i < mPendingActions.Length(); ++i) {
|
|
|
|
mPendingActions[i].mAction->CompleteOnInitiatingThread(aRv);
|
|
|
|
}
|
|
|
|
mPendingActions.Clear();
|
2015-03-16 17:10:36 +03:00
|
|
|
mThreadsafeHandle->AllowToClose();
|
2015-03-02 16:20:00 +03:00
|
|
|
// Context will destruct after return here and last ref is released.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(mState == STATE_CONTEXT_INIT);
|
|
|
|
mState = STATE_CONTEXT_READY;
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < mPendingActions.Length(); ++i) {
|
2015-05-07 15:16:51 +03:00
|
|
|
DispatchAction(mPendingActions[i].mAction);
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
mPendingActions.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-16 17:10:36 +03:00
|
|
|
Context::AddActivity(Activity* aActivity)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
2015-03-16 17:10:36 +03:00
|
|
|
MOZ_ASSERT(aActivity);
|
|
|
|
MOZ_ASSERT(!mActivityList.Contains(aActivity));
|
|
|
|
mActivityList.AppendElement(aActivity);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::RemoveActivity(Activity* aActivity)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
MOZ_ASSERT(aActivity);
|
|
|
|
MOZ_ALWAYS_TRUE(mActivityList.RemoveElement(aActivity));
|
|
|
|
MOZ_ASSERT(!mActivityList.Contains(aActivity));
|
|
|
|
}
|
|
|
|
|
2015-06-26 08:22:46 +03:00
|
|
|
void
|
|
|
|
Context::NoteOrphanedData()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
// This may be called more than once
|
|
|
|
mOrphanedData = true;
|
|
|
|
}
|
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
already_AddRefed<Context::ThreadsafeHandle>
|
|
|
|
Context::CreateThreadsafeHandle()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
if (!mThreadsafeHandle) {
|
|
|
|
mThreadsafeHandle = new ThreadsafeHandle(this);
|
|
|
|
}
|
|
|
|
nsRefPtr<ThreadsafeHandle> ref = mThreadsafeHandle;
|
|
|
|
return ref.forget();
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
2015-04-20 21:14:57 +03:00
|
|
|
void
|
|
|
|
Context::SetNextContext(Context* aNextContext)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
MOZ_ASSERT(aNextContext);
|
|
|
|
MOZ_ASSERT(!mNextContext);
|
|
|
|
mNextContext = aNextContext;
|
|
|
|
}
|
|
|
|
|
2015-05-07 15:16:51 +03:00
|
|
|
void
|
|
|
|
Context::DoomTargetData()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
MOZ_ASSERT(mData);
|
|
|
|
|
|
|
|
// We are about to drop our reference to the Data. We need to ensure that
|
|
|
|
// the ~Context() destructor does not run until contents of Data have been
|
|
|
|
// released on the Target thread.
|
|
|
|
|
|
|
|
// Dispatch a no-op Action. This will hold the Context alive through a
|
|
|
|
// roundtrip to the target thread and back to the owning thread. The
|
|
|
|
// ref to the Data object is cleared on the owning thread after creating
|
|
|
|
// the ActionRunnable, but before dispatching it.
|
|
|
|
nsRefPtr<Action> action = new NullAction();
|
|
|
|
DispatchAction(action, true /* doomed data */);
|
|
|
|
|
|
|
|
MOZ_ASSERT(!mData);
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
} // namespace cache
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|