8388141: JavaFX.setOpenURIHandler() only receives event if application is already launched - #2203
8388141: JavaFX.setOpenURIHandler() only receives event if application is already launched#2203pabulaner wants to merge 2 commits into
Conversation
…on is already launched
|
👋 Welcome back pabulaner! A progress list of the required criteria for merging this PR into |
|
❗ This change is not yet ready to be integrated. |
…on is already launched
|
The total number of required reviews for this PR has been set to 2 based on the presence of this label: |
|
@pabulaner You must not use the same JBS bug ID for a fix that spans JavaFX and JDK. You will need to file a new JBS issue for JavaFX and change the title of this jfx PR to use that new bug ID. Also, this will need careful coordination and some discussion before it proceeds. I won't even have time to look at it before the jfx27 fork (and since JDK has already forked for JDK 28, this isn't a candidate for jfx27 anyway). |
I see that this is an old bug and was originally filed against the old javapackager (although is still relevant to running JavaFX with jpackage). I wonder if it would be better to use that original bug for the JavaFX half and file a new Bug or Enhancement request for AWT? Or maybe file a pair of new JBS issues -- one for JavaFX and one for AWT -- to better describe the problem. Either way, you will need two bug ID: one for JavaFX and one for AWT. |
|
Whenever I used both AWT and JavaFX together, I force AWT to initialize before JavaFX as several other things can break as well when doing it the other way around. Is initializing JavaFX before AWT even officially supported? |
|
I filed a new bug report with the help of @FlorianKirmaier and now the JDK and JFX PR have different JBS issues. |
|
I don't see any harm in AWT sending such a message, although perhaps a CSR is needed. |
|
I have thought about this issue too. Maybe it would be a solution to add an environment variable to toggle this behavior on and off on the JavaFX side. Something like "DISABLE_AWT_EMBEDDED_READY_EVENT". Or maybe You have some idea on how to achieve the same effect with a different implementation. |
Quite possibly this would need a CSR depending on how it is done.
Yeah, I don't like this aspect of the fix at all. As it stands, it will queue up these messages indefinitely if you run an FX that has this fix with JDK 27.
Or both. However it is implemented, I think we need to do the following:
Thinking out loud... another alternative would be for JavaFX to initialize AWT via a call to |
Problem description
When You create a JavaFX native application with jpackage for macOS You will run into an issue when trying to handle URIs. When Your application isn’t running and You have it registered for handling certain types of URIs it won’t receive the first URI.
Here is a simple example:
If You have a JavaFX application that handles URIs for example of the form openurifx://your-content and You have it installed with jpackage for macOS and now You try to handle an URI by running the following command:
open openurifx://hello-worldThe application will open, but it won’t receive the above URI. If You call the same command after the application is already running, everything will work fine and the application will receive the URI.
Problem cause
The cause of the problem is that when You build a JavaFX application and want to handle URIs You will have to combine JavaFX and AWT as AWT provides the URI handling capabilities. So the startup process is as follows:
The issue is that the URI event is delivered before AWT can handle it and therefore is simple dropped. That’s why later URIs will be received and are handled properly.
Fix
The fix is that JavaFX will wait until it receives a ready event from AWT so JavaFX knows that AWT is able to handle events now. After that it will forward all buffered URIs and therefore everything will be handled correctly. This means that the fix involves both the JFX and JDK repositories and needs to be integrated in both.
Note: In the case that a user has only a fix for the JFX part the URIs won’t be delivered at all, but there won’t be any error. This means that JavaFX applications won’t be able to handle any URIs so it might be an idea to add an environment variable to tell JavaFX to not wait for an AWT ready event. Then the first URI event would be lost, but at least all the following events would be handled properly.
Tests
To test the error and the fix You can clone this repository: https://github.com/pabulaner/openurifx and checkout the branch first-url. There You will find a README.md with further instructions.
PR inside the JDK: openjdk/jdk#31791
Progress
Issue
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jfx.git pull/2203/head:pull/2203$ git checkout pull/2203Update a local copy of the PR:
$ git checkout pull/2203$ git pull https://git.openjdk.org/jfx.git pull/2203/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 2203View PR using the GUI difftool:
$ git pr show -t 2203Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jfx/pull/2203.diff
Using Webrev
Link to Webrev Comment