gecko-dev/devtools/client/performance-new
Markus Stange 33ad3f97af Bug 1723215 - Merge local and remote objdir prefs. r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D121436
2021-08-04 20:27:32 +00:00
..
@types Bug 1615066 - Add support for new profiler-get-symbols version which supports partial file reading. r=canaltinova 2021-07-30 20:39:54 +00:00
aboutprofiling Bug 1721072 - Stop supplying a perfFront argument to about:profiling's gInit function. r=canaltinova 2021-07-22 18:54:30 +00:00
components Bug 1721072 - Move perfFront out of the redux state, into component props. r=canaltinova 2021-07-22 18:54:29 +00:00
popup Bug 1723215 - Merge local and remote objdir prefs. r=canaltinova 2021-08-04 20:27:32 +00:00
store Bug 1721072 - Move perfFront out of the redux state, into component props. r=canaltinova 2021-07-22 18:54:29 +00:00
test Bug 1613705 - lint fix. a=lint-fix. CLOSED TREE 2021-07-30 22:11:59 +03:00
.eslintrc.js Bug 1622328 - add license info to all eslintrc files r=Standard8,webcompat-reviewers,miketaylr 2020-03-19 13:47:51 +00:00
README.md Bug 1621022 - Change the workflow of enabling the profiler menu button; r=canaltinova 2020-03-25 15:34:59 +00:00
browser.js Bug 1721109 - Move ProfilerGetSymbols code out of toolkit/components/extensions and into devtools directories. r=canaltinova 2021-07-29 20:28:44 +00:00
frame-script.js Bug 1607801 - Upgrade TypeScript to v3.8.3; r=julienw 2020-04-28 17:48:53 +00:00
index.xhtml Bug 1695253 - Replaced DTD/xhtml1-strict.dtd which lead to broken network loads. r=mossop 2021-03-24 16:52:06 +00:00
initializer.js Bug 1721109 - Move createLocalSymbolicationService into symbolication.jsm.js. r=canaltinova 2021-07-29 20:28:40 +00:00
moz.build Bug 1721109 - Move ProfilerGetSymbols code out of toolkit/components/extensions and into devtools directories. r=canaltinova 2021-07-29 20:28:44 +00:00
package.json Bug 1721109 - Update TypeScript dependencies. r=canaltinova 2021-07-29 20:28:44 +00:00
panel.js Bug 1721072 - Properly await gInit's completion. r=canaltinova 2021-07-22 18:54:26 +00:00
profiler_get_symbols.js Bug 1615066 - Add support for new profiler-get-symbols version which supports partial file reading. r=canaltinova 2021-07-30 20:39:54 +00:00
symbolication-worker.js Bug 1615066 - Add support for new profiler-get-symbols version which supports partial file reading. r=canaltinova 2021-07-30 20:39:54 +00:00
symbolication.jsm.js Bug 1615066 - Add support for new profiler-get-symbols version which supports partial file reading. r=canaltinova 2021-07-30 20:39:54 +00:00
tsconfig.json
typescript-lazy-load.jsm.js Bug 1607801 - Create a TypeScript friendly lazy loading mechanism; r=ochameau 2020-04-28 17:51:09 +00:00
typescript.md Bug 1673419 - [devtools] Support performance-new typescript checks in devtools node try runner r=gregtatum,nchevobbe 2020-10-30 17:15:55 +00:00
utils.js Bug 1715922 - Windows timer resolution is enhanced by default, except if notimerresolutionchange feature is set - r=canaltinova 2021-06-21 11:48:23 +00:00
yarn.lock Bug 1721109 - Update TypeScript dependencies. r=canaltinova 2021-07-29 20:28:44 +00:00

README.md

Performance New

This folder contains the code for the new performance panel that is a simplified recorder that works to record a performance profile, and inject it into profiler.firefox.com. This tool is not in charge of any of the analysis, only the recording.

TypeScript

This project contains TypeScript types in JSDoc comments. To run the type checker point your terminal to this directory, and run yarn install, then yarn test. In addition type hints should work if your editor is configured to speak TypeScript.

Overall Architecture

This project has a few different views explained below.

DevTools

This is a simplified recording panel that includes a preset dropdown. It's embedded in the DevTools. It's not the preferred way to use the profiler, but is included so that users are comfortable with existing workflows. This is built using React/Redux. The store's code is shared by all the views, but each view initializes it separately. The popup does not use React/Redux (explained later). When editing a custom preset, it takes you to "about:profiling" in a new tab.

This panel works similarly to the other DevTools panels. The devtools/client/performance-new/initializer.js is in charge of initializing the page specifically for the DevTools workflow. This script creates a PerfActor that is then used for talking to the Gecko Profiler component.

DevTools Remote

This is the same UI and codebase as the DevTools panel, but it's accessible from about:debugging for remote targets. It uses the PerfFront for a remote target to profile on the remote device. When editing a custom preset, it takes you to "about:profiling" in the same modal.

This page is initialized with the PerfActor, but it will target a remote debuggee, like an Android Phone.

about:profiling

This view uses React/Redux for the UI, and is a full page for configuring the profiler. There are no controls for recording a profile, only editing the settings. It shares the same Redux store code as DevTools (instantiated separately), but uses different React components.

about:profiling Remote

This is the remote view of the about:profiling page. It is embedded in the about:debugging profiler modal dialog, and it is initialized by about:debugging. It uses preferences that are postfixed with ".remote", so that a second set of preferences are shared for how remote profiling is configured.

Profiler Popup

The popup is enabled by default on Nightly and Dev Edition, but it's not added to the navbar. Once the profiler menu button is added to the navbar, or other places in the UI, the shortcuts for the profiler will work. In any release channel the popup can be enabled by visiting profiler.firefox.com and clicking Enable Profiler Menu Button. This flips the pref "devtools.performance.popup.feature-flag" and the profiler button will always be available in the list of buttons for the Firefox UI.

The popup UI is not a React Redux app, but has a vanilla browser chrome implementation. This was done to make the popup as fast as possible, with a trade-off of some complexity with dealing with the non-standard (i.e. not a normal webpage) browser chrome environment. The popup is designed to be as low overhead as possible in order to get the cleanest performance profiles. Special care must be taken to not impact browser startup times when working with this implementation, as it also turns on the global profiler shortcuts.

Injecting profiles into profiler.firefox.com

After a profile has been collected, it needs to be sent to profiler.firefox.com for analysis. This is done by using browser APIs to open a new tab, and then injecting the profile into the page through a frame script. See frame-script.js for implementation details. Both the DevTools Panel and the Popup use this frame script.