OSGi - Build Your Own Bundle

- 09.04

The OSGi Alliance, formerly known as the Open Services Gateway initiative, now an obsolete name, 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.

support.humblebundle.com



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.

Build Your Own Bundle Video




Architecture

Any framework that implements the OSGi standard provides an environment for the modularization of applications into smaller bundles. Each bundle is a tightly coupled, dynamically loadable collection of classes, jars, and configuration files that explicitly declare their external dependencies (if any).

The framework is conceptually divided into the following areas:

Build Your Own Bundle - Buy 4 Get One Free! - Glam My Mani
www.glammymani.com


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:

  • Bundle-Name: Defines a human-readable name for this bundle, Simply assigns a short name to the bundle.
  • Bundle-SymbolicName: The only required header, this entry specifies a unique identifier for a bundle, based on the reverse domain name convention (used also by the java packages).
  • Bundle-Description: A description of the bundle's functionality.
  • Bundle-ManifestVersion: Indicates the OSGi specification to use for reading this bundle.
  • Bundle-Version: Designates a version number to the bundle.
  • Bundle-Activator: Indicates the class name to be invoked once a bundle is activated.
  • Export-Package: Expresses which Java packages contained in a bundle will be made available to the outside world.
  • Import-Package: Indicates which Java packages will be required from the outside world to fulfill the dependencies needed in a bundle.
www.studio-one.expert


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.

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

BYOB- Build your own bundle · Nicole Salera Cosplay · Online Store ...
nicolesaleracosplay.storenvy.com


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:

The table below shows a description of OSGi Protocol Services:

The table below shows a description of OSGi Miscellaneous Services:

support.humblebundle.com


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 (as of February 2015) more than 35 companies from quite different business areas, for example Adobe Systems, Deutsche Telekom, Hitachi, IBM, Liferay, Makewave (formerly Gatespace Telematics), 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 (EGs) 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 (As of 2012).

Dedicated Expert Groups exist for the enterprise, mobile, vehicle and the core platform areas.

The Enterprise Expert Group (EEG) is the newest EG and is addressing Enterprise / Server-side applications. In November 2007 the Residential Expert Group (REG) 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 (MEG) 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.

Build Your Own Bundle | iPadSimple.com
ipadsimple.com


Community

In 2003, Eclipse selected OSGi as the underlying runtime for the plug-in architecture used for the Eclipse Rich Client Platform and the IDE platform. Eclipse itself includes sophisticated tooling for developing OSGi bundles and there are a number of other Eclipse plug-ins aimed at supporting OSGi behaviour.

There is a vibrant free software community revolving around the OSGi specification. Some widely used open source implementations are Equinox, Apache Felix and Knopflerfish OSGi.

Build Your Own Bundle by DaintyVixenShop on Etsy
www.etsy.com


Specification versions

  • OSGi Release 1 (R1): May 2000
  • OSGi Release 2 (R2): October 2001
  • OSGi Release 3 (R3): March 2003
  • OSGi Release 4 (R4): October 2005 / September 2006
    • Core Specification (R4 Core): October 2005
    • Mobile Specification (R4 Mobile / JSR-232): September 2006
  • OSGi Release 4.1 (R4.1): May 2007 (AKA JSR-291)
  • OSGi Release 4.2 (R4.2): September 2009
    • Enterprise Specification (R4.2): March 2010
  • OSGi Release 4.3 (R4.3): April 2011
    • Core: April 2011
    • Compendium and Residential: May 2012
  • OSGi Release 5 (R5): June 2012
    • Core and Enterprise: June 2012
  • OSGi Release 6 (R6): June 2014
    • Core: June 2014
Build your own bundle of Musicademy DVDs and save money
www.musicademy.com


New in OSGi Release 4

The new features of OSGi R4 in brief are as follows:

  • New modularization capabilities providing enhanced encapsulation of networked services that can share a single virtual machine (VM).
  • Modularized class sharing and hiding of implementation details.
  • Methods for handling multiple versions of the same classes so old and new applications can execute within the same VM.
  • Localization of OSGi bundle manifests enabling service deployment anywhere.
  • Enhancements in security and policies: The new Conditional Permission Admin service provides an elegant and simple way to manage networked services securely. It also supports dynamic policies that can depend on external (custom) conditions. Combined with R4 support for digital signatures, this provides a central security solution to large deployments of products using the OSGi Service Platform.
  • A Declarative Services specification that addresses memory footprint issues that can prevent small embedded devices from using a service-oriented architecture to support multiple applications. Additionally, it significantly simplifies the service-oriented programming model by declaratively handling the dynamics of services.
  • Compatibility with Release 3, requiring no changes for existing OSGi bundles, applications, or services.

New in Release 4.1

OSGi R4.1 was a minor revision intended to clarify certain aspects of bundle initialization and loading in order to improve third party usage. It added no new services or major features.

New in Release 4.2

OSGi R4.2 was a significant release that added several new services and capabilities, including:

  • Framework launching: Standardized means to launch OSGi from various providers
  • Remote Services: Allows the exporting of services to remote VMs (formerly known as Distribute OSGi)
  • Blueprint Service: Dependency injection and inversion of control (similar to Spring) that allows external configuration of bundle dependencies
  • Bundle Tracker: Track and respond to changes in bundle presence and state
  • Service Hooks: Allow introspection and behavior modification of service calls to inject security or dynamicism
  • Conditional Permissions: Support negative permissions, forbidding specific actions instead of just allowing them

More information can also be specified in each bundle header, such as license information, MIME types and icons. Additionally, changes to Declarative Services allow the easier setting of permissions. Finally, OSGi bundles can now have their return values read.

OSGi R4.2 also introduced a new specification release for the enterprise including support for:

  • Web Applications: A standardized format for building OSGi web applications packaged using the WAR file format (Sun)
  • JPA Service: Provides a reliable standard mechanism to use the Java Persistence API in OSGi
  • JNDI Service: Allows integration of the OSGi service registry and the Java Naming and Directory Interface
  • JDBC Service: Provides an OSGi lifecycle-aware mechanism to obtain connections to an external Database

New in Release 4.3

  • Generics: The framework now uses JDK5 generics in several places. However, Java 1.4 can still be targeted using "-source 1.5 -target jsr14" switches to javac.
  • Capabilities: A set of attributes in a namespace in a module's meta information, such as osgi.wiring.package Export-Package.
  • Requirements: A filter expression over the attribute set of a capability, such as osgi.wiring.package Import-Package.
  • adapt: Replaces Framework services; adapts Bundle to another type (if supported). Replaces PackageAdmin and StartLevel services with APIs which a Bundle can be adapted to.
  • WeavingHook: The WeavingHook services allows load-time bytecode weaving.
  • ResolverHooks and BundleHooks: Replaces the nested frameworks and composite bundles proposal with low-level capabilities to influence requirement-capability matching.
  • Service EventListener Hook: Replaces Service Event Hook with finer-grained event delivery control.

New in Release 5.0

New in Core Release 5

  • Resource API for modeling generic capabilities and requirements.
  • Version Range class.

New in Enterprise Release 5



Related RFCs and Java specifications

  • RFC 2608 (Service Location Protocol)
  • Sun Jini
  • Sun JCP JSR-8 (Open Services Gateway Specification)
  • Sun JCP JSR-232 (Mobile Operational Management)
  • Sun JCP JSR-246 (Device Management API)
  • Sun JCP JSR-249 (Mobile Service Architecture for CDC)
  • Sun JCP JSR-277 (Java Module System)
  • Sun JCP JSR-291 (Dynamic Component Support for Java SE - AKA OSGi 4.1)
  • Sun JCP JSR-294 (Improved Modularity Support in the Java Programming Language)


Related standards

  • MHP / OCAP
  • Universal Plug and Play (UPnP)
  • DPWS
  • ITU-T G.hn
  • LonWorks
  • CORBA
  • CEBus
  • EHS (KNX) / CECED CHAIN
  • Java Management Extensions


Projects using OSGi

  • Apache Aries - Blueprint Container implementations and extensions of application-focused specifications defined by OSGi Enterprise Expert Group.
  • Apache Sling - OSGi-based applications layer for JCR content repositories
  • Atlassian Confluence and JIRA - the plug-in architecture for this enterprise wiki and issue tracker uses OSGi
  • Business Intelligence and Reporting Tools (BIRT) Project - Open source reporting engine
  • Cytoscape - an open source bioinformatics software platform (as of version 3.0)
  • DataNucleus - open source data services and persistence platform in service-oriented architectures
  • Dotcms - open source Web Content Management
  • EasyBeans - open source EJB 3 container
  • Eclipse - open source IDE and rich client platform
  • iDempiere - is an OSGi implementation of the open source ERP Branch GlobalQSS Adempiere361 originally started by Low Heng Sin.
  • Eclipse Virgo - open source microkernel-based server constructed of OSGi bundles and supporting OSGi applications
  • GlassFish (v3) - application server for Java EE
  • Fuse ESB - a productized and supported release of ServiceMix 4.
  • ServiceMix - Apache ServiceMix is a flexible, open-source integration container that unifies the features and functionality of following components: Apache ActiveMQ, Apache Camel, CXF, and Apache Karaf into a powerful runtime platform. The components are always really outdated. You can use servicemix to build your own integrations solutions and it provides a complete, enterprise ready ESB exclusively powered by OSGi.
  • GX WebManager Community Edition - An Enterprise Web Content Management System based on OSGi, spring and JCR
  • Kura - Eclipse IOT open source project for M2M applications [1]
  • IntelliJ - Java IDE and rich client platform with free community edition
  • JBoss - Red Hat's JBoss Application Server
  • JOnAS 5 - open source Java EE 5 application server
  • JOSSO 2 - Atricore's open source standards-based Identity and Access Management Platform
  • Liferay - a free and open source enterprise portal platform
  • Lucee 5 - open source CFML Web Application Server
  • Netbeans - open source IDE and rich client platform
  • Nuxeo - open source ECM Service Platform
  • Open Daylight Project - Project with the goal of accelerating the adoption of software-defined networking
  • OpenEJB - open source OSGi-enabled EJB 3.0 container that can be run both in standalone or embedded mode
  • OpenWorm - open source software simulation of C. Elegans, via the dedicated Geppetto modular plateform
  • SOA Software - API Gateway, Portal and Analytics server from Akana (formerly SOA Software)
  • SpringSource dm Server - open source microkernel-based server constructed of OSGi bundles and supporting OSGi applications
  • Weblogic - Oracle Weblogic Application Server
  • WebSphere - IBM Websphere JEE Application Server
  • WebMethods - SoftwareAG WebMethods
  • WSO2 Carbon - Base platform for WSO2's enterprise-grade Open source middleware stack.


Current framework implementations



Are You Looking for Products

Here some products related to "OSGi".

Amazon.com: Melissa & Doug Create-a-Craft Yo-Yo: Melissa & Doug ...
Melissa & Doug Create-a-C..
Amazon.com: Crayola Build Your Box Very Berry Chalk (4 Count ...
Crayola Build Your Box Ve..
Amazon.com: Crayola Build Your Box T-Rex Effects Chalk (4 Count ...
Crayola Build Your Box T-..
Amazon.com: Serif WebPlus X5 Student/Teacher
Serif WebPlus X5 Student/..

Get these at Amazon.com

* amzn.to is official short URL for Amazon.com, provided by Bitly

Source of the article : here





EmoticonEmoticon

 

Start typing and press Enter to search