Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

If the user specifies an unusable Java, let them know that the binary will be used #1050

Conversation

datho7561
Copy link
Contributor

Provides a popup that explains what happened and has buttons to:

  • Set "prefer binary" to true so they don't see the popup again
  • Provide the download link for Java so they can update Java if necessary

This popup only appears when the user has configured "xml.java.home" or "java.home" (either to an outdated or non-existant JDK/JRE) and this popup doesn't block the language server startup (i.e. we go ahead and launch the binary server before the user clicks anything on the popup).

@rgrunber
Copy link
Member

I haven't reviewed this thoroughly, but noticed the workflow seems to be :

Check if some JRE on the system is compatible -> If not, try the binary server

However, if the binary server fails (eg. not trusted, and we don't trust it), we seem to be trying Java once again :

const javaServerMessage = hasJava ? 'Falling back to the Java server.' : 'Cannot start XML language server, since Java is missing.';
if (e === ABORTED_ERROR) {
window.showWarningMessage(`${e.message}. ${javaServerMessage}`);
} else {
window.showErrorMessage(`${e}. ${javaServerMessage}`);
}
if (!hasJava) {
throw new Error("Failed to launch binary XML language server and no Java is installed");
}
return prepareJavaExecutable(context, requirements, xmlJavaExtensions);

I would just make sure that works as expected.

@datho7561
Copy link
Contributor Author

I get an error popup that says:

Activating extension 'redhat.vscode-xml' failed: Failed to launch binary XML language server and no Java is installed.

… will be used

Provides a popup that explains what happened and has buttons to:
- Set "prefer binary" to true so they don't see the popup again
- Provide the download link for Java so they can update Java if necessary

This popup doesn't appear if the user doesn't have Java installed, and this popup doesn't block the language server startup (i.e. we go ahead and launch the binary server before the user clicks anything on the popup).
@datho7561 datho7561 force-pushed the 1049-alert-user-when-java-requested-but-binary-used branch from c00c26c to cdef6d9 Compare January 13, 2025 14:48
Copy link
Member

@rgrunber rgrunber left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems fine to me. The only odd thing I found was :

image

I simulated Java 8 being detected, and got one warning prompt regarding the version being insufficient, and the option to download java / always use binary server. The other prompt is from the natural flow of the program to attempt to use the binary server. Probably won't happen normally, since I am using a locally built/untrusted binary.

I guess there's nothing too wrong here because the first prompt is more informational, and the user need not make a decision there.

@datho7561 datho7561 merged commit 18766de into redhat-developer:main Jan 13, 2025
1 check passed
@datho7561 datho7561 deleted the 1049-alert-user-when-java-requested-but-binary-used branch January 13, 2025 16:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

extension falls back to binary when the supplied Java version is < 11, and doesn't alert the user to this
2 participants