| // Copyright (C) 2024 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 {BigintMath as BIMath} from '../base/bigint_math'; |
| import {clamp} from '../base/math_utils'; |
| import {NAMED_ROW, NamedSliceTrack} from './named_slice_track'; |
| import {SLICE_LAYOUT_FIT_CONTENT_DEFAULTS} from './slice_layout'; |
| import {NewTrackArgs} from './track'; |
| import {LONG_NULL} from '../trace_processor/query_result'; |
| import {Slice} from '../public/track'; |
| import {TrackEventDetails} from '../public/selection'; |
| import {ThreadSliceDetailsPanel} from './thread_slice_details_tab'; |
| import {TraceImpl} from '../core/trace_impl'; |
| import {assertIsInstance} from '../base/logging'; |
| |
| export const THREAD_SLICE_ROW = { |
| // Base columns (tsq, ts, dur, id, depth). |
| ...NAMED_ROW, |
| |
| // Thread-specific columns. |
| threadDur: LONG_NULL, |
| }; |
| export type ThreadSliceRow = typeof THREAD_SLICE_ROW; |
| |
| export class ThreadSliceTrack extends NamedSliceTrack<Slice, ThreadSliceRow> { |
| constructor( |
| args: NewTrackArgs, |
| private trackId: number, |
| maxDepth: number, |
| private tableName: string = 'slice', |
| ) { |
| super(args); |
| this.sliceLayout = { |
| ...SLICE_LAYOUT_FIT_CONTENT_DEFAULTS, |
| depthGuess: maxDepth, |
| }; |
| } |
| |
| // This is used by the base class to call iter(). |
| protected getRowSpec() { |
| return THREAD_SLICE_ROW; |
| } |
| |
| getSqlSource(): string { |
| return ` |
| select |
| ts, |
| dur, |
| id, |
| depth, |
| ifnull(name, '') as name, |
| thread_dur as threadDur |
| from ${this.tableName} |
| where track_id = ${this.trackId} |
| `; |
| } |
| |
| // Converts a SQL result row to an "Impl" Slice. |
| rowToSlice(row: ThreadSliceRow): Slice { |
| const namedSlice = this.rowToSliceBase(row); |
| |
| if (row.dur > 0n && row.threadDur !== null) { |
| const fillRatio = clamp(BIMath.ratio(row.threadDur, row.dur), 0, 1); |
| return {...namedSlice, fillRatio}; |
| } else { |
| return namedSlice; |
| } |
| } |
| |
| onUpdatedSlices(slices: Slice[]) { |
| for (const slice of slices) { |
| slice.isHighlighted = slice === this.hoveredSlice; |
| } |
| } |
| |
| async getSelectionDetails( |
| id: number, |
| ): Promise<TrackEventDetails | undefined> { |
| const baseDetails = await super.getSelectionDetails(id); |
| if (!baseDetails) return undefined; |
| return { |
| ...baseDetails, |
| tableName: this.tableName, |
| }; |
| } |
| |
| override detailsPanel() { |
| // Rationale for the assertIsInstance: ThreadSliceDetailsPanel requires a |
| // TraceImpl (because of flows) but here we must take a Trace interface, |
| // because this class is exposed to plugins (which see only Trace). |
| return new ThreadSliceDetailsPanel(assertIsInstance(this.trace, TraceImpl)); |
| } |
| } |