forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1351231 - PFetch protocol declaration and implementation. r=dom-w…
…orker-reviewers,jesup Depends on D138813 Differential Revision: https://phabricator.services.mozilla.com/D142436
- Loading branch information
1 parent
506a5d0
commit 0fb2c5b
Showing
11 changed files
with
500 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* 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 "FetchChild.h" | ||
|
||
namespace mozilla::dom { | ||
|
||
mozilla::ipc::IPCResult FetchChild::Recv__delete__(const nsresult&& aResult) { | ||
return IPC_OK(); | ||
} | ||
|
||
mozilla::ipc::IPCResult FetchChild::RecvOnResponseAvailableInternal( | ||
ParentToChildInternalResponse&& aResponse) { | ||
// TODO: Should perform WorkerFetchResolver::OnResponseAvailableInternal here. | ||
return IPC_OK(); | ||
} | ||
|
||
mozilla::ipc::IPCResult FetchChild::RecvOnResponseEnd(ResponseEndArgs&& aArgs) { | ||
// TODO: Should perform WorkerFetchResolver::OnResponseEnd here. | ||
return IPC_OK(); | ||
} | ||
|
||
mozilla::ipc::IPCResult FetchChild::RecvOnDataAvailable() { | ||
// TODO: Should perform WorkerFetchResolver::OnDataAvailable here. | ||
return IPC_OK(); | ||
} | ||
|
||
mozilla::ipc::IPCResult FetchChild::RecvOnFlushConsoleReport( | ||
nsTArray<net::ConsoleReportCollected>&& aReports) { | ||
// TODO: Should perform WorkerFetchResolver::FlushConsoleReport here. | ||
return IPC_OK(); | ||
} | ||
|
||
mozilla::ipc::IPCResult FetchChild::RecvOnCSPViolationEvent( | ||
const nsAString& aJSON) { | ||
// TODO: Should dispatch csp violation event to worker scope. | ||
return IPC_OK(); | ||
} | ||
|
||
void FetchChild::ActorDestroy(ActorDestroyReason aReason) {} | ||
|
||
} // namespace mozilla::dom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* 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/. */ | ||
|
||
#ifndef mozilla_dom_fetchChild_h__ | ||
#define mozilla_dom_fetchChild_h__ | ||
|
||
#include "mozilla/dom/PFetchChild.h" | ||
|
||
namespace mozilla::dom { | ||
|
||
class FetchChild final : public PFetchChild { | ||
friend class PFetchChild; | ||
|
||
public: | ||
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(FetchChild, override); | ||
|
||
mozilla::ipc::IPCResult Recv__delete__(const nsresult&& aResult); | ||
|
||
mozilla::ipc::IPCResult RecvOnResponseAvailableInternal( | ||
ParentToChildInternalResponse&& aResponse); | ||
|
||
mozilla::ipc::IPCResult RecvOnResponseEnd(ResponseEndArgs&& aArgs); | ||
|
||
mozilla::ipc::IPCResult RecvOnDataAvailable(); | ||
|
||
mozilla::ipc::IPCResult RecvOnFlushConsoleReport( | ||
nsTArray<net::ConsoleReportCollected>&& aReports); | ||
|
||
mozilla::ipc::IPCResult RecvOnCSPViolationEvent(const nsAString& aJSon); | ||
|
||
private: | ||
~FetchChild() = default; | ||
|
||
void ActorDestroy(ActorDestroyReason aReason) override; | ||
}; | ||
|
||
} // namespace mozilla::dom | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,228 @@ | ||
/* 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 "FetchLog.h" | ||
#include "FetchParent.h" | ||
#include "InternalRequest.h" | ||
#include "InternalResponse.h" | ||
#include "mozilla/SchedulerGroup.h" | ||
#include "mozilla/Unused.h" | ||
#include "mozilla/dom/ClientInfo.h" | ||
#include "mozilla/dom/FetchTypes.h" | ||
#include "mozilla/dom/PerformanceTimingTypes.h" | ||
#include "mozilla/dom/ServiceWorkerDescriptor.h" | ||
#include "mozilla/ipc/BackgroundParent.h" | ||
#include "nsThreadUtils.h" | ||
|
||
using namespace mozilla::ipc; | ||
|
||
namespace mozilla::dom { | ||
|
||
NS_IMPL_ISUPPORTS(FetchParent::FetchParentCSPEventListener, nsICSPEventListener) | ||
|
||
FetchParent::FetchParentCSPEventListener::FetchParentCSPEventListener( | ||
const nsID& aActorID, nsCOMPtr<nsISerialEventTarget> aEventTarget) | ||
: mActorID(aActorID), mEventTarget(aEventTarget) { | ||
MOZ_ASSERT(mEventTarget); | ||
FETCH_LOG(("FetchParentCSPEventListener [%p] actor ID: %s", this, | ||
mActorID.ToString())); | ||
} | ||
|
||
NS_IMETHODIMP FetchParent::FetchParentCSPEventListener::OnCSPViolationEvent( | ||
const nsAString& aJSON) { | ||
AssertIsOnMainThread(); | ||
FETCH_LOG(("FetchParentCSPEventListener::OnCSPViolationEvent [%p]", this)); | ||
|
||
nsAutoString json(aJSON); | ||
nsCOMPtr<nsIRunnable> r = | ||
NS_NewRunnableFunction(__func__, [actorID = mActorID, json]() mutable { | ||
FETCH_LOG( | ||
("FetchParentCSPEventListener::OnCSPViolationEvent, Runnale")); | ||
RefPtr<FetchParent> actor = FetchParent::GetActorByID(actorID); | ||
if (actor) { | ||
actor->OnCSPViolationEvent(json); | ||
} | ||
}); | ||
|
||
MOZ_ALWAYS_SUCCEEDS(mEventTarget->Dispatch(r, nsIThread::DISPATCH_NORMAL)); | ||
return NS_OK; | ||
} | ||
|
||
nsTHashMap<nsIDHashKey, RefPtr<FetchParent>> FetchParent::sActorTable; | ||
|
||
/*static*/ | ||
RefPtr<FetchParent> FetchParent::GetActorByID(const nsID& aID) { | ||
AssertIsOnBackgroundThread(); | ||
auto entry = sActorTable.Lookup(aID); | ||
if (entry) { | ||
return entry.Data(); | ||
} | ||
return nullptr; | ||
} | ||
|
||
FetchParent::FetchParent() : mID(nsID::GenerateUUID()) { | ||
FETCH_LOG(("FetchParent::FetchParent [%p]", this)); | ||
AssertIsOnBackgroundThread(); | ||
mBackgroundEventTarget = GetCurrentSerialEventTarget(); | ||
MOZ_ASSERT(mBackgroundEventTarget); | ||
if (!sActorTable.WithEntryHandle(mID, [&](auto&& entry) { | ||
if (entry.HasEntry()) { | ||
return false; | ||
} | ||
entry.Insert(this); | ||
return true; | ||
})) { | ||
FETCH_LOG(("FetchParent::FetchParent entry[%p] already exists", this)); | ||
} | ||
} | ||
|
||
FetchParent::~FetchParent() { | ||
FETCH_LOG(("FetchParent::~FetchParent [%p]", this)); | ||
AssertIsOnBackgroundThread(); | ||
MOZ_ASSERT(!mBackgroundEventTarget); | ||
MOZ_ASSERT(!mResponsePromises); | ||
MOZ_ASSERT(mActorDestroyed && mIsDone); | ||
} | ||
|
||
IPCResult FetchParent::RecvFetchOp(FetchOpArgs&& aArgs) { | ||
FETCH_LOG(("FetchParent::RecvFetchOp [%p]", this)); | ||
AssertIsOnBackgroundThread(); | ||
|
||
MOZ_ASSERT(!mIsDone); | ||
if (mActorDestroyed) { | ||
return IPC_OK(); | ||
} | ||
|
||
mRequest = MakeSafeRefPtr<InternalRequest>(std::move(aArgs.request())); | ||
mPrincipalInfo = std::move(aArgs.principalInfo()); | ||
mWorkerScript = aArgs.workerScript(); | ||
mClientInfo = Some(ClientInfo(aArgs.clientInfo())); | ||
if (aArgs.controller().isSome()) { | ||
mController = Some(ServiceWorkerDescriptor(aArgs.controller().ref())); | ||
} | ||
mNeedOnDataAvailable = aArgs.needOnDataAvailable(); | ||
mHasCSPEventListener = aArgs.hasCSPEventListener(); | ||
|
||
if (mHasCSPEventListener) { | ||
mCSPEventListener = | ||
MakeRefPtr<FetchParentCSPEventListener>(mID, mBackgroundEventTarget); | ||
} | ||
|
||
MOZ_ASSERT(!mPromise); | ||
mPromise = new GenericPromise::Private(__func__); | ||
|
||
RefPtr<FetchParent> self = this; | ||
mPromise->Then( | ||
mBackgroundEventTarget, __func__, | ||
[self](const bool&& result) mutable { | ||
FETCH_LOG( | ||
("FetchParent::RecvFetchOp [%p] Success Callback", self.get())); | ||
AssertIsOnBackgroundThread(); | ||
self->mIsDone = true; | ||
if (!self->mActorDestroyed) { | ||
FETCH_LOG(("FetchParent::RecvFetchOp [%p] Send__delete__(NS_OK)", | ||
self.get())); | ||
Unused << NS_WARN_IF(!self->Send__delete__(self, NS_OK)); | ||
} | ||
}, | ||
[self](const nsresult&& aErr) mutable { | ||
FETCH_LOG( | ||
("FetchParent::RecvFetchOp [%p] Failure Callback", self.get())); | ||
AssertIsOnBackgroundThread(); | ||
self->mIsDone = true; | ||
if (!self->mActorDestroyed) { | ||
FETCH_LOG(("FetchParent::RecvFetchOp [%p] Send__delete__(aErr)", | ||
self.get())); | ||
Unused << NS_WARN_IF(!self->Send__delete__(self, aErr)); | ||
} | ||
}); | ||
|
||
nsCOMPtr<nsIRunnable> r = NS_NewRunnableFunction(__func__, [self]() mutable { | ||
FETCH_LOG( | ||
("FetchParent::RecvFetchOp [%p], Main Thread Runnable", self.get())); | ||
AssertIsOnMainThread(); | ||
if (self->mIsDone) { | ||
MOZ_ASSERT(!self->mResponsePromises); | ||
MOZ_ASSERT(self->mPromise); | ||
FETCH_LOG( | ||
("FetchParent::RecvFetchOp [%p], Main Thread Runnable, " | ||
"already aborted", | ||
self.get())); | ||
self->mPromise->Reject(NS_ERROR_DOM_ABORT_ERR, __func__); | ||
return; | ||
} | ||
// TODO: Initialize a fetch through FetchService::Fetch, and saving | ||
// returned promises into mResponsePromises | ||
}); | ||
|
||
MOZ_ALWAYS_SUCCEEDS( | ||
SchedulerGroup::Dispatch(TaskCategory::Other, r.forget())); | ||
|
||
return IPC_OK(); | ||
} | ||
|
||
IPCResult FetchParent::RecvAbortFetchOp() { | ||
FETCH_LOG(("FetchParent::RecvAbortFetchOp [%p]", this)); | ||
AssertIsOnBackgroundThread(); | ||
|
||
if (mIsDone) { | ||
FETCH_LOG(("FetchParent::RecvAbortFetchOp [%p], Already aborted", this)); | ||
return IPC_OK(); | ||
} | ||
mIsDone = true; | ||
|
||
if (mResponsePromises) { | ||
nsCOMPtr<nsIRunnable> r = NS_NewRunnableFunction( | ||
__func__, [promises = std::move(mResponsePromises)]() mutable { | ||
FETCH_LOG(("FetchParent::RecvAbortFetchOp Runnable")); | ||
AssertIsOnMainThread(); | ||
RefPtr<FetchService> fetchService = FetchService::GetInstance(); | ||
MOZ_ASSERT(fetchService); | ||
fetchService->CancelFetch(std::move(promises)); | ||
}); | ||
MOZ_ALWAYS_SUCCEEDS( | ||
SchedulerGroup::Dispatch(TaskCategory::Other, r.forget())); | ||
} | ||
|
||
return IPC_OK(); | ||
} | ||
|
||
void FetchParent::OnFlushConsoleReport( | ||
nsTArray<net::ConsoleReportCollected>&& aReports) { | ||
FETCH_LOG(("FetchParent::OnFlushConsoleReport [%p]", this)); | ||
AssertIsOnBackgroundThread(); | ||
MOZ_ASSERT(!mActorDestroyed); | ||
|
||
Unused << SendOnFlushConsoleReport(std::move(aReports)); | ||
} | ||
|
||
void FetchParent::ActorDestroy(ActorDestroyReason aReason) { | ||
FETCH_LOG(("FetchParent::ActorDestroy [%p]", this)); | ||
AssertIsOnBackgroundThread(); | ||
mActorDestroyed = true; | ||
auto entry = sActorTable.Lookup(mID); | ||
if (entry) { | ||
entry.Remove(); | ||
FETCH_LOG(("FetchParent::ActorDestroy entry [%p] removed", this)); | ||
} | ||
// Force to abort the existing fetch. | ||
// Actor can be destoried by shutdown when still fetching. | ||
RecvAbortFetchOp(); | ||
mBackgroundEventTarget = nullptr; | ||
} | ||
|
||
nsICSPEventListener* FetchParent::GetCSPEventListener() { | ||
return mCSPEventListener; | ||
} | ||
|
||
void FetchParent::OnCSPViolationEvent(const nsAString& aJSON) { | ||
FETCH_LOG(("FetchParent::OnCSPViolationEvent [%p]", this)); | ||
AssertIsOnBackgroundThread(); | ||
MOZ_ASSERT(mHasCSPEventListener); | ||
MOZ_ASSERT(!mActorDestroyed); | ||
|
||
Unused << SendOnCSPViolationEvent(aJSON); | ||
} | ||
|
||
} // namespace mozilla::dom |
Oops, something went wrong.