You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2015/04/25 03:52:18 UTC

[Bug 57857] New: Provide an OSGi bundle

https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

            Bug ID: 57857
           Summary: Provide an OSGi bundle
           Product: POI
           Version: 3.12-dev
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: POI Overall
          Assignee: dev@poi.apache.org
          Reporter: apache@gagravarr.org

There seems to be increasing demand for an official OSGi bundle version of
Apache POI. Some other Apache projects (eg ServiceMix) will sometimes produce
their own copy, but not that often, which leaves our OSGi users on older
versions or struggling themselves

Through the use of Apache Felix and friends, it ought to be fairly
straightforward to build a bundle. Based on the Apache Tika OSGi bundle work of
late, we can also include a unit test which checks that the bundle comes up and
main parts of the API work

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

Yegor Kozlov <ye...@dinom.ru> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #10 from Yegor Kozlov <ye...@dinom.ru> ---

The osgi bundle is in a good shape and this ticket can be finally closed out.
It turned out to be a bit more than just wrapping the POI classes. The bundle
includes an Activator
(https://svn.apache.org/repos/asf/poi/trunk/osgi/src/main/java/org/apache/poi/osgi/Activator.java)
which registers services exported from the JPMS modules which otherwise would
not load via ServiceLoader@load mechanism in OSGi.

I'd like to recommend it as a reference implementation and projects that wish
to wrap POI into their own bundles should follow the pattern. 

For now poi-osgi is a separate maven sub-project which does not fit in the main
Ant-driven build .

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

GW <gr...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|greg.woolsey@gmail.com      |

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

Bob Paulin <bo...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bob@apache.org

--- Comment #4 from Bob Paulin <bo...@apache.org> ---
Created attachment 32736
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=32736&action=edit
PAX-EXAM Patch

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

--- Comment #8 from Yegor Kozlov <ye...@dinom.ru> ---
I updated the OSGi POM to work with 5.0.0-SNAPSHOT, see
https://svn.apache.org/repos/asf/poi/trunk/osgi/

The POI bundle is self-contained and can be used out of the box in a bare OSGi
container, i.e. no other bundles are required. The  bundle exports all the POI
classes, XML Beans, OOXML Schemas and required  dependencies. The current size
is around 21 MB. 

## Embedded Dependencies
The bundle embeds all the jars from lib/main:

- SparseBitSet
- curvesapi
- commons-math3
- commons-compress
- commons-collections4
- commons-codec

## Optional Dependencies

1. Apache Batik
Required to render WMF/EMF images. The OSGi bundle is provided by ServiceMix
and available in Maven Central:
https://mvnrepository.com/artifact/org.apache.servicemix.bundles/org.apache.servicemix.bundles.batik/1.13_1
2. Saxon
Required if using as the XSLT and XQuery Processor engine in XML Beans.
Available in Maven Central:
https://mvnrepository.com/artifact/net.sf.saxon/saxon/8.9.0.4-osgi
3. Apache XML Security for Java, Bouncy Castle and XML Commons Resolver 
These are required to sign or validate signed Office documents. The OSGi
bundles are available in Maven Central:

    - Apache XML Security for Java:
https://mvnrepository.com/artifact/org.apache.santuario/xmlsec/2.2.0

    - XML Commons Resolver:
https://mvnrepository.com/artifact/xml-resolver/xml-resolver/1.2-osgi

    - Bouncy Castle:
https://mvnrepository.com/artifact/org.bouncycastle/bcprov-ext-jdk15on/1.66,
https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on/1.66

## Blocked Imports

These are not used and can be suppressed : 

Transitive dependencies from XML Beans not required by POI:

    - !com.github.javaparser.*,
    - !org.apache.tools.ant.*

Optional codecs pulled by  Commons-Compress. Not used by POI

    - !com.github.luben.zstd.*,
    - !org.tukaani.xz.*,
    - !org.brotli.dec.*,

Internal APIs which are no more in JPMS

    - !sun.misc.*


I tested the bundle in Apache Felix, Apache Sling (web framework running on
Felix), Adobe AEM (Commercial version of Apache Sling ) and it worked fine for
me. 
There is also a Pax Exam integration test running with the Apache Felix driver.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

--- Comment #2 from Bob Paulin <bo...@apache.org> ---
So just as a quick experiment I did get the service mix 3.11 bundle running but
it did take some toying around:

In the config I had to add:
org.osgi.framework.system.packages.extra=org.w3c.dom,org.w3c.dom.html,org.w3c.dom.traversal,org.w3c.dom.ranges,org.w3c.dom.views

This exposes the JRE classes to the osgi container.


Also below is the log out of the bundles that I had in play to get it to spin
up.  The bundles I added are 1, 7-12,16.  
START LEVEL 1
   ID|State      |Level|Name
    0|Active     |    0|System Bundle (4.6.1)
    1|Active     |    1|Apache Commons Codec (1.9.0)
    2|Active     |    1|Apache Felix Bundle Repository (2.0.2)
    3|Active     |    1|Apache Felix Configuration Admin Service (1.8.2)
    4|Active     |    1|Apache Felix Gogo Command (0.14.0)
    5|Active     |    1|Apache Felix Gogo Runtime (0.12.1)
    6|Active     |    1|Apache Felix Gogo Shell (0.10.0)
    7|Active     |    1|Apache ServiceMix :: Bundles :: bcel (5.2.0.4)
    8|Active     |    1|Apache ServiceMix :: Bundles :: poi (3.11.0)
    9|Active     |    1|Apache ServiceMix :: Bundles :: xalan (2.7.1.4)
   10|Active     |    1|Apache ServiceMix :: Bundles :: xercesImpl (2.9.1.4)
   11|Active     |    1|Apache ServiceMix :: Bundles :: xmlresolver (1.2.0.5)
   12|Active     |    1|Apache ServiceMix :: Bundles :: xmlsec (1.4.3.3)
   13|Active     |    1|Apache Sling OSGi LogService Implementation (1.0.4)
   14|Active     |    1|OPS4J Pax Logging - API (1.8.2)
   15|Active     |    1|OPS4J Pax Logging - Log4j v2 (1.8.2)
   16|Active     |    1|Apache XML Security for Java (2.0.1)

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

--- Comment #9 from PJ Fanning <fa...@yahoo.com> ---
the xmlbeans 5.0.0-SNAPSHOT uses a version of saxon that is more like 10.x

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

--- Comment #5 from Bob Paulin <bo...@apache.org> ---
Attached is a Patch that sets up a PAX-Exam test for the POI bundle project. 
The setup is based on the servicemix project work to configure the optional
imports but I tried to keep the exports as minimal as possible.  The tests pass
for 3.11 but not 3.12-beta2 because it appears that the org.etsi.uri.x01903.v14
and org.etsi.uri.x01903.v14.impl packages have been removed from the
poi-ooxml-schemas jar at 3.12-beta2.  Either these packages need to be removed
from the poi jar or they need to be added back into the poi-ooxml-schemas jar.

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

--- Comment #1 from Nick Burch <ap...@gagravarr.org> ---
To try the work so far, you can use the "osgi" ant target, or you can build +
install the maven poms locally with the "mvn-install" ant target then in the
osgi directory run "mvn -Dpoi.version=3.12-beta2 install". However, it isn't
yet working...

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

Dominik Stadler <do...@gmx.at> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sebastien.arod@gmail.com

--- Comment #6 from Dominik Stadler <do...@gmx.at> ---
*** Bug 53866 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

joao.nelas@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |joao.nelas@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

--- Comment #3 from Bob Paulin <bo...@apache.org> ---
So just as a quick experiment I did get the service mix 3.11 bundle running but
it did take some toying around:

In the config I had to add:
org.osgi.framework.system.packages.extra=org.w3c.dom,org.w3c.dom.html,org.w3c.dom.traversal,org.w3c.dom.ranges,org.w3c.dom.views

This exposes the JRE classes to the osgi container.


Also below is the log out of the bundles that I had in play to get it to spin
up.  The bundles I added are 1, 7-12,16.  
START LEVEL 1
   ID|State      |Level|Name
    0|Active     |    0|System Bundle (4.6.1)
    1|Active     |    1|Apache Commons Codec (1.9.0)
    2|Active     |    1|Apache Felix Bundle Repository (2.0.2)
    3|Active     |    1|Apache Felix Configuration Admin Service (1.8.2)
    4|Active     |    1|Apache Felix Gogo Command (0.14.0)
    5|Active     |    1|Apache Felix Gogo Runtime (0.12.1)
    6|Active     |    1|Apache Felix Gogo Shell (0.10.0)
    7|Active     |    1|Apache ServiceMix :: Bundles :: bcel (5.2.0.4)
    8|Active     |    1|Apache ServiceMix :: Bundles :: poi (3.11.0)
    9|Active     |    1|Apache ServiceMix :: Bundles :: xalan (2.7.1.4)
   10|Active     |    1|Apache ServiceMix :: Bundles :: xercesImpl (2.9.1.4)
   11|Active     |    1|Apache ServiceMix :: Bundles :: xmlresolver (1.2.0.5)
   12|Active     |    1|Apache ServiceMix :: Bundles :: xmlsec (1.4.3.3)
   13|Active     |    1|Apache Sling OSGi LogService Implementation (1.0.4)
   14|Active     |    1|OPS4J Pax Logging - API (1.8.2)
   15|Active     |    1|OPS4J Pax Logging - Log4j v2 (1.8.2)
   16|Active     |    1|Apache XML Security for Java (2.0.1)

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

GW <gr...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |greg.woolsey@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 57857] Provide an OSGi bundle

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=57857

--- Comment #7 from Andreas Beeker <ki...@apache.org> ---
Created attachment 34336
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=34336&action=edit
ServiceMix patch

This is a preliminary patch for Apache ServiceMix (i.e not for POI itself),
which still needs to be tweaked when POI 3.16 comes out, which contains the fix
for #60226

The tweak might contain additions like ...
- org.apache.xml.security.signature;resolution:=optional,


fyi - this is related to the SO issue [1]

[1]
http://stackoverflow.com/questions/38791416/apache-poi-felix-xslf-table-is-empty

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org