Go inside the Eclipse IDE implementation to understand how OSGi works

OSGi became very popular today, thanks to its modularity approach and its capability to enforce logical boundaries between modules.  Many known applications chose it to enforce the modularity, we can enumerate eclipse, GlassFish and Oracle JDeveloper.

To understand OSGi concepts we will try to go inside eclipse IDE, which uses equinox as OSGi container.

Let’s begin with the typical OSGi definition:

OSGi reduces complexity by providing a modular architecture for today’s large-scale distributed systems as well as small, embedded applications. Building systems from in-house and off-the-shelf modules significantly reduces complexity and thus development and maintenance expenses. The OSGi programming model realizes the promise of component-based systems.

The trivial part of OSGi is modularity, let’s discover what’s the OSGi modules?

OSGI modules are called Bundles and every application therefore consist of at least one bundle. These bundles are executed inside a container.

Which contract must implements every module to be integrated into the container?

Let’s take as example the bundle “org.eclipse.equinox.jsp.jasper” from the Eclipse IDE and search for all its implemented interfaces, for that we can execute the following CQLinq request:

from t in Types where t.ParentProject.Name==”org.eclipse.equinox.jsp.jasper_1.0.300.v20110502
let interfaces=t.InterfacesImplemented
from interface in interfaces select interface

This bundle implements The BundleActivator interface from the OSGi package, this interface contains two methods start and stop useful to customize the starting and stopping of the bundle.

Another specificity of a bundle is its manifest file, here’s a part from the “org.eclipse.equinox.jsp.jasper” manifest file:

Manifest-Version: 1.0
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: CDC-1.0/Foundation-1.0,J2SE-1.3
Bundle-SymbolicName: org.eclipse.equinox.jsp.jasper
Eclipse-LazyStart: true
Eclipse-SourceReferences: scm:cvs:pserver:dev.eclipse.org:/cvsroot/rt:
 org.eclipse.equinox/server-side/bundles/org.eclipse.equinox.jsp.jasper;tag=v20110502
Bundle-Activator: org.eclipse.equinox.internal.jsp.jasper.Activator

As we can observe this manifest contains some metadata needed by the container, like specifying the bundle activator class which implements the BundleActivator interface.

Here’s a simplified representation of a bundle:

To have an idea of all bundles used by eclipse, let’s search for all classes implementing the BundleActivator interface.

from t in Types where t.Implement (“org.osgi.framework.BundleActivator“)
select new { t, t.NbBCInstructions }

Who manages the bundle and invokes the BundleActivator methods?

To discover that, let’s search for methods invoking directly or indirectly the BundleActivator.start method

from m in Methods
let depth0 = m.DepthOfIsUsing(“org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleActivator)“)
where depth0 >= 0 orderby depth0
select new { m, depth0 }

The bundle is activated by the OSGi framework when it’s launched. The framework class is started by the equinox container. To understand better what happens when the container starts, here are some actions executed when the container is launched:

When the container is launched, it initialize the OSGi framework, which gets all installed bundles, and for each one it creates an instance of BundleHost class, and store them into a repository.

The BundleHost class implements the Bundle interface, which contains methods like start, stop, uninstall and update, these methods are needed to manage the bundle life cycle.

To resume, the OSGi container is launched by the Equinoxlauncher, which initialize the framework. The framework class  load the bundles and activates them.

After discovering some basic concepts about bundle and container, let’s go deep inside bundles and discover how they work internally.

Let’s take as example the org.eclipse.equinox.http.servlet bundle and search for methods invoked by the start method of its Activator class.

This bundle creates a service and registers it into the container. A service in OSGi is defined by a standard Java class or interface. Typically a Java interface is used to define the service interface. The service is the preferred method bundles should use to communicate between each other.

Here are some useful scenarios of using services:

  • Export functionality from a bundle to other bundles.
  • Import functionality from other bundles.
  • Register listeners for events from other bundles.

To resume, each bundle can uses or declares some services, what enforce the component design approach, here’s the new representation of the OSGi bundle.

If the bundle uses services to communicate with other bundles, how it communicates with other jars?

If we develop a bundle and try to use a class from another jar, we can be surprised that it will not works as expected, the reason is that the ClassLoader is hooked by the OSGi container.

Let’s search which method invokes java.lang.Thread.setContextClassLoader to overload the standard class loader.

from m in Methods where m.IsUsing (“java.lang.Thread.setContextClassLoader(ClassLoader)“)
select new { m, m.NbBCInstructions }

Many methods invoke it including the EquinoxLauncher. Every time the bundle try to create a class instance, the OSGi container will check if the code is permitted to did this action or not, and here come the role of imported and exported package in the manifest file.

Export-Package: org.eclipse.equinox.http.servlet;version=”1.1.0″
Import-Package: javax.servlet;version=”2.3″,javax.servlet.http;version
=”2.3″,org.osgi.framework;version=”1.3.0″,org.osgi.service.http;version=”[1.2,1.3)”

The bundle declares explicitly the exported and imported packages. Let’s search for packages used by org.eclipse.equinox.http.servlet bundle and verify if it use only imported package from the manifest file.

from n in Packages where n.IsUsedBy (“org.eclipse.equinox.http.servlet_1.1.200.v20110502“)
select new { n, n.NbBCInstructions }

As we can observe all packages used are specified in the manifest file, in the import package section.

The exported package represents the package that can be used from other bundles. It’s represented by the ExportedPackage interface, and we can search for the container classes using this interface.

from t in Types where t.IsUsing (“org.osgi.service.packageadmin.ExportedPackage“)
select new { t, t.NbBCInstructions }

What interesting with this new capability, is that the bundle will have a well defined boundary. What it uses and what it exposes as services is very well specified. This capability to treat imported and exported packages is managed by the OSGi modules layer.

We can enforce the check of using imported packages by using  tools, for example with CQLinq we can write some rules warning each time a project use packages other than specified ones, but it’s better to have these checks in runtime execution, so the developer can’t break these rules.

Let’s come back to the OSGi container and discover which services it provides?

Container services

As we discovered before the container is launched by the EquinoxLauncher class and the framework class initialize and launch the bundles. to detect which services are provided. Let’s search for all classes used in the framework initialization method.

from t in Types where t.IsUsedBy (“org.eclipse.osgi.framework.internal.core.Framework.initialize(FrameworkAdaptor)“)
select new { t, t.NbBCInstructions }

Some classes are already discovered before like BundleRepository, BundleHost, PackageAdminImpl and ServiceRegistry.

What about the other classes:

  • StartLevelManager:
    Each OSGi Bundle is associated with a start level that enable the server to control the relative starting and stopping order of bundles. Only bundles that have a start level less or equal to the active start level of the server framework must be active. Usually, a bundle with a smaller start level tends to be started earlier.
  • SecurityAdmin:
    The security layer handles the security aspects by limiting bundle functionality to pre-defined capabilities.
  • EventManager:
    The Event Admin service provides a publish-subscribe model for handling events. It is realized according to the OSGi Event Admin Service Specification.
    The Event Admin service dispatches events between Event Publishers and Event Subscribers (Event Handlers) by interposing an event channel. Publishers post events to the channel and the event channel defines which handlers needs to be notified. Thus publishers and handlers have no direct knowledge of each other, which simplifies event management.

The OSGi whole picture

Let’s assemble all puzzle pieces described before , and we will have the following OSGi picture:

This architecture has the following interesting benefits:

  • Simple,
  • Reduced Complexity,
  • Easy Deployment,
  • Secure.

What makes it very attractive and Worth a Detour, and you will not waste your time if you study it in depth.

Leave a Reply

Your email address will not be published. Required fields are marked *