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"
|
|
|
|
|
|
|
|
#include "mozilla/DebugOnly.h"
|
|
|
|
#include "mozilla/dom/cache/Action.h"
|
|
|
|
#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"
|
|
|
|
#include "nsIFile.h"
|
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsIRunnable.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
using mozilla::dom::Nullable;
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // 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;
|
|
|
|
|
|
|
|
// 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-16 17:10:36 +03:00
|
|
|
, public Action::Resolver
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
QuotaInitRunnable(Context* aContext,
|
|
|
|
Manager* aManager,
|
|
|
|
Action* aQuotaIOThreadAction)
|
|
|
|
: mContext(aContext)
|
2015-03-16 17:10:36 +03:00
|
|
|
, mThreadsafeHandle(aContext->CreateThreadsafeHandle())
|
2015-03-02 16:20:00 +03:00
|
|
|
, mManager(aManager)
|
|
|
|
, mQuotaIOThreadAction(aQuotaIOThreadAction)
|
|
|
|
, 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)
|
|
|
|
, mNeedsQuotaRelease(false)
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mContext);
|
|
|
|
MOZ_ASSERT(mManager);
|
|
|
|
MOZ_ASSERT(mInitiatingThread);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult Dispatch()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Action::Resolver);
|
|
|
|
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-21 19:28:04 +03:00
|
|
|
virtual void Resolve(nsresult aRv) override
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
// Depending on the error or success path, this can run on either the
|
|
|
|
// main thread or the QuotaManager IO thread. The IO thread is an
|
|
|
|
// idle thread which may be destroyed and recreated, so its hard to
|
|
|
|
// assert on.
|
|
|
|
MOZ_ASSERT(mState == STATE_RUNNING || NS_FAILED(aRv));
|
|
|
|
|
|
|
|
mResult = aRv;
|
|
|
|
mState = STATE_COMPLETING;
|
|
|
|
|
|
|
|
nsresult rv = mInitiatingThread->Dispatch(this, nsIThread::DISPATCH_NORMAL);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// Shutdown must be delayed until all Contexts are destroyed. Crash for
|
|
|
|
// this invariant violation.
|
|
|
|
MOZ_CRASH("Failed to dispatch QuotaInitRunnable to initiating thread.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
~QuotaInitRunnable()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mState == STATE_COMPLETE);
|
|
|
|
MOZ_ASSERT(!mContext);
|
|
|
|
MOZ_ASSERT(!mQuotaIOThreadAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum State
|
|
|
|
{
|
|
|
|
STATE_INIT,
|
|
|
|
STATE_CALL_WAIT_FOR_OPEN_ALLOWED,
|
|
|
|
STATE_WAIT_FOR_OPEN_ALLOWED,
|
|
|
|
STATE_ENSURE_ORIGIN_INITIALIZED,
|
|
|
|
STATE_RUNNING,
|
|
|
|
STATE_COMPLETING,
|
|
|
|
STATE_COMPLETE
|
|
|
|
};
|
|
|
|
|
|
|
|
void Clear()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Action::Resolver);
|
|
|
|
MOZ_ASSERT(mContext);
|
|
|
|
mContext = nullptr;
|
|
|
|
mManager = nullptr;
|
|
|
|
mQuotaIOThreadAction = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
nsRefPtr<Action> mQuotaIOThreadAction;
|
|
|
|
nsCOMPtr<nsIThread> mInitiatingThread;
|
|
|
|
nsresult mResult;
|
|
|
|
QuotaInfo mQuotaInfo;
|
2015-03-16 17:10:36 +03:00
|
|
|
nsMainThreadPtrHandle<OfflineStorage> mOfflineStorage;
|
|
|
|
State mState;
|
|
|
|
bool mNeedsQuotaRelease;
|
2015-03-02 16:20:00 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(mozilla::dom::cache::Context::QuotaInitRunnable,
|
|
|
|
Action::Resolver, nsIRunnable);
|
|
|
|
|
|
|
|
// 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) +----------------+
|
|
|
|
// +----------+------------+ |
|
|
|
|
// | |
|
|
|
|
// +---------v---------+ +------v------+
|
|
|
|
// | Running | Resolve() | Completing |
|
|
|
|
// | (Quota IO Thread) +------------>(Orig Thread)|
|
|
|
|
// +-------------------+ +------+------+
|
|
|
|
// |
|
|
|
|
// +-----v----+
|
|
|
|
// | Complete |
|
|
|
|
// +----------+
|
|
|
|
//
|
|
|
|
// The initialization process proceeds through the main states. If an error
|
|
|
|
// occurs, then we transition back to Completing state back on the original
|
|
|
|
// thread.
|
|
|
|
NS_IMETHODIMP
|
|
|
|
Context::QuotaInitRunnable::Run()
|
|
|
|
{
|
|
|
|
// May run on different threads depending on the state. See individual
|
|
|
|
// state cases for thread assertions.
|
|
|
|
|
|
|
|
switch(mState) {
|
|
|
|
// -----------------------------------
|
|
|
|
case STATE_CALL_WAIT_FOR_OPEN_ALLOWED:
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
QuotaManager* qm = QuotaManager::GetOrCreate();
|
|
|
|
if (!qm) {
|
|
|
|
Resolve(NS_ERROR_FAILURE);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
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))) {
|
|
|
|
Resolve(rv);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
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)) {
|
|
|
|
Resolve(rv);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// ------------------------------
|
|
|
|
case STATE_WAIT_FOR_OPEN_ALLOWED:
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-03-16 17:10:36 +03:00
|
|
|
|
|
|
|
mNeedsQuotaRelease = true;
|
|
|
|
|
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))) {
|
|
|
|
Resolve(rv);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
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());
|
|
|
|
|
|
|
|
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)) {
|
|
|
|
Resolve(rv);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
mState = STATE_RUNNING;
|
|
|
|
|
|
|
|
if (!mQuotaIOThreadAction) {
|
|
|
|
Resolve(NS_OK);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute the provided initialization Action. We pass ourselves as the
|
|
|
|
// Resolver. The Action must either call Resolve() immediately or hold
|
|
|
|
// a ref to us and call Resolve() later.
|
|
|
|
mQuotaIOThreadAction->RunOnTarget(this, mQuotaInfo);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// -------------------
|
|
|
|
case STATE_COMPLETING:
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Action::Resolver);
|
|
|
|
if (mQuotaIOThreadAction) {
|
|
|
|
mQuotaIOThreadAction->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");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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:
|
|
|
|
ActionRunnable(Context* aContext, nsIEventTarget* aTarget, Action* aAction,
|
|
|
|
const QuotaInfo& aQuotaInfo)
|
|
|
|
: mContext(aContext)
|
|
|
|
, mTarget(aTarget)
|
|
|
|
, mAction(aAction)
|
|
|
|
, mQuotaInfo(aQuotaInfo)
|
|
|
|
, mInitiatingThread(NS_GetCurrentThread())
|
|
|
|
, mState(STATE_INIT)
|
|
|
|
, mResult(NS_OK)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mContext);
|
|
|
|
MOZ_ASSERT(mTarget);
|
|
|
|
MOZ_ASSERT(mAction);
|
|
|
|
MOZ_ASSERT(mQuotaInfo.mDir);
|
|
|
|
MOZ_ASSERT(mInitiatingThread);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult Dispatch()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Action::Resolver);
|
|
|
|
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-02 16:20:00 +03:00
|
|
|
NS_ASSERT_OWNINGTHREAD(Action::Resolver);
|
|
|
|
return mAction->MatchesCacheId(aCacheId);
|
|
|
|
}
|
|
|
|
|
2015-03-16 17:10:36 +03:00
|
|
|
virtual void
|
|
|
|
Cancel() override
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Action::Resolver);
|
|
|
|
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);
|
|
|
|
mResult = aRv;
|
|
|
|
mState = STATE_COMPLETING;
|
|
|
|
nsresult rv = mInitiatingThread->Dispatch(this, nsIThread::DISPATCH_NORMAL);
|
|
|
|
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 initiating thread.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
~ActionRunnable()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mState == STATE_COMPLETE);
|
|
|
|
MOZ_ASSERT(!mContext);
|
|
|
|
MOZ_ASSERT(!mAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Clear()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Action::Resolver);
|
|
|
|
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,
|
|
|
|
STATE_COMPLETING,
|
|
|
|
STATE_COMPLETE
|
|
|
|
};
|
|
|
|
|
|
|
|
nsRefPtr<Context> mContext;
|
|
|
|
nsCOMPtr<nsIEventTarget> mTarget;
|
|
|
|
nsRefPtr<Action> mAction;
|
|
|
|
const QuotaInfo mQuotaInfo;
|
|
|
|
nsCOMPtr<nsIThread> mInitiatingThread;
|
|
|
|
State mState;
|
|
|
|
nsresult mResult;
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(mozilla::dom::cache::Context::ActionRunnable,
|
|
|
|
Action::Resolver, nsIRunnable);
|
|
|
|
|
|
|
|
// 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 |
|
|
|
|
// |Target IO Thread)+-------------------------------+
|
|
|
|
// +-------+---------+ |
|
|
|
|
// | |
|
|
|
|
// +-------v----------+ Resolve() +-------v-----+
|
|
|
|
// | Running | | Completing |
|
|
|
|
// |(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);
|
|
|
|
mState = STATE_RUNNING;
|
|
|
|
mAction->RunOnTarget(this, mQuotaInfo);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// -------------------
|
|
|
|
case STATE_COMPLETING:
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Action::Resolver);
|
|
|
|
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());
|
|
|
|
// 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.
|
|
|
|
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>
|
|
|
|
Context::Create(Manager* aManager, Action* aQuotaIOThreadAction)
|
|
|
|
{
|
|
|
|
nsRefPtr<Context> context = new Context(aManager);
|
|
|
|
|
|
|
|
nsRefPtr<QuotaInitRunnable> runnable =
|
2015-03-16 17:10:36 +03:00
|
|
|
new QuotaInitRunnable(context, aManager, aQuotaIOThreadAction);
|
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. Shutdown
|
|
|
|
// must also prevent any new Contexts from being constructed. Crash
|
|
|
|
// for this invariant violation.
|
|
|
|
MOZ_CRASH("Failed to dispatch QuotaInitRunnable.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return context.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
Context::Context(Manager* aManager)
|
|
|
|
: mManager(aManager)
|
|
|
|
, mState(STATE_CONTEXT_INIT)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mManager);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::Dispatch(nsIEventTarget* aTarget, Action* aAction)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
MOZ_ASSERT(aTarget);
|
|
|
|
MOZ_ASSERT(aAction);
|
|
|
|
|
|
|
|
if (mState == STATE_CONTEXT_CANCELED) {
|
|
|
|
return;
|
|
|
|
} else if (mState == STATE_CONTEXT_INIT) {
|
|
|
|
PendingAction* pending = mPendingActions.AppendElement();
|
|
|
|
pending->mTarget = aTarget;
|
|
|
|
pending->mAction = aAction;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(STATE_CONTEXT_READY);
|
|
|
|
DispatchAction(aTarget, aAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::CancelAll()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::Invalidate()
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
mManager->Invalidate();
|
|
|
|
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-03-16 17:10:36 +03:00
|
|
|
if (mThreadsafeHandle) {
|
|
|
|
mThreadsafeHandle->ContextDestroyed(this);
|
2015-03-02 16:20:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
mManager->RemoveContext(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::DispatchAction(nsIEventTarget* aTarget, Action* aAction)
|
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(Context);
|
|
|
|
|
|
|
|
nsRefPtr<ActionRunnable> runnable =
|
|
|
|
new ActionRunnable(this, aTarget, aAction, mQuotaInfo);
|
|
|
|
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);
|
|
|
|
|
|
|
|
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) {
|
|
|
|
DispatchAction(mPendingActions[i].mTarget, mPendingActions[i].mAction);
|
|
|
|
}
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace cache
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|