You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
is not enough.
Analysis
I believe the reason is related to this:
pedantic is mainly set in aQute.bnd.osgi.Processor.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?
The text was updated successfully, but these errors were encountered:
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.
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
During recent work with pedantic warnings I noticed a behavior that a change to
-pendatic
(e.g. incnf/build.bnd
) requires a Eclipse restart.Reload workspace button
is not enough.
Analysis
I believe the reason is related to this:
aQute.bnd.osgi.Processor.begin()
bnd/biz.aQute.bndlib/src/aQute/bnd/osgi/Processor.java
Lines 1036 to 1038 in 2ec2d15
a) aQute.bnd.osgi.Processor.getProperties()
bnd/biz.aQute.bndlib/src/aQute/bnd/osgi/Processor.java
Lines 635 to 638 in 2ec2d15
and
b) aQute.bnd.osgi.Analyzer.begin() (calls
super.begin()
)bnd/biz.aQute.bndlib/src/aQute/bnd/osgi/Analyzer.java
Lines 1777 to 1780 in 2ec2d15
The problem is those methods are guarded by the flag
boolean Processor.fixup
andboolean 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?
The text was updated successfully, but these errors were encountered: