| // Copyright (C) 2022 The Android Open Source Project |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| import {v4 as uuidv4} from 'uuid'; |
| |
| import {Actions, AddTrackArgs, DeferredAction} from '../../common/actions'; |
| import {Engine} from '../../common/engine'; |
| import {featureFlags} from '../../common/feature_flags'; |
| import {ObjectById} from '../../common/state'; |
| import { |
| Plugin, |
| PluginContext, |
| PluginDescriptor, |
| PrimaryTrackSortKey, |
| } from '../../public'; |
| import {CustomSqlDetailsPanelConfig} from '../custom_sql_table_slices'; |
| import {NULL_TRACK_KIND} from '../null_track'; |
| |
| import {ChromeTasksScrollJankTrack} from './chrome_tasks_scroll_jank_track'; |
| import {addLatencyTracks, EventLatencyTrack} from './event_latency_track'; |
| import { |
| addScrollJankV3ScrollTrack, |
| ScrollJankV3Track, |
| } from './scroll_jank_v3_track'; |
| import {addTopLevelScrollTrack, TopLevelScrollTrack} from './scroll_track'; |
| |
| export {Data} from '../chrome_slices'; |
| |
| export const ENABLE_CHROME_SCROLL_JANK_PLUGIN = featureFlags.register({ |
| id: 'enableChromeScrollJankPlugin', |
| name: 'Enable Chrome Scroll Jank plugin', |
| description: 'Adds new tracks for scroll jank in Chrome', |
| defaultValue: false, |
| }); |
| |
| export const ENABLE_SCROLL_JANK_PLUGIN_V2 = featureFlags.register({ |
| id: 'enableScrollJankPluginV2', |
| name: 'Enable Scroll Jank plugin V2', |
| description: 'Adds new tracks and visualizations for scroll jank.', |
| defaultValue: false, |
| }); |
| |
| export const SCROLL_JANK_GROUP_ID = 'chrome-scroll-jank-track-group'; |
| |
| export type ScrollJankTracks = { |
| tracksToAdd: AddTrackArgs[], |
| }; |
| |
| export type ScrollJankTrackGroup = { |
| tracks: ScrollJankTracks; addTrackGroup: DeferredAction |
| } |
| |
| export interface ScrollJankTrackSpec { |
| id: string; |
| sqlTableName: string; |
| detailsPanelConfig: CustomSqlDetailsPanelConfig; |
| } |
| |
| // Global state for the scroll jank plugin. |
| export class ScrollJankPluginState { |
| private static instance: ScrollJankPluginState; |
| private tracks: ObjectById<ScrollJankTrackSpec>; |
| |
| private constructor() { |
| this.tracks = {}; |
| } |
| |
| public static getInstance(): ScrollJankPluginState { |
| if (!ScrollJankPluginState.instance) { |
| ScrollJankPluginState.instance = new ScrollJankPluginState(); |
| } |
| |
| return ScrollJankPluginState.instance; |
| } |
| |
| public registerTrack(args: { |
| kind: string, |
| trackId: string, |
| tableName: string, |
| detailsPanelConfig: CustomSqlDetailsPanelConfig, |
| }): void { |
| this.tracks[args.kind] = { |
| id: args.trackId, |
| sqlTableName: args.tableName, |
| detailsPanelConfig: args.detailsPanelConfig, |
| }; |
| } |
| |
| public unregisterTrack(kind: string): void { |
| delete this.tracks[kind]; |
| } |
| |
| public getTrack(kind: string): ScrollJankTrackSpec|undefined { |
| return this.tracks[kind]; |
| } |
| } |
| |
| export async function getScrollJankTracks(engine: Engine): |
| Promise<ScrollJankTrackGroup> { |
| const result: ScrollJankTracks = { |
| tracksToAdd: [], |
| }; |
| |
| const summaryTrackId = uuidv4(); |
| |
| result.tracksToAdd.push({ |
| engineId: engine.id, |
| kind: NULL_TRACK_KIND, |
| trackSortKey: PrimaryTrackSortKey.ASYNC_SLICE_TRACK, |
| name: ``, |
| trackGroup: undefined, |
| config: {}, |
| id: summaryTrackId, |
| }); |
| |
| const scrolls = addTopLevelScrollTrack(engine); |
| for (const scroll of (await scrolls).tracksToAdd) { |
| result.tracksToAdd.push(scroll); |
| } |
| |
| const janks = addScrollJankV3ScrollTrack(engine); |
| for (const jank of (await janks).tracksToAdd) { |
| result.tracksToAdd.push(jank); |
| } |
| |
| const eventLatencies = addLatencyTracks(engine); |
| for (const eventLatency of (await eventLatencies).tracksToAdd) { |
| result.tracksToAdd.push(eventLatency); |
| } |
| |
| const addTrackGroup = Actions.addTrackGroup({ |
| engineId: engine.id, |
| name: 'Chrome Scroll Jank', |
| id: SCROLL_JANK_GROUP_ID, |
| collapsed: false, |
| summaryTrackId, |
| fixedOrdering: true, |
| }); |
| |
| return {tracks: result, addTrackGroup}; |
| } |
| |
| class ChromeScrollJankPlugin implements Plugin { |
| onActivate(ctx: PluginContext): void { |
| ctx.LEGACY_registerTrack(ChromeTasksScrollJankTrack); |
| ctx.LEGACY_registerTrack(EventLatencyTrack); |
| ctx.LEGACY_registerTrack(ScrollJankV3Track); |
| ctx.LEGACY_registerTrack(TopLevelScrollTrack); |
| } |
| } |
| |
| export const plugin: PluginDescriptor = { |
| pluginId: 'perfetto.ChromeScrollJank', |
| plugin: ChromeScrollJankPlugin, |
| }; |