-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8273101: Eliminate the usage of threadgroup sandboxing in the java.util.logging #5326
Conversation
👋 Welcome back serb! A progress list of the required criteria for merging this PR into |
This fix requires coordinated closed changes so needs an Oracle sponsor. |
/reviewers 2 |
@prrace |
I believe we should have a CSR for this. It removes a long standing capability in the platform that was used by /csr |
@prrace has indicated that a compatibility and specification (CSR) request is needed for this pull request. |
Hmm I was under the impression this was removing AppContext itself but it is just removing the backdoor needed by logging |
@aivanov-jdk will help make sure the closed changes are pushed at exactly the same time as this gets pushed. |
/csr unneeded |
Even java.desktop does not support it fully, since for a couple of years nobody care about appcontext when write a new code. |
Right. I am also a bit uncomfortable about the inconsistency. That said - if everybody agrees that this should be done I have no objection. The changes to the java.util.logging implementation correspond to my expectation if this were to be carried through. |
@@ -1,77 +0,0 @@ | |||
/* |
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.
Humm... There's no direct reference to AppContext here. Maybe this test should be preserved?
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 uses it indirectly, the next line under security manager trigger creation of the appcontext:
ImageIO.read(is); // triggers calls to system loggers & creation of main AppContext
but I can preserve/rename it for sure.
No objection to removing this legacy/unused code but I think it would be useful to useful to have the JBS issue or the PR summary provide a bit more context. As I see it, this is just one piece of the overall cleanup and I assume there are more substantive changes to the java.desktop module coming, is that right? |
Yes, you are right. |
What is the plan to remove AppContext completely from java.desktop? It's okay to have a separate PR to remove the logging dependency on AppContext but I'd prefer to see AppContext be removed about the same time with this PR. |
I'll remove its used one by one from the external usage like in "java.base" here, then in Swing, then in 2D like fonts, then last in AWT. That change should not break something other than the tests which intentionally create different appcontexts. And it's easy to review. |
I have updated the PR and JBS |
Does anybody have any other suggestions? |
@mrserb This pull request has been inactive for more than 4 weeks and will be automatically closed if another 4 weeks passes without any activity. To avoid this, simply add a new comment to the pull request. Feel free to ask for assistance if you need help with progressing this pull request towards integration! |
Does anybody have any other suggestions? |
The change looks okay. My suggestion is to get 1-6 all ready to push around the same time. It's okay to have separate JBS issues and PRs. |
ok, I'll continue to work using the plan from the description. |
@mrserb This pull request has been inactive for more than 4 weeks and will be automatically closed if another 4 weeks passes without any activity. To avoid this, simply add a new comment to the pull request. Feel free to ask for assistance if you need help with progressing this pull request towards integration! |
@mrserb This pull request has been inactive for more than 8 weeks and will now be automatically closed. If you would like to continue working on this pull request in the future, feel free to reopen it! This can be done using the |
At the time Java supported applets and webstart, a special mechanism for launching various applications in one JVM was used to reduce memory usage and each application was isolated from each other.
This isolation was implemented via ThreadGroups where each application created its own thread group and all data for the application was stored in the context of its own group.
Some parts of the JDK used ThreadGroups directly, others used special classes like sun.awt.AppContext.
Such sandboxing became useless since the plugin and webstart are no longer supported and were removed in jdk11.
Note that this is just a first step for the overall cleanup, here is my plan:
The current PR is for the first step. So this is the request to delete the usage of AppContext in the LogManager and related tests.
Tested by tier1/tier2/tier3 and jdk_desktop tests.
Progress
Issue
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/5326/head:pull/5326
$ git checkout pull/5326
Update a local copy of the PR:
$ git checkout pull/5326
$ git pull https://git.openjdk.java.net/jdk pull/5326/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 5326
View PR using the GUI difftool:
$ git pr show -t 5326
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/5326.diff