-
Notifications
You must be signed in to change notification settings - Fork 47.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scheduling Profiler: Move preprocessing to web worker and add loading…
… indicator (#19759) * Move preprocessData into a web worker * Add UI feedback for loading/import error states * Terminate worker when done handling profile * Add display density CSS variables
- Loading branch information
Showing
16 changed files
with
245 additions
and
93 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
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
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
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
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
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
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
13 changes: 13 additions & 0 deletions
13
packages/react-devtools-scheduling-profiler/src/import-worker/InvalidProfileError.js
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,13 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @flow | ||
*/ | ||
|
||
/** | ||
* An error thrown when an invalid profile could not be processed. | ||
*/ | ||
export default class InvalidProfileError extends Error {} |
File renamed without changes.
File renamed without changes.
57 changes: 57 additions & 0 deletions
57
packages/react-devtools-scheduling-profiler/src/import-worker/import.worker.js
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,57 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @flow | ||
*/ | ||
|
||
import 'regenerator-runtime/runtime'; | ||
|
||
import type {TimelineEvent} from '@elg/speedscope'; | ||
import type {ReactProfilerData} from '../types'; | ||
|
||
import preprocessData from './preprocessData'; | ||
import {readInputData} from './readInputData'; | ||
import InvalidProfileError from './InvalidProfileError'; | ||
|
||
declare var self: DedicatedWorkerGlobalScope; | ||
|
||
type ImportWorkerInputData = {| | ||
file: File, | ||
|}; | ||
|
||
export type ImportWorkerOutputData = | ||
| {|status: 'SUCCESS', processedData: ReactProfilerData|} | ||
| {|status: 'INVALID_PROFILE_ERROR', error: Error|} | ||
| {|status: 'UNEXPECTED_ERROR', error: Error|}; | ||
|
||
self.onmessage = async function(event: MessageEvent) { | ||
const {file} = ((event.data: any): ImportWorkerInputData); | ||
|
||
try { | ||
const readFile = await readInputData(file); | ||
const events: TimelineEvent[] = JSON.parse(readFile); | ||
if (events.length === 0) { | ||
throw new InvalidProfileError('No profiling data found in file.'); | ||
} | ||
|
||
self.postMessage({ | ||
status: 'SUCCESS', | ||
processedData: preprocessData(events), | ||
}); | ||
} catch (error) { | ||
if (error instanceof InvalidProfileError) { | ||
self.postMessage({ | ||
status: 'INVALID_PROFILE_ERROR', | ||
error, | ||
}); | ||
} else { | ||
self.postMessage({ | ||
status: 'UNEXPECTED_ERROR', | ||
error, | ||
}); | ||
} | ||
} | ||
}; |
Oops, something went wrong.