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

[java] Support loading classes from java runtime images #4628

Merged
merged 13 commits into from
Jan 5, 2024

Conversation

adangel
Copy link
Member

@adangel adangel commented Jul 6, 2023

Describe the PR

That's one missing piece to support running PMD on a different JRE
than the one used for analyzing. For Java up to version 8, one can put
jre/lib/rt.jar on the auxclasspath. But since Java 9, the runtime classes
are stored in runtime images (e.g. jmods/java.base.jmod...), that need to be loaded through the
jrt:/ file system.

Since the jrt-URLs are not connected anymore to a specific runtime
image, AsmSymbolResolver needs to use directly the streams instead
of URLs.

The ClasspathClassLoader is basically disabled to actually load
classes for reflection (#loadClass). In PMD 7, we shouldn't use that
anymore.

See also https://openjdk.org/jeps/220

I've orientated myself by https://github.com/spotbugs/spotbugs/blob/master/spotbugs/src/main/java/edu/umd/cs/findbugs/classfile/impl/JrtfsCodeBase.java and chose to also create a map for packages to modules. In java 17, there are 70 modules. So this hopefully helps a bit for performance when looking up classes.

Related issues

Ready?

  • Added unit tests for fixed bug/feature
  • Passing all unit tests
  • Complete build ./mvnw clean verify passes (checked automatically by github actions)
  • Added (in-code) documentation (if needed)

adangel added 3 commits July 6, 2023 17:38
That's one missing piece to support running PMD on a different JRE
than the one used for analyzing. For Java up to version 8, one can put
lib/rt.jar on the auxclasspath. But since Java 9, the runtime classes
are stored in runtime images, that need to be loaded through the
jrt:/ file system.

Since the jrt-URLs are not connected anymore to a specific runtime
image, AsmSymbolResolver needs to use directly the streams instead
of URLs.

The ClasspathClassLoader is basically disabled to actually load
classes for reflection (#loadClass). In PMD 7, we shouldn't use that
anymore.

See also https://openjdk.org/jeps/220
@adangel adangel added the in:type-resolution Affects the type resolution code label Jul 6, 2023
@adangel adangel added this to the 7.0.0 milestone Jul 6, 2023
@ghost
Copy link

ghost commented Jul 6, 2023

1 Message
📖 Compared to master:
This changeset changes 0 violations,
introduces 0 new violations, 0 new errors and 0 new configuration errors,
removes 0 violations, 0 errors and 0 configuration errors.
Download full report as build artifact
Compared to master:
This changeset changes 0 violations,
introduces 0 new violations, 1 new errors and 0 new configuration errors,
removes 27 violations, 0 errors and 0 configuration errors.
Full report

Generated by 🚫 Danger

Copy link
Member

@oowekyala oowekyala left a comment

Choose a reason for hiding this comment

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

Very nice! I didn't know about this jrt file system

@adangel adangel changed the title [core] Support loading classes from java runtime images [java] Support loading classes from java runtime images Oct 26, 2023
adangel and others added 4 commits October 26, 2023 15:46
Co-authored-by: Clément Fournier <[email protected]>
This includes some stats in AsmSymbolResolver.

Co-authored-by: Clément Fournier <[email protected]>
This makes it probably a bit faster and doesn't leave an open groovy
jar file behind.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in:type-resolution Affects the type resolution code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants