Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Equinox/p2/Director application"

< Equinox‎ | p2
Line 10: Line 10:
 
 
 
== Running inside the target application ==
 
== Running inside the target application ==
This mode replaces the [update manager command line application|http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/update_standalone.html] .
 
 
In this mode, the provisioning operation happens from within the targeted produced that you are provisioning. It is equivalent to starting up the targeted product and using the p2 UI to perform the equivalent operation.  
 
In this mode, the provisioning operation happens from within the targeted produced that you are provisioning. It is equivalent to starting up the targeted product and using the p2 UI to perform the equivalent operation.  
  
This means that the target application has to be in a runnable state and that it has to contain the the director application. Also since the target product will have run cache files will have been created in the configuration folder (e.g. configuration/org.eclipse.osgi).
+
This means that the target application has to be in a runnable state and that it has to contain the director application bundle. Also since the target product will have run, cache files will have been created in the configuration folder (e.g. configuration/org.eclipse.osgi).
  
+
The following example shows the command line used to install CDT into the SDK. CDT is obtained from a local update site.
This example installs CDT into an eclipse platform.
+
<tt>
<command>
+
  <targetProductFolder>/eclipse  
 +
    -application org.eclipse.equinox.p2.director.app.application -metadataRepository file:d:/tmp/cdt/site.xml
 +
    -artifactRepository file:d:/tmp/cdt/site.xml
 +
    -installIU org.eclipse.cdt.feature.group
 +
</tt>
 +
This mode replaces the update manager command line application (http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/update_standalone.html).
  
 
== Provisioning without running the target application ==
 
== Provisioning without running the target application ==
  
 
[[Category:Equinox_p2|Director application]]
 
[[Category:Equinox_p2|Director application]]

Revision as of 11:36, 24 April 2008

The director application is a headless way of performing some of the p2 operations such as installing or uninstalling installable units. Given the appropriate metadata, this application is capable on provisioning a complete installation from scratch or simply extending your application.

Depending on the needs, this application can be executed inside or outside of the application being provisioned


Terminology

Director application 
the application performing p2 operations such as install or uninstall. This application is provided by the org.eclipse.equinox.p2.director.app bundle.
Provisioning operation 
an operation installing, uninstalling features.
Target product 
the installation targeted by the provisioning operation.

Running inside the target application

In this mode, the provisioning operation happens from within the targeted produced that you are provisioning. It is equivalent to starting up the targeted product and using the p2 UI to perform the equivalent operation.

This means that the target application has to be in a runnable state and that it has to contain the director application bundle. Also since the target product will have run, cache files will have been created in the configuration folder (e.g. configuration/org.eclipse.osgi).

The following example shows the command line used to install CDT into the SDK. CDT is obtained from a local update site.

 <targetProductFolder>/eclipse 
   -application org.eclipse.equinox.p2.director.app.application -metadataRepository file:d:/tmp/cdt/site.xml 
   -artifactRepository file:d:/tmp/cdt/site.xml
   -installIU org.eclipse.cdt.feature.group

This mode replaces the update manager command line application (http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/update_standalone.html).

Provisioning without running the target application

Back to the top