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

IAnnotatedElementProvider to Access to ArgSpec/OptionSpec setter/getter field/method #2328

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Conversation

pvlasov
Copy link

@pvlasov pvlasov commented Jul 29, 2024

This pull request introduces IAnnotatedElementProvider interface implemented by FieldBinding and MethodBinding.
This allows to access underlying fields/methods of parameters and options.

See also issue #2325.

pvlasov added 3 commits July 23, 2024 18:47
Nasdanika CLI operates on top of picocli.
One of its features is generation of HTML documentation site and support
of extended documentation
(https://docs.nasdanika.org/core/cli/index.html#extended-documentation)

Currently this functionality works with CommandSpec by accessing user
object. To extend it to arguments and options it is necessary to be able
to access underlying fields/methods.

This commit introduces IReflector interface implemented by FieldBinding
and Method Binding.
Copy link
Owner

@remkop remkop left a comment

Choose a reason for hiding this comment

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

Thank you for the PR!
I put some comments. Can you take a look?

@pvlasov
Copy link
Author

pvlasov commented Feb 18, 2025

Hello,

I've synced the fork and ran a local build - it was successful on Java 17, Windows 11. Please let me know if there is anything else I need to do.

@remkop remkop added this to the 4.8 milestone Feb 19, 2025
remkop
remkop previously approved these changes Feb 19, 2025
@pvlasov
Copy link
Author

pvlasov commented Feb 19, 2025

I changed the switch which caused build failure to if-else in src/test/java/picocli/IAnnotatedElementProviderTest.java and ran builds with Java 8 and Java 17 on Windows.

My tests now pass on both Java 8 and Java 17, but the build (clean build) fails on groovy test (see below).

However, I cloned the main branch and its build also fails with the same message. So I think it is either my setup or something in the code which I did not touch.

Error message:

> Task :picocli-groovy:test FAILED

picocli.groovy.PicocliBaseScript2Test > testSubcommandMethodHelp FAILED
    java.lang.AssertionError at PicocliBaseScript2Test.groovy:432

68 tests completed, 1 failed, 2 skipped

@pvlasov
Copy link
Author

pvlasov commented Feb 27, 2025

Hello,

I've fixed the failing groovy test - please verify that the fix is OK. Builds are successful on Windows 11 with Java 8 and 17 and on Debian Linux with Java 17.

As I mentioned in my previous comment, the main branch build was also failing on the same groovy test in my environment. This change fixes the main branch build too.

As a side note, here is an example of this new functionality in action - generation of option and parameter documentation from annotated fields and methods:

Sharing it in case it might be of interest for the picocli community. More detailed documentation will be published soon.

For those who might need this functionality sooner than the official release there are two options.

Use Nasdanika snapshots repository

Add

    <repositories>
        <repository>
            <id>nasdanika-snapshots</id>
            <url>https://maven.nasdanika.org/snapshots</url>
        </repository>
    </repositories> 

to your pom.xml and change picocli version in your dependencies to 4.7.7-SNAPSHOT

Build locally

pvlasov added 2 commits March 1, 2025 07:56
It is needed to get annotations on method parameter options and
positional parameters.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants