Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If you have a common eclipse/osgi code platform on which you build various products can you/should you inherit activators from the common code

E.g.

org.test.common.PluginActivator
org.test.common.ui.UIPluginActivator

org.test.product1.Product1PluginActivator
org.test.product1.ui.Product1UIPluginActivator

org.test.product2.Product2PluginActivator
org.test.product2.ui.Product2PluginActivator

I want to have all the UI activators inheriting from the common one, and the same for the non-ui activators. The start methods would all be calling super... However I am wondering if this is bad osgi/bundle practice or could cause problems.

Does anyone have any ideas/opinions on this?

share|improve this question

3 Answers

up vote 3 down vote accepted

If the child can't run without the parent's bundle anyway (i.e. it has a functional dependency on it), you're not adding any additional coupling by making the Activator inherit from it.

I'd be wary of inheriting from a common parent unless the plugin already had reason to do so as you're forcing the bundle to be loaded even if you're only inheriting some constant.

share|improve this answer
If you have checked <b>Activate this plugin when one of its classes is loaded</b> will it be loaded anyway if you haven't inherited and access the constant? – AntóinÓg Aug 19 '09 at 16:59
1  
It will, but then you would be better to not reference the constant if that is the only relationship between the two – Rich Seller Aug 19 '09 at 17:02
I guess the use case is more like you have init code in the common bundle that you want to ensure is run, and you call it from the common activator start method, then accessing the bundle (via a constant etc.) to force loading and ensure init code is run. – AntóinÓg Aug 19 '09 at 17:17
1  
that sounds like a code smell to me. Generally the plugin should be lazily loaded when firt needed, not when your class is loaded. – Rich Seller Aug 19 '09 at 17:25

I'm assuming you're doing Eclipse RCP because otherwise I'd recommend Spring DM (or iPOJO, Google Guice with Peaberry, or Declarative Services, ...). That way you'd never need to write another bundle activator again.

On the other hand, my team went with the common abstract BundleActivator for our RCP-related bundles. To me, having the actual bundle activators in a central bundle(s) increases coupling.

share|improve this answer

I would not, I would actually consider that an abuse of subclassing in general (rather than strictly from OSGi point of view).

IMHO the best is to keep the activator class itself minimal (as in code and as in runtime performance footprint), mainly delegating real work -if any- to worker classes. if you have to subclass anything, you can do that with those worker classes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.