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

Difference between revisions of "Orbit/Adding Bundles to Orbit"

(Migrated to GitHub)
 
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== Before You Do Anything ==
+
{{warning|Note: The contents of this page has been migrated. Please see https://github.com/eclipse/orbit/blob/master/Add-bundle.md for current information, or page history for historical versions. }}
=== Project Approvals and the CQ Process ===
+
Don't waste your time working up an OSGi bundling of a third-party library (or at least setting up a CVS project for a 3rd-party OSGi bundle) before you know that you will be able to use it.  So, first start the legal approval process with the Eclipse Foundation's legal department by
+
 
+
# Raising a Contribution Questionnaire (CQ) requesting use of the 3rd-party code in your project (note: this is not the Orbit project, but the project in which you want to use the code).  Do this in the [http://portal.eclipse.org MyFoundation portal].  Raise one CQ for each JAR in the original 3rd-party software distribution that you intend to use.
+
# Getting your project's PMC to grant their approval to use the 3rd-party library in their project.  This ensures that you should even be attempting an Orbit contribution, and that some Eclipse project actually intends to re-use the code that will be contributed to Orbit.  In fact, it's probably a good idea to solicit informal approval of your intention from your PMC before initiating the CQ process at all.
+
# If your project is eligible for the [[Development_Resources/HOWTO/Parallel_IP_Process|Parallel IP Process]], then you may as well begin working on your bundle.
+
# When the Eclipse foundation has approved your 3rd party library for use in your project, raising a "piggy-back" (PB) CQ for the Orbit project to re-use the library. In the MyFoundation portal, [view] the tools.orbit project and click [add] an approved third-party library to Orbit. '''Orbit, like any other project, requires permission from the Eclipse Foundation to include any 3rd-party code in its repository and builds.'''
+
 
+
This is '''not a definitive guide''' to the legal process for 3rd-party content.  For that, see the wealth of information in the [[Development Resources]].
+
 
+
== Checklist ==
+
 
+
The [[Orbit Bundle Checklist]] provides a concise checklist of the following steps.
+
 
+
== Setting up GIT for the new bundle==
+
=== Creating a new project for an Orbit bundle ===
+
When adding an entirely new library to Orbit, you have to create a module in GIT to house the content.  Follow these steps to set this up the first time.
+
# First decide on the desired name (see [[Bundle Naming]]) and make sure to know the groupId, artifactId, and version for the maven artifact that will serve as a base for the bundle. For this example we'll use com.example.foo.
+
# Make sure you have the [http://git.eclipse.org/c/gerrit/orbit/orbit-recipes.git/ orbit-recipes] project cloned
+
$ git clone ssh://USERNAME@git.eclipse.org:29418/orbit/orbit-recipes
+
# Choose a folder in orbit-recipes git repository under which to create the recipe and then create it there using :
+
$ mvn ebr:create-recipe -DgroupId=com.example -DartifactId=foo -Dversion=1.0.0 -DbundleSymbolicName=com.example.foo
+
 
+
== Library not available on Maven Central ==
+
The new orbit build process, which makes use of CBI automates a large amount of the work required to create a bundle from a regular jar library. However, it depends heavily on the library being available from a maven repository. The advantage to this approach is it takes away the burden of uploading the library onto the committers while also opening up the possibility of having contributors propose changes. Many libraries meet this requirement and can be found on Maven Central, but for those that are not there, or cannot be deployed there is an alternative.
+
 
+
Much like the old process of manually uploading the jar (exploded) into CVS, the Orbit project provides a more convenient way to upload the library as well as its sources to our own (Nexus) maven repository where approved artifacts can be hosted. This is provided through a HIPP (Hudson Instance Per-Project) at https://hudson.eclipse.org/orbit/job/upload-approved-artifacts/ . Committers would merely trigger a build by providing the library, its sources, the GAV (groupId, artifactId, version) that will identify it, and the build would deploy the artifact(s).
+
 
+
== Adding a library for the first time ==
+
The page titled, [[Adding Bundles To Orbit In 5 Minutes]] contains all the necessary information for adding a library to Orbit for the first time. The process is most straightforward when the library exists on Maven Central repository.
+
 
+
== Moving an existing bundle to Orbit ==
+
Adding an existing bundle to Orbit is currently no too different from adding a library for the first time (See [[Adding Bundles To Orbit In 5 Minutes]]). The main difference is that with an existing bundle, certain OSGi metadata may need to be preserved while others may need to be reproduced to be as identical to the original metadata.
+
 
+
== <s> Adding source for Orbit bundles </s> ==
+
This is done automatically by the orbit-recipes build process.
+
 
+
== Project setup ==
+
No matter how you created your bundle in Orbit, the following outlines how the project itself should be configured. Remember, it is often simpler to use the Resource Navigator rather than the Project Explorer since you really need to see all the files in your project and you aren't really compiling or building anything.
+
 
+
* In the MANIFEST.MF, ensure that the '''Bundle-Classpath:''' header is either missing or has only '.' as a value.
+
* For most cases there is no need to have '''Eclipse-Autostart: true''' or such headers since this library is generic and will not have an OSGi bundle activator.
+
* Similarly, for most bundles there is no need to set the '''singleton:=true''' on the '''Bundle-SymbolicName''' header.
+
* Of course, you should set the '''Bundle-RequiredExecutionEnvironment''' header to the absolute minimum JRE required by the library.  That can often be difficult to figure out.  Look for some tools in PDE to help with this...
+
* Where possible use '''Import-Package''' instead of '''Require-Bundle'''.  This reduces sensitivity to different bundlings of the same library.
+
* The Orbit community has agreed that '''Bundle-Version''' numbers should be the original library version number followed by .qualifier in the fourth segment.  In the event that the original number is already four segments, that version number should be used and then followed by "_qualifier".  ''Note that this versioning scheme differs from the normal Eclipse plug-in [[Version Numbering]] if the external library does not follow the Eclipse rules.''
+
* It is suggested that a 3 part version number be included in the project name, in the ''.project'' file. This is to enable those that use the Eclipse IDE preference to "Use .project project name instead of module name on check out". This makes it easier to check out multiple versions of a bundle (project) from its various branches. For example,
+
 
+
<projectDescription>
+
  <name>javax.xml_1.3.4</name>
+
  <comment></comment>
+
  <projects>
+
  ...
+
  ...
+
  </projects>
+
</projectDescription>
+
 
+
=== <s> build.properties entries and .classpath file </s> ===
+
This is not necessary as the process of creating the bundles is handled automatically.
+
 
+
A special note about the <code>build.properties</code> file:
+
 
+
For your binary bundle (not your source bundle), in most cases it will have an entry like:
+
<pre>
+
output..=.
+
</pre>
+
This tells PDE that when someone has the project loaded into their workspace and other projects depend on it, then PDE should look at the project root for class files to compile against.
+
 
+
Note that it is important '''not''' to have a <code>source..=.</code> entry in your build.properties file as that will cause the bundle to be compiled and this can be a problem with the nested source bundles.
+
 
+
A special note about the <code>.classpath</code> file:
+
 
+
Be sure the class folders are listed in the project's <code>build path</code> properties and that they are marked ''exported''. This only effects the .classpath file and effects how PDE and JDT "find" the classes if it happens to be checked out in a persons workspace while they are coding other plugins.
+
 
+
=== Special Detailed Notes on the four segment case ===
+
 
+
As documented above, in the event that the original package number is already four segments, that version number should be used and then followed by "_qualifier". These leads to a few differences in exactly how the final qualifier is computed and referred to in features and map files. The following example are taken from [https://bugs.eclipse.org/bugs/show_bug.cgi?id=152588 bug 152588].
+
 
+
For example, for the junit version 4.1.0.01, the manifest.mf file specifies
+
 
+
    Bundle-Version: 4.1.0.01_qualifier
+
 
+
But, the feature.xml file specifies
+
 
+
    <plugin id="org.junit" version="4.1.0.qualifier" />
+
 
+
The resulting jar file is named as follows.
+
 
+
    org.junit_4.1.0.01_200704231307.jar
+
 
+
And, the resulting bundle version matches the file name, for example,
+
   
+
    Bundle-Version: 4.1.0.01_200704231307
+
 
+
 
+
==== Avoid qualifiers that change with date and time of each build ====
+
 
+
Note: to avoid the "current date and time" substitution for qualifier version -- which would cause a version increment each build, even though contents not changed, use the exact same form in the feature.xml file. (See {{bug|355586}}.) For example, use 10.5.1.1_qualifier in the feature.xml file, such as,
+
 
+
  <plugin id="org.apache.derby" version="10.5.1.1_qualifier" />
+
 
+
This will then cause the last time of modification to be substituted for 'qualifier', resulting in versions such as 10.5.1.1_v201108232300. This may look different from usual, but will remain constant from build to build.
+
 
+
=== Special Detailed Notes on the RC case ===
+
 
+
Sometimes bundles need to be added that aren't full releases, but 'release candidates.' These release candidate plug-ins should share the same branch as their full release cousins.
+
 
+
For example, let's say we have a plug-in ch.ethz.iks.slp 1.0.0 RC2, the manifest.mf file specifies
+
 
+
    Bundle-Version: 1.0.0.RC2_qualifier
+
 
+
The branch the plug-in would be created in is v1_0_0 even though it's an RC2 release. Once 1.0.0 came out or say RC3, the branch would be updated with the info code. This essentially limits us to one "1.0.0" release at a time, but it's an acceptable workaround for the time being.
+
 
+
The feature.xml file specifies
+
 
+
    <plugin
+
        id="ch.ethz.iks.slp"
+
        download-size="0"
+
        install-size="0"
+
        version="1.0.0.qualifier" />
+
 
+
And, the (multiversion) map file specifies
+
 
+
    plugin@ch.ethz.iks.slp,1.0.0=v200701261101,:pserver:anonymous....
+
 
+
The resulting zip file is named as follows (zip, in this case, since it is not a jarred bundle).
+
 
+
    ch.ethz.iks.slp_1.0.0.RC2_200704231307.zip
+
 
+
And, the resulting bundle version matches the file name, for example,
+
   
+
    Bundle-Version: 1.0.0.RC2_200704231307
+
 
+
Note: It's incredibly important that the final release is lexicographically greater than the release candidate so it can be updated properly. For example, ch.ethz.iks.slp_1.0.0.RC2_v200801291200 is > than ch.ethz.iks.slp.1.0.0_v200801291200 because "R" is considered greater than "v"
+
 
+
== Packaging licensing information ==
+
When packaging a third party library we have to ensure that the licensing information is present and correctly used.
+
Generally, the '''about_files''', '''about.html''', '''build.properties''', and the '''ip_log.xml''' files will be automatically generated and correctly defined. They should still be checked to ensure the correct license has been detected and in the case of the '''ip_log.xml''' file, some additional fields will need to be filled in manually such as the corresponding ATO (Add To Orbit) CQ.
+
 
+
== National Language Considerations ==
+
 
+
The following are some tips to help make sure any text in the bundle
+
is not "garbled" during network or storage transfers and it is capable of
+
being properly translated to languages other than English.
+
 
+
* As I think is true for all projects in an Eclipse repository, it is recommend you set the project's default encoding preference to ISO-8859-1. This project encoding applies to files that do not otherwise have any ability to specify their encoding (such as ".txt" or ".java" files).  This is a good "single byte" encoding in general, and I think the CVS Repository Server assumes ISO-8859-1 as the default. Having it set as a project setting is good, so that, for example, if someone on windows checks it out and makes changes, and someone on Linux checks it out and makes changes, the default encoding for that project will be the same, no matter what the default encoding are on those different OS platforms.
+
 
+
* Be sure to "externalize" all the string in your manifest.mf files, and plugin.xml files, if you have any. There is usually at least two: the provider's name and the bundle's name.
+
 
+
== <s> What to use as Provider Name? </s> ==
+
 
+
This is automatically generated by the orbit-recipes build but if for some reason this isn't being generated, Use "Eclipse Orbit".
+
 
+
This is for the <code>Bundle-Vendor:</code> header in manifest.mf files. This should be externalized so what's in the manifest.mf file is a key, usually something like
+
+
Bundle-Vendor: %Bundle-Vendor.0
+
 
+
and then in the plugin.properties, or bundle.properties file is there you would have
+
 
+
Bundle-Vendor.0 = Eclipse Orbit
+
 
+
Historically, it used to be required to use "Eclipse.org". Beginning in Galileo, however, the recommendation (requirement, actually) is to use 'Eclipse' followed by the project name, avoiding acronyms and abbreviations etc, acknowledging that these are for end-users to read. The appropriate "project name" differs from one top level project to another. For example, in WTP, all sub-projects use the top level project name ("Eclipse Web Tools Platform"). But in Tools, since the sub-projects are all fairly different from one another, the Tools PMC decided to use "Eclipse" followed by sub-project name. So, that's "Eclipse Orbit" for us.
+
 
+
There is one exception. We have some bundles that are pre-built and we just store them in our repository. There, the provider name is left as it is, of course, since it is pre-built. But anything we build/assemble should be "Eclipse Orbit".
+
 
+
== Avoid packing (pack200) nested jars ==
+
 
+
Unless there is an important reason to, avoid "packing" jars nested inside Orbit bundles. The reason is that changes in Java 7 make these packed children impossible to extract so tools such as p2 then has to "fall back" and use the plain jar version of the bundle anyway ... all adding up to a slight performance impact. See {{bug|361628}} for more details.
+
 
+
Mechanically, the way to accomplish this is to include a file named 'eclipse.inf' in the META-INF folder that has contents of
+
+
jarprocessor.exclude.children.pack=true
+
 
+
Or, if you want to excluded nested jars from packing and from signing, you can use
+
 
+
jarprocessor.exclude.children=true
+
 
+
Whether or not to exclude children from signing depends on how the jar is anticipated to be used. In some cases, consumers might expect it to be signed, in other cases, they might expect it not to be signed. For use in the Eclipse IDE, it does not particularly matter, the default Equinox settings will not 'verify' nested jars, though there are some server runtimes that do. Most bundles in Orbit use <code>jarprocessor.exclude.children=true</code>.
+
 
+
Occasionally, source-bundles also have "nested jars", so those would also need the eclipse.inf file put in their META-INF directory.
+
 
+
== Remember to retain important aspect of original jar manifest ==
+
 
+
Part of the goal of creating Orbit bundles, is that when ever possible, the Orbit bundle can continue to be used as a jar, just as it would have been originally.
+
 
+
In some cases, this means there may be aspects in the original jar's manifest that should be carried over to the manifest in the bundle.
+
 
+
=== Examples of things important to retain ===
+
 
+
One example, if the original jar's manifest contains a ''Main-Class'' directive, then the bundle's manifest should contain the same ''Main-Class'' directives. One case of this is the Rhino bundle (org.mozilla.javascript). It originally contained
+
  Main-Class: org.mozilla.javascript.tools.shell.Main
+
which prints the version and starts up an interpreter "shell". It's best to maintain that sort of functionality whenever possible.
+
 
+
=== Examples of things not to retain ===
+
 
+
An example of what not to retain was raised in {{bug|432032}}. Some jars have ''Class-Path:'' directives in their MANIFEST.MF files. This is the "non-OSGi" way of expressing a dependency on another jar (not to be confused with OSGi's ''Bundle-ClassPath:'' which is a different concept). In the cases I've seen, these 'Class-Path' directives become meaningless in OSGi bundles, either because the path or the jar referenced in that 'Class-Path' no longer exists, or it exists in a different form, such as with with version information added to the name. In some cases it becomes part of what a bundle "requires", which, naturally, is expressed in the "OSGi way". Having the 'Class-Path' there has no effect on the bundle when run with OSGi and none of our build systems pay attention to it, but as mentioned in {{bug|432032}} there are some build systems that will flag any "non-existing file" or "invalid path" as an error, interfering with the build. Hence, it's a good idea to remove any lines that have a 'Class-Path' directive. In most cases, though, this directive is probably useful in helping you "convert" the information when you create the OSGi bundle, that is, that you can add a proper ''Require-Bundle:'' to express the same relationship in the OSGi way.
+
 
+
== Export-Package guidelines ==
+
 
+
Normally, all packages in a bundle should be listed in the Export-Package declaration in MANIFEST.MF.
+
 
+
But, if a bundle has packages that are not normally part of its namespace, those should not be blindly exported, unless it is known that they are supposed to be. That is, the first assumption should be the bundle simply uses those packages internally, and are not part of its API to expose to the rest of the world. See {{bug|344560}} for a case where exporting "foreign" packages can cause problems.
+
 
+
Also, normally, all exported packages should list the version they are exporting. Keep in mind that if a package in an interface, defined by a specification, then the version of the exported package should be the version of the specification, not the bundle it is in. For example, we use <code>"Export-Package: javax.xml;version="1.3"</code>, even though the package is in the javax.xml bundle versioned at 1.3.4.
+
 
+
== Adding your bundle to the feature.xml ==
+
 
+
There is a feature in Orbit that is used solely to drive the build. To modify it, checkout the [http://git.eclipse.org/c/gerrit/orbit/orbit-recipes.git/ orbit-recipes] project. It will be located under releng/aggregationfeature/feature.xml. You'd add your bundle to this feature like any other.  For example,
+
 
+
    <plugin id="javax.servlet" version="2.3.0.qualifier" />
+
 
+
== Keeping track of legal information ==
+
Add a file in org.eclipse.orbit.releng/ip_logs that contains IP log information.  See [[Orbit/IP_Log | Orbit IP Log]] for more information.
+
 
+
== Adding your bundle to the Orbit Build ==
+
See [[Orbit_Builds#Orbit_Builds_for_Orbit_Committers | Orbit Builds for Orbit Committers]].
+
 
+
[[Category: Orbit]]
+
 
+
== Final steps (a.k.a being a good OSS citizen) ==
+
 
+
It's a good practice to contribute back OSGi packaging - many upstream are not aware of OSGi and will appreciate patches.
+
Having OSGi manifests upstream has a couple of advantages:
+
* shared burden of maintenance
+
* easier adoption (3rd party software can use newer versions before it is located in Orbit and drive Eclipse migration to latest-and-greatest versions).
+
* spreading the word about OSGi
+

Latest revision as of 12:35, 3 April 2023

Warning2.png
Note: The contents of this page has been migrated. Please see https://github.com/eclipse/orbit/blob/master/Add-bundle.md for current information, or page history for historical versions.

Back to the top