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

I am executing Eclipse headless (via java -jar org.eclipse.equinox.launcher_.jar) and I realized that when I invoke a class that is inside a plugin with an Activator defined as "Activate this plugin when one of its classes is loaded", the Activator.start(...) method is not invoked. I need this start method to be invoked, so options are: 1- Force to call the Activator by myself (it doesn't seem obvious) 2- Understand and solve the problem that causes the Activator.start method not to be invoked automatically.

Please, I appreciate any suggestions. Thanks.

share|improve this question

3 Answers

I realized that the problem is that my plugins are not installed. If I execute equinox launcher with console option and I execute ss command, I verified that my plugins are not available. So, the question is: how can I force to install (and start) my own plugins when executing equinox launcher from command line ? I tried with SET CLASSPATH sentence, but still I am experiencing the problem.

Thanks.

share|improve this answer

I've been investigating a bit more the problem and I think there are some concepts that I don't understand very well. The point is that I have a very simple plugin with MyHelloWorldTask class. When I execute the following command line: java -jar org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar -console -data myRuntimeWorkspace -application org.eclipse.ant.core.antRunner -buildfile myDevelopmentWorkspace\build.xml The OSGI environment has my plugin installed and started, so I see that the Activator class is invoked because some println methods located in start() method are printed and everything works fine. I added in the start() method something like "this.getDefault()" and it returns a correct value. However, when the code in MyHelloWorldTask.execute() method invokes Activator.getDefault() it returns null (in fact my code needs to access to the Activator to retrieve some extensions info such as IExtensionPoint extension = Platform.getExtensionRegistry().getExtensionPoint( Activator.getContext().getBundle().getSymbolicName(), "generators");

I don't understand why Activator.getDefault returns null when it is invoked from MyHelloWorldTask because I verified that the plugin is started, so it seems as if 2 different Activator instances were used. An another thing probably related to that: why Ant needs a classpath when it is executed in an OSGI environment such as Eclipse (headless or normal) ? Do Ant and Equinox share the same VM or are they using different VM ?

Thanks

share|improve this answer

Platform.getBundle(Activator.PLUGIN_ID). It returns the bundle id that we see in OSGI environment for my plugin A.

So, as a by-pass, there is one way to force the Activator of plugin A to be initialized in AntRunner is the following one: BundleContext context = Platform.getBundle(Activator.PLUGIN_ID).getBundleContext();
new Activator().start(context);

However, I would like to know the answers to my previous post: why Ant needs a classpath when it is executed in an OSGI environment such as Eclipse (headless or normal) ? Do Ant and Equinox share the same VM or are they using different VM ?

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.