Search in sources :

Example 1 with XWPFStylesShim

use of org.apache.tika.parser.microsoft.ooxml.xwpf.XWPFStylesShim in project tika by apache.

the class SXWPFWordExtractorDecorator method handleDocumentPart.

private void handleDocumentPart(PackagePart documentPart, XHTMLContentHandler xhtml) throws IOException, SAXException {
    //load the numbering/list manager and styles from the main document part
    XWPFNumbering numbering = loadNumbering(documentPart);
    XWPFListManager listManager = new XWPFListManager(numbering);
    XWPFStylesShim styles = null;
    try {
        styles = loadStyles(documentPart);
    } catch (Exception e) {
        metadata.add(TikaCoreProperties.TIKA_META_EXCEPTION_WARNING, ExceptionUtils.getStackTrace(e));
    }
    //headers
    try {
        PackageRelationshipCollection headersPRC = documentPart.getRelationshipsByType(XWPFRelation.HEADER.getRelation());
        if (headersPRC != null) {
            for (int i = 0; i < headersPRC.size(); i++) {
                PackagePart header = documentPart.getRelatedPart(headersPRC.getRelationship(i));
                handlePart(header, styles, listManager, xhtml);
            }
        }
    } catch (InvalidFormatException | ZipException e) {
        metadata.add(TikaCoreProperties.TIKA_META_EXCEPTION_WARNING, ExceptionUtils.getStackTrace(e));
    }
    //main document
    try {
        handlePart(documentPart, styles, listManager, xhtml);
    } catch (ZipException e) {
        metadata.add(TikaCoreProperties.TIKA_META_EXCEPTION_WARNING, ExceptionUtils.getStackTrace(e));
    }
    //for now, just dump other components at end
    for (XWPFRelation rel : new XWPFRelation[] { XWPFRelation.FOOTNOTE, XWPFRelation.COMMENT, XWPFRelation.FOOTER, XWPFRelation.ENDNOTE }) {
        try {
            PackageRelationshipCollection prc = documentPart.getRelationshipsByType(rel.getRelation());
            if (prc != null) {
                for (int i = 0; i < prc.size(); i++) {
                    PackagePart packagePart = documentPart.getRelatedPart(prc.getRelationship(i));
                    handlePart(packagePart, styles, listManager, xhtml);
                }
            }
        } catch (InvalidFormatException | ZipException e) {
            metadata.add(TikaCoreProperties.TIKA_META_EXCEPTION_WARNING, ExceptionUtils.getStackTrace(e));
        }
    }
}
Also used : XWPFRelation(org.apache.poi.xwpf.usermodel.XWPFRelation) XWPFNumbering(org.apache.poi.xwpf.usermodel.XWPFNumbering) PackageRelationshipCollection(org.apache.poi.openxml4j.opc.PackageRelationshipCollection) XWPFStylesShim(org.apache.tika.parser.microsoft.ooxml.xwpf.XWPFStylesShim) ZipException(java.util.zip.ZipException) PackagePart(org.apache.poi.openxml4j.opc.PackagePart) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) TikaException(org.apache.tika.exception.TikaException) ZipException(java.util.zip.ZipException) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) OpenXML4JException(org.apache.poi.openxml4j.exceptions.OpenXML4JException) IOException(java.io.IOException) XmlException(org.apache.xmlbeans.XmlException) SAXException(org.xml.sax.SAXException)

Example 2 with XWPFStylesShim

use of org.apache.tika.parser.microsoft.ooxml.xwpf.XWPFStylesShim in project tika by apache.

the class SXWPFWordExtractorDecorator method loadStyles.

private XWPFStylesShim loadStyles(PackagePart packagePart) throws InvalidFormatException, TikaException, IOException, SAXException {
    PackageRelationshipCollection stylesParts = packagePart.getRelationshipsByType(XWPFRelation.STYLES.getRelation());
    if (stylesParts.size() > 0) {
        PackageRelationship stylesRelationShip = stylesParts.getRelationship(0);
        if (stylesRelationShip == null) {
            return null;
        }
        PackagePart stylesPart = packagePart.getRelatedPart(stylesRelationShip);
        if (stylesPart == null) {
            return null;
        }
        return new XWPFStylesShim(stylesPart, context);
    }
    return null;
}
Also used : PackageRelationship(org.apache.poi.openxml4j.opc.PackageRelationship) PackageRelationshipCollection(org.apache.poi.openxml4j.opc.PackageRelationshipCollection) XWPFStylesShim(org.apache.tika.parser.microsoft.ooxml.xwpf.XWPFStylesShim) PackagePart(org.apache.poi.openxml4j.opc.PackagePart)

Aggregations

PackagePart (org.apache.poi.openxml4j.opc.PackagePart)2 PackageRelationshipCollection (org.apache.poi.openxml4j.opc.PackageRelationshipCollection)2 XWPFStylesShim (org.apache.tika.parser.microsoft.ooxml.xwpf.XWPFStylesShim)2 IOException (java.io.IOException)1 ZipException (java.util.zip.ZipException)1 InvalidFormatException (org.apache.poi.openxml4j.exceptions.InvalidFormatException)1 OpenXML4JException (org.apache.poi.openxml4j.exceptions.OpenXML4JException)1 PackageRelationship (org.apache.poi.openxml4j.opc.PackageRelationship)1 XWPFNumbering (org.apache.poi.xwpf.usermodel.XWPFNumbering)1 XWPFRelation (org.apache.poi.xwpf.usermodel.XWPFRelation)1 TikaException (org.apache.tika.exception.TikaException)1 XmlException (org.apache.xmlbeans.XmlException)1 SAXException (org.xml.sax.SAXException)1