blob: d9d5ed22f40086ea6a15981a1c15f41372c71fa9 [file] [log] [blame]
// Copyright (C) 2023 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 {
Plugin,
PluginContext,
PluginContextTrace,
PluginDescriptor,
} from '../../public';
import {
ActiveCPUCountTrack,
addActiveCPUCountTrack,
} from './active_cpu_count';
import {
addRunnableThreadCountTrack,
RunnableThreadCountTrack,
} from './runnable_thread_count';
class SchedPlugin implements Plugin {
async onTraceLoad(ctx: PluginContextTrace) {
ctx.registerTrack({
uri: RunnableThreadCountTrack.kind,
track: (trackCtx) => new RunnableThreadCountTrack(
{engine: ctx.engine, trackKey: trackCtx.trackKey}),
});
ctx.registerTrack({
uri: ActiveCPUCountTrack.kind,
track: (trackCtx) => new ActiveCPUCountTrack(trackCtx, ctx.engine),
});
}
onActivate(ctx: PluginContext): void {
ctx.registerCommand({
id: 'dev.perfetto.Sched.AddRunnableThreadCountTrackCommand',
name: 'Add runnable thread count track',
callback: () => addRunnableThreadCountTrack(),
});
ctx.registerCommand({
id: 'dev.perfetto.Sched.AddActiveCPUCountTrackCommand',
name: 'Add active CPU count track',
callback: () => addActiveCPUCountTrack(),
});
for (const cpuType of ['big', 'little', 'mid']) {
ctx.registerCommand({
id: `dev.perfetto.Sched.AddActiveCPUCountTrackCommand.${cpuType}`,
name: `Add active ${cpuType} CPU count track`,
callback: () => addActiveCPUCountTrack(cpuType),
});
}
}
}
export const plugin: PluginDescriptor = {
pluginId: 'perfetto.Sched',
plugin: SchedPlugin,
};