blob: d9437aebfc58873b834a5f10ac210869782ef21c [file] [edit]
// Copyright (C) 2025 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 {createAggregationTab} from '../../components/aggregation_adapter';
import {CounterTrack} from '../../components/tracks/counter_track';
import type {PerfettoPlugin} from '../../public/plugin';
import type {Trace} from '../../public/trace';
import {COUNTER_TRACK_KIND} from '../../public/track_kinds';
import {getMachineCount, getTrackName} from '../../public/utils';
import {TrackNode} from '../../public/workspace';
import {NUM, NUM_NULL, STR_NULL} from '../../trace_processor/query_result';
import StandardGroupsPlugin from '../dev.perfetto.StandardGroups';
import {PowerCounterSelectionAggregator} from './power_counter_selection_aggregator';
/**
* This plugin handles power rail counter tracks.
*/
export default class implements PerfettoPlugin {
static readonly id = 'dev.perfetto.PowerRails';
static readonly dependencies = [StandardGroupsPlugin];
async onTraceLoad(ctx: Trace): Promise<void> {
ctx.selection.registerAreaSelectionTab(
createAggregationTab(ctx, new PowerCounterSelectionAggregator(), 200),
);
await this.addPowerRailCounterTracks(ctx);
}
private async addPowerRailCounterTracks(ctx: Trace): Promise<void> {
const numMachines = await getMachineCount(ctx.engine);
const result = await ctx.engine.query(`
INCLUDE PERFETTO MODULE android.power_rails;
SELECT
track_id as trackId,
COALESCE(friendly_name, raw_power_rail_name) as name,
subsystem_name as subsystem,
machine_id as machine,
machine.label_index as machineLabelIndex
FROM android_power_rails_metadata
LEFT JOIN machine ON machine.id = machine_id
ORDER BY machine_id, subsystem_name, name
`);
if (result.numRows() === 0) {
return;
}
const it = result.iter({
trackId: NUM,
name: STR_NULL,
subsystem: STR_NULL,
machine: NUM,
machineLabelIndex: NUM_NULL,
});
const powerRailsGroup = new TrackNode({
name: 'Power Rails',
isSummary: true,
});
ctx.plugins
.getPlugin(StandardGroupsPlugin)
.getOrCreateStandardGroup(ctx.defaultWorkspace, 'POWER')
.addChildInOrder(powerRailsGroup);
const subsystemGroups = new Map<string, TrackNode>();
for (; it.valid(); it.next()) {
const {trackId, name, subsystem, machineLabelIndex} = it;
const trackName = getTrackName({
name,
kind: COUNTER_TRACK_KIND,
machineLabelIndex,
numMachines,
});
const uri = `/counter_${trackId}`;
const track = await CounterTrack.createMaterialized({
trace: ctx,
uri,
sqlSource: `
SELECT
ts,
value / 1000.0 AS value -- convert uJ to mJ
FROM counter
WHERE track_id = ${trackId}
`,
yMode: 'rate',
yRangeSharingKey: 'power_rails',
unit: 'mJ',
rateUnit: 'mW',
});
ctx.tracks.registerTrack({
uri,
tags: {
kinds: [COUNTER_TRACK_KIND],
trackIds: [trackId],
type: 'power_rails',
},
renderer: track,
});
const trackNode = new TrackNode({
uri,
name: trackName,
});
if (subsystem !== null && subsystem !== '') {
// Get or create subsystem group
let subsystemGroup = subsystemGroups.get(subsystem);
if (subsystemGroup === undefined) {
subsystemGroup = new TrackNode({
name: subsystem,
isSummary: true,
collapsed: false,
});
subsystemGroups.set(subsystem, subsystemGroup);
powerRailsGroup.addChildInOrder(subsystemGroup);
}
subsystemGroup.addChildInOrder(trackNode);
} else {
// No subsystem - add directly to power rails group
powerRailsGroup.addChildInOrder(trackNode);
}
}
}
}