| // Copyright (C) 2024 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 {Trace} from '../../public/trace'; |
| import {PerfettoPlugin, PluginDescriptor} from '../../public/plugin'; |
| import * as cameraConstants from './googleCameraConstants'; |
| |
| class GoogleCamera implements PerfettoPlugin { |
| private ctx!: Trace; |
| |
| async onTraceLoad(ctx: Trace): Promise<void> { |
| this.ctx = ctx; |
| |
| ctx.commands.registerCommand({ |
| id: 'com.google.android.GoogleCamera#LoadGoogleCameraStartupView', |
| name: 'Load google camera startup view', |
| callback: () => { |
| this.loadGCAStartupView(); |
| }, |
| }); |
| |
| ctx.commands.registerCommand({ |
| id: 'com.google.android.GoogleCamera#PinCameraRelatedTracks', |
| name: 'Pin camera related tracks', |
| callback: (trackNames) => { |
| trackNames = prompt( |
| 'List of additional track names that you would like to pin separated by commas', |
| '', |
| ); |
| const trackNameList = trackNames.split(',').map(function ( |
| item: string, |
| ) { |
| return item.trim(); |
| }); |
| this.pinTracks(trackNameList); |
| }, |
| }); |
| } |
| |
| private loadGCAStartupView() { |
| this.pinTracks(cameraConstants.MAIN_THREAD_TRACK); |
| this.pinTracks(cameraConstants.STARTUP_RELATED_TRACKS); |
| } |
| |
| private pinTracks(trackNames: ReadonlyArray<string>) { |
| this.ctx.workspace.flatTracks.forEach((track) => { |
| if (trackNames.includes(track.displayName)) { |
| track.pin(); |
| } |
| }); |
| } |
| } |
| |
| export const plugin: PluginDescriptor = { |
| pluginId: 'com.google.android.GoogleCamera', |
| plugin: GoogleCamera, |
| }; |