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

Virgo/Design/QuasiFramework

< Virgo‎ | Design
Revision as of 09:51, 10 April 2013 by Gnormington.vmware.com (Talk | contribs) (Offline Dependency Resolution)

The purpose of the quasi framework is to provide a façade for inspecting and manipulating OSGi framework states without proliferating Equinox specific interfaces throughout Virgo.

The three main use cases for the quasi framework are offline dependency resolution, dump analysis, and inspection of framework state.

Offline Dependency Resolution

Offline dependency resolution occurs when an application is installed into Virgo in order to ensure the application resolves and any missing dependencies are automatically installed or auto-installed.

In this use case, the quasi framework is used to take a snapshot of the OSGi framework, install bundles into this side state, attempt to resolve them, auto-install any missing dependencies from the Virgo repository, and repeat until no more progress can be made. If this process is successful, the bundles are then installed into the OSGi framework. If the process is unsuccessful, the quasi framework is dumped to disk for subsequent analysis and the OSGi framework is not "infected" with unresolvable bundles.

The installation use case is offline with respect to the OSGi framework state (unless and until the quasi framework state is committed to the OSGi framework) and is online with respect to the region digraph. In this case, the quasi framework contains a snapshot of the OSGi framework, but refers to the "live" region digraph. Quasi framework - live digraph.png

The live region digraph is used because the region digraph is implemented using OSGi framework hooks with global effects and so it was not thought to be possible to create a snapshot of the region digraph for use during offline resolution. Instead the quasi framework creates a temporary "coregion" to contain any quasi bundles installed into the quasi framework. In the region digraph, the coregion is connected directly to and from the user region with all resources visible in both directions. Thus the coregion's contents are equivalent to user region contents, but can easily be cleaned up by deleting the coregion. The downside of using the live region digraph is that the coregion will briefly be visible during offline dependency resolution. However, since the bundle ids of quasi bundles are not valid in the live OSGi framework, it is unlikely that the coregion could be abused even if some other part of the system noticed its existence and read its contents (i.e. the bundle ids in the coregion). The coregion is deleted when the quasi framework is destroyed.

(It may be possible to use a snapshot of the region digraph for offline dependency resolution by inquiring the snapshot's resolver hook factory and setting this into the snapshot of the OSGi framework state.)

Dump Analysis

In this use case, the quasi framework is used to analyse the contents of a dump. The dump may have been generated when offline dependency resolution fails. Alternatively, the dump may have been generated by some other failure or on request by a user.

The dump analysis use case is completely offline in the sense that live state is not affected. In this case, the quasi framework contains snapshots of the OSGi framework and of the region digraph that were dumped, e.g. on a resolution failure.

The resolver hook factory is queried from the region digraph and set into the OSGi framework state so that resolution in the state respects the original region digraph.

Framework State Inspection

In this use case, the quasi framework provides an Equinox neutral abstraction for inspecting the contents of the OSGi framework, for example from Virgo's command line shell. In this case, the quasi framework contains a snapshot of the OSGi framework, but refers to the "live" region digraph.

Interfaces

The quasi framework supports the following interfaces:

  • QuasiFrameworkFactory with methods to create a quasi framework based on:
    • a snapshot of the current OSGi framework state and the region digraph, or
    • a directory containing dumps of the OSGi framework state and the region digraph.
  • QuasiFramework with methods to:
    • install a bundle into the quasi framework (as a quasi bundle, meaning it only exists in the quasi framework)
    • inquire the quasi framework
    • attempt to resolve the quasi bundles
    • diagnose why a particular quasi bundle failed to resolve
    • commit all the quasi bundles by installing corresponding bundles in the OSGi framework
    • destroy the quasi framework by deleting any associated coregion (described below).

Back to the top