Add AnalysisPlugin interface and implementation#7095
Draft
chrisrueger wants to merge 3 commits intobndtools:masterfrom
Draft
Add AnalysisPlugin interface and implementation#7095chrisrueger wants to merge 3 commits intobndtools:masterfrom
chrisrueger wants to merge 3 commits intobndtools:masterfrom
Conversation
Co-authored-by: laeubi <1331477+laeubi@users.noreply.github.com>
Co-authored-by: laeubi <1331477+laeubi@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #6772
This pull request introduces a new
AnalysisPluginextension point to the bnd tool, allowing plugins to receive callbacks about analysis decisions—especially the reasoning behind version range choices for package imports. It provides both the interface and documentation for plugin authors, as well as comprehensive tests to ensure correct behavior and ordering.The most important changes are:
New Plugin Extension Point
AnalysisPlugininterface inaQute.bnd.service, enabling plugins to receive notifications about version range decisions and other analysis events during the bundle analysis phase. (biz.aQute.bndlib/src/aQute/bnd/service/AnalysisPlugin.java)Analyzer Integration
Analyzerto callreportImportVersion()on all registeredAnalysisPlugininstances whenever it determines a version range for an import, including a human-readable explanation for the decision. (biz.aQute.bndlib/src/aQute/bnd/osgi/Analyzer.java) [1] [2]Documentation
AnalysisPlugininterface, usage examples, and typical use cases for tracking and logging analysis decisions. (docs/_plugins/analysisplugin.md)Testing
AnalysisPluginextension, verifying that plugins are called, receive correct version decision data, and respect plugin ordering. (biz.aQute.bndlib.tests/test/test/AnalysisPluginTest.java)