OSGi


The OSGi Alliance, formerly known as the Open Services Gateway initiative, is an open standards organization founded in March 1999 that originally specified and continues to maintain the OSGi standard.
The OSGi specification describes a modular system and a service platform for the Java programming language that implements a complete and dynamic component model, something that does not exist in standalone Java/VM environments. Applications or components, coming in the form of bundles for deployment, can be remotely installed, started, stopped, updated, and uninstalled without requiring a reboot; management of Java packages/classes is specified in great detail. Application life cycle management is implemented via APIs that allow for remote downloading of management policies. The service registry allows bundles to detect the addition of new services, or the removal of services, and adapt accordingly.
The OSGi specifications have evolved beyond the original focus of service gateways, and are now used in applications ranging from mobile phones to the open-source Eclipse IDE. Other application areas include automobiles, industrial automation, building automation, PDAs, grid computing, entertainment, fleet management and application servers.

Specification process

The OSGi specification is developed by the members in an open process and made available to the public free of charge under the OSGi Specification License. The OSGi Alliance has a compliance program that is open to members only. As of November 2010, there are seven certified OSGi framework implementations. A separate page lists both certified and non-certified OSGi Specification Implementations, which include OSGi frameworks and other OSGi specifications.

Architecture

OSGi is a Java framework for developing and deploying modular software programs and libraries. Each [|bundle] is a tightly coupled, dynamically loadable collection of classes, jars, and configuration files that explicitly declare their external dependencies.
The framework is conceptually divided into the following areas:
;Bundles:Bundles are normal JAR components with extra manifest headers.
;Services:The services layer connects bundles in a dynamic way by offering a publish-find-bind model for plain old Java interfaces or plain old Java objects.
;Services Registry:The application programming interface for management services.
;Life-Cycle:The application programming interface for life cycle management for bundles.
;Modules:The layer that defines encapsulation and declaration of dependencies.
;Security:The layer that handles the security aspects by limiting bundle functionality to pre-defined capabilities.
;Execution Environment:Defines what methods and classes are available in a specific platform. There is no fixed list of execution environments, since it is subject to change as the Java Community Process creates new versions and editions of Java. However, the following set is currently supported by most OSGi implementations:

Bundles

A bundle is a group of Java classes and additional resources equipped with a detailed manifest MANIFEST.MF file on all its contents, as well as additional services needed to give the included group of Java classes more sophisticated behaviors, to the extent of deeming the entire aggregate a component.
Below is an example of a typical MANIFEST.MF file with OSGi Headers:

Bundle-Name: Hello World
Bundle-SymbolicName: org.wikipedia.helloworld
Bundle-Description: A Hello World bundle
Bundle-ManifestVersion: 2
Bundle-Version: 1.0.0
Bundle-Activator: org.wikipedia.Activator
Export-Package: org.wikipedia.helloworld;version="1.0.0"
Import-Package: org.osgi.framework;version="1.3.0"

The meaning of the contents in the example is as follows:
  1. Bundle-Name: Defines a human-readable name for this bundle, Simply assigns a short name to the bundle.
  2. Bundle-SymbolicName: The only required header, this entry specifies a unique identifier for a bundle, based on the reverse domain name convention.
  3. Bundle-Description: A description of the bundle's functionality.
  4. Bundle-ManifestVersion: Indicates the OSGi specification to use for reading this bundle.
  5. Bundle-Version: Designates a version number to the bundle.
  6. Bundle-Activator: Indicates the class name to be invoked once a bundle is activated.
  7. Export-Package: Expresses which Java packages contained in a bundle will be made available to the outside world.
  8. Import-Package: Indicates which Java packages will be required from the outside world to fulfill the dependencies needed in a bundle.

    Life-cycle

A Life Cycle layer adds bundles that can be dynamically installed, started, stopped, updated and uninstalled. Bundles rely on the module layer for class loading but add an API to manage the modules in run time. The life cycle layer introduces dynamics that are normally not part of an application. Extensive dependency mechanisms are used to assure the correct operation of the environment. Life cycle operations are fully protected with the security architecture.
Bundle StateDescription
INSTALLEDThe bundle has been successfully installed.
RESOLVEDAll Java classes that the bundle needs are available. This state indicates that the bundle is either ready to be started or has stopped.
STARTINGThe bundle is being started, the method has been called but the start method has not yet returned. When the bundle has an activation policy, the bundle will remain in the STARTING state until the bundle is activated according to its activation policy.
ACTIVEThe bundle has been successfully activated and is running; its Bundle Activator start method has been called and returned.
STOPPINGThe bundle is being stopped. The method has been called but the stop method has not yet returned.
UNINSTALLEDThe bundle has been uninstalled. It cannot move into another state.

Below is an example of a typical Java class implementing the interface:

package org.wikipedia;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator

Services

Standard services

The OSGi Alliance has specified many services. Services are specified by a Java interface. Bundles can implement this interface and register the service with the Service Registry. Clients of the service can find it in the registry, or react to it when it appears or disappears.
The table below shows a description of OSGi System Services:
System ServicesDescription
LoggingThe logging of information, warnings, debug information or errors is handled through the Log Service. It receives log entries and then dispatches these entries to other bundles that subscribed to this information.
Configuration AdminThis service allows an operator to set and get the configuration information of deployed bundles
Device AccessFacilitates the coordination of automatic detection and attachment of existing devices. This is used for Plug and Play scenarios.
User AdminThis service uses a database with user information for authentication and authorization purposes.
IO ConnectorThe IO Connector Service implements the CDC/CLDC package as a service. This service allows bundles to provide new and alternative protocol schemes.
PreferencesOffers an alternative, more OSGi-friendly mechanism to using Java's default for storing preferences.
Component RuntimeThe dynamic nature of services—they can come and go at any time—makes writing software harder. The Component Runtime specification can simplify handling these dynamic aspects by providing an XML based declaration of the dependencies.
Deployment AdminStandardizes access to some of the responsibilities of the management agent.
Event AdminProvides an inter-bundle communication mechanism based on a publish-and-subscribe model.
Application AdminSimplifies the management of an environment with many different types of applications that are simultaneously available.

The table below shows a description of OSGi Protocol Services:
Protocol ServicesDescription
HTTP ServiceAllows information to be sent and received from OSGi using HTTP.
UPnP Device ServiceSpecifies how OSGi bundles can be developed to interoperate with Universal Plug and Play devices.
DMT AdminDefines an API for managing a device using concepts from the Open Mobile Alliance device management specifications.

The table below shows a description of OSGi Miscellaneous Services:
Miscellaneous ServicesDescription
Wire AdminAllows the connection between a Producer service and a Consumer service.
XML ParserThe XML Parser service allows a bundle to locate a parser with desired properties and compatibility with JAXP.
Measurement and StateThe Measurement and State service allows and simplifies the correct handling of measurements in an OSGi service platform.

Organization

The OSGi Alliance was founded by Ericsson, IBM, Motorola, Sun Microsystems and others in March 1999. Before incorporating as a nonprofit corporation, it was called the Connected Alliance.
Among its members are more than 35 companies from quite different business areas, for example Adobe Systems, Deutsche Telekom, Hitachi, IBM, Liferay, Makewave, NEC, NTT, Oracle, Orange S.A., ProSyst, Salesforce.com, Siemens, Software AG and TIBCO Software.
The Alliance has a board of directors that provides the organization's overall governance. OSGi officers have various roles and responsibilities in supporting the alliance. Technical work is conducted within Expert Groups chartered by the board of directors, and non-technical work is conducted in various working groups and committees. The technical work conducted within Expert Groups include developing specifications, reference implementations, and compliance tests. These Expert Groups have produced five major releases of the OSGi specifications.
Dedicated Expert Groups exist for the enterprise, mobile, vehicle and the core platform areas.
The Enterprise Expert Group is the newest EG and is addressing Enterprise / Server-side applications.
In November 2007 the Residential Expert Group started to work on specifications to remotely manage residential/home-gateways.
In October 2003, Nokia, Motorola, IBM, ProSyst and other OSGi members formed a Mobile Expert Group that will specify a MIDP-based service platform for the next generation of smart mobile phones, addressing some of the needs that CLDC cannot manage - other than CDC. MEG became part of OSGi as with R4.

Specification versions