-
Notifications
You must be signed in to change notification settings - Fork 413
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
Fix adding preview features to a visible project #1863
Conversation
One thing I noted was that being able to reproduce the issue depended on me having the Java source file opened while the build was happening (since this triggers the invisible project logic on the syntax server). |
You have to create .vsix. |
test this please |
I'm still observing the same behaviour. https://github.com/snjeza/vscode-test/raw/master/java-0.82.4.vsix fixes the issue but If I build this PR with |
@rgrunber Could you, please, try now. |
I'll try this out again. I was also trying the non-rebased version (8180a65). |
So If I'm understanding the logic correctly :
|
@rgrunber You are right. |
org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/managers/ProjectsManager.java
Outdated
Show resolved
Hide resolved
Last thing I can currently think of : Is there any way to avoid forcing enable+report preview settings for the lightweight mode ? It doesn't seem like anything useful happens with those settings in that case. I was thinking that might be simpler than what we're doing here. Update : If not, I don't see any other way currently to prevent this issue other than what @snjeza is proposing here. |
cc @fbricon |
I think we're following the wrong approach here. Basically, the source of the issue is: invisible projects are not properly identified, so the wrong projects are mutated. Current solution is way too complex for my taste..
|
The issue happens when Java LS starts in the following way:
The PR saves changes made by the Syntax server and restores them when starting the Standard server.
Is there a way to know if the Syntax server has changed the preview property? |
instead of linking .settings/ in syntax mode, can we instead create a physical copy (overwrite if necessary) of the original files into the actual invisible project location? |
@fbricon you may want to take a look at redhat-developer/vscode-java#1657 (comment) |
ok so how about: if invisible project and ./settings is linked, then do not update the JVM settings |
It is doable. |
// reset the preview feature property - https://github.com/eclipse/eclipse.jdt.ls/pull/1863#issuecomment-924395431 | ||
Hashtable<String, String> defaultOptions = JavaCore.getDefaultOptions(); | ||
String defaultPreview = defaultOptions.get(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES); | ||
String defaultReport = defaultOptions.get(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES); | ||
IJavaProject javaProject = JavaCore.create(invisibleProject); | ||
javaProject.setOption(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, defaultPreview); | ||
javaProject.setOption(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES, defaultReport); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand why is this necessary here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Syntax server calls JVMConfigurator.configureJVMSettings before configuring linked settings. See https://github.com/eclipse/eclipse.jdt.ls/blob/master/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/managers/ProjectsManager.java#L319
You can try to run the InvisibleProjectImporter.testPreviewFeaturesSettingsDisabled test without it.
...jdt.ls.tests/src/org/eclipse/jdt/ls/core/internal/managers/InvisibleProjectImporterTest.java
Outdated
Show resolved
Hide resolved
@@ -217,7 +250,7 @@ public void testPreviewFeaturesDisabledForNotLatestJDK() throws Exception { | |||
assertTrue(invisibleProject.exists()); | |||
assertNoErrors(invisibleProject); | |||
IJavaProject javaProject = JavaCore.create(invisibleProject); | |||
assertEquals(JavaCore.DISABLED, javaProject.getOption(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, false)); | |||
assertEquals(JavaCore.DISABLED, javaProject.getOption(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, true)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why switching from false to true?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It actually does fail with false because the result will be null. Interestingly, javaProject.getOptions(false).get(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES)
does return disabled though.
Weird.. The Javadoc mentions that getOption(String, boolean) is a Helper method for returning one option value only. Equivalent to (String)this.getOptions(inheritJavaCoreOptions).get(optionName)
:\
Update : The inconsistency happens when the project .settings
folder gets linked to the invisible one. If you insert a breakpoint at settingsLinkFolder.createLink(..)
in createInvisibleProjectIfNotExist
you can actually see the settings we just applied for the preview feature/reporting go to null.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you have any suggestions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, this behaviour only happens in the testcase, and not in the welcome-app example, so maybe it's related to how we set up the tests.
Signed-off-by: Snjezana Peco <snjezana.peco@redhat.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should merge this as it solves the issue.
We're basically setting the preview options to enable/report only when we don't detect that a project has its own .settings
folder, and we undo the one case where enable/report get set prior to having set up the .settings
folder.
@@ -217,7 +250,7 @@ public void testPreviewFeaturesDisabledForNotLatestJDK() throws Exception { | |||
assertTrue(invisibleProject.exists()); | |||
assertNoErrors(invisibleProject); | |||
IJavaProject javaProject = JavaCore.create(invisibleProject); | |||
assertEquals(JavaCore.DISABLED, javaProject.getOption(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, false)); | |||
assertEquals(JavaCore.DISABLED, javaProject.getOption(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, true)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, this behaviour only happens in the testcase, and not in the welcome-app example, so maybe it's related to how we set up the tests.
Fixes redhat-developer/vscode-java#1971
Signed-off-by: Snjezana Peco snjezana.peco@redhat.com