Added extender-based example application.
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@556690 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/examples/dictionaryservice.itest/pom.xml b/examples/dictionaryservice.itest/pom.xml
index 5486c204..bcbec05 100644
--- a/examples/dictionaryservice.itest/pom.xml
+++ b/examples/dictionaryservice.itest/pom.xml
@@ -6,7 +6,7 @@
<relativePath>../../pom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
- <packaging>osgi-bundle</packaging>
+ <packaging>bundle</packaging>
<name>Apache Felix Examples: Dictionary Service Integration Test</name>
<artifactId>org.apache.felix.examples.dictionaryservice.itest</artifactId>
<version>0.9.0-SNAPSHOT</version>
@@ -57,24 +57,22 @@
</plugin>
<plugin>
- <groupId>org.apache.felix.plugins</groupId>
- <artifactId>maven-osgi-plugin</artifactId>
- <version>0.9.0-SNAPSHOT</version>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
<extensions>true</extensions>
<configuration>
- <osgiManifest>
- <bundleName>Dictionary Integration Test Example</bundleName>
- <bundleVendor>Apache Software Foundation</bundleVendor>
- <bundleDescription>
+ <instructions>
+ <Private-Package>org.apache.felix.examples.dictionaryservice.itest.*</Private-Package>
+ <Bundle-Name>Dictionary Integration Test Example</Bundle-Name>
+ <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
+ <Bundle-Description>
A bundle using the dictionary service to test it.
- </bundleDescription>
- <bundleActivator>
+ </Bundle-Description>
+ <Bundle-Activator>
org.apache.felix.examples.dictionaryservice.itest.Activator
- </bundleActivator>
- <importPackage>
- org.osgi.framework, org.apache.felix.examples.dictionaryservice
- </importPackage>
- </osgiManifest>
+ </Bundle-Activator>
+ </instructions>
</configuration>
</plugin>
</plugins>
diff --git a/examples/extenderbased.circle/pom.xml b/examples/extenderbased.circle/pom.xml
new file mode 100644
index 0000000..0535319
--- /dev/null
+++ b/examples/extenderbased.circle/pom.xml
@@ -0,0 +1,79 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<project>
+
+ <parent>
+ <groupId>org.apache</groupId>
+ <artifactId>apache</artifactId>
+ <version>4</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <packaging>bundle</packaging>
+ <name>Apache Felix Circle Extension</name>
+ <description>A simple extension for drawing circles.</description>
+ <groupId>org.apache.felix.example</groupId>
+ <artifactId>extenderbased.circle</artifactId>
+ <version>1.0.0</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.felix.example</groupId>
+ <artifactId>extenderbased.host</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Extension-Name>Circle</Extension-Name>
+ <Extension-Icon>org/apache/felix/example/extenderbased/circle/circle.png</Extension-Icon>
+ <Extension-Class>org.apache.felix.example.extenderbased.circle.Circle</Extension-Class>
+ <Private-Package>org.apache.felix.example.extenderbased.circle.*</Private-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>apache.snapshots</id>
+ <name>snapshot plugins</name>
+ <url>
+ http://people.apache.org/repo/m2-snapshot-repository
+ </url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+</project>
diff --git a/examples/extenderbased.circle/src/main/java/org/apache/felix/example/extenderbased/circle/Circle.java b/examples/extenderbased.circle/src/main/java/org/apache/felix/example/extenderbased/circle/Circle.java
new file mode 100644
index 0000000..6d5dc6a
--- /dev/null
+++ b/examples/extenderbased.circle/src/main/java/org/apache/felix/example/extenderbased/circle/Circle.java
@@ -0,0 +1,55 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.circle;
+
+import java.awt.BasicStroke;
+import java.awt.Color;
+import java.awt.GradientPaint;
+import java.awt.Graphics2D;
+import java.awt.Point;
+import java.awt.geom.*;
+import org.apache.felix.example.extenderbased.host.extension.SimpleShape;
+import org.osgi.framework.*;
+
+/**
+ * This class implements the circle <tt>SimpleShape</tt> extension.
+ * It simply provides a <tt>draw()</tt> that paints a circle.
+**/
+public class Circle implements SimpleShape
+{
+ /**
+ * Implements the <tt>SimpleShape.draw()</tt> method for painting
+ * the shape.
+ * @param g2 The graphics object used for painting.
+ * @param p The position to paint the triangle.
+ **/
+ public void draw(Graphics2D g2, Point p)
+ {
+ int x = p.x - 25;
+ int y = p.y - 25;
+ GradientPaint gradient = new GradientPaint(
+ x, y, Color.RED, x + 50, y, Color.WHITE);
+ g2.setPaint(gradient);
+ g2.fill(new Ellipse2D.Double(x, y, 50, 50));
+ BasicStroke wideStroke = new BasicStroke(2.0f);
+ g2.setColor(Color.black);
+ g2.setStroke(wideStroke);
+ g2.draw(new Ellipse2D.Double(x, y, 50, 50));
+ }
+}
\ No newline at end of file
diff --git a/examples/extenderbased.circle/src/main/resources/META-INF/LICENSE b/examples/extenderbased.circle/src/main/resources/META-INF/LICENSE
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/examples/extenderbased.circle/src/main/resources/META-INF/LICENSE
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/examples/extenderbased.circle/src/main/resources/META-INF/NOTICE b/examples/extenderbased.circle/src/main/resources/META-INF/NOTICE
new file mode 100644
index 0000000..9c5efcc
--- /dev/null
+++ b/examples/extenderbased.circle/src/main/resources/META-INF/NOTICE
@@ -0,0 +1,5 @@
+Apache Felix Service-Based Circle Service Example
+Copyright 2006 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
diff --git a/examples/extenderbased.circle/src/main/resources/org/apache/felix/example/extenderbased/circle/circle.png b/examples/extenderbased.circle/src/main/resources/org/apache/felix/example/extenderbased/circle/circle.png
new file mode 100644
index 0000000..3d4887e
--- /dev/null
+++ b/examples/extenderbased.circle/src/main/resources/org/apache/felix/example/extenderbased/circle/circle.png
Binary files differ
diff --git a/examples/extenderbased.host/pom.xml b/examples/extenderbased.host/pom.xml
new file mode 100644
index 0000000..96bd81e
--- /dev/null
+++ b/examples/extenderbased.host/pom.xml
@@ -0,0 +1,75 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<project>
+
+ <parent>
+ <groupId>org.apache</groupId>
+ <artifactId>apache</artifactId>
+ <version>4</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <packaging>bundle</packaging>
+ <name>Apache Felix Extender-Based Host</name>
+ <description>A simple application that embeds Felix and uses the extender model for extensibility.</description>
+ <groupId>org.apache.felix.example</groupId>
+ <artifactId>extenderbased.host</artifactId>
+ <version>1.0.0</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.framework</artifactId>
+ <version>0.9.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Main-Class>org.apache.felix.example.extenderbased.host.Activator</Main-Class>
+ <Import-Package>org.osgi.framework,org.osgi.service.packageadmin,org.osgi.service.url,org.osgi.service.startlevel,org.osgi.util.tracker,*</Import-Package>
+ <Export-Package>org.apache.felix.example.extenderbased.host.extension.*</Export-Package>
+ <Private-Package>org.apache.felix.example.extenderbased.host.*,org.apache.felix.moduleloader.*,org.apache.felix.framework.*,org.osgi.*</Private-Package>
+ <Bundle-Activator>org.apache.felix.example.extenderbased.host.Activator</Bundle-Activator>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>apache.snapshots</id>
+ <name>snapshot plugins</name>
+ <url>
+ http://people.apache.org/repo/m2-snapshot-repository
+ </url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+</project>
diff --git a/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/Activator.java b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/Activator.java
new file mode 100644
index 0000000..a3bfde0
--- /dev/null
+++ b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/Activator.java
@@ -0,0 +1,197 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.host;
+
+import java.awt.event.WindowAdapter;
+import java.awt.event.WindowEvent;
+import java.io.File;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+
+import javax.swing.*;
+
+import org.osgi.framework.*;
+import org.apache.felix.framework.Felix;
+import org.apache.felix.framework.util.FelixConstants;
+import org.apache.felix.framework.util.StringMap;
+import org.apache.felix.framework.cache.BundleCache;
+
+/**
+ * The activator of the host application bundle. The activator creates the
+ * main application <tt>JFrame</tt> and starts tracking <tt>SimpleShape</tt>
+ * extensions. All activity is performed on the Swing event thread to avoid
+ * synchronization and repainting issues. Closing the application window
+ * will result in <tt>Bundle.stop()</tt> being called on the system bundle,
+ * which will cause the framework to shutdown and the JVM to exit.
+ * <p>
+ * This class also provides a static <tt>main()</tt> method so that it can be
+ * run as a stand-alone host application. In such a scenario, the application
+ * creates its own embedded Felix framework instance and interacts with the
+ * internal extensions to providing drawing functionality. To successfully
+ * launch the stand-alone application, it must be run from this bundle's
+ * installation directory using "<tt>java -jar</tt>".
+**/
+public class Activator implements BundleActivator, Runnable
+{
+ private BundleContext m_context = null;
+ private DrawingFrame m_frame = null;
+ private ShapeTracker m_shapetracker = null;
+
+ /**
+ * Displays the applications window and starts extension tracking;
+ * everything is done on the Swing event thread to avoid synchronization
+ * and repainting issues.
+ * @param context The context of the bundle.
+ **/
+ public void start(BundleContext context)
+ {
+ m_context = context;
+ if (SwingUtilities.isEventDispatchThread())
+ {
+ run();
+ }
+ else
+ {
+ try
+ {
+ javax.swing.SwingUtilities.invokeAndWait(this);
+ }
+ catch (Exception ex)
+ {
+ ex.printStackTrace();
+ }
+ }
+ }
+
+ /**
+ * Stops extension tracking and disposes of the application window.
+ * @param context The context of the bundle.
+ **/
+ public void stop(BundleContext context)
+ {
+ m_shapetracker.close();
+ m_frame.setVisible(false);
+ m_frame.dispose();
+ }
+
+ /**
+ * This method actually performs the creation of the application window.
+ * It is intended to be called by the Swing event thread and should not
+ * be called directly.
+ **/
+ public void run()
+ {
+ m_frame = new DrawingFrame();
+
+ m_frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
+ m_frame.addWindowListener(new WindowAdapter() {
+ public void windowClosing(WindowEvent evt)
+ {
+ try
+ {
+ m_context.getBundle(0).stop();
+ }
+ catch (BundleException ex)
+ {
+ ex.printStackTrace();
+ }
+ }
+ });
+
+ m_frame.setVisible(true);
+
+ m_shapetracker = new ShapeTracker(m_context, m_frame);
+ m_shapetracker.open();
+ }
+
+ /**
+ * Enables the bundle to run as a stand-alone application. When this
+ * static <tt>main()</tt> method is invoked, the application creates
+ * its own embedded Felix framework instance and interacts with the
+ * internal extensions to provide drawing functionality. To successfully
+ * launch as a stand-alone application, this method should be invoked from
+ * the bundle's installation directory using "<tt>java -jar</tt>".
+ * @param argv The command-line arguments.
+ * @throws Exception If anything goes wrong.
+ **/
+ public static void main(String[] argv) throws Exception
+ {
+ // Create a temporary bundle cache directory and
+ // make sure to clean it up on exit.
+ final File cachedir = File.createTempFile("felix.example.extenderbased", null);
+ cachedir.delete();
+ Runtime.getRuntime().addShutdownHook(new Thread() {
+ public void run()
+ {
+ deleteFileOrDir(cachedir);
+ }
+ });
+
+ Map configMap = new StringMap(false);
+ configMap.put(Constants.FRAMEWORK_SYSTEMPACKAGES,
+ "org.osgi.framework; version=1.3.0," +
+ "org.osgi.service.packageadmin; version=1.2.0," +
+ "org.osgi.service.startlevel; version=1.0.0," +
+ "org.osgi.service.url; version=1.0.0," +
+ "org.osgi.util.tracker; version=1.3.2," +
+ "org.apache.felix.example.extenderbased.host.extension; version=1.0.0," +
+ "javax.swing");
+ configMap.put(FelixConstants.AUTO_START_PROP + ".1",
+ "file:../extenderbased.circle/target/extenderbased.circle-1.0.0.jar " +
+ "file:../extenderbased.square/target/extenderbased.square-1.0.0.jar " +
+ "file:../extenderbased.triangle/target/extenderbased.triangle-1.0.0.jar");
+ configMap.put(FelixConstants.LOG_LEVEL_PROP, "1");
+ configMap.put(BundleCache.CACHE_PROFILE_DIR_PROP, cachedir.getAbsolutePath());
+
+ List list = new ArrayList();
+ list.add(new Activator());
+
+ try
+ {
+ // Now create an instance of the framework.
+ Felix felix = new Felix(configMap, list);
+ felix.start();
+ }
+ catch (Exception ex)
+ {
+ System.err.println("Could not create framework: " + ex);
+ ex.printStackTrace();
+ System.exit(-1);
+ }
+ }
+
+ /**
+ * Utility method used to delete the profile directory when run as
+ * a stand-alone application.
+ * @param file The file to recursively delete.
+ **/
+ private static void deleteFileOrDir(File file)
+ {
+ if (file.isDirectory())
+ {
+ File[] childs = file.listFiles();
+ for (int i = 0;i < childs.length;i++)
+ {
+ deleteFileOrDir(childs[i]);
+ }
+ }
+ file.delete();
+ }
+}
\ No newline at end of file
diff --git a/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/BundleTracker.java b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/BundleTracker.java
new file mode 100644
index 0000000..13a6982
--- /dev/null
+++ b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/BundleTracker.java
@@ -0,0 +1,160 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.host;
+
+import java.util.HashSet;
+import java.util.Set;
+import org.osgi.framework.Bundle;
+import org.osgi.framework.BundleContext;
+import org.osgi.framework.BundleEvent;
+import org.osgi.framework.SynchronousBundleListener;
+
+/**
+ * This is a simple class that only tracks active bundles. It must be given
+ * a bundle context upon creation, which it uses to listen for bundle events.
+ * It may also be given a bundle tracker customizer object which it will
+ * notify about changes in the list of active bundles. The bundle tracker
+ * must be opened to track objects and closed when it is no longer needed.
+**/
+public class BundleTracker implements BundleTrackerCustomizer
+{
+ private Set m_bundleSet = new HashSet();
+ private BundleContext m_context;
+ private BundleTrackerCustomizer m_customizer;
+ private SynchronousBundleListener m_listener;
+ private boolean m_open;
+
+ /**
+ * Constructs a bundle tracker object that will use the specified
+ * bundle context for listening to bundle events and will notify the
+ * specified bundle tracker customizer about changes in the set of
+ * active bundles.
+ * @param context The bundle context to use to track bundles.
+ * @param customizer The bundle tracker customerizer to inform about
+ * changes in the active set of bundles.
+ **/
+ public BundleTracker(BundleContext context, BundleTrackerCustomizer customizer)
+ {
+ m_context = context;
+ m_customizer = (customizer == null) ? this : customizer;
+ m_listener = new SynchronousBundleListener() {
+ public void bundleChanged(BundleEvent evt)
+ {
+ synchronized (BundleTracker.this)
+ {
+ if (!m_open)
+ {
+ return;
+ }
+
+ if (evt.getType() == BundleEvent.STARTED)
+ {
+ if (!m_bundleSet.contains(evt.getBundle()))
+ {
+ m_bundleSet.add(evt.getBundle());
+ m_customizer.addedBundle(evt.getBundle());
+ }
+ }
+ else if (evt.getType() == BundleEvent.STOPPED)
+ {
+ if (m_bundleSet.contains(evt.getBundle()))
+ {
+ m_bundleSet.remove(evt.getBundle());
+ m_customizer.removedBundle(evt.getBundle());
+ }
+ }
+ }
+ }
+ };
+ }
+
+ /**
+ * Returns the current set of active bundles.
+ * @return The current set of active bundles.
+ **/
+ public synchronized Bundle[] getBundles()
+ {
+ return (Bundle[]) m_bundleSet.toArray(new Bundle[m_bundleSet.size()]);
+ }
+
+ /**
+ * Call this method to start the tracking of active bundles.
+ **/
+ public synchronized void open()
+ {
+ if (!m_open)
+ {
+ m_open = true;
+
+ m_context.addBundleListener(m_listener);
+
+ Bundle[] bundles = m_context.getBundles();
+ for (int i = 0; i < bundles.length; i++)
+ {
+ if (bundles[i].getState() == Bundle.ACTIVE)
+ {
+ m_bundleSet.add(bundles[i]);
+ m_customizer.addedBundle(bundles[i]);
+ }
+ }
+ }
+ }
+
+ /**
+ * Call this method to stop the tracking of active bundles.
+ **/
+ public synchronized void close()
+ {
+ if (m_open)
+ {
+ m_open = false;
+
+ m_context.removeBundleListener(m_listener);
+
+ Bundle[] bundles = getBundles();
+ for (int i = 0; i < bundles.length; i++)
+ {
+ if (m_bundleSet.remove(bundles[i]))
+ {
+ m_customizer.removedBundle(bundles[i]);
+ }
+ }
+ }
+ }
+
+ /**
+ * A default implementation of the bundle tracker customizer that
+ * does nothing.
+ * @param bundle The bundle being added to the active set.
+ **/
+ public void addedBundle(Bundle bundle)
+ {
+ // Do nothing by default.
+ }
+
+ /**
+ * A default implementation of the bundle tracker customizer that
+ * does nothing.
+ * @param bundle The bundle being removed from the active set.
+ **/
+ public void removedBundle(Bundle bundle)
+ {
+ // Do nothing by default.
+ }
+}
\ No newline at end of file
diff --git a/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/BundleTrackerCustomizer.java b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/BundleTrackerCustomizer.java
new file mode 100644
index 0000000..d0cbc18
--- /dev/null
+++ b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/BundleTrackerCustomizer.java
@@ -0,0 +1,41 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.host;
+
+import org.osgi.framework.Bundle;
+
+/**
+ * This interface class can be used to customize the bundle tracker
+ * handling of bundle notifications when adding/removing bundles
+ * to/from the active set of bundles.
+**/
+public interface BundleTrackerCustomizer
+{
+ /**
+ * Called when an inactive bundle becomes active.
+ * @param bundle The activated bundle.
+ **/
+ public void addedBundle(Bundle bundle);
+
+ /**
+ * Called when an active bundle becomes inactive.
+ * @param bundle The inactivated bundle.
+ **/
+ public void removedBundle(Bundle bundle);
+}
\ No newline at end of file
diff --git a/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/DrawingFrame.java b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/DrawingFrame.java
new file mode 100644
index 0000000..c17fcef
--- /dev/null
+++ b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/DrawingFrame.java
@@ -0,0 +1,230 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.host;
+
+import java.awt.*;
+import java.awt.event.*;
+import java.util.*;
+
+import javax.swing.*;
+
+import org.apache.felix.example.extenderbased.host.extension.SimpleShape;
+
+public class DrawingFrame extends JFrame
+ implements MouseListener, MouseMotionListener
+{
+ private static final long serialVersionUID = 1L;
+ private static final int BOX = 54;
+ private JToolBar m_toolbar;
+ private String m_selected;
+ private JPanel m_panel;
+ private Map m_shapes = new HashMap();
+ private ShapeComponent m_selectedComponent;
+ private SimpleShape m_defaultShape = new DefaultShape();
+ private ActionListener m_reusableActionListener = new ShapeActionListener();
+
+ public DrawingFrame()
+ {
+ super("Extender-Based Host");
+
+ m_toolbar = new JToolBar("Toolbar");
+ m_panel = new JPanel();
+ m_panel.setBackground(Color.WHITE);
+ m_panel.setLayout(null);
+ m_panel.setMinimumSize(new Dimension(400, 400));
+ m_panel.addMouseListener(this);
+ getContentPane().setLayout(new BorderLayout());
+ getContentPane().add(m_toolbar, BorderLayout.NORTH);
+ getContentPane().add(m_panel, BorderLayout.CENTER);
+ setSize(400, 400);
+ }
+
+ public void selectShape(String name)
+ {
+ m_selected = name;
+ }
+
+ public SimpleShape getShape(String name)
+ {
+ ShapeInfo info = (ShapeInfo) m_shapes.get(name);
+ if (info == null)
+ {
+ return m_defaultShape;
+ }
+ else
+ {
+ return info.m_shape;
+ }
+ }
+
+ public void addShape(String name, Icon icon, SimpleShape shape)
+ {
+ m_shapes.put(name, new ShapeInfo(name, icon, shape));
+ JButton button = new JButton(icon);
+ button.setActionCommand(name);
+ button.addActionListener(m_reusableActionListener);
+
+ if (m_selected == null)
+ {
+ button.doClick();
+ }
+
+ m_toolbar.add(button);
+ m_toolbar.validate();
+ repaint();
+ }
+
+ public void removeShape(String name)
+ {
+ m_shapes.remove(name);
+
+ if ((m_selected != null) && m_selected.equals(name))
+ {
+ m_selected = null;
+ }
+
+ for (int i = 0; i < m_toolbar.getComponentCount(); i++)
+ {
+ JButton sb = (JButton) m_toolbar.getComponent(i);
+ if (sb.getActionCommand().equals(name))
+ {
+ m_toolbar.remove(i);
+ m_toolbar.invalidate();
+ validate();
+ repaint();
+ break;
+ }
+ }
+
+ if ((m_selected == null) && (m_toolbar.getComponentCount() > 0))
+ {
+ ((JButton) m_toolbar.getComponent(0)).doClick();
+ }
+ }
+
+ public void mouseClicked(MouseEvent evt)
+ {
+ if (m_selected == null)
+ {
+ return;
+ }
+
+ if (m_panel.contains(evt.getX(), evt.getY()))
+ {
+ ShapeComponent sc = new ShapeComponent(this, m_selected);
+ sc.setBounds(evt.getX() - BOX / 2, evt.getY() - BOX / 2, BOX, BOX);
+ m_panel.add(sc, 0);
+ m_panel.validate();
+ m_panel.repaint(sc.getBounds());
+ }
+ }
+
+ public void mouseEntered(MouseEvent evt)
+ {
+ }
+
+ public void mouseExited(MouseEvent evt)
+ {
+ }
+
+ public void mousePressed(MouseEvent evt)
+ {
+ Component c = m_panel.getComponentAt(evt.getPoint());
+ if (c instanceof ShapeComponent)
+ {
+ m_selectedComponent = (ShapeComponent) c;
+ m_panel.setCursor(Cursor.getPredefinedCursor(Cursor.MOVE_CURSOR));
+ m_panel.addMouseMotionListener(this);
+ m_selectedComponent.repaint();
+ }
+ }
+
+ public void mouseReleased(MouseEvent evt)
+ {
+ if (m_selectedComponent != null)
+ {
+ m_panel.removeMouseMotionListener(this);
+ m_panel.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
+ m_selectedComponent.setBounds(
+ evt.getX() - BOX / 2, evt.getY() - BOX / 2, BOX, BOX);
+ m_selectedComponent.repaint();
+ m_selectedComponent = null;
+ }
+ }
+
+ public void mouseDragged(MouseEvent evt)
+ {
+ m_selectedComponent.setBounds(
+ evt.getX() - BOX / 2, evt.getY() - BOX / 2, BOX, BOX);
+ }
+
+ public void mouseMoved(MouseEvent evt)
+ {
+ }
+
+ private class DefaultShape implements SimpleShape
+ {
+ private ImageIcon m_icon = null;
+
+ public void draw(Graphics2D g2, Point p)
+ {
+ if (m_icon == null)
+ {
+ try
+ {
+ m_icon = new ImageIcon(this.getClass().getResource("underc.png"));
+ }
+ catch (Exception ex)
+ {
+ ex.printStackTrace();
+ g2.setColor(Color.red);
+ g2.fillRect(0, 0, getWidth() - 1, getHeight() - 1);
+ return;
+ }
+ }
+ g2.drawImage(m_icon.getImage(), 0, 0, null);
+ }
+
+ public String getName()
+ {
+ return "Default";
+ }
+ }
+
+ private class ShapeActionListener implements ActionListener
+ {
+ public void actionPerformed(ActionEvent evt)
+ {
+ selectShape(evt.getActionCommand());
+ }
+ }
+
+ private static class ShapeInfo
+ {
+ public String m_name;
+ public Icon m_icon;
+ public SimpleShape m_shape;
+ public ShapeInfo(String name, Icon icon, SimpleShape shape)
+ {
+ m_name = name;
+ m_icon = icon;
+ m_shape = shape;
+ }
+ }
+}
\ No newline at end of file
diff --git a/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/ShapeComponent.java b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/ShapeComponent.java
new file mode 100644
index 0000000..abd7011
--- /dev/null
+++ b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/ShapeComponent.java
@@ -0,0 +1,66 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.host;
+
+import java.awt.*;
+
+import javax.swing.*;
+
+import org.apache.felix.example.extenderbased.host.extension.SimpleShape;
+
+/**
+ * Simple component class used to represent a drawn shape. This component
+ * uses a shape service to paint its contents.
+**/
+public class ShapeComponent extends JComponent
+{
+ private static final long serialVersionUID = 1L;
+ private DrawingFrame m_frame;
+ private String m_shapeName;
+
+ /**
+ * Construct a component for the specified drawing frame with the specified
+ * named shape. The component acquires the named shape from the drawing
+ * frame at the time of painting, which enables it to account for
+ * service dynamism.
+ * @param frame The drawing frame associated with the component.
+ * @param shapeName The name of the shape to draw.
+ **/
+ public ShapeComponent(DrawingFrame frame, String shapeName)
+ {
+ m_frame = frame;
+ m_shapeName = shapeName;
+ }
+
+ /**
+ * Paints the contents of the component. The component acquires the named
+ * shape from the drawing frame at the time of painting, which enables it
+ * to account for service dynamism.
+ * @param g The graphics object to use for painting.
+ **/
+ protected void paintComponent(Graphics g)
+ {
+ super.paintComponent(g);
+ Graphics2D g2 = (Graphics2D) g;
+ g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
+ RenderingHints.VALUE_ANTIALIAS_ON);
+ SimpleShape shape = m_frame.getShape(m_shapeName);
+ shape.draw(g2, new Point(getWidth()/2, getHeight()/2));
+ }
+}
\ No newline at end of file
diff --git a/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/ShapeTracker.java b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/ShapeTracker.java
new file mode 100644
index 0000000..873e7db
--- /dev/null
+++ b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/ShapeTracker.java
@@ -0,0 +1,177 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.host;
+
+import java.util.Dictionary;
+import javax.swing.*;
+import org.apache.felix.example.extenderbased.host.extension.SimpleShape;
+import org.osgi.framework.Bundle;
+import org.osgi.framework.BundleContext;
+
+/**
+ * Extends the <tt>BundleTracker</tt> to create a tracker for
+ * <tt>SimpleShape</tt> extensions. The tracker is responsible for
+ * listener for the arrival/departure of <tt>SimpleShape</tt>
+ * extensions and informing the application about the availability
+ * of shapes. This tracker forces all notifications to be processed
+ * on the Swing event thread to avoid synchronization and redraw
+ * issues.
+**/
+public class ShapeTracker extends BundleTracker
+{
+ // Flag indicating an added shape.
+ private static final int ADDED = 1;
+ // Flag indicating a removed shape.
+ private static final int REMOVED = 2;
+ // The application object to notify.
+ private DrawingFrame m_frame;
+
+ /**
+ * Constructs a tracker that uses the specified bundle context to
+ * track extensions and notifies the specified application object about
+ * changes.
+ * @param context The bundle context to be used by the tracker.
+ * @param frame The application object to notify about extension changes.
+ **/
+ public ShapeTracker(BundleContext context, DrawingFrame frame)
+ {
+ super(context, null);
+ m_frame = frame;
+ }
+
+ /**
+ * Overrides the <tt>BundleTracker</tt> functionality to inform
+ * the application object about the added extensions.
+ * @param bundle The activated bundle.
+ **/
+ public void addedBundle(Bundle bundle)
+ {
+ processBundleOnEventThread(ADDED, bundle);
+ }
+
+ /**
+ * Overrides the <tt>BundleTracker</tt> functionality to inform
+ * the application object about removed extensions.
+ * @param bundle The inactivated bundle.
+ **/
+ public void removedBundle(Bundle bundle)
+ {
+ processBundleOnEventThread(REMOVED, bundle);
+ }
+
+ /**
+ * Processes a received bundle notification from the <tt>BundleTracker</tt>,
+ * forcing the processing of the notification onto the Swing event thread
+ * if it is not already on it.
+ * @param action The type of action associated with the notification.
+ * @param bundle The bundle of the corresponding extension.
+ **/
+ private void processBundleOnEventThread(int action, Bundle bundle)
+ {
+ try
+ {
+ if (SwingUtilities.isEventDispatchThread())
+ {
+ processBundle(action, bundle);
+ }
+ else
+ {
+ SwingUtilities.invokeAndWait(new BundleRunnable(action, bundle));
+ }
+ }
+ catch (Exception ex)
+ {
+ ex.printStackTrace();
+ }
+ }
+
+ /**
+ * Actually performs the processing of the bundle notification. Invokes
+ * the appropriate callback method on the application object depending on
+ * the action type of the notification.
+ * @param action The type of action associated with the notification.
+ * @param bundle The bundle of the corresponding extension.
+ **/
+ private void processBundle(int action, Bundle bundle)
+ {
+ Dictionary dict = bundle.getHeaders();
+
+ // Try to get the name of the extension.
+ String name = (String) dict.get(SimpleShape.NAME_PROPERTY);
+ // Return immediately if the bundle is not an extension.
+ if (name == null)
+ {
+ return;
+ }
+
+ switch (action)
+ {
+ case ADDED:
+ // Get the icon resource of the extension.
+ String iconPath = (String) dict.get(SimpleShape.ICON_PROPERTY);
+ Icon icon = new ImageIcon(bundle.getResource(iconPath));
+ // Get the class of the extension.
+ String classPath = (String) dict.get(SimpleShape.CLASS_PROPERTY);
+ try
+ {
+ Class clazz = bundle.loadClass(classPath);
+ m_frame.addShape(name, icon, (SimpleShape) clazz.newInstance());
+ }
+ catch (Exception ex)
+ {
+ // This should never happen in this example.
+ }
+ break;
+
+ case REMOVED:
+ m_frame.removeShape(name);
+ break;
+ }
+ }
+
+ /**
+ * Simple class used to process bundle notification handling on the
+ * Swing event thread.
+ **/
+ private class BundleRunnable implements Runnable
+ {
+ private int m_action;
+ private Bundle m_bundle;
+
+ /**
+ * Constructs an object with the specified action and bundle
+ * object for processing on the Swing event thread.
+ * @param action The type of action associated with the notification.
+ * @param bundle The bundle of the corresponding extension.
+ **/
+ public BundleRunnable(int action, Bundle bundle)
+ {
+ m_action = action;
+ m_bundle = bundle;
+ }
+
+ /**
+ * Calls the <tt>processBundle()</tt> method.
+ **/
+ public void run()
+ {
+ processBundle(m_action, m_bundle);
+ }
+ }
+}
\ No newline at end of file
diff --git a/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/extension/SimpleShape.java b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/extension/SimpleShape.java
new file mode 100644
index 0000000..ea75de6
--- /dev/null
+++ b/examples/extenderbased.host/src/main/java/org/apache/felix/example/extenderbased/host/extension/SimpleShape.java
@@ -0,0 +1,57 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.host.extension;
+
+import java.awt.Graphics2D;
+import java.awt.Point;
+
+/**
+ * This interface defines the <tt>SimpleShape</tt> extension. This extension
+ * is used to draw shapes. It is defined by three manifest properties:
+ * <ul>
+ * <li>Extension-Name - A <tt>String</tt> name for the shape.
+ * </li>
+ * <li>Extension-Icon - An <tt>Icon</tt> resource for the shape.
+ * </li>
+ * <li>Extension-Class - A <tt>Class</tt> that implements the shape.
+ * </li>
+ * </ul>
+**/
+public interface SimpleShape
+{
+ /**
+ * A property for the name of the shape.
+ **/
+ public static final String NAME_PROPERTY = "Extension-Name";
+ /**
+ * A property for the icon of the shape.
+ **/
+ public static final String ICON_PROPERTY = "Extension-Icon";
+ /**
+ * A property for the class of the shape.
+ **/
+ public static final String CLASS_PROPERTY = "Extension-Class";
+
+ /**
+ * Method to draw the shape of the extension.
+ * @param g2 The graphics object used for painting.
+ * @param p The position to paint the triangle.
+ **/
+ public void draw(Graphics2D g2, Point p);
+}
\ No newline at end of file
diff --git a/examples/extenderbased.host/src/main/resources/META-INF/LICENSE b/examples/extenderbased.host/src/main/resources/META-INF/LICENSE
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/examples/extenderbased.host/src/main/resources/META-INF/LICENSE
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/examples/extenderbased.host/src/main/resources/META-INF/NOTICE b/examples/extenderbased.host/src/main/resources/META-INF/NOTICE
new file mode 100644
index 0000000..1717c0f
--- /dev/null
+++ b/examples/extenderbased.host/src/main/resources/META-INF/NOTICE
@@ -0,0 +1,5 @@
+Apache Felix Service-Based Host Example
+Copyright 2007 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
diff --git a/examples/extenderbased.host/src/main/resources/org/apache/felix/example/extenderbased/host/underc.png b/examples/extenderbased.host/src/main/resources/org/apache/felix/example/extenderbased/host/underc.png
new file mode 100644
index 0000000..425cdb9
--- /dev/null
+++ b/examples/extenderbased.host/src/main/resources/org/apache/felix/example/extenderbased/host/underc.png
Binary files differ
diff --git a/examples/extenderbased.square/pom.xml b/examples/extenderbased.square/pom.xml
new file mode 100644
index 0000000..f488e6b
--- /dev/null
+++ b/examples/extenderbased.square/pom.xml
@@ -0,0 +1,79 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<project>
+
+ <parent>
+ <groupId>org.apache</groupId>
+ <artifactId>apache</artifactId>
+ <version>4</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <packaging>bundle</packaging>
+ <name>Apache Felix Square Extension</name>
+ <description>A simple extension for drawing squares.</description>
+ <groupId>org.apache.felix.example</groupId>
+ <artifactId>extenderbased.square</artifactId>
+ <version>1.0.0</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.felix.example</groupId>
+ <artifactId>extenderbased.host</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Extension-Name>Square</Extension-Name>
+ <Extension-Icon>org/apache/felix/example/extenderbased/square/square.png</Extension-Icon>
+ <Extension-Class>org.apache.felix.example.extenderbased.square.Square</Extension-Class>
+ <Private-Package>org.apache.felix.example.extenderbased.square.*</Private-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>apache.snapshots</id>
+ <name>snapshot plugins</name>
+ <url>
+ http://people.apache.org/repo/m2-snapshot-repository
+ </url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+</project>
diff --git a/examples/extenderbased.square/src/main/java/org/apache/felix/example/extenderbased/square/Square.java b/examples/extenderbased.square/src/main/java/org/apache/felix/example/extenderbased/square/Square.java
new file mode 100644
index 0000000..caa820a
--- /dev/null
+++ b/examples/extenderbased.square/src/main/java/org/apache/felix/example/extenderbased/square/Square.java
@@ -0,0 +1,55 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.square;
+
+import java.awt.BasicStroke;
+import java.awt.Color;
+import java.awt.GradientPaint;
+import java.awt.Graphics2D;
+import java.awt.Point;
+import java.awt.geom.*;
+import org.apache.felix.example.extenderbased.host.extension.SimpleShape;
+import org.osgi.framework.*;
+
+/**
+ * This class implements the square <tt>SimpleShape</tt> extension.
+ * It simply provides a <tt>draw()</tt> that paints a square.
+**/
+public class Square implements SimpleShape
+{
+ /**
+ * Implements the <tt>SimpleShape.draw()</tt> method for painting
+ * the shape.
+ * @param g2 The graphics object used for painting.
+ * @param p The position to paint the triangle.
+ **/
+ public void draw(Graphics2D g2, Point p)
+ {
+ int x = p.x - 25;
+ int y = p.y - 25;
+ GradientPaint gradient = new GradientPaint(
+ x, y, Color.BLUE, x + 50, y, Color.WHITE);
+ g2.setPaint(gradient);
+ g2.fill(new Rectangle2D.Double(x, y, 50, 50));
+ BasicStroke wideStroke = new BasicStroke(2.0f);
+ g2.setColor(Color.black);
+ g2.setStroke(wideStroke);
+ g2.draw(new Rectangle2D.Double(x, y, 50, 50));
+ }
+}
\ No newline at end of file
diff --git a/examples/extenderbased.square/src/main/resources/META-INF/LICENSE b/examples/extenderbased.square/src/main/resources/META-INF/LICENSE
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/examples/extenderbased.square/src/main/resources/META-INF/LICENSE
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/examples/extenderbased.square/src/main/resources/META-INF/NOTICE b/examples/extenderbased.square/src/main/resources/META-INF/NOTICE
new file mode 100644
index 0000000..f0fe53c
--- /dev/null
+++ b/examples/extenderbased.square/src/main/resources/META-INF/NOTICE
@@ -0,0 +1,5 @@
+Apache Felix Service-Based Square Service Example
+Copyright 2006 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
diff --git a/examples/extenderbased.square/src/main/resources/org/apache/felix/example/extenderbased/square/square.png b/examples/extenderbased.square/src/main/resources/org/apache/felix/example/extenderbased/square/square.png
new file mode 100644
index 0000000..3f24cfc
--- /dev/null
+++ b/examples/extenderbased.square/src/main/resources/org/apache/felix/example/extenderbased/square/square.png
Binary files differ
diff --git a/examples/extenderbased.triangle/pom.xml b/examples/extenderbased.triangle/pom.xml
new file mode 100644
index 0000000..b04be8e
--- /dev/null
+++ b/examples/extenderbased.triangle/pom.xml
@@ -0,0 +1,79 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<project>
+
+ <parent>
+ <groupId>org.apache</groupId>
+ <artifactId>apache</artifactId>
+ <version>4</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <packaging>bundle</packaging>
+ <name>Apache Felix Triangle Extension</name>
+ <description>A simple extension for drawing triangles.</description>
+ <groupId>org.apache.felix.example</groupId>
+ <artifactId>extenderbased.triangle</artifactId>
+ <version>1.0.0</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.felix.example</groupId>
+ <artifactId>extenderbased.host</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Extension-Name>Triangle</Extension-Name>
+ <Extension-Icon>org/apache/felix/example/extenderbased/triangle/triangle.png</Extension-Icon>
+ <Extension-Class>org.apache.felix.example.extenderbased.triangle.Triangle</Extension-Class>
+ <Private-Package>org.apache.felix.example.extenderbased.triangle.*</Private-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>apache.snapshots</id>
+ <name>snapshot plugins</name>
+ <url>
+ http://people.apache.org/repo/m2-snapshot-repository
+ </url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+</project>
diff --git a/examples/extenderbased.triangle/src/main/java/org/apache/felix/example/extenderbased/triangle/Triangle.java b/examples/extenderbased.triangle/src/main/java/org/apache/felix/example/extenderbased/triangle/Triangle.java
new file mode 100644
index 0000000..742b6c7
--- /dev/null
+++ b/examples/extenderbased.triangle/src/main/java/org/apache/felix/example/extenderbased/triangle/Triangle.java
@@ -0,0 +1,64 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.felix.example.extenderbased.triangle;
+
+import java.awt.BasicStroke;
+import java.awt.Color;
+import java.awt.GradientPaint;
+import java.awt.Graphics2D;
+import java.awt.Point;
+import java.awt.geom.*;
+import org.apache.felix.example.extenderbased.host.extension.SimpleShape;
+import org.osgi.framework.*;
+
+/**
+ * This inner class implements the triangle <tt>SimpleShape</tt> service.
+ * It simply provides a <tt>draw()</tt> that paints a triangle.
+**/
+public class Triangle implements SimpleShape
+{
+ /**
+ * Implements the <tt>SimpleShape.draw()</tt> method for painting
+ * the shape.
+ * @param g2 The graphics object used for painting.
+ * @param p The position to paint the triangle.
+ **/
+ public void draw(Graphics2D g2, Point p)
+ {
+ int x = p.x - 25;
+ int y = p.y - 25;
+ GradientPaint gradient = new GradientPaint(
+ x, y, Color.GREEN, x + 50, y, Color.WHITE);
+ g2.setPaint(gradient);
+ int[] xcoords = { x + 25, x, x + 50 };
+ int[] ycoords = { y, y + 50, y + 50 };
+ GeneralPath polygon = new GeneralPath(GeneralPath.WIND_EVEN_ODD, xcoords.length);
+ polygon.moveTo(x + 25, y);
+ for (int i = 0; i < xcoords.length; i++)
+ {
+ polygon.lineTo(xcoords[i], ycoords[i]);
+ }
+ polygon.closePath();
+ g2.fill(polygon);
+ BasicStroke wideStroke = new BasicStroke(2.0f);
+ g2.setColor(Color.black);
+ g2.setStroke(wideStroke);
+ g2.draw(polygon);
+ }
+}
\ No newline at end of file
diff --git a/examples/extenderbased.triangle/src/main/resources/META-INF/LICENSE b/examples/extenderbased.triangle/src/main/resources/META-INF/LICENSE
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/examples/extenderbased.triangle/src/main/resources/META-INF/LICENSE
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/examples/extenderbased.triangle/src/main/resources/META-INF/NOTICE b/examples/extenderbased.triangle/src/main/resources/META-INF/NOTICE
new file mode 100644
index 0000000..6d0c83b
--- /dev/null
+++ b/examples/extenderbased.triangle/src/main/resources/META-INF/NOTICE
@@ -0,0 +1,5 @@
+Apache Felix Service-Based Triangle Service Example
+Copyright 2006 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
diff --git a/examples/extenderbased.triangle/src/main/resources/org/apache/felix/example/extenderbased/triangle/triangle.png b/examples/extenderbased.triangle/src/main/resources/org/apache/felix/example/extenderbased/triangle/triangle.png
new file mode 100644
index 0000000..46a5288
--- /dev/null
+++ b/examples/extenderbased.triangle/src/main/resources/org/apache/felix/example/extenderbased/triangle/triangle.png
Binary files differ