forked from mirrors/gecko-dev
Response Timing should be reported before the body stream completing. In the original implementation, the response timing is recorded when OnResponseEnd is called, but it is too late. Response timing could not be ready when response.text() or response.blob() resolves the promise. This is the fourth patch for reporting the preload response timing for ServiceWorker NavigationPreload. This patch adds the needed IPCs PFetchEventOp and PFetchEventOpProxy to propagate the preload response timing from the parent process main thread to the content process worker thread. Since navigation preload is an asynchronous action, corresponding promises for asynchronous propagation are also created in FetchService, FetchEventOpChild, FetchEventOpProxyChild, and FetchEventOp. Depends on D167938 Differential Revision: https://phabricator.services.mozilla.com/D167939
106 lines
3.3 KiB
C++
106 lines
3.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 "FetchEventOpParent.h"
|
|
|
|
#include "mozilla/dom/FetchTypes.h"
|
|
#include "nsDebug.h"
|
|
|
|
#include "mozilla/Assertions.h"
|
|
#include "mozilla/RefPtr.h"
|
|
#include "mozilla/Unused.h"
|
|
#include "mozilla/dom/FetchEventOpProxyParent.h"
|
|
#include "mozilla/dom/FetchStreamUtils.h"
|
|
#include "mozilla/dom/InternalResponse.h"
|
|
#include "mozilla/dom/RemoteWorkerControllerParent.h"
|
|
#include "mozilla/dom/RemoteWorkerParent.h"
|
|
#include "mozilla/ipc/BackgroundParent.h"
|
|
|
|
namespace mozilla {
|
|
|
|
using namespace ipc;
|
|
|
|
namespace dom {
|
|
|
|
Tuple<Maybe<ParentToParentInternalResponse>, Maybe<ResponseEndArgs>>
|
|
FetchEventOpParent::OnStart(
|
|
MovingNotNull<RefPtr<FetchEventOpProxyParent>> aFetchEventOpProxyParent) {
|
|
Maybe<ParentToParentInternalResponse> preloadResponse =
|
|
std::move(mState.as<Pending>().mPreloadResponse);
|
|
Maybe<ResponseEndArgs> preloadResponseEndArgs =
|
|
std::move(mState.as<Pending>().mEndArgs);
|
|
mState = AsVariant(Started{std::move(aFetchEventOpProxyParent)});
|
|
return MakeTuple(preloadResponse, preloadResponseEndArgs);
|
|
}
|
|
|
|
void FetchEventOpParent::OnFinish() {
|
|
MOZ_ASSERT(mState.is<Started>());
|
|
mState = AsVariant(Finished());
|
|
}
|
|
|
|
mozilla::ipc::IPCResult FetchEventOpParent::RecvPreloadResponse(
|
|
ParentToParentInternalResponse&& aResponse) {
|
|
AssertIsOnBackgroundThread();
|
|
|
|
mState.match(
|
|
[&aResponse](Pending& aPending) {
|
|
MOZ_ASSERT(aPending.mPreloadResponse.isNothing());
|
|
aPending.mPreloadResponse = Some(std::move(aResponse));
|
|
},
|
|
[&aResponse](Started& aStarted) {
|
|
auto backgroundParent = WrapNotNull(
|
|
WrapNotNull(aStarted.mFetchEventOpProxyParent->Manager())
|
|
->Manager());
|
|
Unused << aStarted.mFetchEventOpProxyParent->SendPreloadResponse(
|
|
ToParentToChild(aResponse, backgroundParent));
|
|
},
|
|
[](const Finished&) {});
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
mozilla::ipc::IPCResult FetchEventOpParent::RecvPreloadResponseTiming(
|
|
ResponseTiming&& aTiming) {
|
|
AssertIsOnBackgroundThread();
|
|
|
|
mState.match(
|
|
[&aTiming](Pending& aPending) {
|
|
MOZ_ASSERT(aPending.mTiming.isNothing());
|
|
aPending.mTiming = Some(std::move(aTiming));
|
|
},
|
|
[&aTiming](Started& aStarted) {
|
|
Unused << aStarted.mFetchEventOpProxyParent->SendPreloadResponseTiming(
|
|
std::move(aTiming));
|
|
},
|
|
[](const Finished&) {});
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
mozilla::ipc::IPCResult FetchEventOpParent::RecvPreloadResponseEnd(
|
|
ResponseEndArgs&& aArgs) {
|
|
AssertIsOnBackgroundThread();
|
|
|
|
mState.match(
|
|
[&aArgs](Pending& aPending) {
|
|
MOZ_ASSERT(aPending.mEndArgs.isNothing());
|
|
aPending.mEndArgs = Some(std::move(aArgs));
|
|
},
|
|
[&aArgs](Started& aStarted) {
|
|
Unused << aStarted.mFetchEventOpProxyParent->SendPreloadResponseEnd(
|
|
std::move(aArgs));
|
|
},
|
|
[](const Finished&) {});
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
void FetchEventOpParent::ActorDestroy(ActorDestroyReason) {
|
|
AssertIsOnBackgroundThread();
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|