forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathRNPerfMetrics.ts
More file actions
550 lines (473 loc) · 15 KB
/
Copy pathRNPerfMetrics.ts
File metadata and controls
550 lines (473 loc) · 15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
// Copyright (c) Meta Platforms, Inc. and affiliates.
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import type {ParsedURL} from '../common/ParsedURL.js';
import type {DeveloperResourceLoaded} from './UserMetrics.js';
export type RNReliabilityEventListener = (event: DecoratedReactNativeChromeDevToolsEvent) => void;
let instance: RNPerfMetrics|null = null;
export function getInstance(): RNPerfMetrics {
if (instance === null) {
instance = new RNPerfMetrics();
}
return instance;
}
type PanelLocation = 'main'|'drawer';
type UnsubscribeFn = () => void;
class RNPerfMetrics {
readonly #consoleErrorMethod = 'error';
#listeners = new Set<RNReliabilityEventListener>();
#launchId: string|null = null;
#appId: string|null = null;
#entryPoint: EntryPoint = 'rn_inspector';
#telemetryInfo: Object = {};
// map of panel location to panel name
#currentPanels = new Map<PanelLocation, string>();
isEnabled(): boolean {
return globalThis.enableReactNativePerfMetrics === true;
}
addEventListener(listener: RNReliabilityEventListener): UnsubscribeFn {
this.#listeners.add(listener);
const unsubscribe = (): void => {
this.#listeners.delete(listener);
};
return unsubscribe;
}
removeAllEventListeners(): void {
this.#listeners.clear();
}
sendEvent(event: ReactNativeChromeDevToolsEvent): void {
if (globalThis.enableReactNativePerfMetrics !== true) {
return;
}
const decoratedEvent = this.#decorateEvent(event);
const errors = [];
for (const listener of this.#listeners) {
try {
listener(decoratedEvent);
} catch (e) {
errors.push(e);
}
}
if (errors.length > 0) {
const error = new AggregateError(errors);
console.error('Error occurred when calling event listeners', error);
}
}
registerPerfMetricsGlobalPostMessageHandler(): void {
if (globalThis.enableReactNativePerfMetrics !== true ||
globalThis.enableReactNativePerfMetricsGlobalPostMessage !== true) {
return;
}
this.addEventListener(event => {
window.postMessage({event, tag: 'react-native-chrome-devtools-perf-metrics'}, window.location.origin);
});
}
registerGlobalErrorReporting(): void {
window.addEventListener('error', event => {
const [message, error] = maybeWrapError(`[RNPerfMetrics] uncaught error: ${event.message}`, event.error);
this.sendEvent({
eventName: 'Browser.Error',
params: {
type: 'error',
message,
error,
},
});
}, {passive: true});
window.addEventListener('unhandledrejection', event => {
const [message, error] = maybeWrapError('[RNPerfMetrics] unhandled promise rejection', event.reason);
this.sendEvent({
eventName: 'Browser.Error',
params: {
type: 'rejectedPromise',
message,
error,
},
});
}, {passive: true});
// Indirection for `console` ensures minifier won't strip this out.
const cons = globalThis.console;
const originalConsoleError = cons[this.#consoleErrorMethod];
cons[this.#consoleErrorMethod] = (...args: unknown[]) => {
try {
const maybeError = args[0];
const [message, error] = maybeWrapError('[RNPerfMetrics] console.error', maybeError);
this.sendEvent({eventName: 'Browser.Error', params: {message, error, type: 'consoleError'}});
} catch (e) {
const [message, error] = maybeWrapError('[RNPerfMetrics] Error handling console.error', e);
this.sendEvent({eventName: 'Browser.Error', params: {message, error, type: 'consoleError'}});
} finally {
originalConsoleError.apply(cons, args);
}
};
}
setLaunchId(launchId: string|null): void {
this.#launchId = launchId;
}
setAppId(appId: string|null): void {
this.#appId = appId;
}
setTelemetryInfo(telemetryInfo: Object): void {
this.#telemetryInfo = telemetryInfo;
}
entryPointLoadingStarted(entryPoint: EntryPoint): void {
this.#entryPoint = entryPoint;
this.sendEvent({
eventName: 'Entrypoint.LoadingStarted',
entryPoint,
});
}
entryPointLoadingFinished(entryPoint: EntryPoint): void {
this.sendEvent({
eventName: 'Entrypoint.LoadingFinished',
entryPoint,
});
}
browserVisibilityChanged(visibilityState: BrowserVisibilityChangeEvent['params']['visibilityState']): void {
this.sendEvent({
eventName: 'Browser.VisibilityChange',
params: {
visibilityState,
},
});
}
remoteDebuggingTerminated(params: {reason?: string, code?: string, errorType?: string} = {}): void {
this.sendEvent({eventName: 'Connection.DebuggingTerminated', params});
}
developerResourceLoadingStarted(parsedURL: ParsedURL, loadingMethod: DeveloperResourceLoaded): void {
const url = maybeTruncateDeveloperResourceUrl(parsedURL);
this.sendEvent({eventName: 'DeveloperResource.LoadingStarted', params: {url, loadingMethod}});
}
developerResourceLoadingFinished(parsedURL: ParsedURL, loadingMethod: DeveloperResourceLoaded, result: {
success: boolean,
errorDescription?: {
message?: string|null|undefined,
},
}): void {
const url = maybeTruncateDeveloperResourceUrl(parsedURL);
this.sendEvent({
eventName: 'DeveloperResource.LoadingFinished',
params: {
url,
loadingMethod,
success: result.success,
errorMessage: result.errorDescription?.message,
},
});
}
developerResourcesStartupLoadingFinishedEvent(numResources: number, timeSinceLaunch: DOMHighResTimeStamp): void {
this.sendEvent({
eventName: 'DeveloperResources.StartupLoadingFinished',
params: {
numResources,
timeSinceLaunch,
},
});
}
fuseboxSetClientMetadataStarted(): void {
this.sendEvent({eventName: 'FuseboxSetClientMetadataStarted'});
}
fuseboxSetClientMetadataFinished(success: boolean, maybeError?: unknown): void {
if (success) {
this.sendEvent({eventName: 'FuseboxSetClientMetadataFinished', params: {success: true}});
} else {
const [errorMessage, error] = maybeWrapError('[RNPerfMetrics] Fusebox setClientMetadata failed', maybeError);
this.sendEvent({
eventName: 'FuseboxSetClientMetadataFinished',
params: {
success: false,
error,
errorMessage,
},
});
}
}
heapSnapshotStarted(): void {
this.sendEvent({
eventName: 'MemoryPanelActionStarted',
params: {
action: 'snapshot',
},
});
}
heapSnapshotFinished(success: boolean): void {
this.sendEvent({
eventName: 'MemoryPanelActionFinished',
params: {
action: 'snapshot',
success,
},
});
}
heapProfilingStarted(): void {
this.sendEvent({
eventName: 'MemoryPanelActionStarted',
params: {
action: 'profiling',
},
});
}
heapProfilingFinished(success: boolean): void {
this.sendEvent({
eventName: 'MemoryPanelActionFinished',
params: {
action: 'profiling',
success,
},
});
}
heapSamplingStarted(): void {
this.sendEvent({
eventName: 'MemoryPanelActionStarted',
params: {
action: 'sampling',
},
});
}
heapSamplingFinished(success: boolean): void {
this.sendEvent({
eventName: 'MemoryPanelActionFinished',
params: {
action: 'sampling',
success,
},
});
}
stackTraceSymbolicationSucceeded(specialHermesFrameTypes: string[]): void {
this.sendEvent({
eventName: 'StackTraceSymbolicationSucceeded',
params: {
specialHermesFrameTypes,
},
});
}
stackTraceSymbolicationFailed(stackTrace: string, line: string, reason: string): void {
this.sendEvent({
eventName: 'StackTraceSymbolicationFailed',
params: {
stackTrace,
line,
reason,
},
});
}
stackTraceFrameUrlResolutionSucceeded(): void {
this.sendEvent({
eventName: 'StackTraceFrameUrlResolutionSucceeded',
});
}
stackTraceFrameUrlResolutionFailed(uniqueUrls: string[]): void {
this.sendEvent({
eventName: 'StackTraceFrameUrlResolutionFailed',
params: {
uniqueUrls,
},
});
}
manualBreakpointSetSucceeded(bpSettingDuration: number): void {
this.sendEvent({
eventName: 'ManualBreakpointSetSucceeded',
params: {
bpSettingDuration,
}
});
}
stackTraceFrameClicked(isLinkified: boolean): void {
this.sendEvent({
eventName: 'StackTraceFrameClicked',
params: {
isLinkified,
}
});
}
panelShown(_panelName: string, _isLaunching?: boolean): void {
// no-op
// We only care about the "main" and "drawer" panels for now via panelShownInLocation(…)
// (This function is called for other "sub"-panels)
}
panelShownInLocation(panelName: string, location: PanelLocation): void {
// The current panel name will be sent along via #decorateEvent(…)
this.sendEvent({eventName: 'PanelShown', params: {location, newPanelName: panelName}});
// So we should only update the current panel name to the new one after sending the event
this.#currentPanels.set(location, panelName);
}
#decorateEvent(event: ReactNativeChromeDevToolsEvent): Readonly<DecoratedReactNativeChromeDevToolsEvent> {
const commonFields: CommonEventFields = {
timestamp: getPerfTimestamp(),
launchId: this.#launchId,
appId: this.#appId,
entryPoint: this.#entryPoint,
telemetryInfo: this.#telemetryInfo,
currentPanels: this.#currentPanels,
};
return {
...event,
...commonFields,
};
}
}
function getPerfTimestamp(): DOMHighResTimeStamp {
return performance.timeOrigin + performance.now();
}
function maybeTruncateDeveloperResourceUrl(parsedURL: ParsedURL): string {
const {url} = parsedURL;
return parsedURL.scheme === 'http' || parsedURL.scheme === 'https' ?
url :
`${url.slice(0, 100)} …(omitted ${url.length - 100} characters)`;
}
function maybeWrapError(baseMessage: string, error: unknown): [string, Error] {
if (error instanceof Error) {
const message = `${baseMessage}: ${error.message}`;
return [message, error];
}
const message = `${baseMessage}: ${String(error)}`;
return [message, new Error(message, {cause: error})];
}
type EntryPoint = 'rn_fusebox'|'rn_inspector';
type CommonEventFields = Readonly<{
timestamp: DOMHighResTimeStamp,
launchId: string | void | null,
appId: string | void | null,
entryPoint: EntryPoint,
telemetryInfo: Object,
currentPanels: Map<PanelLocation, string>,
}>;
export type EntrypointLoadingStartedEvent = Readonly<{
eventName: 'Entrypoint.LoadingStarted',
entryPoint: EntryPoint,
}>;
export type EntrypointLoadingFinishedEvent = Readonly<{
eventName: 'Entrypoint.LoadingFinished',
entryPoint: EntryPoint,
}>;
export type DebuggerReadyEvent = Readonly<{
eventName: 'Debugger.IsReadyToPause',
}>;
export type BrowserVisibilityChangeEvent = Readonly<{
eventName: 'Browser.VisibilityChange',
params: Readonly<{
visibilityState: 'hidden' | 'visible',
}>,
}>;
export type BrowserErrorEvent = Readonly<{
eventName: 'Browser.Error',
params: Readonly<{
message: string,
error: Error,
type: 'error' | 'rejectedPromise' | 'consoleError',
}>,
}>;
export type RemoteDebuggingTerminatedEvent = Readonly<{
eventName: 'Connection.DebuggingTerminated',
params: Readonly<{
reason?: string,
code?: string,
errorType?: string,
}>,
}>;
export type DeveloperResourceLoadingStartedEvent = Readonly<{
eventName: 'DeveloperResource.LoadingStarted',
params: Readonly<{
url: string,
loadingMethod: DeveloperResourceLoaded,
}>,
}>;
export type DeveloperResourceLoadingFinishedEvent = Readonly<{
eventName: 'DeveloperResource.LoadingFinished',
params: Readonly<{
url: string,
loadingMethod: DeveloperResourceLoaded,
success: boolean,
errorMessage: string | null | undefined,
}>,
}>;
export type DeveloperResourcesStartupLoadingFinishedEvent = Readonly<{
eventName: 'DeveloperResources.StartupLoadingFinished',
params: Readonly<{
numResources: number,
timeSinceLaunch: DOMHighResTimeStamp,
}>,
}>;
export type FuseboxSetClientMetadataStartedEvent = Readonly<{
eventName: 'FuseboxSetClientMetadataStarted',
}>;
export type FuseboxSetClientMetadataFinishedEvent = Readonly<{
eventName: 'FuseboxSetClientMetadataFinished',
params: Readonly<{
success: true,
}|{
success: false,
error: Error,
errorMessage: string,
}>,
}>;
export type MemoryPanelActionStartedEvent = Readonly<{
eventName: 'MemoryPanelActionStarted',
params: Readonly<{
action: 'profiling' | 'sampling' | 'snapshot',
}>,
}>;
export type MemoryPanelActionFinishedEvent = Readonly<{
eventName: 'MemoryPanelActionFinished',
params: Readonly<{
action: 'profiling' | 'sampling' | 'snapshot',
success: boolean,
}>,
}>;
export type PanelShownEvent = Readonly<{
eventName: 'PanelShown',
params: Readonly<{
location: PanelLocation,
newPanelName: string,
}>,
}>;
export type PanelClosedEvent = Readonly<{
eventName: 'PanelClosed',
params: Readonly<{
panelName: string,
}>,
}>;
export type StackTraceSymbolicationSucceeded = Readonly<{
eventName: 'StackTraceSymbolicationSucceeded',
params: Readonly<{
specialHermesFrameTypes: string[],
}>,
}>;
export type StackTraceSymbolicationFailed = Readonly<{
eventName: 'StackTraceSymbolicationFailed',
params: Readonly<{
stackTrace: string,
line: string,
reason: string,
}>,
}>;
export type StackTraceFrameUrlResolutionSucceeded = Readonly<{
eventName: 'StackTraceFrameUrlResolutionSucceeded',
}>;
export type StackTraceFrameUrlResolutionFailed = Readonly<{
eventName: 'StackTraceFrameUrlResolutionFailed',
params: Readonly<{
uniqueUrls: string[],
}>,
}>;
export type StackTraceFrameClicked = Readonly<{
eventName: 'StackTraceFrameClicked',
params: Readonly<{
isLinkified: boolean,
}>,
}>;
export type ManualBreakpointSetSucceeded = Readonly<{
eventName: 'ManualBreakpointSetSucceeded',
params: Readonly<{
bpSettingDuration: number,
}>,
}>;
export type ReactNativeChromeDevToolsEvent =
EntrypointLoadingStartedEvent|EntrypointLoadingFinishedEvent|DebuggerReadyEvent|BrowserVisibilityChangeEvent|
BrowserErrorEvent|RemoteDebuggingTerminatedEvent|DeveloperResourcesStartupLoadingFinishedEvent|
DeveloperResourceLoadingStartedEvent|DeveloperResourceLoadingFinishedEvent|FuseboxSetClientMetadataStartedEvent|
FuseboxSetClientMetadataFinishedEvent|MemoryPanelActionStartedEvent|MemoryPanelActionFinishedEvent|PanelShownEvent|
PanelClosedEvent|StackTraceSymbolicationSucceeded|StackTraceSymbolicationFailed|StackTraceFrameUrlResolutionSucceeded|
StackTraceFrameUrlResolutionFailed|ManualBreakpointSetSucceeded|StackTraceFrameClicked;
export type DecoratedReactNativeChromeDevToolsEvent = CommonEventFields&ReactNativeChromeDevToolsEvent;