blob: 9056055d0626d5e58c7137b81639384f1ab7f597 [file] [log] [blame]
/************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
*
* Copyright 2008, 2010 Oracle and/or its affiliates. All rights reserved.
*
* Use is subject to license terms.
*
* 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. You can also
* obtain a copy of the License at http://odftoolkit.org/docs/license.txt
*
* 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.odftoolkit.simple;
import java.io.File;
import java.io.InputStream;
import org.odftoolkit.odfdom.dom.element.office.OfficeChartElement;
import org.odftoolkit.odfdom.pkg.MediaType;
import org.odftoolkit.odfdom.pkg.OdfElement;
import org.odftoolkit.odfdom.pkg.OdfPackage;
/**
* This class represents an empty ODF document , which will be in general
* embedded in an existing ODF (Spreadsheet) document.
*/
public class ChartDocument extends Document {
private static final String EMPTY_CHART_DOCUMENT_PATH = "/OdfChartDocument.odc";
static final Resource EMPTY_CHART_DOCUMENT_RESOURCE = new Resource(EMPTY_CHART_DOCUMENT_PATH);
/**
* This enum contains all possible media types of ChartDocument documents.
*/
public enum OdfMediaType implements MediaType {
CHART(Document.OdfMediaType.CHART), CHART_TEMPLATE(Document.OdfMediaType.CHART_TEMPLATE);
private final Document.OdfMediaType mMediaType;
OdfMediaType(Document.OdfMediaType mediaType) {
this.mMediaType = mediaType;
}
/**
* @return the mediatype of this document
*/
public String getMediaTypeString() {
return mMediaType.getMediaTypeString();
}
/**
* @return the ODF filesuffix of this document
*/
public String getSuffix() {
return mMediaType.getSuffix();
}
/**
*
* @param mediaType
* string defining an ODF document
* @return the according OdfMediatype encapuslating the given string and
* the suffix
*/
public static Document.OdfMediaType getOdfMediaType(String mediaType) {
return Document.OdfMediaType.getOdfMediaType(mediaType);
}
}
/**
* Creates an empty charts document. * <br/>
* <em>Note: ODF Chart documents are (with OOo 3.0) only used as embedded document and not used stand-alone.</em>
*
* @return ODF charts document based on a default template
* @throws java.lang.Exception
* - if the document could not be created
*/
public static ChartDocument newChartDocument() throws Exception {
return (ChartDocument) Document.loadTemplate(EMPTY_CHART_DOCUMENT_RESOURCE, Document.OdfMediaType.CHART);
}
/**
* Creates an empty charts template. * <br/>
* <em>Note: ODF Chart documents are (with OOo 3.0) only used as embedded document and not used stand-alone.</em>
*
* @return ODF charts template based on a default template
* @throws java.lang.Exception
* - if the template could not be created
*/
public static ChartDocument newChartTemplateDocument() throws Exception {
ChartDocument doc = (ChartDocument) Document.loadTemplate(EMPTY_CHART_DOCUMENT_RESOURCE,
Document.OdfMediaType.CHART_TEMPLATE);
doc.changeMode(OdfMediaType.CHART_TEMPLATE);
return doc;
}
/**
* Creates an ChartDocument from the OpenDocument provided by a resource
* Stream.
*
* <p>
* Since an InputStream does not provide the arbitrary (non sequentiell)
* read access needed by ChartDocument, the InputStream is cached. This
* usually takes more time compared to the other createInternalDocument
* methods. An advantage of caching is that there are no problems
* overwriting an input file.
* </p>
*
* <p>
* If the resource stream is not a ODF chart document, ClassCastException
* might be thrown.
* </p>
*
* @param inputStream
* - the InputStream of the ODF chart document.
* @return the chart document created from the given InputStream
* @throws java.lang.Exception
* - if the document could not be created.
*/
public static ChartDocument loadDocument(InputStream inputStream) throws Exception {
return (ChartDocument) Document.loadDocument(inputStream);
}
/**
* Loads an ChartDocument from the provided path.
*
* <p>
* ChartDocument relies on the file being available for read access over the
* whole lifecycle of ChartDocument.
* </p>
*
* <p>
* If the resource stream is not a ODF chart document, ClassCastException
* might be thrown.
* </p>
*
* @param documentPath
* - the path from where the document can be loaded
* @return the chart document from the given path or NULL if the media type
* is not supported by SIMPLE.
* @throws java.lang.Exception
* - if the document could not be created.
*/
public static ChartDocument loadDocument(String documentPath) throws Exception {
return (ChartDocument) Document.loadDocument(documentPath);
}
/**
* Creates an ChartDocument from the OpenDocument provided by a File.
*
* <p>
* ChartDocument relies on the file being available for read access over the
* whole lifecycle of ChartDocument.
* </p>
*
* <p>
* If the resource stream is not a ODF chart document, ClassCastException
* might be thrown.
* </p>
*
* @param file
* - a file representing the ODF chart document.
* @return the chart document created from the given File
* @throws java.lang.Exception
* - if the document could not be created.
*/
public static ChartDocument loadDocument(File file) throws Exception {
return (ChartDocument) Document.loadDocument(file);
}
/**
* To avoid data duplication a new document is only created, if not already
* opened. A document is cached by this constructor using the internalpath
* as key.
*/
protected ChartDocument(OdfPackage pkg, String internalPath, ChartDocument.OdfMediaType odfMediaType) {
super(pkg, internalPath, odfMediaType.mMediaType);
}
/**
* Get the content root of a chart document.
*
* @return content root, representing the office:chart tag
* @throws Exception
* if the file DOM could not be created.
*/
@Override
public OfficeChartElement getContentRoot() throws Exception {
return super.getContentRoot(OfficeChartElement.class);
}
/**
* Changes the document to the given mediatype. This method can only be used
* to convert a document to a related mediatype, e.g. template.
*
* @param mediaType
* the related ODF mimetype
*/
public void changeMode(OdfMediaType mediaType) {
setOdfMediaType(mediaType.mMediaType);
}
public OdfElement getTableContainerElement() {
throw new UnsupportedOperationException("Chart document is not supported to hold table now.");
}
}