Changes

Jump to: navigation, search

OSGi Concepts Bundles

1,908 bytes added, 14:41, 21 January 2011
no edit summary
What is a Bundle?
{{Ecl_menu}}<uh2>Definitions:'''What is a Bundle?'''</uh2>
<u>Definition:</u> :: 1. '''A bundle is a component that can be identified, can express its requirements and capabilities and has a specific anatomy.'''
# Indendification: '''Bundle-SymbolicName''' & '''Bundle-Version''' (Example: cs.ecl.osgi.simple.bookfinderservice & 1.0.0.qualifier)
# Capabilities: '''Export-Package''' (Example: cs.ecl.osgi.simple.bookfinderservice)
# Requirements: '''Import-Package ''' and/or '''Require-Bundle ''' (Example: org.osgi.framework;version="1.3.0")
# Anatomy: '''Bundle-ManifestVersion, Bundle-Name, Bundle-Activator, Bundle-RequiredExecutionEnvironment'''
 
See [http://www.osgi.org/Specifications/ReferenceHeaders Bundle Headers] for a complete OSGi headers specification.
 
Version identifier for bundles and packages could have four components.
 
version format ::= major('.'minor('.'micro('.'qualifier)))
 
The semantics for the version parts are therefore defined as [http://www.osgi.org/wiki/uploads/Links/SemanticVersioning.pdf]:
* ''major'' - Packages with versions that have different major parts are not compatible both for providers as well as consumers. For example, 1.2 and 2.3 are completely incompatible.
* ''minor'' - API consumers are compatible with exporters that have the same major number and an equal or higher minor version. API providers are compatible with exporters that have the same major and minor version number. For example, 1.2 is backward compatible with 1.1 for consumers but for providers it is incompatible. Consumers should therefore import [1.2,2) and providers should import [1.2,1.3).
* ''micro'' - A difference in the micro part does not signal any backward compatibility issues. The micro number is used to fix bugs that do not affect either consumers or providers of the API.
* ''qualifier'' - The qualifier is usually used to indicate a build identity, for example a time stamp. Different qualifiers do not signal any backward compatibility issues.
 
Example:
Export-Package: cs.ecl.osgi.hello;version=1.2.3.201103030903
Import-Package: org.osgi.framework;version=“[1.2,2.0)”
 
A version range has a syntax based on the interval notation from mathematics:
range ::= ( ‘[’ | ‘(’ ) version ‘,’ version ( ‘)’ | ‘]’ )
 
Square brackets ( ‘[’ and ‘]’) indicate inclusive and parentheses (‘(’ and ‘)’) indicate exclusive.
For instance, [1.2,2.0) indicates the version range from version 1.2, including version 1.2, up to but not including version 2.0.

Navigation menu