Changeset 242740 in webkit


Ignore:
Timestamp:
Mar 11, 2019, 2:26:50 PM (6 years ago)
Author:
Joseph Pecoraro
Message:

Web Inspector: CPU Usage Timeline - Better Thread chart layout values
https://bugs.webkit.org/show_bug.cgi?id=195547

Reviewed by Devin Rousso.

  • UserInterface/Views/CPUTimelineView.js:

(WI.CPUTimelineView.prototype.layout.bestThreadLayoutMax):
(WI.CPUTimelineView.prototype.layout.layoutView):
(WI.CPUTimelineView.prototype._showGraphOverlay):
Include a separate layoutMax for the combined view and a thread layoutMax
for the thread groups.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r242739 r242740  
     12019-03-11  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: CPU Usage Timeline - Better Thread chart layout values
     4        https://bugs.webkit.org/show_bug.cgi?id=195547
     5
     6        Reviewed by Devin Rousso.
     7
     8        * UserInterface/Views/CPUTimelineView.js:
     9        (WI.CPUTimelineView.prototype.layout.bestThreadLayoutMax):
     10        (WI.CPUTimelineView.prototype.layout.layoutView):
     11        (WI.CPUTimelineView.prototype._showGraphOverlay):
     12        Include a separate layoutMax for the combined view and a thread layoutMax
     13        for the thread groups.
     14
    1152019-03-11  Joseph Pecoraro  <pecoraro@apple.com>
    216
  • trunk/Source/WebInspectorUI/UserInterface/Views/CPUTimelineView.js

    r242739 r242740  
    461461        let webkitThreadMax = -Infinity;
    462462        let unknownThreadMax = -Infinity;
     463        let workerMax = -Infinity;
    463464
    464465        let min = Infinity;
     
    578579        unknownThreadAverage /= visibleRecords.length;
    579580
    580         for (let [workerId, workerData] of workersDataMap)
     581        for (let [workerId, workerData] of workersDataMap) {
    581582            workerData.average = workerData.average / workerData.recordsCount;
     583            if (workerData.max > workerMax)
     584                workerMax = workerData.max;
     585        }
    582586
    583587        // If the graph end time is inside a gap, the last data point should
     
    585589        if (discontinuities.length)
    586590            visibleEndTime = discontinuities[0].startTime;
     591
     592        function bestThreadLayoutMax(value) {
     593            if (value > 100)
     594                return Math.ceil(value);           
     595            return (Math.floor(value / 25) + 1) * 25;
     596        }
    587597
    588598        function removeGreaterThan(arr, max) {
     
    622632        }
    623633
    624         // Layout all graphs to the same time scale. The maximum value is
    625         // the maximum total CPU usage across all threads.
    626         let layoutMax = max;
    627         this._layoutMax = max;
    628 
    629         function layoutView(view, property, graphHeight, {dataPoints, min, max, average}) {
     634        function layoutView(view, property, graphHeight, layoutMax, {dataPoints, min, max, average}) {
    630635            if (min === Infinity)
    631636                min = 0;
     
    686691        }
    687692
    688         layoutView(this._cpuUsageView, null, CPUTimelineView.cpuUsageViewHeight, {dataPoints, min, max, average});
     693        // Layout the combined graph to the maximum total CPU usage.
     694        // Layout all the thread graphs to the same time scale, the maximum across threads / thread groups.
     695        this._layoutMax = max;
     696        this._threadLayoutMax = bestThreadLayoutMax(Math.max(mainThreadMax, webkitThreadMax, unknownThreadMax, workerMax));
     697
     698        layoutView(this._cpuUsageView, null, CPUTimelineView.cpuUsageViewHeight, this._layoutMax, {dataPoints, min, max, average});
    689699
    690700        if (this._threadsDetailsElement.open) {
    691             layoutView(this._mainThreadUsageView, "mainThreadUsage", CPUTimelineView.threadCPUUsageViewHeight, {dataPoints, min: mainThreadMin, max: mainThreadMax, average: mainThreadAverage});
    692             layoutView(this._webkitThreadUsageView, "webkitThreadUsage", CPUTimelineView.threadCPUUsageViewHeight, {dataPoints, min: webkitThreadMin, max: webkitThreadMax, average: webkitThreadAverage});
    693             layoutView(this._unknownThreadUsageView, "unknownThreadUsage", CPUTimelineView.threadCPUUsageViewHeight, {dataPoints, min: unknownThreadMin, max: unknownThreadMax, average: unknownThreadAverage});
     701            layoutView(this._mainThreadUsageView, "mainThreadUsage", CPUTimelineView.threadCPUUsageViewHeight, this._threadLayoutMax, {dataPoints, min: mainThreadMin, max: mainThreadMax, average: mainThreadAverage});
     702            layoutView(this._webkitThreadUsageView, "webkitThreadUsage", CPUTimelineView.threadCPUUsageViewHeight, this._threadLayoutMax, {dataPoints, min: webkitThreadMin, max: webkitThreadMax, average: webkitThreadAverage});
     703            layoutView(this._unknownThreadUsageView, "unknownThreadUsage", CPUTimelineView.threadCPUUsageViewHeight, this._threadLayoutMax, {dataPoints, min: unknownThreadMin, max: unknownThreadMax, average: unknownThreadAverage});
    694704
    695705            this._removeWorkerThreadViews();
     
    705715                this._workerViews.push(workerView);
    706716
    707                 layoutView(workerView, "usage", CPUTimelineView.threadCPUUsageViewHeight, {dataPoints: workerData.dataPoints, min: workerData.min, max: workerData.max, average: workerData.average});
     717                layoutView(workerView, "usage", CPUTimelineView.threadCPUUsageViewHeight, this._threadLayoutMax, {dataPoints: workerData.dataPoints, min: workerData.min, max: workerData.max, average: workerData.average});
    708718            }
    709719        }
     
    17041714        this._overlayTime = time;
    17051715
    1706         let layoutMax = this._layoutMax;
    17071716        let secondsPerPixel = this._secondsPerPixelInLayout;
    1708         let graphMax = layoutMax * 1.05;
    17091717        let graphStartTime = this.startTime;
    17101718
     
    17191727        let {mainThreadUsage, workerThreadUsage, webkitThreadUsage, unknownThreadUsage, workersData} = record;
    17201728
    1721         function addOverlayPoint(view, graphHeight, value) {
     1729        function addOverlayPoint(view, graphHeight, layoutMax, value) {
    17221730            if (!value)
    17231731                return;
    17241732
     1733            let graphMax = layoutMax * 1.05;
     1734
    17251735            function yScale(value) {
    17261736                return graphHeight - ((value / graphMax) * graphHeight);
     
    17341744
    17351745        this._cpuUsageView.updateLegend(record);
    1736         addOverlayPoint(this._cpuUsageView, CPUTimelineView.cpuUsageViewHeight, mainThreadUsage);
    1737         addOverlayPoint(this._cpuUsageView, CPUTimelineView.cpuUsageViewHeight, mainThreadUsage + workerThreadUsage);
    1738         addOverlayPoint(this._cpuUsageView, CPUTimelineView.cpuUsageViewHeight, mainThreadUsage + workerThreadUsage + webkitThreadUsage + unknownThreadUsage);
     1746        addOverlayPoint(this._cpuUsageView, CPUTimelineView.cpuUsageViewHeight, this._layoutMax, mainThreadUsage);
     1747        addOverlayPoint(this._cpuUsageView, CPUTimelineView.cpuUsageViewHeight, this._layoutMax, mainThreadUsage + workerThreadUsage);
     1748        addOverlayPoint(this._cpuUsageView, CPUTimelineView.cpuUsageViewHeight, this._layoutMax, mainThreadUsage + workerThreadUsage + webkitThreadUsage + unknownThreadUsage);
    17391749
    17401750        if (this._threadsDetailsElement.open) {
    17411751            this._mainThreadUsageView.updateLegend(mainThreadUsage);
    1742             addOverlayPoint(this._mainThreadUsageView, CPUTimelineView.threadCPUUsageViewHeight, mainThreadUsage);
     1752            addOverlayPoint(this._mainThreadUsageView, CPUTimelineView.threadCPUUsageViewHeight, this._threadLayoutMax, mainThreadUsage);
    17431753
    17441754            this._webkitThreadUsageView.updateLegend(webkitThreadUsage);
    1745             addOverlayPoint(this._webkitThreadUsageView, CPUTimelineView.threadCPUUsageViewHeight, webkitThreadUsage);
     1755            addOverlayPoint(this._webkitThreadUsageView, CPUTimelineView.threadCPUUsageViewHeight, this._threadLayoutMax, webkitThreadUsage);
    17461756
    17471757            this._unknownThreadUsageView.updateLegend(unknownThreadUsage);
    1748             addOverlayPoint(this._unknownThreadUsageView, CPUTimelineView.threadCPUUsageViewHeight, unknownThreadUsage);
     1758            addOverlayPoint(this._unknownThreadUsageView, CPUTimelineView.threadCPUUsageViewHeight, this._threadLayoutMax, unknownThreadUsage);
    17491759
    17501760            for (let workerView of this._workerViews)
     
    17561766                    if (workerView) {
    17571767                        workerView.updateLegend(usage);
    1758                         addOverlayPoint(workerView, CPUTimelineView.threadCPUUsageViewHeight, usage);
     1768                        addOverlayPoint(workerView, CPUTimelineView.threadCPUUsageViewHeight, this._threadLayoutMax, usage);
    17591769                    }
    17601770                }
Note: See TracChangeset for help on using the changeset viewer.