/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2009 Jaspersoft Corporation. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of JasperReports.
*
* JasperReports is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JasperReports is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with JasperReports. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.jasperreports.engine.export.xmlss;
import java.io.IOException;
import java.io.Writer;
import java.util.List;
import net.sf.jasperreports.engine.JasperPrint;
/**
* @author sanda zaharia (shertage@users.sourceforge.net)
* @version $Id: XmlssStyleBuilder.java 3518 2010-03-05 11:53:03Z shertage $
*/
public class XmlssStyleBuilder
{
/**
*
*/
private List jasperPrintList = null;
private Writer writer = null;
/**
*
*/
public XmlssStyleBuilder(List jasperPrintList, Writer writer)
{
this.jasperPrintList = jasperPrintList;
this.writer = writer;
}
/**
*
*/
public void build() throws IOException
{
buildBeforeAutomaticStyles();
for(int reportIndex = 0; reportIndex < jasperPrintList.size(); reportIndex++)
{
JasperPrint jasperPrint = (JasperPrint)jasperPrintList.get(reportIndex);
buildPageLayout(reportIndex, jasperPrint);
}
buildBetweenAutomaticAndMasterStyles();
for(int reportIndex = 0; reportIndex < jasperPrintList.size(); reportIndex++)
{
buildMasterPage(reportIndex);
}
buildAfterMasterStyles();
writer.flush();
}
/**
*
*/
private void buildBeforeAutomaticStyles() throws IOException
{
writer.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
writer.write("<office:document-styles");
writer.write(" xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\"");
writer.write(" xmlns:style=\"urn:oasis:names:tc:opendocument:xmlns:style:1.0\"");
writer.write(" xmlns:text=\"urn:oasis:names:tc:opendocument:xmlns:text:1.0\"");
writer.write(" xmlns:table=\"urn:oasis:names:tc:opendocument:xmlns:table:1.0\"");
writer.write(" xmlns:draw=\"urn:oasis:names:tc:opendocument:xmlns:drawing:1.0\"");
writer.write(" xmlns:fo=\"urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0\"");
writer.write(" xmlns:xlink=\"http://www.w3.org/1999/xlink\"");
writer.write(" xmlns:dc=\"http://purl.org/dc/elements/1.1/\"");
writer.write(" xmlns:meta=\"urn:oasis:names:tc:opendocument:xmlns:meta:1.0\"");
writer.write(" xmlns:number=\"urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0\"");
writer.write(" xmlns:svg=\"urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0\"");
writer.write(" xmlns:chart=\"urn:oasis:names:tc:opendocument:xmlns:chart:1.0\"");
writer.write(" xmlns:dr3d=\"urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0\"");
writer.write(" xmlns:math=\"http://www.w3.org/1998/Math/MathML\"");
writer.write(" xmlns:form=\"urn:oasis:names:tc:opendocument:xmlns:form:1.0\"");
writer.write(" xmlns:script=\"urn:oasis:names:tc:opendocument:xmlns:script:1.0\"");
writer.write(" xmlns:ooo=\"http://openoffice.org/2004/office\"");
writer.write(" xmlns:ooow=\"http://openoffice.org/2004/writer\"");
writer.write(" xmlns:oooc=\"http://openoffice.org/2004/calc\"");
writer.write(" xmlns:dom=\"http://www.w3.org/2001/xml-events\"");
writer.write(" xmlns:xforms=\"http://www.w3.org/2002/xforms\"");
writer.write(" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"");
writer.write(" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"");
writer.write(" office:version=\"");
writer.write(XmlssContentBuilder.VERSION);
writer.write("\">\n");
writer.write(" <office:styles>\n");
writer.write("<draw:stroke-dash draw:name=\"Dashed\" draw:display-name=\"Dashed\" " +
"draw:style=\"rect\" draw:dots1=\"1\" draw:dots1-length=\"0.05cm\" draw:dots2=\"1\" " +
"draw:dots2-length=\"0.05cm\" draw:distance=\"0.05cm\"/>");
writer.write(" </office:styles>\n");
writer.write(" <office:automatic-styles>\n");
}
/**
*
*/
private void buildBetweenAutomaticAndMasterStyles() throws IOException
{
writer.write(" </office:automatic-styles>\n");
writer.write(" <office:master-styles>\n");
}
/**
*
*/
private void buildAfterMasterStyles() throws IOException
{
writer.write(" </office:master-styles>\n");
writer.write("</office:document-styles>\n");
}
/**
*
*/
private void buildPageLayout(int reportIndex, JasperPrint jasperPrint) throws IOException
{
writer.write("<style:page-layout");
writer.write(" style:name=\"page_" + reportIndex + "\">\n");
writer.write("<style:page-layout-properties");
writer.write(" fo:page-width=\"" + XmlssUtil.translatePixelsToInchesRound(jasperPrint.getPageWidth()) +"in\"");
writer.write(" fo:page-height=\"" + XmlssUtil.translatePixelsToInchesRound(jasperPrint.getPageHeight()) +"in\"");//FIXMEODT we probably need some actualHeight trick
writer.write(" fo:margin-top=\"0in\"");//FIXMEODT useless?
writer.write(" fo:margin-bottom=\"0in\"");
writer.write(" fo:margin-left=\"0in\"");
writer.write(" fo:margin-right=\"0in\"");
switch (jasperPrint.getOrientationValue())
{
case LANDSCAPE:
writer.write(" style:print-orientation=\"landscape\"");
break;
default:
writer.write(" style:print-orientation=\"portrait\"");
break;
}
writer.write("/>\n");
writer.write("</style:page-layout>\n");
}
/**
*
*/
private void buildMasterPage(int reportIndex) throws IOException
{
writer.write("<style:master-page style:name=\"master_");
writer.write(String.valueOf(reportIndex));
writer.write("\" style:page-layout-name=\"page_");
writer.write(String.valueOf(reportIndex));
writer.write("\"/>\n");
}
}