blob: 2f491ae99189f977ff08586688d6771e6e229f0c [file] [log] [blame]
// Copyright (C) 2018 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 * as m from 'mithril';
import {TrackState} from '../common/state';
import {TrackData} from '../common/track_data';
import {checkerboard} from './checkerboard';
import {globals} from './globals';
import {TrackButtonAttrs} from './track_panel';
/**
* This interface forces track implementations to have some static properties.
* Typescript does not have abstract static members, which is why this needs to
* be in a separate interface.
*/
export interface TrackCreator {
// Store the kind explicitly as a string as opposed to using class.kind in
// case we ever minify our code.
readonly kind: string;
// We need the |create| method because the stored value in the registry is an
// abstract class, and we cannot call 'new' on an abstract class.
create(TrackState: TrackState): Track;
}
export interface SliceRect {
left: number;
width: number;
top: number;
height: number;
visible: boolean;
}
/**
* The abstract class that needs to be implemented by all tracks.
*/
export abstract class Track<Config = {}, Data extends TrackData = TrackData> {
private trackId: string;
constructor(trackState: TrackState) {
this.trackId = trackState.id;
}
protected abstract renderCanvas(ctx: CanvasRenderingContext2D): void;
protected get trackState(): TrackState {
return globals.state.tracks[this.trackId];
}
get config(): Config {
return globals.state.tracks[this.trackId].config as Config;
}
data(): Data|undefined {
return globals.trackDataStore.get(this.trackId) as Data;
}
getHeight(): number {
return 40;
}
getTrackShellButtons(): Array<m.Vnode<TrackButtonAttrs>> {
return [];
}
onMouseMove(_position: {x: number, y: number}) {}
/**
* Returns whether the mouse click has selected something.
* Used to prevent further propagation if necessary.
*/
onMouseClick(_position: {x: number, y: number}): boolean {
return false;
}
onMouseOut() {}
render(ctx: CanvasRenderingContext2D) {
globals.frontendLocalState.addVisibleTrack(this.trackState.id);
if (this.data() === undefined) {
const {visibleWindowTime, timeScale} = globals.frontendLocalState;
const startPx = Math.floor(timeScale.timeToPx(visibleWindowTime.start));
const endPx = Math.ceil(timeScale.timeToPx(visibleWindowTime.end));
checkerboard(ctx, this.getHeight(), startPx, endPx);
} else {
this.renderCanvas(ctx);
}
}
drawTrackHoverTooltip(
ctx: CanvasRenderingContext2D, xPos: number, text: string,
text2?: string) {
ctx.font = '10px Roboto Condensed';
const textWidth = ctx.measureText(text).width;
let width = textWidth;
let textYPos = this.getHeight() / 2;
if (text2 !== undefined) {
const text2Width = ctx.measureText(text2).width;
width = Math.max(textWidth, text2Width);
textYPos = this.getHeight() / 2 - 6;
}
// Move tooltip over if it would go off the right edge of the viewport.
const rectWidth = width + 16;
const endPx = globals.frontendLocalState.timeScale.endPx;
if (xPos + rectWidth > endPx) {
xPos -= (xPos + rectWidth - endPx);
}
ctx.fillStyle = 'rgba(255, 255, 255, 0.9)';
const rectMargin = this.getHeight() / 12;
ctx.fillRect(
xPos, rectMargin, rectWidth, this.getHeight() - rectMargin * 2);
ctx.fillStyle = 'hsl(200, 50%, 40%)';
ctx.textAlign = 'left';
ctx.textBaseline = 'middle';
ctx.fillText(text, xPos + 8, textYPos);
if (text2 !== undefined) {
ctx.fillText(text2, xPos + 8, this.getHeight() / 2 + 6);
}
}
/**
* Returns a place where a given slice should be drawn. Should be implemented
* only for track types that support slices e.g. chrome_slice, async_slices
* tStart - slice start time in seconds, tEnd - slice end time in seconds,
* depth - slice depth
*/
getSliceRect(_tStart: number, _tEnd: number, _depth: number): SliceRect
|undefined {
return undefined;
}
}