Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ What is a dynamic plug-in?"

 
m
 
Line 1: Line 1:
''
+
Prior to Eclipse 3.0 the platform had to be restarted in order for  added, removed, or changed plug-ins to be recognized. This was largely owing to the fact that the plug-in registry was computed statically at start-up, and no infrastructure was available for changing the registry on the fly.  In Eclipse 3.0, plug-ins can be added or removed dynamically, without restarting. Dynamicity, however, does not come for free.  Roughly speaking, plug-ins fall into four  categories of dynamicity.
+
+
+
+
  
 +
* <i>Nondynamic</i> plug-ins do not support dynamicity at all. Plug-ins written prior to Eclipse 3.0 are commonly in this category.  Although they can still often be dynamically added or removed,  there may be unknown side effects.  Some of these plug-ins&#146;  classes may still  be referenced, preventing the plug-ins from being completely unloaded.  A nondynamic plug-in with extension points will typically not be  able to handle extensions that are added or removed after the plug-in  has started.
  
 +
* <i>Dynamic-aware</i> plug-ins support other plug-ins being dynamic but do not necessarily support dynamic addition or removal of themselves. The generic workbench plug-in falls into  this category. It supports other plug-ins that supply views, editors, or other workbench extensions being added or removed, but it cannot be dynamically added or removed itself. It is generally most important for plug-ins near the bottom of a dependency chain to be dynamic aware.
  
 +
* <i>Dynamic-enabled</i> plug-ins support dynamic addition or removal of themselves, but do not necessarily support addition or removal of plug-ins they interact with.  A well-behaved plug-in written prior to Eclipse 3.0  should already be dynamically enabled. Dynamic enablement  involves following good programming practices.  If your plug-in registers  for services, adds itself as a listener, or allocates operating system resources, it should always clean up after itself in its inherited <tt>Plugin.shutdown</tt> method. A plug-in that does this consistently is already dynamic enabled. It is most important for plug-ins near the top of a dependency chain to be dynamic enabled.
  
 +
* <i>Fully dynamic</i> plug-ins are both dynamic aware and dynamic enabled.  A system in which all plug-ins are fully dynamic is very powerful, as any individual plug-in can be added, removed, or upgraded in place without taking the system down. In fact, such a system would never have any reason to shut down as it could heal itself of any damage or bug by doing a live update of the faulty  plug-in.  OSGi, the Java component architecture that is used to implement the Eclipse kernel, is designed around this goal of full dynamicity.
  
Prior to Eclipse 3.0 the platform had to be restarted in order for
+
The dynamicity of a plug-in depends on the dynamic capabilities of the plug-ins it interacts with. Even if a plug-in is fully dynamic, it may not be possible to cleanly remove it if a plug-in that interacts with it is not dynamic aware. As long as someone maintains a reference to a class defined in a plug-in, that plug-in cannot be completely removed from memory.
added, removed, or changed plug-ins to be recognized.
+
This was largely owing to the fact that the plug-in registry was computed
+
statically at start-up, and no infrastructure was available for changing the
+
registry on the fly.  In Eclipse 3.0, plug-ins can be added or
+
removed dynamically, without restarting. Dynamicity, however, does not
+
come for free.  Roughly speaking, plug-ins fall into four
+
categories of dynamicity.
+
 
+
 
+
*
+
<i>Nondynamic</i> plug-ins do not support dynamicity at all.
+
Plug-ins written prior to Eclipse 3.0 are commonly in this category. 
+
Although they can still often be dynamically added or removed,
+
there may be unknown side effects.  Some of these plug-ins&#146;
+
classes may still
+
be referenced, preventing the plug-ins from being completely unloaded. 
+
A nondynamic plug-in with extension points will typically not be
+
able to handle extensions that are added or removed after the plug-in
+
has started.
+
</li>
+
 
+
 
+
 
+
 
+
*
+
<i>Dynamic-aware</i> plug-ins support other plug-ins
+
being dynamic but do not necessarily support dynamic
+
addition or removal of themselves. The generic workbench plug-in falls into
+
this category.
+
It supports other plug-ins that supply views,
+
editors, or other workbench extensions being added or removed, but it cannot be dynamically
+
added or removed itself. It is generally most important for plug-ins
+
near the bottom of a dependency chain to be dynamic aware.
+
</li>
+
 
+
 
+
 
+
*
+
<i>Dynamic-enabled</i> plug-ins support dynamic addition or removal
+
of themselves, but do not necessarily support addition or removal of plug-ins
+
they interact with.  A well-behaved plug-in written prior to Eclipse 3.0
+
should already be dynamically enabled. Dynamic enablement
+
involves following good programming practices.  If your plug-in registers
+
for services, adds itself as a listener, or allocates operating system resources,
+
it should always clean up after itself in its inherited <tt>Plugin.shutdown</tt> method.
+
A plug-in that does this consistently is already dynamic enabled. It is most
+
important for plug-ins near the top of a dependency chain to be dynamic
+
enabled.
+
</li>
+
 
+
 
+
 
+
*
+
<i>Fully dynamic</i> plug-ins are both dynamic aware and dynamic enabled.
+
A system in which all plug-ins are fully dynamic
+
is very powerful, as any individual plug-in can be added,
+
removed, or upgraded in place without taking the system down. In fact,
+
such a system would never have any reason to shut down as it could
+
heal itself of any damage or bug by doing a live update of the faulty
+
plug-in.  OSGi, the Java component architecture that is used to implement
+
the Eclipse kernel, is designed around this goal of full dynamicity.
+
</li>
+
 
+
 
+
 
+
 
+
 
+
The dynamicity of a plug-in depends on the dynamic capabilities
+
of the plug-ins it interacts with. Even if a plug-in is fully dynamic, it
+
may not be possible to cleanly remove it if a plug-in that interacts with it
+
is not dynamic aware. As long as someone maintains a reference to a
+
class defined in a plug-in, that plug-in cannot be completely removed
+
from memory.
+
When a request is made to dynamically add or remove a plug-in,
+
the platform will always make a best effort to do so, regardless
+
of the dynamic capabilities of that plug-in. However, there may
+
be unexpected errors or side effects if all plug-ins in the system
+
that reference it are not well-behaved, dynamic citizens.
+
 
+
 
+
 
+
 
+
  
 +
When a request is made to dynamically add or remove a plug-in,  the platform will always make a best effort to do so, regardless of the dynamic capabilities of that plug-in. However, there may be unexpected errors or side effects if all plug-ins in the system  that reference it are not well-behaved, dynamic citizens.
  
 
== See Also: ==
 
== See Also: ==
 +
*[[FAQ How do I make my plug-in dynamic enabled?]]
 +
*[[FAQ How do I make my plug-in dynamic aware?]]
  
 
+
{{Template:FAQ_Tagline}}
[[FAQ_How_do_I_make_my_plug-in_dynamic_enabled%3F]]
+
 
+
 
+
[[FAQ_How_do_I_make_my_plug-in_dynamic_aware%3F]]
+
 
+
<hr><font size=-2>This FAQ was originally published in [http://www.eclipsefaq.org Official Eclipse 3.0 FAQs]. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the [http://www.eclipse.org/legal/epl-v10.html Eclipse Public License v1.0].</font>
+

Latest revision as of 22:00, 29 May 2006

Prior to Eclipse 3.0 the platform had to be restarted in order for added, removed, or changed plug-ins to be recognized. This was largely owing to the fact that the plug-in registry was computed statically at start-up, and no infrastructure was available for changing the registry on the fly. In Eclipse 3.0, plug-ins can be added or removed dynamically, without restarting. Dynamicity, however, does not come for free. Roughly speaking, plug-ins fall into four categories of dynamicity.

  • Nondynamic plug-ins do not support dynamicity at all. Plug-ins written prior to Eclipse 3.0 are commonly in this category. Although they can still often be dynamically added or removed, there may be unknown side effects. Some of these plug-ins&#146; classes may still be referenced, preventing the plug-ins from being completely unloaded. A nondynamic plug-in with extension points will typically not be able to handle extensions that are added or removed after the plug-in has started.
  • Dynamic-aware plug-ins support other plug-ins being dynamic but do not necessarily support dynamic addition or removal of themselves. The generic workbench plug-in falls into this category. It supports other plug-ins that supply views, editors, or other workbench extensions being added or removed, but it cannot be dynamically added or removed itself. It is generally most important for plug-ins near the bottom of a dependency chain to be dynamic aware.
  • Dynamic-enabled plug-ins support dynamic addition or removal of themselves, but do not necessarily support addition or removal of plug-ins they interact with. A well-behaved plug-in written prior to Eclipse 3.0 should already be dynamically enabled. Dynamic enablement involves following good programming practices. If your plug-in registers for services, adds itself as a listener, or allocates operating system resources, it should always clean up after itself in its inherited Plugin.shutdown method. A plug-in that does this consistently is already dynamic enabled. It is most important for plug-ins near the top of a dependency chain to be dynamic enabled.
  • Fully dynamic plug-ins are both dynamic aware and dynamic enabled. A system in which all plug-ins are fully dynamic is very powerful, as any individual plug-in can be added, removed, or upgraded in place without taking the system down. In fact, such a system would never have any reason to shut down as it could heal itself of any damage or bug by doing a live update of the faulty plug-in. OSGi, the Java component architecture that is used to implement the Eclipse kernel, is designed around this goal of full dynamicity.

The dynamicity of a plug-in depends on the dynamic capabilities of the plug-ins it interacts with. Even if a plug-in is fully dynamic, it may not be possible to cleanly remove it if a plug-in that interacts with it is not dynamic aware. As long as someone maintains a reference to a class defined in a plug-in, that plug-in cannot be completely removed from memory.

When a request is made to dynamically add or remove a plug-in, the platform will always make a best effort to do so, regardless of the dynamic capabilities of that plug-in. However, there may be unexpected errors or side effects if all plug-ins in the system that reference it are not well-behaved, dynamic citizens.

See Also:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top