-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Allow all classes from a JAR, Module, or Package to be Included for Reflection #558
Comments
This feature is very welcomed! We're currently using the tracing agent together with our test suite to automatically pick up all use of reflection (which is somewhat error prone if low test coverage). This new feature in combination with the tracing agent would eliminate all reflection related runtime errors we get. So it'd be nice if it's made to work seamlessly together. |
Looks promising. A couple questions/suggestions.
A specific use-case I have now, for which I have a class CustomFilter implements PluginFilter {
@Override
boolean includeClass(Class<?> clazz) {
return Foo.class.isAssignableFrom(clazz);
}
@Override
boolean includeMethod(Method method) {
return method.getName().startsWith("create"); // + check returntype & parameter types
}
@Override
boolean includeConstructor(Constructor<?> cconstructor) {
return false;
}
@Override
boolean includeField(Field field) {
return false;
}
} |
@kristofdho this is possible, we need to be careful not to duplicate too much of functionality. Such fine-grained adjustments can currently be done with Native Image features. |
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:
The implementation should be
native-image
agnostic and should producereflect-config.json
based on the classpath. The build tool must crawl the classpath and based on the detected classes produce correspondingreflect-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:
Feature
subclasses that are needed only at build time.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:
The text was updated successfully, but these errors were encountered: