From 13467b4732b2a5ba081f8c0ad08751485b4b39e2 Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Sat, 9 Aug 2008 14:21:21 +0000 Subject: [PATCH] Improve how XWPF headers and footers work git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@684269 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/poi/xwpf/XWPFDocument.java | 71 ++++--- .../xwpf/model/XWPFHeaderFooterPolicy.java | 159 ++++++++++++++++ .../poi/xwpf/usermodel/XMLWordDocument.java | 8 +- .../model/TestXWPFHeaderFooterPolicy.java | 180 ++++++++++++++++++ .../poi/xwpf/usermodel/TestXWPFParagraph.java | 2 +- 5 files changed, 376 insertions(+), 44 deletions(-) create mode 100644 src/ooxml/java/org/apache/poi/xwpf/model/XWPFHeaderFooterPolicy.java create mode 100644 src/ooxml/testcases/org/apache/poi/xwpf/model/TestXWPFHeaderFooterPolicy.java diff --git a/src/ooxml/java/org/apache/poi/xwpf/XWPFDocument.java b/src/ooxml/java/org/apache/poi/xwpf/XWPFDocument.java index 6b25a42b9e..e5d5924df2 100644 --- a/src/ooxml/java/org/apache/poi/xwpf/XWPFDocument.java +++ b/src/ooxml/java/org/apache/poi/xwpf/XWPFDocument.java @@ -17,11 +17,16 @@ package org.apache.poi.xwpf; import java.io.IOException; +import java.util.Iterator; import java.util.LinkedList; import java.util.List; -import java.util.Iterator; import org.apache.poi.POIXMLDocument; +import org.apache.poi.xwpf.model.XWPFHeaderFooterPolicy; +import org.apache.poi.xwpf.usermodel.XWPFComment; +import org.apache.poi.xwpf.usermodel.XWPFHyperlink; +import org.apache.poi.xwpf.usermodel.XWPFParagraph; +import org.apache.poi.xwpf.usermodel.XWPFTable; import org.apache.xmlbeans.XmlException; import org.openxml4j.exceptions.InvalidFormatException; import org.openxml4j.exceptions.OpenXML4JException; @@ -30,23 +35,14 @@ import org.openxml4j.opc.PackagePart; import org.openxml4j.opc.PackageRelationship; import org.openxml4j.opc.PackageRelationshipCollection; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTBody; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTComment; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTDocument1; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTP; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTStyles; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTComment; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTbl; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.CommentsDocument; import org.openxmlformats.schemas.wordprocessingml.x2006.main.DocumentDocument; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.FtrDocument; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.HdrDocument; import org.openxmlformats.schemas.wordprocessingml.x2006.main.StylesDocument; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.CommentsDocument; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTbl; - -import org.apache.poi.xwpf.usermodel.XWPFFooter; -import org.apache.poi.xwpf.usermodel.XWPFHeader; -import org.apache.poi.xwpf.usermodel.XWPFHyperlink; -import org.apache.poi.xwpf.usermodel.XWPFParagraph; -import org.apache.poi.xwpf.usermodel.XWPFComment; -import org.apache.poi.xwpf.usermodel.XWPFTable; /** * Experimental class to do low level processing @@ -75,10 +71,9 @@ public class XWPFDocument extends POIXMLDocument { protected List hyperlinks; protected List paragraphs; protected List tables; - /** Should only ever be zero or one of these, we think */ - protected XWPFHeader header; - /** Should only ever be zero or one of these, we think */ - protected XWPFFooter footer; + + /** Handles the joy of different headers/footers for different pages */ + private XWPFHeaderFooterPolicy headerFooterPolicy; public XWPFDocument(Package container) throws OpenXML4JException, IOException, XmlException { super(container); @@ -133,23 +128,8 @@ public class XWPFDocument extends POIXMLDocument { embedds.add(getTargetPart(rel)); } - // Fetch the header, if there's one - PackageRelationshipCollection headerRel = getCorePart().getRelationshipsByType(HEADER_RELATION_TYPE); - if(headerRel != null && headerRel.size() > 0) { - PackagePart headerPart = getTargetPart(headerRel.getRelationship(0)); - header = new XWPFHeader( - HdrDocument.Factory.parse(headerPart.getInputStream()).getHdr() - ); - } - - // Fetch the footer, if there's one - PackageRelationshipCollection footerRel = getCorePart().getRelationshipsByType(FOOTER_RELATION_TYPE); - if(footerRel != null && footerRel.size() > 0) { - PackagePart footerPart = getTargetPart(footerRel.getRelationship(0)); - footer = new XWPFFooter( - FtrDocument.Factory.parse(footerPart.getInputStream()).getFtr() - ); - } + // Sort out headers and footers + headerFooterPolicy = new XWPFHeaderFooterPolicy(this); } /** @@ -207,11 +187,26 @@ public class XWPFDocument extends POIXMLDocument { ); } - public XWPFHeader getDocumentHeader() { - return header; + /** + * Get the document part that's defined as the + * given relationship of the core document. + */ + public PackagePart getPartById(String id) { + try { + return getTargetPart( + getCorePart().getRelationship(id) + ); + } catch(InvalidFormatException e) { + throw new IllegalArgumentException(e); + } } - public XWPFFooter getDocumentFooter() { - return footer; + + /** + * Returns the policy on headers and footers, which + * also provides a way to get at them. + */ + public XWPFHeaderFooterPolicy getHeaderFooterPolicy() { + return headerFooterPolicy; } /** diff --git a/src/ooxml/java/org/apache/poi/xwpf/model/XWPFHeaderFooterPolicy.java b/src/ooxml/java/org/apache/poi/xwpf/model/XWPFHeaderFooterPolicy.java new file mode 100644 index 0000000000..83a67ade99 --- /dev/null +++ b/src/ooxml/java/org/apache/poi/xwpf/model/XWPFHeaderFooterPolicy.java @@ -0,0 +1,159 @@ +/* ==================================================================== + 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.poi.xwpf.model; + +import java.io.IOException; + +import org.apache.poi.xwpf.XWPFDocument; +import org.apache.poi.xwpf.usermodel.XWPFFooter; +import org.apache.poi.xwpf.usermodel.XWPFHeader; +import org.apache.xmlbeans.XmlException; +import org.openxml4j.opc.PackagePart; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTHdrFtrRef; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTSectPr; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.FtrDocument; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.HdrDocument; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.STHdrFtr; + +/** + * A .docx file can have no headers/footers, the same header/footer + * on each page, odd/even page footers, and optionally also + * a different header/footer on the first page. + * This class handles sorting out what there is, and giving you + * the right headers and footers for the document. + */ +public class XWPFHeaderFooterPolicy { + private XWPFHeader firstPageHeader; + private XWPFFooter firstPageFooter; + + private XWPFHeader evenPageHeader; + private XWPFFooter evenPageFooter; + + private XWPFHeader defaultHeader; + private XWPFFooter defaultFooter; + + + /** + * Figures out the policy for the given document, + * and creates any header and footer objects + * as required. + */ + public XWPFHeaderFooterPolicy(XWPFDocument doc) throws IOException, XmlException { + // Grab what headers and footers have been defined + // For now, we don't care about different ranges, as it + // doesn't seem that .docx properly supports that + // feature of the file format yet + CTSectPr sectPr = doc.getDocumentBody().getSectPr(); + for(int i=0; i