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

Change to -pedantic needs Eclipse restart #6507

Open
chrisrueger opened this issue Mar 14, 2025 · 3 comments · May be fixed by #6511
Open

Change to -pedantic needs Eclipse restart #6507

chrisrueger opened this issue Mar 14, 2025 · 3 comments · May be fixed by #6511
Assignees

Comments

@chrisrueger
Copy link
Contributor

chrisrueger commented Mar 14, 2025

During recent work with pedantic warnings I noticed a behavior that a change to -pendatic (e.g. in cnf/build.bnd) requires a Eclipse restart.
Reload workspace button

Image

is not enough.

Analysis

I believe the reason is related to this:

  • pedantic is mainly set in aQute.bnd.osgi.Processor.begin()

protected void begin() {
if (isTrue(getProperty(PEDANTIC)))
setPedantic(true);

  • which is called by

a) aQute.bnd.osgi.Processor.getProperties()

public Properties getProperties() {
if (fixup) {
fixup = false;
begin();

and

b) aQute.bnd.osgi.Analyzer.begin() (calls super.begin())

protected void begin() {
if (inited == false) {
inited = true;
super.begin();

The problem is those methods are guarded by the flag boolean Processor.fixup and boolean Analyzer.inited, which are only set once in those methods and never reset.
Basically this means that pedantic is only set when the Workspace is initialized.
The Workspace reload button does not have the same effect -it seems to reload every other properties, but not -pedantic seems to be a different thing.

Question:
Is this by design?

@chrisrueger chrisrueger self-assigned this Mar 14, 2025
@chrisrueger
Copy link
Contributor Author

As discussed with @pkriens the fixup and inited flags should be reset on Workspace-refresh too (Image )

So I will try to find a way.

@kriegfrj
Copy link
Contributor

Just as a suggestion of where to look: Does this perhaps have anything to do with the fact that the Bnd Workspace object is memoized in bndtools.CentralThis could be due to the fact that the Bnd Workspace object is memoized on startup in bndtools.centra.Central and kept in memory? A change to pedantic in build.bnd would need to be detected and updated in the in-memory copy of Workspace for it to take effect in subsequent Bndtools builds.

@chrisrueger
Copy link
Contributor Author

Just as a suggestion of where to look: Does this perhaps have anything to do with the fact that the Bnd Workspace object is memoized in bndtools.CentralThis could be due to the fact that the Bnd Workspace object is memoized on startup in bndtools.centra.Central and kept in memory? A change to pedantic in build.bnd would need to be detected and updated in the in-memory copy of Workspace for it to take effect in subsequent Bndtools builds.

Thanks @kriegfrj thats likely true somehow. I tried various approaches but I couldn't figure it out.
I gave up and just propose adding a hint in #6511

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants