| // Copyright 2017 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import * as Common from '../common/common.js'; // eslint-disable-line no-unused-vars |
| import * as Components from '../components/components.js'; |
| import * as i18n from '../i18n/i18n.js'; |
| import * as SDK from '../sdk/sdk.js'; |
| import * as TimelineModel from '../timeline_model/timeline_model.js'; |
| import * as UI from '../ui/ui.js'; |
| |
| import {EventsTimelineTreeView} from './EventsTimelineTreeView.js'; |
| import {Events, PerformanceModel} from './PerformanceModel.js'; // eslint-disable-line no-unused-vars |
| import {TimelineLayersView} from './TimelineLayersView.js'; |
| import {TimelinePaintProfilerView} from './TimelinePaintProfilerView.js'; |
| import {TimelineModeViewDelegate, TimelineSelection} from './TimelinePanel.js'; // eslint-disable-line no-unused-vars |
| import {BottomUpTimelineTreeView, CallTreeTimelineTreeView, TimelineTreeView} from './TimelineTreeView.js'; // eslint-disable-line no-unused-vars |
| import {TimelineDetailsContentHelper, TimelineUIUtils} from './TimelineUIUtils.js'; |
| |
| const UIStrings = { |
| /** |
| *@description Text for the summary view |
| */ |
| summary: 'Summary', |
| /** |
| *@description Text in Timeline Details View of the Performance panel |
| */ |
| bottomup: 'Bottom-Up', |
| /** |
| *@description Text in Timeline Details View of the Performance panel |
| */ |
| callTree: 'Call Tree', |
| /** |
| *@description Text in Timeline Details View of the Performance panel |
| */ |
| eventLog: 'Event Log', |
| /** |
| *@description The label for estimated total blocking time in the performance panel |
| */ |
| estimated: 'estimated', |
| /** |
| *@description Label for the total blocking time in the Performance Panel |
| *@example {320.23} PH1 |
| *@example {(estimated)} PH2 |
| */ |
| totalBlockingTimeSmss: 'Total blocking time: {PH1}ms{PH2}', |
| /** |
| *@description Text that is usually a hyperlink to more documentation |
| */ |
| learnMore: 'Learn more', |
| /** |
| *@description Title of the Layers tool |
| */ |
| layers: 'Layers', |
| /** |
| *@description Title of the paint profiler, old name of the performance pane |
| */ |
| paintProfiler: 'Paint Profiler', |
| /** |
| *@description Text in Timeline Details View of the Performance panel |
| *@example {1ms} PH1 |
| *@example {10ms} PH2 |
| */ |
| rangeSS: 'Range: {PH1} – {PH2}', |
| }; |
| const str_ = i18n.i18n.registerUIStrings('timeline/TimelineDetailsView.js', UIStrings); |
| const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_); |
| export class TimelineDetailsView extends UI.Widget.VBox { |
| /** |
| * @param {!TimelineModeViewDelegate} delegate |
| */ |
| constructor(delegate) { |
| super(); |
| this.element.classList.add('timeline-details'); |
| |
| this._detailsLinkifier = new Components.Linkifier.Linkifier(); |
| |
| this._tabbedPane = new UI.TabbedPane.TabbedPane(); |
| this._tabbedPane.show(this.element); |
| |
| const tabIds = Tab; |
| |
| this._defaultDetailsWidget = new UI.Widget.VBox(); |
| this._defaultDetailsWidget.element.classList.add('timeline-details-view'); |
| this._defaultDetailsContentElement = |
| this._defaultDetailsWidget.element.createChild('div', 'timeline-details-view-body vbox'); |
| this._appendTab(tabIds.Details, i18nString(UIStrings.summary), this._defaultDetailsWidget); |
| this.setPreferredTab(tabIds.Details); |
| |
| /** @type Map<string, TimelineTreeView> */ |
| this._rangeDetailViews = new Map(); |
| |
| const bottomUpView = new BottomUpTimelineTreeView(); |
| this._appendTab(tabIds.BottomUp, i18nString(UIStrings.bottomup), bottomUpView); |
| this._rangeDetailViews.set(tabIds.BottomUp, bottomUpView); |
| |
| const callTreeView = new CallTreeTimelineTreeView(); |
| this._appendTab(tabIds.CallTree, i18nString(UIStrings.callTree), callTreeView); |
| this._rangeDetailViews.set(tabIds.CallTree, callTreeView); |
| |
| const eventsView = new EventsTimelineTreeView(delegate); |
| this._appendTab(tabIds.EventLog, i18nString(UIStrings.eventLog), eventsView); |
| this._rangeDetailViews.set(tabIds.EventLog, eventsView); |
| |
| this._additionalMetricsToolbar = new UI.Toolbar.Toolbar('timeline-additional-metrics'); |
| this.element.appendChild(this._additionalMetricsToolbar.element); |
| |
| this._tabbedPane.addEventListener(UI.TabbedPane.Events.TabSelected, this._tabSelected, this); |
| |
| /** @type {!PerformanceModel} */ |
| this._model; |
| } |
| |
| /** |
| * @param {?PerformanceModel} model |
| * @param {?TimelineModel.TimelineModel.Track} track |
| */ |
| setModel(model, track) { |
| if (this._model !== model) { |
| if (this._model) { |
| this._model.removeEventListener(Events.WindowChanged, this._onWindowChanged, this); |
| } |
| this._model = /** @type {!PerformanceModel} */ (model); |
| if (this._model) { |
| this._model.addEventListener(Events.WindowChanged, this._onWindowChanged, this); |
| } |
| } |
| this._track = track; |
| this._tabbedPane.closeTabs([Tab.PaintProfiler, Tab.LayerViewer], false); |
| for (const view of this._rangeDetailViews.values()) { |
| view.setModel(model, track); |
| } |
| this._lazyPaintProfilerView = null; |
| this._lazyLayersView = null; |
| this.setSelection(null); |
| |
| // Add TBT info to the footer. |
| this._additionalMetricsToolbar.removeToolbarItems(); |
| if (model && model.timelineModel()) { |
| const {estimated, time} = model.timelineModel().totalBlockingTime(); |
| const isEstimate = estimated ? ` (${i18nString(UIStrings.estimated)})` : ''; |
| const message = i18nString(UIStrings.totalBlockingTimeSmss, {PH1: time.toFixed(2), PH2: isEstimate}); |
| |
| const warning = document.createElement('span'); |
| const clsLink = UI.XLink.XLink.create('https://web.dev/tbt/', i18nString(UIStrings.learnMore)); |
| // crbug.com/1103188: In dark mode the focus ring is hidden by the surrounding |
| // container of this link. For some additional spacing on the right to make |
| // sure the ring is fully visible. |
| clsLink.style.marginRight = '2px'; |
| warning.appendChild(clsLink); |
| |
| this._additionalMetricsToolbar.appendText(message); |
| this._additionalMetricsToolbar.appendToolbarItem(new UI.Toolbar.ToolbarItem(warning)); |
| } |
| } |
| |
| /** |
| * @param {!Node} node |
| */ |
| _setContent(node) { |
| const allTabs = this._tabbedPane.otherTabs(Tab.Details); |
| for (let i = 0; i < allTabs.length; ++i) { |
| if (!this._rangeDetailViews.has(allTabs[i])) { |
| this._tabbedPane.closeTab(allTabs[i]); |
| } |
| } |
| this._defaultDetailsContentElement.removeChildren(); |
| this._defaultDetailsContentElement.appendChild(node); |
| } |
| |
| _updateContents() { |
| const view = this._rangeDetailViews.get(this._tabbedPane.selectedTabId || ''); |
| if (view) { |
| const window = this._model.window(); |
| view.updateContents(this._selection || TimelineSelection.fromRange(window.left, window.right)); |
| } |
| } |
| |
| /** |
| * @param {string} id |
| * @param {string} tabTitle |
| * @param {!UI.Widget.Widget} view |
| * @param {boolean=} isCloseable |
| */ |
| _appendTab(id, tabTitle, view, isCloseable) { |
| this._tabbedPane.appendTab(id, tabTitle, view, undefined, undefined, isCloseable); |
| if (this._preferredTabId !== this._tabbedPane.selectedTabId) { |
| this._tabbedPane.selectTab(id); |
| } |
| } |
| |
| /** |
| * @return {!Element} |
| */ |
| headerElement() { |
| return this._tabbedPane.headerElement(); |
| } |
| |
| /** |
| * @param {string} tabId |
| */ |
| setPreferredTab(tabId) { |
| this._preferredTabId = tabId; |
| } |
| |
| /** |
| * @param {!Common.EventTarget.EventTargetEvent} event |
| */ |
| _onWindowChanged(event) { |
| if (!this._selection) { |
| this._updateContentsFromWindow(); |
| } |
| } |
| |
| _updateContentsFromWindow() { |
| if (!this._model) { |
| this._setContent(UI.Fragment.html`<div/>`); |
| return; |
| } |
| const window = this._model.window(); |
| this._updateSelectedRangeStats(window.left, window.right); |
| this._updateContents(); |
| } |
| |
| /** |
| * @param {?TimelineSelection} selection |
| */ |
| setSelection(selection) { |
| this._detailsLinkifier.reset(); |
| this._selection = selection; |
| if (!this._selection) { |
| this._updateContentsFromWindow(); |
| return; |
| } |
| switch (this._selection.type()) { |
| case TimelineSelection.Type.TraceEvent: { |
| const event = /** @type {!SDK.TracingModel.Event} */ (this._selection.object()); |
| TimelineUIUtils.buildTraceEventDetails(event, this._model.timelineModel(), this._detailsLinkifier, true) |
| .then(fragment => this._appendDetailsTabsForTraceEventAndShowDetails(event, fragment)); |
| break; |
| } |
| case TimelineSelection.Type.Frame: { |
| const frame = /** @type {!TimelineModel.TimelineFrameModel.TimelineFrame} */ (this._selection.object()); |
| const filmStripFrame = this._model.filmStripModelFrame(frame); |
| this._setContent(TimelineUIUtils.generateDetailsContentForFrame(frame, filmStripFrame)); |
| if (frame.layerTree) { |
| const layersView = this._layersView(); |
| layersView.showLayerTree(frame.layerTree); |
| if (!this._tabbedPane.hasTab(Tab.LayerViewer)) { |
| this._appendTab(Tab.LayerViewer, i18nString(UIStrings.layers), layersView); |
| } |
| } |
| break; |
| } |
| case TimelineSelection.Type.NetworkRequest: { |
| const request = /** @type {!TimelineModel.TimelineModel.NetworkRequest} */ (this._selection.object()); |
| TimelineUIUtils.buildNetworkRequestDetails(request, this._model.timelineModel(), this._detailsLinkifier) |
| .then(this._setContent.bind(this)); |
| break; |
| } |
| case TimelineSelection.Type.Range: { |
| this._updateSelectedRangeStats(this._selection.startTime(), this._selection.endTime()); |
| break; |
| } |
| } |
| |
| this._updateContents(); |
| } |
| |
| /** |
| * @param {!Common.EventTarget.EventTargetEvent} event |
| */ |
| _tabSelected(event) { |
| if (!event.data.isUserGesture) { |
| return; |
| } |
| this.setPreferredTab(event.data.tabId); |
| this._updateContents(); |
| } |
| |
| /** |
| * @return {!TimelineLayersView} |
| */ |
| _layersView() { |
| if (this._lazyLayersView) { |
| return this._lazyLayersView; |
| } |
| this._lazyLayersView = |
| new TimelineLayersView(this._model.timelineModel(), this._showSnapshotInPaintProfiler.bind(this)); |
| return this._lazyLayersView; |
| } |
| |
| /** |
| * @return {!TimelinePaintProfilerView} |
| */ |
| _paintProfilerView() { |
| if (this._lazyPaintProfilerView) { |
| return this._lazyPaintProfilerView; |
| } |
| this._lazyPaintProfilerView = new TimelinePaintProfilerView(this._model.frameModel()); |
| return this._lazyPaintProfilerView; |
| } |
| |
| /** |
| * @param {!SDK.PaintProfiler.PaintProfilerSnapshot} snapshot |
| */ |
| _showSnapshotInPaintProfiler(snapshot) { |
| const paintProfilerView = this._paintProfilerView(); |
| paintProfilerView.setSnapshot(snapshot); |
| if (!this._tabbedPane.hasTab(Tab.PaintProfiler)) { |
| this._appendTab(Tab.PaintProfiler, i18nString(UIStrings.paintProfiler), paintProfilerView, true); |
| } |
| this._tabbedPane.selectTab(Tab.PaintProfiler, true); |
| } |
| |
| /** |
| * @param {!SDK.TracingModel.Event} event |
| * @param {!Node} content |
| */ |
| _appendDetailsTabsForTraceEventAndShowDetails(event, content) { |
| this._setContent(content); |
| if (event.name === TimelineModel.TimelineModel.RecordType.Paint || |
| event.name === TimelineModel.TimelineModel.RecordType.RasterTask) { |
| this._showEventInPaintProfiler(event); |
| } |
| } |
| |
| /** |
| * @param {!SDK.TracingModel.Event} event |
| */ |
| _showEventInPaintProfiler(event) { |
| const paintProfilerModel = SDK.SDKModel.TargetManager.instance().models(SDK.PaintProfiler.PaintProfilerModel)[0]; |
| if (!paintProfilerModel) { |
| return; |
| } |
| const paintProfilerView = this._paintProfilerView(); |
| const hasProfileData = paintProfilerView.setEvent(paintProfilerModel, event); |
| if (!hasProfileData) { |
| return; |
| } |
| if (this._tabbedPane.hasTab(Tab.PaintProfiler)) { |
| return; |
| } |
| this._appendTab(Tab.PaintProfiler, i18nString(UIStrings.paintProfiler), paintProfilerView); |
| } |
| |
| /** |
| * @param {number} startTime |
| * @param {number} endTime |
| */ |
| _updateSelectedRangeStats(startTime, endTime) { |
| if (!this._model || !this._track) { |
| return; |
| } |
| const aggregatedStats = TimelineUIUtils.statsForTimeRange(this._track.syncEvents(), startTime, endTime); |
| const startOffset = startTime - this._model.timelineModel().minimumRecordTime(); |
| const endOffset = endTime - this._model.timelineModel().minimumRecordTime(); |
| |
| const contentHelper = new TimelineDetailsContentHelper(null, null); |
| contentHelper.addSection(i18nString( |
| UIStrings.rangeSS, {PH1: Number.millisToString(startOffset), PH2: Number.millisToString(endOffset)})); |
| const pieChart = TimelineUIUtils.generatePieChart(aggregatedStats); |
| contentHelper.appendElementRow('', pieChart); |
| this._setContent(contentHelper.fragment); |
| } |
| } |
| |
| /** |
| * @enum {string} |
| */ |
| export const Tab = { |
| Details: 'Details', |
| EventLog: 'EventLog', |
| CallTree: 'CallTree', |
| BottomUp: 'BottomUp', |
| PaintProfiler: 'PaintProfiler', |
| LayerViewer: 'LayerViewer' |
| }; |