native-build-tools icon indicating copy to clipboard operation
native-build-tools copied to clipboard

Allow all classes from a JAR, Module, or Package to be Included for Reflection

Open vjovanov opened this issue 1 year ago • 3 comments

End users with third-party dependencies without provided reflection metadata must currently devise the required metadata themselves. Producing metadata is time-consuming and it can discourage users from compiling natively.

We need a mechanism in both Maven and Gradle plugins to include all elements for reflection:

  1. From any maven dependency.
  2. From any package prefix.
  3. From any module, including the JDK modules.

The implementation should be native-image agnostic and should produce reflect-config.json based on the classpath. The build tool must crawl the classpath and based on the detected classes produce corresponding reflect-config.json files.

This feature has also been requested for Native Image directly in the reflect-config.json files. This is not feasible as it would make it too easy for the libraries to include all elements and bloat images across the ecosystem.

The Policy for Selecting Classes

We would include all classes in the jar (module, or package) except:

  1. The Native Image Feature subclasses that are needed only at build time.
  2. The lambdas due to the need to parse all bytecodes to fetch them.
  3. The proxy classes, due to an exponential number of interface configurations that could create them.

The reflect-config.json would be computed by crawling the whole classpath (when the classpath changes) and by traversing all class files in the library. The functionality needs to be implemented as a common functionality.

Notifying the Users About the Added Elements

Each build should contain the output containing the list of packages that are bulk-added for reflection and notifying that these might bloat the native image size. This is necessary so users know what was included and that they expect the image-size increase.

Allowing Access to Generated Reflection Metadata

The generated metadata should be output to a predefined location (mentioned in the build output) and editable by the end users so they can choose to use it as a starting point for their hand-crafted metadata.

Implementation in Gradle

The current DSL proposal for Gradle follows. Under the individual binary section we would add a block:

includeForReflection {
  packages.add("my.app.tests.**") // testing should just work, don't care
  packages.add("my.app.messages.json.*") // all classes in a package are JSON messages
  modules.add("java.desktop") // my swing app should just work
  dependencies.add("com.graphql-java:graphql-java:19.2") // this library does not provide reflection
}

vjovanov avatar Jan 12 '24 15:01 vjovanov