mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
01583602a9
The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
250 lines
6.3 KiB
C++
250 lines
6.3 KiB
C++
/* -*- 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/CacheOpChild.h"
|
|
|
|
#include "mozilla/dom/Promise.h"
|
|
#include "mozilla/dom/Request.h"
|
|
#include "mozilla/dom/Response.h"
|
|
#include "mozilla/dom/cache/Cache.h"
|
|
#include "mozilla/dom/cache/CacheChild.h"
|
|
#include "mozilla/dom/cache/CacheStreamControlChild.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace cache {
|
|
|
|
namespace {
|
|
|
|
void
|
|
AddFeatureToStreamChild(const CacheReadStream& aReadStream, Feature* aFeature)
|
|
{
|
|
MOZ_ASSERT_IF(!NS_IsMainThread(), aFeature);
|
|
CacheStreamControlChild* cacheControl =
|
|
static_cast<CacheStreamControlChild*>(aReadStream.controlChild());
|
|
if (cacheControl) {
|
|
cacheControl->SetFeature(aFeature);
|
|
}
|
|
}
|
|
|
|
void
|
|
AddFeatureToStreamChild(const CacheResponse& aResponse, Feature* aFeature)
|
|
{
|
|
MOZ_ASSERT_IF(!NS_IsMainThread(), aFeature);
|
|
|
|
if (aResponse.body().type() == CacheReadStreamOrVoid::Tvoid_t) {
|
|
return;
|
|
}
|
|
|
|
AddFeatureToStreamChild(aResponse.body().get_CacheReadStream(), aFeature);
|
|
}
|
|
|
|
void
|
|
AddFeatureToStreamChild(const CacheRequest& aRequest, Feature* aFeature)
|
|
{
|
|
MOZ_ASSERT_IF(!NS_IsMainThread(), aFeature);
|
|
|
|
if (aRequest.body().type() == CacheReadStreamOrVoid::Tvoid_t) {
|
|
return;
|
|
}
|
|
|
|
AddFeatureToStreamChild(aRequest.body().get_CacheReadStream(), aFeature);
|
|
}
|
|
|
|
} // namespace
|
|
|
|
CacheOpChild::CacheOpChild(Feature* aFeature, nsIGlobalObject* aGlobal,
|
|
nsISupports* aParent, Promise* aPromise)
|
|
: mGlobal(aGlobal)
|
|
, mParent(aParent)
|
|
, mPromise(aPromise)
|
|
{
|
|
MOZ_ASSERT(mGlobal);
|
|
MOZ_ASSERT(mParent);
|
|
MOZ_ASSERT(mPromise);
|
|
|
|
MOZ_ASSERT_IF(!NS_IsMainThread(), aFeature);
|
|
SetFeature(aFeature);
|
|
}
|
|
|
|
CacheOpChild::~CacheOpChild()
|
|
{
|
|
NS_ASSERT_OWNINGTHREAD(CacheOpChild);
|
|
MOZ_ASSERT(!mPromise);
|
|
}
|
|
|
|
void
|
|
CacheOpChild::ActorDestroy(ActorDestroyReason aReason)
|
|
{
|
|
NS_ASSERT_OWNINGTHREAD(CacheOpChild);
|
|
|
|
// If the actor was terminated for some unknown reason, then indicate the
|
|
// operation is dead.
|
|
if (mPromise) {
|
|
mPromise->MaybeReject(NS_ERROR_FAILURE);
|
|
mPromise = nullptr;
|
|
}
|
|
|
|
RemoveFeature();
|
|
}
|
|
|
|
bool
|
|
CacheOpChild::Recv__delete__(const ErrorResult& aRv,
|
|
const CacheOpResult& aResult)
|
|
{
|
|
NS_ASSERT_OWNINGTHREAD(CacheOpChild);
|
|
|
|
if (NS_WARN_IF(aRv.Failed())) {
|
|
MOZ_ASSERT(aResult.type() == CacheOpResult::Tvoid_t);
|
|
// TODO: Remove this const_cast (bug 1152078).
|
|
// It is safe for now since this ErrorResult is handed off to us by IPDL
|
|
// and is thrown into the trash afterwards.
|
|
mPromise->MaybeReject(const_cast<ErrorResult&>(aRv));
|
|
mPromise = nullptr;
|
|
return true;
|
|
}
|
|
|
|
switch (aResult.type()) {
|
|
case CacheOpResult::TCacheMatchResult:
|
|
{
|
|
HandleResponse(aResult.get_CacheMatchResult().responseOrVoid());
|
|
break;
|
|
}
|
|
case CacheOpResult::TCacheMatchAllResult:
|
|
{
|
|
HandleResponseList(aResult.get_CacheMatchAllResult().responseList());
|
|
break;
|
|
}
|
|
case CacheOpResult::TCachePutAllResult:
|
|
{
|
|
mPromise->MaybeResolve(JS::UndefinedHandleValue);
|
|
break;
|
|
}
|
|
case CacheOpResult::TCacheDeleteResult:
|
|
{
|
|
mPromise->MaybeResolve(aResult.get_CacheDeleteResult().success());
|
|
break;
|
|
}
|
|
case CacheOpResult::TCacheKeysResult:
|
|
{
|
|
HandleRequestList(aResult.get_CacheKeysResult().requestList());
|
|
break;
|
|
}
|
|
case CacheOpResult::TStorageMatchResult:
|
|
{
|
|
HandleResponse(aResult.get_StorageMatchResult().responseOrVoid());
|
|
break;
|
|
}
|
|
case CacheOpResult::TStorageHasResult:
|
|
{
|
|
mPromise->MaybeResolve(aResult.get_StorageHasResult().success());
|
|
break;
|
|
}
|
|
case CacheOpResult::TStorageOpenResult:
|
|
{
|
|
auto actor = static_cast<CacheChild*>(
|
|
aResult.get_StorageOpenResult().actorChild());
|
|
actor->SetFeature(GetFeature());
|
|
RefPtr<Cache> cache = new Cache(mGlobal, actor);
|
|
mPromise->MaybeResolve(cache);
|
|
break;
|
|
}
|
|
case CacheOpResult::TStorageDeleteResult:
|
|
{
|
|
mPromise->MaybeResolve(aResult.get_StorageDeleteResult().success());
|
|
break;
|
|
}
|
|
case CacheOpResult::TStorageKeysResult:
|
|
{
|
|
mPromise->MaybeResolve(aResult.get_StorageKeysResult().keyList());
|
|
break;
|
|
}
|
|
default:
|
|
MOZ_CRASH("Unknown Cache op result type!");
|
|
}
|
|
|
|
mPromise = nullptr;
|
|
|
|
return true;
|
|
}
|
|
|
|
void
|
|
CacheOpChild::StartDestroy()
|
|
{
|
|
NS_ASSERT_OWNINGTHREAD(CacheOpChild);
|
|
|
|
// Do not cancel on-going operations when Feature calls this. Instead, keep
|
|
// the Worker alive until we are done.
|
|
}
|
|
|
|
nsIGlobalObject*
|
|
CacheOpChild::GetGlobalObject() const
|
|
{
|
|
return mGlobal;
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
void
|
|
CacheOpChild::AssertOwningThread() const
|
|
{
|
|
NS_ASSERT_OWNINGTHREAD(CacheOpChild);
|
|
}
|
|
#endif
|
|
|
|
CachePushStreamChild*
|
|
CacheOpChild::CreatePushStream(nsIAsyncInputStream* aStream)
|
|
{
|
|
MOZ_CRASH("CacheOpChild should never create a push stream actor!");
|
|
}
|
|
|
|
void
|
|
CacheOpChild::HandleResponse(const CacheResponseOrVoid& aResponseOrVoid)
|
|
{
|
|
if (aResponseOrVoid.type() == CacheResponseOrVoid::Tvoid_t) {
|
|
mPromise->MaybeResolve(JS::UndefinedHandleValue);
|
|
return;
|
|
}
|
|
|
|
const CacheResponse& cacheResponse = aResponseOrVoid.get_CacheResponse();
|
|
|
|
AddFeatureToStreamChild(cacheResponse, GetFeature());
|
|
RefPtr<Response> response = ToResponse(cacheResponse);
|
|
|
|
mPromise->MaybeResolve(response);
|
|
}
|
|
|
|
void
|
|
CacheOpChild::HandleResponseList(const nsTArray<CacheResponse>& aResponseList)
|
|
{
|
|
nsAutoTArray<RefPtr<Response>, 256> responses;
|
|
responses.SetCapacity(aResponseList.Length());
|
|
|
|
for (uint32_t i = 0; i < aResponseList.Length(); ++i) {
|
|
AddFeatureToStreamChild(aResponseList[i], GetFeature());
|
|
responses.AppendElement(ToResponse(aResponseList[i]));
|
|
}
|
|
|
|
mPromise->MaybeResolve(responses);
|
|
}
|
|
|
|
void
|
|
CacheOpChild::HandleRequestList(const nsTArray<CacheRequest>& aRequestList)
|
|
{
|
|
nsAutoTArray<RefPtr<Request>, 256> requests;
|
|
requests.SetCapacity(aRequestList.Length());
|
|
|
|
for (uint32_t i = 0; i < aRequestList.Length(); ++i) {
|
|
AddFeatureToStreamChild(aRequestList[i], GetFeature());
|
|
requests.AppendElement(ToRequest(aRequestList[i]));
|
|
}
|
|
|
|
mPromise->MaybeResolve(requests);
|
|
}
|
|
|
|
} // namespace cache
|
|
} // namespace dom
|
|
} // namespace mozilla
|