Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8092253

Optimize FlowPane.getRuns()

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 8
    • javafx

      The method FlowPane.getRuns() can be optimized in several ways.

      1) Use Parent.getManagedChildren() instead of looping over all children every time. Assuming that the children of a FlowLayout do not change that often, using getManagedChildren() is more efficient, especially if only few children are managed.

      2) Avoid unnecessary array construction. Right now every element is copied into two ArrayLists (once in getRuns() and once in normalizeRun()). Plus with horizontal orientation two double arrays are created in normalizeRun(). All of that can be avoided.

      3) The functionality in normalizeRun() can be calculated on-the-fly while an element is added to a run. This does not improve runtime performance, but reduces the memory footprint, because we do not need to keep the values required by a separate normalize-step. This data is stored in the lists of Runs, it gets very likely promoted to older generations.

        1. FlowPane_getRuns.diff
          12 kB
          Martin Sládeček
        2. FlowPane_layout_cases.diff
          16 kB
          Martin Sládeček

            Unassigned Unassigned
            mheinrichs Michael Heinrichs (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Imported: