refactor: extract NetworkEventManager from NetworkManager
This commit is contained in:
parent
dc23b7535c
commit
bbfad6802c
107
src/common/NetworkEventManager.ts
Normal file
107
src/common/NetworkEventManager.ts
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
import { Protocol } from 'devtools-protocol';
|
||||||
|
import { HTTPRequest } from './HTTPRequest.js';
|
||||||
|
|
||||||
|
export type QueuedEvents = {
|
||||||
|
responseReceived: Protocol.Network.ResponseReceivedEvent;
|
||||||
|
promise: Promise<void>;
|
||||||
|
resolver: () => void;
|
||||||
|
loadingFinished?: Protocol.Network.LoadingFinishedEvent;
|
||||||
|
loadingFailed?: Protocol.Network.LoadingFailedEvent;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type FetchRequestId = string;
|
||||||
|
export type NetworkRequestId = string;
|
||||||
|
|
||||||
|
export type RedirectInfoMap = Array<{
|
||||||
|
event: Protocol.Network.RequestWillBeSentEvent;
|
||||||
|
fetchRequestId?: FetchRequestId;
|
||||||
|
}>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*
|
||||||
|
* Helper class to track network events by request ID
|
||||||
|
*/
|
||||||
|
export class NetworkEventManager {
|
||||||
|
/*
|
||||||
|
* There are four possible orders of events:
|
||||||
|
* A. `_onRequestWillBeSent`
|
||||||
|
* B. `_onRequestWillBeSent`, `_onRequestPaused`
|
||||||
|
* C. `_onRequestPaused`, `_onRequestWillBeSent`
|
||||||
|
* D. `_onRequestPaused`, `_onRequestWillBeSent`, `_onRequestPaused`,
|
||||||
|
* `_onRequestWillBeSent`, `_onRequestPaused`, `_onRequestPaused`
|
||||||
|
* (see crbug.com/1196004)
|
||||||
|
*
|
||||||
|
* For `_onRequest` we need the event from `_onRequestWillBeSent` and
|
||||||
|
* optionally the `interceptionId` from `_onRequestPaused`.
|
||||||
|
*
|
||||||
|
* If request interception is disabled, call `_onRequest` once per call to
|
||||||
|
* `_onRequestWillBeSent`.
|
||||||
|
* If request interception is enabled, call `_onRequest` once per call to
|
||||||
|
* `_onRequestPaused` (once per `interceptionId`).
|
||||||
|
*
|
||||||
|
* Events are stored to allow for subsequent events to call `_onRequest`.
|
||||||
|
*
|
||||||
|
* Note that (chains of) redirect requests have the same `requestId` (!) as
|
||||||
|
* the original request. We have to anticipate series of events like these:
|
||||||
|
* A. `_onRequestWillBeSent`,
|
||||||
|
* `_onRequestWillBeSent`, ...
|
||||||
|
* B. `_onRequestWillBeSent`, `_onRequestPaused`,
|
||||||
|
* `_onRequestWillBeSent`, `_onRequestPaused`, ...
|
||||||
|
* C. `_onRequestWillBeSent`, `_onRequestPaused`,
|
||||||
|
* `_onRequestPaused`, `_onRequestWillBeSent`, ...
|
||||||
|
* D. `_onRequestPaused`, `_onRequestWillBeSent`,
|
||||||
|
* `_onRequestPaused`, `_onRequestWillBeSent`, `_onRequestPaused`,
|
||||||
|
* `_onRequestWillBeSent`, `_onRequestPaused`, `_onRequestPaused`, ...
|
||||||
|
* (see crbug.com/1196004)
|
||||||
|
*/
|
||||||
|
requestWillBeSent = new Map<
|
||||||
|
NetworkRequestId,
|
||||||
|
Protocol.Network.RequestWillBeSentEvent
|
||||||
|
>();
|
||||||
|
requestPaused = new Map<
|
||||||
|
NetworkRequestId,
|
||||||
|
Protocol.Fetch.RequestPausedEvent
|
||||||
|
>();
|
||||||
|
httpRequest = new Map<NetworkRequestId, HTTPRequest>();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The below maps are used to reconcile Network.responseReceivedExtraInfo
|
||||||
|
* events with their corresponding request. Each response and redirect
|
||||||
|
* response gets an ExtraInfo event, and we don't know which will come first.
|
||||||
|
* This means that we have to store a Response or an ExtraInfo for each
|
||||||
|
* response, and emit the event when we get both of them. In addition, to
|
||||||
|
* handle redirects, we have to make them Arrays to represent the chain of
|
||||||
|
* events.
|
||||||
|
*/
|
||||||
|
private _responseReceivedExtraInfo = new Map<
|
||||||
|
NetworkRequestId,
|
||||||
|
Protocol.Network.ResponseReceivedExtraInfoEvent[]
|
||||||
|
>();
|
||||||
|
private _queuedRedirectInfoMap = new Map<NetworkRequestId, RedirectInfoMap>();
|
||||||
|
queuedEvents = new Map<NetworkRequestId, QueuedEvents>();
|
||||||
|
|
||||||
|
forget(networkRequestId: NetworkRequestId): void {
|
||||||
|
this.requestWillBeSent.delete(networkRequestId);
|
||||||
|
this.requestPaused.delete(networkRequestId);
|
||||||
|
this.queuedEvents.delete(networkRequestId);
|
||||||
|
this._queuedRedirectInfoMap.delete(networkRequestId);
|
||||||
|
this._responseReceivedExtraInfo.delete(networkRequestId);
|
||||||
|
}
|
||||||
|
|
||||||
|
responseExtraInfo(
|
||||||
|
networkRequestId: NetworkRequestId
|
||||||
|
): Protocol.Network.ResponseReceivedExtraInfoEvent[] {
|
||||||
|
if (!this._responseReceivedExtraInfo.has(networkRequestId)) {
|
||||||
|
this._responseReceivedExtraInfo.set(networkRequestId, []);
|
||||||
|
}
|
||||||
|
return this._responseReceivedExtraInfo.get(networkRequestId);
|
||||||
|
}
|
||||||
|
|
||||||
|
queuedRedirectInfo(fetchRequestId: FetchRequestId): RedirectInfoMap {
|
||||||
|
if (!this._queuedRedirectInfoMap.has(fetchRequestId)) {
|
||||||
|
this._queuedRedirectInfoMap.set(fetchRequestId, []);
|
||||||
|
}
|
||||||
|
return this._queuedRedirectInfoMap.get(fetchRequestId);
|
||||||
|
}
|
||||||
|
}
|
@ -22,6 +22,11 @@ import { helper, debugError } from './helper.js';
|
|||||||
import { Protocol } from 'devtools-protocol';
|
import { Protocol } from 'devtools-protocol';
|
||||||
import { HTTPRequest } from './HTTPRequest.js';
|
import { HTTPRequest } from './HTTPRequest.js';
|
||||||
import { HTTPResponse } from './HTTPResponse.js';
|
import { HTTPResponse } from './HTTPResponse.js';
|
||||||
|
import {
|
||||||
|
FetchRequestId,
|
||||||
|
NetworkEventManager,
|
||||||
|
NetworkRequestId,
|
||||||
|
} from './NetworkEventManager.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @public
|
* @public
|
||||||
@ -82,76 +87,7 @@ export class NetworkManager extends EventEmitter {
|
|||||||
_ignoreHTTPSErrors: boolean;
|
_ignoreHTTPSErrors: boolean;
|
||||||
_frameManager: FrameManager;
|
_frameManager: FrameManager;
|
||||||
|
|
||||||
/*
|
_networkEventManager = new NetworkEventManager();
|
||||||
* There are four possible orders of events:
|
|
||||||
* A. `_onRequestWillBeSent`
|
|
||||||
* B. `_onRequestWillBeSent`, `_onRequestPaused`
|
|
||||||
* C. `_onRequestPaused`, `_onRequestWillBeSent`
|
|
||||||
* D. `_onRequestPaused`, `_onRequestWillBeSent`, `_onRequestPaused`
|
|
||||||
* (see crbug.com/1196004)
|
|
||||||
*
|
|
||||||
* For `_onRequest` we need the event from `_onRequestWillBeSent` and
|
|
||||||
* optionally the `interceptionId` from `_onRequestPaused`.
|
|
||||||
*
|
|
||||||
* If request interception is disabled, call `_onRequest` once per call to
|
|
||||||
* `_onRequestWillBeSent`.
|
|
||||||
* If request interception is enabled, call `_onRequest` once per call to
|
|
||||||
* `_onRequestPaused` (once per `interceptionId`).
|
|
||||||
*
|
|
||||||
* Events are stored to allow for subsequent events to call `_onRequest`.
|
|
||||||
*
|
|
||||||
* Note that (chains of) redirect requests have the same `requestId` (!) as
|
|
||||||
* the original request. We have to anticipate series of events like these:
|
|
||||||
* A. `_onRequestWillBeSent`,
|
|
||||||
* `_onRequestWillBeSent`, ...
|
|
||||||
* B. `_onRequestWillBeSent`, `_onRequestPaused`,
|
|
||||||
* `_onRequestWillBeSent`, `_onRequestPaused`, ...
|
|
||||||
* C. `_onRequestWillBeSent`, `_onRequestPaused`,
|
|
||||||
* `_onRequestPaused`, `_onRequestWillBeSent`, ...
|
|
||||||
* D. `_onRequestPaused`, `_onRequestWillBeSent`,
|
|
||||||
* `_onRequestPaused`, `_onRequestWillBeSent`, `_onRequestPaused`, ...
|
|
||||||
* (see crbug.com/1196004)
|
|
||||||
*/
|
|
||||||
_requestIdToRequestWillBeSentEvent = new Map<
|
|
||||||
string,
|
|
||||||
Protocol.Network.RequestWillBeSentEvent
|
|
||||||
>();
|
|
||||||
_requestIdToRequestPausedEvent = new Map<
|
|
||||||
string,
|
|
||||||
Protocol.Fetch.RequestPausedEvent
|
|
||||||
>();
|
|
||||||
_requestIdToRequest = new Map<string, HTTPRequest>();
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The below maps are used to reconcile Network.responseReceivedExtraInfo
|
|
||||||
* events with their corresponding request. Each response and redirect
|
|
||||||
* response gets an ExtraInfo event, and we don't know which will come first.
|
|
||||||
* This means that we have to store a Response or an ExtraInfo for each
|
|
||||||
* response, and emit the event when we get both of them. In addition, to
|
|
||||||
* handle redirects, we have to make them Arrays to represent the chain of
|
|
||||||
* events.
|
|
||||||
*/
|
|
||||||
_requestIdToResponseReceivedExtraInfo = new Map<
|
|
||||||
string,
|
|
||||||
Protocol.Network.ResponseReceivedExtraInfoEvent[]
|
|
||||||
>();
|
|
||||||
_requestIdToQueuedRedirectInfoMap = new Map<
|
|
||||||
string,
|
|
||||||
Array<{
|
|
||||||
event: Protocol.Network.RequestWillBeSentEvent;
|
|
||||||
interceptionId?: string;
|
|
||||||
}>
|
|
||||||
>();
|
|
||||||
_requestIdToQueuedEvents = new Map<
|
|
||||||
string,
|
|
||||||
{
|
|
||||||
responseReceived: Protocol.Network.ResponseReceivedEvent;
|
|
||||||
promise: Promise<void>;
|
|
||||||
resolver: () => void;
|
|
||||||
loadingFinished?: Protocol.Network.LoadingFinishedEvent;
|
|
||||||
loadingFailed?: Protocol.Network.LoadingFailedEvent;
|
|
||||||
}
|
|
||||||
>();
|
|
||||||
|
|
||||||
_extraHTTPHeaders: Record<string, string> = {};
|
_extraHTTPHeaders: Record<string, string> = {};
|
||||||
_credentials?: Credentials = null;
|
_credentials?: Credentials = null;
|
||||||
@ -236,7 +172,7 @@ export class NetworkManager extends EventEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
numRequestsInProgress(): number {
|
numRequestsInProgress(): number {
|
||||||
return [...this._requestIdToRequest].filter(([, request]) => {
|
return [...this._networkEventManager.httpRequest].filter(([, request]) => {
|
||||||
return !request.response();
|
return !request.response();
|
||||||
}).length;
|
}).length;
|
||||||
}
|
}
|
||||||
@ -327,16 +263,19 @@ export class NetworkManager extends EventEmitter {
|
|||||||
this._userRequestInterceptionEnabled &&
|
this._userRequestInterceptionEnabled &&
|
||||||
!event.request.url.startsWith('data:')
|
!event.request.url.startsWith('data:')
|
||||||
) {
|
) {
|
||||||
const requestId = event.requestId;
|
const { requestId: networkRequestId } = event;
|
||||||
|
|
||||||
|
this._networkEventManager.requestWillBeSent.set(networkRequestId, event);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CDP may have sent a Fetch.requestPaused event already. Check for it.
|
||||||
|
*/
|
||||||
const requestPausedEvent =
|
const requestPausedEvent =
|
||||||
this._requestIdToRequestPausedEvent.get(requestId);
|
this._networkEventManager.requestPaused.get(networkRequestId);
|
||||||
|
|
||||||
this._requestIdToRequestWillBeSentEvent.set(requestId, event);
|
|
||||||
|
|
||||||
if (requestPausedEvent) {
|
if (requestPausedEvent) {
|
||||||
const interceptionId = requestPausedEvent.requestId;
|
const { requestId: fetchRequestId } = requestPausedEvent;
|
||||||
this._onRequest(event, interceptionId);
|
this._onRequest(event, fetchRequestId);
|
||||||
this._requestIdToRequestPausedEvent.delete(requestId);
|
this._networkEventManager.requestPaused.delete(networkRequestId);
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@ -368,6 +307,15 @@ export class NetworkManager extends EventEmitter {
|
|||||||
.catch(debugError);
|
.catch(debugError);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CDP may send a Fetch.requestPaused without or before a
|
||||||
|
* Network.requestWillBeSent
|
||||||
|
*
|
||||||
|
* CDP may send multiple Fetch.requestPaused
|
||||||
|
* for the same Network.requestWillBeSent.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
_onRequestPaused(event: Protocol.Fetch.RequestPausedEvent): void {
|
_onRequestPaused(event: Protocol.Fetch.RequestPausedEvent): void {
|
||||||
if (
|
if (
|
||||||
!this._userRequestInterceptionEnabled &&
|
!this._userRequestInterceptionEnabled &&
|
||||||
@ -380,15 +328,15 @@ export class NetworkManager extends EventEmitter {
|
|||||||
.catch(debugError);
|
.catch(debugError);
|
||||||
}
|
}
|
||||||
|
|
||||||
const requestId = event.networkId;
|
const { networkId: networkRequestId, requestId: fetchRequestId } = event;
|
||||||
const interceptionId = event.requestId;
|
|
||||||
|
|
||||||
if (!requestId) {
|
if (!networkRequestId) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let requestWillBeSentEvent =
|
const requestWillBeSentEvent = (() => {
|
||||||
this._requestIdToRequestWillBeSentEvent.get(requestId);
|
const requestWillBeSentEvent =
|
||||||
|
this._networkEventManager.requestWillBeSent.get(networkRequestId);
|
||||||
|
|
||||||
// redirect requests have the same `requestId`,
|
// redirect requests have the same `requestId`,
|
||||||
if (
|
if (
|
||||||
@ -396,39 +344,22 @@ export class NetworkManager extends EventEmitter {
|
|||||||
(requestWillBeSentEvent.request.url !== event.request.url ||
|
(requestWillBeSentEvent.request.url !== event.request.url ||
|
||||||
requestWillBeSentEvent.request.method !== event.request.method)
|
requestWillBeSentEvent.request.method !== event.request.method)
|
||||||
) {
|
) {
|
||||||
this._requestIdToRequestWillBeSentEvent.delete(requestId);
|
this._networkEventManager.requestWillBeSent.delete(networkRequestId);
|
||||||
requestWillBeSentEvent = null;
|
return;
|
||||||
}
|
}
|
||||||
|
return requestWillBeSentEvent;
|
||||||
|
})();
|
||||||
|
|
||||||
if (requestWillBeSentEvent) {
|
if (requestWillBeSentEvent) {
|
||||||
this._onRequest(requestWillBeSentEvent, interceptionId);
|
this._onRequest(requestWillBeSentEvent, fetchRequestId);
|
||||||
} else {
|
} else {
|
||||||
this._requestIdToRequestPausedEvent.set(requestId, event);
|
this._networkEventManager.requestPaused.set(networkRequestId, event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_requestIdToQueuedRedirectInfo(requestId: string): Array<{
|
|
||||||
event: Protocol.Network.RequestWillBeSentEvent;
|
|
||||||
interceptionId?: string;
|
|
||||||
}> {
|
|
||||||
if (!this._requestIdToQueuedRedirectInfoMap.has(requestId)) {
|
|
||||||
this._requestIdToQueuedRedirectInfoMap.set(requestId, []);
|
|
||||||
}
|
|
||||||
return this._requestIdToQueuedRedirectInfoMap.get(requestId);
|
|
||||||
}
|
|
||||||
|
|
||||||
_requestIdToResponseExtraInfo(
|
|
||||||
requestId: string
|
|
||||||
): Protocol.Network.ResponseReceivedExtraInfoEvent[] {
|
|
||||||
if (!this._requestIdToResponseReceivedExtraInfo.has(requestId)) {
|
|
||||||
this._requestIdToResponseReceivedExtraInfo.set(requestId, []);
|
|
||||||
}
|
|
||||||
return this._requestIdToResponseReceivedExtraInfo.get(requestId);
|
|
||||||
}
|
|
||||||
|
|
||||||
_onRequest(
|
_onRequest(
|
||||||
event: Protocol.Network.RequestWillBeSentEvent,
|
event: Protocol.Network.RequestWillBeSentEvent,
|
||||||
interceptionId?: string
|
fetchRequestId?: FetchRequestId
|
||||||
): void {
|
): void {
|
||||||
let redirectChain = [];
|
let redirectChain = [];
|
||||||
if (event.redirectResponse) {
|
if (event.redirectResponse) {
|
||||||
@ -441,19 +372,21 @@ export class NetworkManager extends EventEmitter {
|
|||||||
// response/requestfinished.
|
// response/requestfinished.
|
||||||
let redirectResponseExtraInfo = null;
|
let redirectResponseExtraInfo = null;
|
||||||
if (event.redirectHasExtraInfo) {
|
if (event.redirectHasExtraInfo) {
|
||||||
redirectResponseExtraInfo = this._requestIdToResponseExtraInfo(
|
redirectResponseExtraInfo = this._networkEventManager
|
||||||
event.requestId
|
.responseExtraInfo(event.requestId)
|
||||||
).shift();
|
.shift();
|
||||||
if (!redirectResponseExtraInfo) {
|
if (!redirectResponseExtraInfo) {
|
||||||
this._requestIdToQueuedRedirectInfo(event.requestId).push({
|
this._networkEventManager.queuedRedirectInfo(event.requestId).push({
|
||||||
event,
|
event,
|
||||||
interceptionId,
|
fetchRequestId,
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const request = this._requestIdToRequest.get(event.requestId);
|
const request = this._networkEventManager.httpRequest.get(
|
||||||
|
event.requestId
|
||||||
|
);
|
||||||
// If we connect late to the target, we could have missed the
|
// If we connect late to the target, we could have missed the
|
||||||
// requestWillBeSent event.
|
// requestWillBeSent event.
|
||||||
if (request) {
|
if (request) {
|
||||||
@ -471,12 +404,12 @@ export class NetworkManager extends EventEmitter {
|
|||||||
const request = new HTTPRequest(
|
const request = new HTTPRequest(
|
||||||
this._client,
|
this._client,
|
||||||
frame,
|
frame,
|
||||||
interceptionId,
|
fetchRequestId,
|
||||||
this._userRequestInterceptionEnabled,
|
this._userRequestInterceptionEnabled,
|
||||||
event,
|
event,
|
||||||
redirectChain
|
redirectChain
|
||||||
);
|
);
|
||||||
this._requestIdToRequest.set(event.requestId, request);
|
this._networkEventManager.httpRequest.set(event.requestId, request);
|
||||||
this.emit(NetworkManagerEmittedEvents.Request, request);
|
this.emit(NetworkManagerEmittedEvents.Request, request);
|
||||||
request.finalizeInterceptions();
|
request.finalizeInterceptions();
|
||||||
}
|
}
|
||||||
@ -484,7 +417,7 @@ export class NetworkManager extends EventEmitter {
|
|||||||
_onRequestServedFromCache(
|
_onRequestServedFromCache(
|
||||||
event: Protocol.Network.RequestServedFromCacheEvent
|
event: Protocol.Network.RequestServedFromCacheEvent
|
||||||
): void {
|
): void {
|
||||||
const request = this._requestIdToRequest.get(event.requestId);
|
const request = this._networkEventManager.httpRequest.get(event.requestId);
|
||||||
if (request) request._fromMemoryCache = true;
|
if (request) request._fromMemoryCache = true;
|
||||||
this.emit(NetworkManagerEmittedEvents.RequestServedFromCache, request);
|
this.emit(NetworkManagerEmittedEvents.RequestServedFromCache, request);
|
||||||
}
|
}
|
||||||
@ -514,11 +447,13 @@ export class NetworkManager extends EventEmitter {
|
|||||||
responseReceived: Protocol.Network.ResponseReceivedEvent,
|
responseReceived: Protocol.Network.ResponseReceivedEvent,
|
||||||
extraInfo: Protocol.Network.ResponseReceivedExtraInfoEvent | null
|
extraInfo: Protocol.Network.ResponseReceivedExtraInfoEvent | null
|
||||||
): void {
|
): void {
|
||||||
const request = this._requestIdToRequest.get(responseReceived.requestId);
|
const request = this._networkEventManager.httpRequest.get(
|
||||||
|
responseReceived.requestId
|
||||||
|
);
|
||||||
// FileUpload sends a response without a matching request.
|
// FileUpload sends a response without a matching request.
|
||||||
if (!request) return;
|
if (!request) return;
|
||||||
|
|
||||||
const extraInfos = this._requestIdToResponseExtraInfo(
|
const extraInfos = this._networkEventManager.responseExtraInfo(
|
||||||
responseReceived.requestId
|
responseReceived.requestId
|
||||||
);
|
);
|
||||||
if (extraInfos.length) {
|
if (extraInfos.length) {
|
||||||
@ -541,15 +476,17 @@ export class NetworkManager extends EventEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_onResponseReceived(event: Protocol.Network.ResponseReceivedEvent): void {
|
_onResponseReceived(event: Protocol.Network.ResponseReceivedEvent): void {
|
||||||
const request = this._requestIdToRequest.get(event.requestId);
|
const request = this._networkEventManager.httpRequest.get(event.requestId);
|
||||||
let extraInfo = null;
|
let extraInfo = null;
|
||||||
if (request && !request._fromMemoryCache && event.hasExtraInfo) {
|
if (request && !request._fromMemoryCache && event.hasExtraInfo) {
|
||||||
extraInfo = this._requestIdToResponseExtraInfo(event.requestId).shift();
|
extraInfo = this._networkEventManager
|
||||||
|
.responseExtraInfo(event.requestId)
|
||||||
|
.shift();
|
||||||
if (!extraInfo) {
|
if (!extraInfo) {
|
||||||
// Wait until we get the corresponding ExtraInfo event.
|
// Wait until we get the corresponding ExtraInfo event.
|
||||||
let resolver = null;
|
let resolver = null;
|
||||||
const promise = new Promise<void>((resolve) => (resolver = resolve));
|
const promise = new Promise<void>((resolve) => (resolver = resolve));
|
||||||
this._requestIdToQueuedEvents.set(event.requestId, {
|
this._networkEventManager.queuedEvents.set(event.requestId, {
|
||||||
responseReceived: event,
|
responseReceived: event,
|
||||||
promise,
|
promise,
|
||||||
resolver,
|
resolver,
|
||||||
@ -560,8 +497,11 @@ export class NetworkManager extends EventEmitter {
|
|||||||
this._emitResponseEvent(event, extraInfo);
|
this._emitResponseEvent(event, extraInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
responseWaitingForExtraInfoPromise(requestId: string): Promise<void> {
|
responseWaitingForExtraInfoPromise(
|
||||||
const responseReceived = this._requestIdToQueuedEvents.get(requestId);
|
networkRequestId: NetworkRequestId
|
||||||
|
): Promise<void> {
|
||||||
|
const responseReceived =
|
||||||
|
this._networkEventManager.queuedEvents.get(networkRequestId);
|
||||||
if (!responseReceived) return Promise.resolve();
|
if (!responseReceived) return Promise.resolve();
|
||||||
return responseReceived.promise;
|
return responseReceived.promise;
|
||||||
}
|
}
|
||||||
@ -572,18 +512,20 @@ export class NetworkManager extends EventEmitter {
|
|||||||
// We may have skipped a redirect response/request pair due to waiting for
|
// We may have skipped a redirect response/request pair due to waiting for
|
||||||
// this ExtraInfo event. If so, continue that work now that we have the
|
// this ExtraInfo event. If so, continue that work now that we have the
|
||||||
// request.
|
// request.
|
||||||
const redirectInfo = this._requestIdToQueuedRedirectInfo(
|
const redirectInfo = this._networkEventManager
|
||||||
event.requestId
|
.queuedRedirectInfo(event.requestId)
|
||||||
).shift();
|
.shift();
|
||||||
if (redirectInfo) {
|
if (redirectInfo) {
|
||||||
this._requestIdToResponseExtraInfo(event.requestId).push(event);
|
this._networkEventManager.responseExtraInfo(event.requestId).push(event);
|
||||||
this._onRequest(redirectInfo.event, redirectInfo.interceptionId);
|
this._onRequest(redirectInfo.event, redirectInfo.fetchRequestId);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// We may have skipped response and loading events because we didn't have
|
// We may have skipped response and loading events because we didn't have
|
||||||
// this ExtraInfo event yet. If so, emit those events now.
|
// this ExtraInfo event yet. If so, emit those events now.
|
||||||
const queuedEvents = this._requestIdToQueuedEvents.get(event.requestId);
|
const queuedEvents = this._networkEventManager.queuedEvents.get(
|
||||||
|
event.requestId
|
||||||
|
);
|
||||||
if (queuedEvents) {
|
if (queuedEvents) {
|
||||||
this._emitResponseEvent(queuedEvents.responseReceived, event);
|
this._emitResponseEvent(queuedEvents.responseReceived, event);
|
||||||
if (queuedEvents.loadingFinished) {
|
if (queuedEvents.loadingFinished) {
|
||||||
@ -597,29 +539,27 @@ export class NetworkManager extends EventEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Wait until we get another event that can use this ExtraInfo event.
|
// Wait until we get another event that can use this ExtraInfo event.
|
||||||
this._requestIdToResponseExtraInfo(event.requestId).push(event);
|
this._networkEventManager.responseExtraInfo(event.requestId).push(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
_forgetRequest(request: HTTPRequest, events: boolean): void {
|
_forgetRequest(request: HTTPRequest, events: boolean): void {
|
||||||
const requestId = request._requestId;
|
const requestId = request._requestId;
|
||||||
const interceptionId = request._interceptionId;
|
const interceptionId = request._interceptionId;
|
||||||
|
|
||||||
this._requestIdToRequest.delete(requestId);
|
this._networkEventManager.httpRequest.delete(requestId);
|
||||||
this._attemptedAuthentications.delete(interceptionId);
|
this._attemptedAuthentications.delete(interceptionId);
|
||||||
|
|
||||||
if (events) {
|
if (events) {
|
||||||
this._requestIdToRequestWillBeSentEvent.delete(requestId);
|
this._networkEventManager.forget(requestId);
|
||||||
this._requestIdToRequestPausedEvent.delete(requestId);
|
|
||||||
this._requestIdToQueuedEvents.delete(requestId);
|
|
||||||
this._requestIdToQueuedRedirectInfoMap.delete(requestId);
|
|
||||||
this._requestIdToResponseReceivedExtraInfo.delete(requestId);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_onLoadingFinished(event: Protocol.Network.LoadingFinishedEvent): void {
|
_onLoadingFinished(event: Protocol.Network.LoadingFinishedEvent): void {
|
||||||
// If the response event for this request is still waiting on a
|
// If the response event for this request is still waiting on a
|
||||||
// corresponding ExtraInfo event, then wait to emit this event too.
|
// corresponding ExtraInfo event, then wait to emit this event too.
|
||||||
const queuedEvents = this._requestIdToQueuedEvents.get(event.requestId);
|
const queuedEvents = this._networkEventManager.queuedEvents.get(
|
||||||
|
event.requestId
|
||||||
|
);
|
||||||
if (queuedEvents) {
|
if (queuedEvents) {
|
||||||
queuedEvents.loadingFinished = event;
|
queuedEvents.loadingFinished = event;
|
||||||
} else {
|
} else {
|
||||||
@ -628,7 +568,7 @@ export class NetworkManager extends EventEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_emitLoadingFinished(event: Protocol.Network.LoadingFinishedEvent): void {
|
_emitLoadingFinished(event: Protocol.Network.LoadingFinishedEvent): void {
|
||||||
const request = this._requestIdToRequest.get(event.requestId);
|
const request = this._networkEventManager.httpRequest.get(event.requestId);
|
||||||
// For certain requestIds we never receive requestWillBeSent event.
|
// For certain requestIds we never receive requestWillBeSent event.
|
||||||
// @see https://crbug.com/750469
|
// @see https://crbug.com/750469
|
||||||
if (!request) return;
|
if (!request) return;
|
||||||
@ -643,7 +583,9 @@ export class NetworkManager extends EventEmitter {
|
|||||||
_onLoadingFailed(event: Protocol.Network.LoadingFailedEvent): void {
|
_onLoadingFailed(event: Protocol.Network.LoadingFailedEvent): void {
|
||||||
// If the response event for this request is still waiting on a
|
// If the response event for this request is still waiting on a
|
||||||
// corresponding ExtraInfo event, then wait to emit this event too.
|
// corresponding ExtraInfo event, then wait to emit this event too.
|
||||||
const queuedEvents = this._requestIdToQueuedEvents.get(event.requestId);
|
const queuedEvents = this._networkEventManager.queuedEvents.get(
|
||||||
|
event.requestId
|
||||||
|
);
|
||||||
if (queuedEvents) {
|
if (queuedEvents) {
|
||||||
queuedEvents.loadingFailed = event;
|
queuedEvents.loadingFailed = event;
|
||||||
} else {
|
} else {
|
||||||
@ -652,7 +594,7 @@ export class NetworkManager extends EventEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_emitLoadingFailed(event: Protocol.Network.LoadingFailedEvent): void {
|
_emitLoadingFailed(event: Protocol.Network.LoadingFailedEvent): void {
|
||||||
const request = this._requestIdToRequest.get(event.requestId);
|
const request = this._networkEventManager.httpRequest.get(event.requestId);
|
||||||
// For certain requestIds we never receive requestWillBeSent event.
|
// For certain requestIds we never receive requestWillBeSent event.
|
||||||
// @see https://crbug.com/750469
|
// @see https://crbug.com/750469
|
||||||
if (!request) return;
|
if (!request) return;
|
||||||
|
Loading…
Reference in New Issue
Block a user