blob: cbaabb10d9c1bdf3d92428d5837fc764ada3c769 [file] [log] [blame]
// Copyright (C) 2020 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 {hsluvToHex} from 'hsluv';
import {searchSegment} from '../../base/binary_search';
import {Actions} from '../../common/actions';
import {hslForSlice} from '../../common/colorizer';
import {fromNs, toNs} from '../../common/time';
import {globals} from '../../frontend/globals';
import {TimeScale} from '../../frontend/time_scale';
import {NewTrackArgs, Track} from '../../frontend/track';
import {trackRegistry} from '../../frontend/track_registry';
import {Config, CPU_PROFILE_TRACK_KIND, Data} from './common';
const BAR_HEIGHT = 3;
const MARGIN_TOP = 4.5;
const RECT_HEIGHT = 30.5;
function colorForSample(callsiteId: number, isHovered: boolean): string {
return hsluvToHex(hslForSlice(String(callsiteId), isHovered));
}
class CpuProfileTrack extends Track<Config, Data> {
static readonly kind = CPU_PROFILE_TRACK_KIND;
static create(args: NewTrackArgs): CpuProfileTrack {
return new CpuProfileTrack(args);
}
private centerY = this.getHeight() / 2 + BAR_HEIGHT;
private markerWidth = (this.getHeight() - MARGIN_TOP - BAR_HEIGHT) / 2;
private hoveredTs: number|undefined = undefined;
constructor(args: NewTrackArgs) {
super(args);
}
getHeight() {
return MARGIN_TOP + RECT_HEIGHT - 1;
}
renderCanvas(ctx: CanvasRenderingContext2D): void {
const {
timeScale,
} = globals.frontendLocalState;
const data = this.data();
if (data === undefined) return;
for (let i = 0; i < data.tsStarts.length; i++) {
const centerX = data.tsStarts[i];
const selection = globals.state.currentSelection;
const isHovered = this.hoveredTs === centerX;
const isSelected = selection !== null &&
selection.kind === 'CPU_PROFILE_SAMPLE' && selection.ts === centerX;
const strokeWidth = isSelected ? 3 : 0;
this.drawMarker(
ctx,
timeScale.timeToPx(fromNs(centerX)),
this.centerY,
isHovered,
strokeWidth,
data.callsiteId[i]);
}
let startX = data.tsStarts.length ? data.tsStarts[0] : -1;
let endX = data.tsStarts.length ? data.tsStarts[0] : -1;
let lastCallsiteId = data.callsiteId.length ? data.callsiteId[0] : -1;
for (let i = 0; i < data.tsStarts.length; i++) {
const centerX = data.tsStarts[i];
const callsiteId = data.callsiteId[i];
if (lastCallsiteId !== callsiteId) {
if (startX !== endX) {
const leftPx = timeScale.timeToPx(fromNs(startX)) - this.markerWidth;
const rightPx = timeScale.timeToPx(fromNs(endX)) + this.markerWidth;
const width = rightPx - leftPx;
ctx.fillStyle = colorForSample(lastCallsiteId, false);
ctx.fillRect(leftPx, MARGIN_TOP, width, BAR_HEIGHT);
}
startX = centerX;
}
endX = centerX;
lastCallsiteId = callsiteId;
}
}
drawMarker(
ctx: CanvasRenderingContext2D, x: number, y: number, isHovered: boolean,
strokeWidth: number, callsiteId: number): void {
ctx.beginPath();
ctx.moveTo(x - this.markerWidth, y - this.markerWidth);
ctx.lineTo(x, y + this.markerWidth);
ctx.lineTo(x + this.markerWidth, y - this.markerWidth);
ctx.lineTo(x - this.markerWidth, y - this.markerWidth);
ctx.closePath();
ctx.fillStyle = colorForSample(callsiteId, isHovered);
ctx.fill();
if (strokeWidth > 0) {
ctx.strokeStyle = colorForSample(callsiteId, false);
ctx.lineWidth = strokeWidth;
ctx.stroke();
}
}
onMouseMove({x, y}: {x: number, y: number}) {
const data = this.data();
if (data === undefined) return;
const {timeScale} = globals.frontendLocalState;
const time = toNs(timeScale.pxToTime(x));
const [left, right] = searchSegment(data.tsStarts, time);
const index = this.findTimestampIndex(left, timeScale, data, x, y, right);
this.hoveredTs = index === -1 ? undefined : data.tsStarts[index];
}
onMouseOut() {
this.hoveredTs = undefined;
}
onMouseClick({x, y}: {x: number, y: number}) {
const data = this.data();
if (data === undefined) return false;
const {timeScale} = globals.frontendLocalState;
const time = toNs(timeScale.pxToTime(x));
const [left, right] = searchSegment(data.tsStarts, time);
const index = this.findTimestampIndex(left, timeScale, data, x, y, right);
if (index !== -1) {
const id = data.ids[index];
const ts = data.tsStarts[index];
globals.makeSelection(
Actions.selectCpuProfileSample({id, utid: this.config.utid, ts}));
return true;
}
return false;
}
// If the markers overlap the rightmost one will be selected.
findTimestampIndex(
left: number, timeScale: TimeScale, data: Data, x: number, y: number,
right: number): number {
let index = -1;
if (left !== -1) {
const centerX = timeScale.timeToPx(fromNs(data.tsStarts[left]));
if (this.isInMarker(x, y, centerX)) {
index = left;
}
}
if (right !== -1) {
const centerX = timeScale.timeToPx(fromNs(data.tsStarts[right]));
if (this.isInMarker(x, y, centerX)) {
index = right;
}
}
return index;
}
isInMarker(x: number, y: number, centerX: number) {
return Math.abs(x - centerX) + Math.abs(y - this.centerY) <=
this.markerWidth;
}
}
trackRegistry.register(CpuProfileTrack);