blob: 27557fcbf5ef0d45a34c692e9acaba4f20e0f6be [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 {HSLColor} from '../../public/color';
import {makeColorScheme} from '../../public/lib/colorizer';
import {
NAMED_ROW,
NamedRow,
NamedSliceTrack,
} from '../../frontend/named_slice_track';
import {SLICE_LAYOUT_FIT_CONTENT_DEFAULTS} from '../../frontend/slice_layout';
import {Slice} from '../../public/track';
import {Trace} from '../../public/trace';
import {TrackEventDetails} from '../../public/selection';
const GREEN = makeColorScheme(new HSLColor('#4CAF50')); // Green 500
export class ExpectedFramesTrack extends NamedSliceTrack {
constructor(
trace: Trace,
maxDepth: number,
uri: string,
private trackIds: number[],
) {
super(trace, uri);
this.sliceLayout = {
...SLICE_LAYOUT_FIT_CONTENT_DEFAULTS,
depthGuess: maxDepth,
};
}
getSqlSource(): string {
return `
SELECT
ts,
dur,
layout_depth as depth,
name,
id
from experimental_slice_layout
where
filter_track_ids = '${this.trackIds.join(',')}'
`;
}
rowToSlice(row: NamedRow): Slice {
const baseSlice = this.rowToSliceBase(row);
return {...baseSlice, colorScheme: GREEN};
}
getRowSpec(): NamedRow {
return NAMED_ROW;
}
override async getSelectionDetails(
id: number,
): Promise<TrackEventDetails | undefined> {
const baseDetails = await super.getSelectionDetails(id);
if (!baseDetails) return undefined;
return {
...baseDetails,
tableName: 'slice',
};
}
}