Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8277978 | jfx17.0.2 | Johan Vos | P4 | Resolved | Fixed | |
JDK-8277979 | jfx11.0.14 | Johan Vos | P4 | Resolved | Fixed |
WebView has a drag and drop eventHandler which is added to several drag events:
setOnDragEntered(destHandler);
setOnDragExited(destHandler);
setOnDragOver(destHandler);
setOnDragDropped(destHandler);
As part of this eventHandler, the dragboard content is retrieved from QuantumClipboard, which has a cache strategy in place, but unfortunately the cache is flushed away when the drag events starts (QuantumToolkit::startDrag).
This means that such content (for instance, an Image), is being retrieved from a given URL over and over again (via QuantumClipboard::readImage), on every mouse move/drag over, causing a high lag in showing the image and moving it as the drag view.
This issue can be reproduced on all platforms and JavaFX versions, but there are different cases.
On Windows and Linux, dragging an image from a web page (wrapped or not with an hyperlink) uses Clipboard::getLocalData, and QuantumClipboard::readImage tries to create a new Image(url) on every call, without background loading, which takes around 200 ms for the first image of https://openjdk.java.net.
Running the attached test from Ubuntu 20.04 with JavaFX 18-ea+6 gives:
location = https://openjdk.java.net/
DND readImage time = 407
DND readImage time = 225
DND readImage time = 226
DND readImage time = 230
location = https://openjdk.java.net/faq/
DND readImage time = 178
DND readImage time = 177
DND readImage time = 177
Similar values on Windows 10 with 18-ea+6:
location = https://openjdk.java.net/
DND readImage time = 174
DND readImage time = 173
DND readImage time = 174
DND readImage time = 178
DND readImage time = 175
DND readImage time = 176
location = https://openjdk.java.net/faq/
DND readImage time = 178
DND readImage time = 179
DND readImage time = 176
DND readImage time = 174
DND readImage time = 174
DND readImage time = 180
DND readImage time = 176
On Mac, however, SystemClipboard::popFromSystem is used.
If the image is not in an hyperlink, the load is done via pixels/rawData, which is really fast (the first image of https://openjdk.java.net. takes 2 ms) as it doesn't call new Image(url).
However, when the image is in an hyperlink (after the proposed patch forJDK-8160597 is applied), QuantumClipboard::readImage goes through new Image(url) on every call, again without background loading. For a given image, like the one on https://openjdk.java.net/projects/jdk/17/, this can take up to 700 ms.
Running the test from Mac OS 11.6 and JavaFX built from head+patch forJDK-8160597:
location = https://openjdk.java.net/
DND readImage time = 910
DND readImage time = 1
DND readImage time = 1
DND readImage time = 2
DND readImage time = 1
DND readImage time = 1
DND readImage time = 2
DND readImage time = 2
DND readImage time = 1
location = https://openjdk.java.net/faq/
DND readImage time = 1093
DND readImage time = 705
DND readImage time = 705
DND readImage time = 705
DND readImage time = 713
DND readImage time = 713
DND readImage time = 704
DND readImage time = 705
While enabling background loading of images in QuantumClipboard::readImage should make an big improvement, it seems necessary to use the linkedLists in the WebView eventHandler to cache the content, avoiding creating over and over again the same image/content.
setOnDragEntered(destHandler);
setOnDragExited(destHandler);
setOnDragOver(destHandler);
setOnDragDropped(destHandler);
As part of this eventHandler, the dragboard content is retrieved from QuantumClipboard, which has a cache strategy in place, but unfortunately the cache is flushed away when the drag events starts (QuantumToolkit::startDrag).
This means that such content (for instance, an Image), is being retrieved from a given URL over and over again (via QuantumClipboard::readImage), on every mouse move/drag over, causing a high lag in showing the image and moving it as the drag view.
This issue can be reproduced on all platforms and JavaFX versions, but there are different cases.
On Windows and Linux, dragging an image from a web page (wrapped or not with an hyperlink) uses Clipboard::getLocalData, and QuantumClipboard::readImage tries to create a new Image(url) on every call, without background loading, which takes around 200 ms for the first image of https://openjdk.java.net.
Running the attached test from Ubuntu 20.04 with JavaFX 18-ea+6 gives:
location = https://openjdk.java.net/
DND readImage time = 407
DND readImage time = 225
DND readImage time = 226
DND readImage time = 230
location = https://openjdk.java.net/faq/
DND readImage time = 178
DND readImage time = 177
DND readImage time = 177
Similar values on Windows 10 with 18-ea+6:
location = https://openjdk.java.net/
DND readImage time = 174
DND readImage time = 173
DND readImage time = 174
DND readImage time = 178
DND readImage time = 175
DND readImage time = 176
location = https://openjdk.java.net/faq/
DND readImage time = 178
DND readImage time = 179
DND readImage time = 176
DND readImage time = 174
DND readImage time = 174
DND readImage time = 180
DND readImage time = 176
On Mac, however, SystemClipboard::popFromSystem is used.
If the image is not in an hyperlink, the load is done via pixels/rawData, which is really fast (the first image of https://openjdk.java.net. takes 2 ms) as it doesn't call new Image(url).
However, when the image is in an hyperlink (after the proposed patch for
Running the test from Mac OS 11.6 and JavaFX built from head+patch for
location = https://openjdk.java.net/
DND readImage time = 910
DND readImage time = 1
DND readImage time = 1
DND readImage time = 2
DND readImage time = 1
DND readImage time = 1
DND readImage time = 2
DND readImage time = 2
DND readImage time = 1
location = https://openjdk.java.net/faq/
DND readImage time = 1093
DND readImage time = 705
DND readImage time = 705
DND readImage time = 705
DND readImage time = 713
DND readImage time = 713
DND readImage time = 704
DND readImage time = 705
While enabling background loading of images in QuantumClipboard::readImage should make an big improvement, it seems necessary to use the linkedLists in the WebView eventHandler to cache the content, avoiding creating over and over again the same image/content.
- backported by
-
JDK-8277978 Dragboard contents retrieved all over again during a DND process on WebView
-
- Resolved
-
-
JDK-8277979 Dragboard contents retrieved all over again during a DND process on WebView
-
- Resolved
-
- links to
-
Commit openjdk/jfx11u/6a1b038e
-
Commit openjdk/jfx17u/4719350f
-
Commit openjdk/jfx/423e1be1
-
Review openjdk/jfx11u/64
-
Review openjdk/jfx17u/23
-
Review openjdk/jfx/680
(3 links to)