2008-04-09 12:22:23 +00:00
|
|
|
/* ====================================================================
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
import java.io.IOException;
|
2009-07-19 18:26:36 +00:00
|
|
|
import java.io.OutputStream;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.HashMap;
|
2008-04-09 12:22:23 +00:00
|
|
|
|
2009-01-29 12:44:31 +00:00
|
|
|
import org.apache.poi.openxml4j.exceptions.OpenXML4JException;
|
2009-07-19 18:26:36 +00:00
|
|
|
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
|
|
|
|
|
import org.apache.poi.openxml4j.opc.*;
|
2009-01-29 12:44:31 +00:00
|
|
|
import org.apache.poi.openxml4j.opc.internal.PackagePropertiesPart;
|
2009-03-18 18:54:01 +00:00
|
|
|
import org.apache.xmlbeans.XmlException;
|
2009-07-19 18:26:36 +00:00
|
|
|
import org.apache.xmlbeans.XmlOptions;
|
|
|
|
|
import org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument;
|
2008-04-09 12:22:23 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Wrapper around the two different kinds of OOXML properties
|
|
|
|
|
* a document can have
|
|
|
|
|
*/
|
|
|
|
|
public class POIXMLProperties {
|
2009-03-18 18:54:01 +00:00
|
|
|
private OPCPackage pkg;
|
2008-04-09 12:22:23 +00:00
|
|
|
private CoreProperties core;
|
|
|
|
|
private ExtendedProperties ext;
|
2008-08-12 20:58:31 +00:00
|
|
|
private CustomProperties cust;
|
2009-07-19 18:26:36 +00:00
|
|
|
|
|
|
|
|
private PackagePart extPart;
|
|
|
|
|
private PackagePart custPart;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static final org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument NEW_EXT_INSTANCE;
|
|
|
|
|
private static final org.openxmlformats.schemas.officeDocument.x2006.customProperties.PropertiesDocument NEW_CUST_INSTANCE;
|
|
|
|
|
static {
|
|
|
|
|
NEW_EXT_INSTANCE = org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument.Factory.newInstance();
|
|
|
|
|
NEW_EXT_INSTANCE.addNewProperties();
|
|
|
|
|
|
|
|
|
|
NEW_CUST_INSTANCE = org.openxmlformats.schemas.officeDocument.x2006.customProperties.PropertiesDocument.Factory.newInstance();
|
|
|
|
|
NEW_CUST_INSTANCE.addNewProperties();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public POIXMLProperties(OPCPackage docPackage) throws IOException, OpenXML4JException, XmlException {
|
2008-04-09 12:22:23 +00:00
|
|
|
this.pkg = docPackage;
|
|
|
|
|
|
|
|
|
|
// Core properties
|
2009-07-12 08:21:09 +00:00
|
|
|
core = new CoreProperties((PackagePropertiesPart)pkg.getPackageProperties() );
|
2008-04-09 12:22:23 +00:00
|
|
|
|
|
|
|
|
// Extended properties
|
|
|
|
|
PackageRelationshipCollection extRel =
|
|
|
|
|
pkg.getRelationshipsByType(POIXMLDocument.EXTENDED_PROPERTIES_REL_TYPE);
|
|
|
|
|
if(extRel.size() == 1) {
|
2009-07-19 18:26:36 +00:00
|
|
|
extPart = pkg.getPart( extRel.getRelationship(0));
|
|
|
|
|
org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument props = org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument.Factory.parse(
|
|
|
|
|
extPart.getInputStream()
|
2008-04-09 12:22:23 +00:00
|
|
|
);
|
|
|
|
|
ext = new ExtendedProperties(props);
|
|
|
|
|
} else {
|
2009-07-19 18:26:36 +00:00
|
|
|
extPart = null;
|
|
|
|
|
ext = new ExtendedProperties((org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument)NEW_EXT_INSTANCE.copy());
|
|
|
|
|
}
|
2008-08-12 20:58:31 +00:00
|
|
|
|
|
|
|
|
// Custom properties
|
|
|
|
|
PackageRelationshipCollection custRel =
|
|
|
|
|
pkg.getRelationshipsByType(POIXMLDocument.CUSTOM_PROPERTIES_REL_TYPE);
|
|
|
|
|
if(custRel.size() == 1) {
|
2009-07-19 18:26:36 +00:00
|
|
|
custPart = pkg.getPart( custRel.getRelationship(0));
|
|
|
|
|
org.openxmlformats.schemas.officeDocument.x2006.customProperties.PropertiesDocument props = org.openxmlformats.schemas.officeDocument.x2006.customProperties.PropertiesDocument.Factory.parse(
|
|
|
|
|
custPart.getInputStream()
|
2008-08-12 20:58:31 +00:00
|
|
|
);
|
|
|
|
|
cust = new CustomProperties(props);
|
|
|
|
|
} else {
|
2009-07-19 18:26:36 +00:00
|
|
|
custPart = null;
|
|
|
|
|
cust = new CustomProperties((org.openxmlformats.schemas.officeDocument.x2006.customProperties.PropertiesDocument)NEW_CUST_INSTANCE.copy());
|
2008-04-09 12:22:23 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the core document properties
|
|
|
|
|
*/
|
|
|
|
|
public CoreProperties getCoreProperties() {
|
|
|
|
|
return core;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the extended document properties
|
|
|
|
|
*/
|
|
|
|
|
public ExtendedProperties getExtendedProperties() {
|
|
|
|
|
return ext;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-12 20:58:31 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the custom document properties
|
|
|
|
|
*/
|
|
|
|
|
public CustomProperties getCustomProperties() {
|
|
|
|
|
return cust;
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-09 12:22:23 +00:00
|
|
|
/**
|
2009-07-19 18:26:36 +00:00
|
|
|
* Commit changes to the underlying OPC package
|
2008-04-09 12:22:23 +00:00
|
|
|
*/
|
2009-07-19 18:26:36 +00:00
|
|
|
public void commit() throws IOException{
|
|
|
|
|
|
|
|
|
|
if(extPart == null && !NEW_EXT_INSTANCE.toString().equals(ext.props.toString())){
|
|
|
|
|
try {
|
|
|
|
|
PackagePartName prtname = PackagingURIHelper.createPartName("/docProps/app.xml");
|
|
|
|
|
pkg.addRelationship(prtname, TargetMode.INTERNAL, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties");
|
|
|
|
|
extPart = pkg.createPart(prtname, "application/vnd.openxmlformats-officedocument.extended-properties+xml");
|
|
|
|
|
} catch (InvalidFormatException e){
|
|
|
|
|
throw new POIXMLException(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(custPart == null && !NEW_CUST_INSTANCE.toString().equals(cust.props.toString())){
|
|
|
|
|
try {
|
|
|
|
|
PackagePartName prtname = PackagingURIHelper.createPartName("/docProps/custom.xml");
|
|
|
|
|
pkg.addRelationship(prtname, TargetMode.INTERNAL, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties");
|
|
|
|
|
custPart = pkg.createPart(prtname, "application/vnd.openxmlformats-officedocument.custom-properties+xml");
|
|
|
|
|
} catch (InvalidFormatException e){
|
|
|
|
|
throw new POIXMLException(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(extPart != null){
|
|
|
|
|
XmlOptions xmlOptions = new XmlOptions(POIXMLDocumentPart.DEFAULT_XML_OPTIONS);
|
|
|
|
|
|
|
|
|
|
Map<String, String> map = new HashMap<String, String>();
|
|
|
|
|
map.put("http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes", "vt");
|
|
|
|
|
xmlOptions.setSaveSuggestedPrefixes(map);
|
|
|
|
|
|
|
|
|
|
OutputStream out = extPart.getOutputStream();
|
|
|
|
|
ext.props.save(out, xmlOptions);
|
|
|
|
|
out.close();
|
|
|
|
|
}
|
|
|
|
|
if(custPart != null){
|
|
|
|
|
OutputStream out = custPart.getOutputStream();
|
|
|
|
|
cust.props.save(out, POIXMLDocumentPart.DEFAULT_XML_OPTIONS);
|
|
|
|
|
out.close();
|
|
|
|
|
}
|
2008-04-09 12:22:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The core document properties
|
|
|
|
|
*/
|
|
|
|
|
public class CoreProperties {
|
|
|
|
|
private PackagePropertiesPart part;
|
|
|
|
|
private CoreProperties(PackagePropertiesPart part) {
|
|
|
|
|
this.part = part;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTitle(String title) {
|
|
|
|
|
part.setTitleProperty(title);
|
|
|
|
|
}
|
|
|
|
|
public String getTitle() {
|
|
|
|
|
return part.getTitleProperty().getValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public PackagePropertiesPart getUnderlyingProperties() {
|
|
|
|
|
return part;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Extended document properties
|
|
|
|
|
*/
|
|
|
|
|
public class ExtendedProperties {
|
2008-08-12 20:58:31 +00:00
|
|
|
private org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument props;
|
|
|
|
|
private ExtendedProperties(org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.PropertiesDocument props) {
|
|
|
|
|
this.props = props;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.CTProperties getUnderlyingProperties() {
|
|
|
|
|
return props.getProperties();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Custom document properties
|
|
|
|
|
*/
|
|
|
|
|
public class CustomProperties {
|
|
|
|
|
private org.openxmlformats.schemas.officeDocument.x2006.customProperties.PropertiesDocument props;
|
|
|
|
|
private CustomProperties(org.openxmlformats.schemas.officeDocument.x2006.customProperties.PropertiesDocument props) {
|
2008-04-09 12:22:23 +00:00
|
|
|
this.props = props;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-12 20:58:31 +00:00
|
|
|
public org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperties getUnderlyingProperties() {
|
2008-04-09 12:22:23 +00:00
|
|
|
return props.getProperties();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|