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

Fix adding preview features to a visible project #1863

Merged
merged 1 commit into from
Oct 19, 2021

Conversation

snjeza
Copy link
Contributor

@snjeza snjeza commented Aug 30, 2021

Fixes redhat-developer/vscode-java#1971

Signed-off-by: Snjezana Peco snjezana.peco@redhat.com

@rgrunber
Copy link
Contributor

rgrunber commented Sep 13, 2021

The .vsix in the issue works for me, but not this PR. Specifically, if I monitor the .settings/org.eclipse.jdt.core.prefs in the real project (not the invisible link), it never reverts away from enabling+ignoring the preview features.

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).

@snjeza
Copy link
Contributor Author

snjeza commented Sep 13, 2021

The .vsix in the issue works for me, but not this PR.

You have to create .vsix.

@snjeza
Copy link
Contributor Author

snjeza commented Sep 13, 2021

test this please

@rgrunber
Copy link
Contributor

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 npm run build-server + vsce package with JDT-LS set on this change, the preview settings never get updated.

@snjeza
Copy link
Contributor Author

snjeza commented Sep 14, 2021

but If I build this PR with npm run build-server + vsce package with JDT-LS set on this change, the preview settings never get updated.

@rgrunber Could you, please, try now.

@rgrunber
Copy link
Contributor

I'll try this out again. I was also trying the non-rebased version (8180a65).

@rgrunber
Copy link
Contributor

rgrunber commented Sep 14, 2021

So If I'm understanding the logic correctly :

  • For every project treated as an invisible project (seems to happen on the syntax server side), we save the original enable+report options under the org.eclipse.jdt.ls.core node (not the org.eclipse.jdt.core one). We overwrite the project options as before because we simply don't know if/when we switch to standard mode.
  • Once the standard server takes over, we look at every non-invisible project (they should have been imported by now) and try to access those original org.eclipse.jdt.ls.core options. If they exist, we know we must have overridden the original options, and so we need to restore them.
  • The org.eclipse.jdt.ls.core node gets cleared so the same approach can happen again for the next time the project is treated as an invisible project.

@snjeza
Copy link
Contributor Author

snjeza commented Sep 14, 2021

@rgrunber You are right.

@rgrunber
Copy link
Contributor

rgrunber commented Sep 14, 2021

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.

@snjeza
Copy link
Contributor Author

snjeza commented Sep 14, 2021

Last thing I can currently think of : Is there any way to avoid forcing enable+report preview settings for the lightweight mode ?

cc @fbricon

@rgrunber rgrunber modified the milestone: Mid September 2021 Sep 15, 2021
@fbricon
Copy link
Contributor

fbricon commented Sep 21, 2021

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..
What I think would work much better (and simpler) is this:

  • add a invisible project nature to the actual invisible projects
  • detect invisible projects by their nature.
  • that's it. No need to change the existing logic of JVM changes

@snjeza
Copy link
Contributor Author

snjeza commented Sep 21, 2021

The issue happens when Java LS starts in the following way:

  • starts the Syntax server
  • the Syntax server creates an invisible project X
  • the Syntax server links the .settings directory and updates the preview property. See 733e4e1
  • the Syntax server exits
  • Java LS starts the Standard server
  • the Standard server import the X project with the updated preview property

The PR saves changes made by the Syntax server and restores them when starting the Standard server.

add a invisible project nature to the actual invisible projects
detect invisible projects by their nature.

Is there a way to know if the Syntax server has changed the preview property?

@fbricon
Copy link
Contributor

fbricon commented Sep 21, 2021

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?
It might no be possible, I don't remember the details of the latest implem.

@snjeza
Copy link
Contributor Author

snjeza commented Sep 21, 2021

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?
It might no be possible, I don't remember the details of the latest implem.

@fbricon you may want to take a look at redhat-developer/vscode-java#1657 (comment)

@fbricon
Copy link
Contributor

fbricon commented Sep 21, 2021

ok so how about: if invisible project and ./settings is linked, then do not update the JVM settings

@snjeza
Copy link
Contributor Author

snjeza commented Sep 21, 2021

ok so how about: if invisible project and ./settings is linked, then do not update the JVM settings

It is doable.

@snjeza
Copy link
Contributor Author

snjeza commented Sep 22, 2021

@fbricon @rgrunber I have updated the PR.

Comment on lines +330 to +336
// 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);
Copy link
Contributor

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?

Copy link
Contributor Author

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.

@@ -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));
Copy link
Contributor

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?

Copy link
Contributor

@rgrunber rgrunber Sep 25, 2021

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.

Copy link
Contributor Author

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?

Copy link
Contributor

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>
@snjeza
Copy link
Contributor Author

snjeza commented Sep 25, 2021

@fbricon @rgrunber I have updated the PR.

Copy link
Contributor

@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.

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));
Copy link
Contributor

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.

@rgrunber rgrunber merged commit 5eff580 into eclipse-jdtls:master Oct 19, 2021
@rgrunber rgrunber added this to the Mid October 2021 milestone Oct 19, 2021
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.

Code is compiled with preview features for no reason, causing the project not to run
3 participants