Changeset 200949 in webkit


Ignore:
Timestamp:
May 16, 2016, 11:04:25 AM (9 years ago)
Author:
timothy@apple.com
Message:

Web Inspector: DataGrid _updateVisibleRows dominates profiles of timeline recordings when data grid (Overview or TimelineDataGrids) is showing
https://bugs.webkit.org/show_bug.cgi?id=157664
rdar://problem/26262219

Reviewed by Joseph Pecoraro.

  • UserInterface/Views/DataGrid.js:

(WebInspector.DataGrid): Added new members.
(WebInspector.DataGrid.prototype.layout): Reset _cachedScrollTop and _cachedScrollHeight on resize.
(WebInspector.DataGrid.prototype._noteScrollPositionChanged): Added.
(WebInspector.DataGrid.prototype._updateVisibleRows): Cache sizes and positions when possible.
(WebInspector.DataGridNode.prototype.set hidden): Added call to _noteRowsChanged.
(WebInspector.DataGridNode.prototype.collapse): Call _noteRowsChanged instead of needsLayout.
(WebInspector.DataGridNode.prototype.expand): Call _noteRowsChanged instead of needsLayout.
(WebInspector.DataGrid.prototype._updateFilter): Removed direct call to _updateVisibleRows, this is
better handled by DataGridNode's hidden setter.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r200947 r200949  
     12016-05-14  Timothy Hatcher  <timothy@apple.com>
     2
     3        Web Inspector: DataGrid _updateVisibleRows dominates profiles of timeline recordings when data grid (Overview or TimelineDataGrids) is showing
     4        https://bugs.webkit.org/show_bug.cgi?id=157664
     5        rdar://problem/26262219
     6
     7        Reviewed by Joseph Pecoraro.
     8
     9        * UserInterface/Views/DataGrid.js:
     10        (WebInspector.DataGrid): Added new members.
     11        (WebInspector.DataGrid.prototype.layout): Reset _cachedScrollTop and _cachedScrollHeight on resize.
     12        (WebInspector.DataGrid.prototype._noteScrollPositionChanged): Added.
     13        (WebInspector.DataGrid.prototype._updateVisibleRows): Cache sizes and positions when possible.
     14        (WebInspector.DataGridNode.prototype.set hidden): Added call to _noteRowsChanged.
     15        (WebInspector.DataGridNode.prototype.collapse): Call _noteRowsChanged instead of needsLayout.
     16        (WebInspector.DataGridNode.prototype.expand): Call _noteRowsChanged instead of needsLayout.
     17        (WebInspector.DataGrid.prototype._updateFilter): Removed direct call to _updateVisibleRows, this is
     18        better handled by DataGridNode's hidden setter.
     19
    1202016-05-14  Timothy Hatcher  <timothy@apple.com>
    221
  • trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js

    r200886 r200949  
    5454        this._columnWidthsInitialized = false;
    5555
     56        this._cachedScrollTop = NaN;
     57        this._cachedScrollableOffsetHeight = NaN;
     58        this._previousRevealedRowCount = NaN;
     59        this._topDataTableMarginHeight = NaN;
     60        this._bottomDataTableMarginHeight = NaN;
     61
    5662        this._filterText = "";
    5763        this._filterDelegate = null;
     
    7379        this._scrollContainerElement.className = "data-container";
    7480
    75         this._scrollListener = () => this.needsLayout();
     81        this._scrollListener = () => this._noteScrollPositionChanged();
    7682        this._updateScrollListeners();
    7783
     
    798804        }
    799805
    800         if (layoutReason == WebInspector.View.LayoutReason.Resize || firstUpdate) {
     806        if (layoutReason === WebInspector.View.LayoutReason.Resize || firstUpdate) {
    801807            this._positionResizerElements();
    802808            this._positionHeaderViews();
     809
     810            this._cachedScrollTop = NaN;
     811            this._cachedScrollableOffsetHeight = NaN;
    803812        }
    804813
     
    964973    }
    965974
     975    _noteScrollPositionChanged()
     976    {
     977        this._cachedScrollTop = NaN;
     978
     979        this.needsLayout();
     980    }
     981
    966982    _updateVisibleRows()
    967983    {
     
    9881004        let rowHeight = this.rowHeight;
    9891005        let updateOffsetThreshold = rowHeight * 5;
     1006        let overflowPadding = updateOffsetThreshold * 3;
     1007
     1008        if (isNaN(this._cachedScrollTop))
     1009            this._cachedScrollTop = this._scrollContainerElement.scrollTop;
     1010
     1011        if (isNaN(this._cachedScrollableOffsetHeight))
     1012            this._cachedScrollableOffsetHeight = this._scrollContainerElement.offsetHeight;
     1013
     1014        let scrollTop = this._cachedScrollTop;
     1015        let scrollableOffsetHeight = this._cachedScrollableOffsetHeight;
     1016
     1017        let visibleRowCount = Math.ceil((scrollableOffsetHeight + (overflowPadding * 2)) / rowHeight);
     1018
     1019        let currentTopMargin = this._topDataTableMarginHeight;
     1020        let currentBottomMargin = this._bottomDataTableMarginHeight;
     1021        let currentTableBottom = currentTopMargin + (visibleRowCount * rowHeight);
     1022
     1023        let belowTopThreshold = !currentTopMargin || scrollTop > currentTopMargin + updateOffsetThreshold;
     1024        let aboveBottomThreshold = !currentBottomMargin || scrollTop + scrollableOffsetHeight < currentTableBottom - updateOffsetThreshold;
     1025
     1026        if (belowTopThreshold && aboveBottomThreshold && !isNaN(this._previousRevealedRowCount))
     1027            return;
    9901028
    9911029        let revealedRows = this._rows.filter((row) => row.revealed && !row.hidden);
    9921030
    993         let scrollTop = this._scrollContainerElement.scrollTop;
    994         let scrollHeight = this._scrollContainerElement.offsetHeight;
    995 
    996         let currentTopMargin = this._topDataTableMarginElement.offsetHeight;
    997         let currentBottomMargin = this._bottomDataTableMarginElement.offsetHeight;
    998         let currentTableBottom = currentTopMargin + this._dataTableElement.offsetHeight;
    999 
    1000         let belowTopThreshold = !currentTopMargin || scrollTop > currentTopMargin + updateOffsetThreshold;
    1001         let aboveBottomThreshold = !currentBottomMargin || scrollTop + scrollHeight < currentTableBottom - updateOffsetThreshold;
    1002 
    1003         if (belowTopThreshold && aboveBottomThreshold && this._previousRevealedRowCount === revealedRows.length)
    1004             return;
    1005 
    10061031        this._previousRevealedRowCount = revealedRows.length;
    10071032
    1008         let overflowPadding = updateOffsetThreshold * 3;
    1009 
    10101033        let topHiddenRowCount = Math.max(0, Math.floor((scrollTop - overflowPadding) / rowHeight));
    1011         let visibleRowCount = Math.ceil((scrollHeight + (overflowPadding * 2)) / rowHeight);
    1012         let bottomHiddenRowCount = Math.max(0, revealedRows.length - topHiddenRowCount - visibleRowCount);
     1034        let bottomHiddenRowCount = Math.max(0, this._previousRevealedRowCount - topHiddenRowCount - visibleRowCount);
    10131035
    10141036        let marginTop = topHiddenRowCount * rowHeight;
    10151037        let marginBottom = bottomHiddenRowCount * rowHeight;
    10161038
    1017         this._topDataTableMarginElement.style.height = marginTop + "px";
    1018         this._bottomDataTableMarginElement.style.height = marginBottom + "px";
     1039        if (this._topDataTableMarginHeight !== marginTop) {
     1040            this._topDataTableMarginHeight = marginTop;
     1041            this._topDataTableMarginElement.style.height = marginTop + "px";
     1042        }
     1043
     1044        if (this._bottomDataTableMarginElement !== marginBottom) {
     1045            this._bottomDataTableMarginHeight = marginBottom;
     1046            this._bottomDataTableMarginElement.style.height = marginBottom + "px";
     1047        }
    10191048
    10201049        this._dataTableElement.classList.toggle("odd-first-zebra-stripe", !!(topHiddenRowCount % 2));
     
    17241753            return;
    17251754
    1726         this._updateVisibleRows();
    17271755        this.dispatchEventToListeners(WebInspector.DataGrid.Event.FilterDidChange);
    17281756    }
     
    17971825        if (this._element)
    17981826            this._element.classList.toggle("hidden", this._hidden);
     1827
     1828        if (this.dataGrid)
     1829            this.dataGrid._noteRowsChanged();
    17991830    }
    18001831
     
    21712202        if (this.dataGrid) {
    21722203            this.dataGrid.dispatchEventToListeners(WebInspector.DataGrid.Event.CollapsedNode, {dataGridNode: this});
    2173             this.dataGrid.needsLayout();
     2204            this.dataGrid._noteRowsChanged();
    21742205        }
    21752206    }
     
    22212252        if (this.dataGrid) {
    22222253            this.dataGrid.dispatchEventToListeners(WebInspector.DataGrid.Event.ExpandedNode, {dataGridNode: this});
    2223             this.dataGrid.needsLayout();
     2254            this.dataGrid._noteRowsChanged();
    22242255        }
    22252256    }
Note: See TracChangeset for help on using the changeset viewer.