Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
net.sf.jasperreports.engine.xml.JRXmlBaseWriter Maven / Gradle / Ivy
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2019 TIBCO Software Inc. 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 .
*/
package net.sf.jasperreports.engine.xml;
import java.io.IOException;
import net.sf.jasperreports.annotations.properties.Property;
import net.sf.jasperreports.annotations.properties.PropertyScope;
import net.sf.jasperreports.engine.JRConditionalStyle;
import net.sf.jasperreports.engine.JRConstants;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRLineBox;
import net.sf.jasperreports.engine.JRParagraph;
import net.sf.jasperreports.engine.JRPen;
import net.sf.jasperreports.engine.JRPropertiesUtil;
import net.sf.jasperreports.engine.JRStyle;
import net.sf.jasperreports.engine.JRStyleContainer;
import net.sf.jasperreports.engine.TabStop;
import net.sf.jasperreports.engine.type.VerticalTextAlignEnum;
import net.sf.jasperreports.engine.util.JRXmlWriteHelper;
import net.sf.jasperreports.engine.util.VersionComparator;
import net.sf.jasperreports.engine.util.XmlNamespace;
import net.sf.jasperreports.properties.PropertyConstants;
/**
* Base XML writer.
*
* @author Lucian Chirita ([email protected] )
*/
public abstract class JRXmlBaseWriter
{
/**
* Property that specifies the JasperReports version associated with this report. Report elements/attributes newer than
* this version are neglected by the JRXML writers when a report template is generated. If not set, all elements/attributes
* will be printed out.
*
* @see JRXmlWriter
*/
@Property(
category = PropertyConstants.CATEGORY_OTHER,
scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT},
sinceVersion = PropertyConstants.VERSION_4_8_0
)
public static final String PROPERTY_REPORT_VERSION = JRPropertiesUtil.PROPERTY_PREFIX + "report.version";
protected JRXmlWriteHelper writer;
protected String version;
protected VersionComparator versionComparator = new VersionComparator();
/**
* Sets the XML write helper.
*
* @param writer the XML write helper
*/
protected void useWriter(JRXmlWriteHelper writer, String version)
{
this.writer = writer;
this.version = version;
}
/**
* Writes a style.
*
* @param style the style to write.
* @throws IOException
*/
protected void writeStyle(JRStyle style) throws IOException
{
writer.startElement(JRXmlConstants.ELEMENT_style);
writer.addEncodedAttribute(JRXmlConstants.ATTRIBUTE_name, style.getName());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_isDefault, style.isDefault(), false);
writeStyleReferenceAttr(style);
writer.addAttribute(JRXmlConstants.ATTRIBUTE_mode, style.getOwnModeValue());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_forecolor, style.getOwnForecolor());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_backcolor, style.getOwnBackcolor());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_fill, style.getOwnFillValue());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_radius, style.getOwnRadius());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_scaleImage, style.getOwnScaleImageValue());
if (isOlderVersionThan(JRConstants.VERSION_6_0_2))
{
if (style.getOwnHorizontalTextAlign() == null)
{
writer.addAttribute(JRXmlConstants.ATTRIBUTE_hAlign, style.getOwnHorizontalImageAlign());
}
else
{
writer.addAttribute(JRXmlConstants.ATTRIBUTE_hAlign, style.getOwnHorizontalTextAlign());
}
if (style.getOwnVerticalTextAlign() == null)
{
writer.addAttribute(JRXmlConstants.ATTRIBUTE_vAlign, style.getOwnVerticalImageAlign());
}
else
{
writer.addAttribute(JRXmlConstants.ATTRIBUTE_vAlign, style.getOwnVerticalTextAlign());
}
}
else
{
writer.addAttribute(JRXmlConstants.ATTRIBUTE_hTextAlign, style.getOwnHorizontalTextAlign());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_hImageAlign, style.getOwnHorizontalImageAlign());
VerticalTextAlignEnum vTextAlign = style.getOwnVerticalTextAlign();
if (isOlderVersionThan(JRConstants.VERSION_6_2_1))
{
vTextAlign = vTextAlign == VerticalTextAlignEnum.JUSTIFIED ? VerticalTextAlignEnum.TOP : vTextAlign;
}
writer.addAttribute(JRXmlConstants.ATTRIBUTE_vTextAlign, vTextAlign);
writer.addAttribute(JRXmlConstants.ATTRIBUTE_vImageAlign, style.getOwnVerticalImageAlign());
}
writer.addAttribute(JRXmlConstants.ATTRIBUTE_rotation, style.getOwnRotationValue());
if (isOlderVersionThan(JRConstants.VERSION_4_0_2))
{
writer.addAttribute(JRXmlConstants.ATTRIBUTE_lineSpacing, style.getParagraph().getLineSpacing());
}
writer.addAttribute(JRXmlConstants.ATTRIBUTE_markup, style.getOwnMarkup());
writer.addEncodedAttribute(JRXmlConstants.ATTRIBUTE_pattern, style.getOwnPattern());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_isBlankWhenNull, style.isOwnBlankWhenNull());
writer.addEncodedAttribute(JRXmlConstants.ATTRIBUTE_fontName, style.getOwnFontName());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_fontSize, style.getOwnFontsize(), true);
writer.addAttribute(JRXmlConstants.ATTRIBUTE_isBold, style.isOwnBold());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_isItalic, style.isOwnItalic());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_isUnderline, style.isOwnUnderline());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_isStrikeThrough, style.isOwnStrikeThrough());
writer.addEncodedAttribute(JRXmlConstants.ATTRIBUTE_pdfFontName, style.getOwnPdfFontName());
writer.addEncodedAttribute(JRXmlConstants.ATTRIBUTE_pdfEncoding, style.getOwnPdfEncoding());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_isPdfEmbedded, style.isOwnPdfEmbedded());
writePen(style.getLinePen());
writeBox(style.getLineBox());
writeParagraph(style.getParagraph());
if (toWriteConditionalStyles())
{
JRConditionalStyle[] conditionalStyles = style.getConditionalStyles();
if (!(style instanceof JRConditionalStyle) && conditionalStyles != null)
{
for (int i = 0; i < conditionalStyles.length; i++)
{
writeConditionalStyle(conditionalStyles[i]);
}
}
}
writer.closeElement();
}
public void writeStyleReferenceAttr(JRStyleContainer styleContainer)
{
if (!(styleContainer instanceof JRConditionalStyle))
{
if (styleContainer.getStyle() != null)
{
writer.addEncodedAttribute(JRXmlConstants.ATTRIBUTE_style, styleContainer.getStyle().getName());
}
else if (styleContainer.getStyleNameReference() != null)
{
writer.addEncodedAttribute(JRXmlConstants.ATTRIBUTE_style, styleContainer.getStyleNameReference());
}
}
}
/**
* Decides whether conditional styles are to be written.
*
* @return whether conditional styles are to be written
*/
protected abstract boolean toWriteConditionalStyles();
/**
* Writes a conditional style.
*
* @param style the conditional style
* @throws IOException
*/
protected void writeConditionalStyle(JRConditionalStyle style) throws IOException
{
writer.startElement(JRXmlConstants.ELEMENT_conditionalStyle);
writeExpression(JRXmlConstants.ELEMENT_conditionExpression, style.getConditionExpression(), false);
writeStyle(style);
writer.closeElement();
}
/**
*
*/
protected void writePen(JRPen pen) throws IOException
{
writePen(JRXmlConstants.ELEMENT_pen, pen);
}
/**
*
*/
private void writePen(String element, JRPen pen) throws IOException
{
writer.startElement(element);
writer.addAttribute(JRXmlConstants.ATTRIBUTE_lineWidth, pen.getOwnLineWidth());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_lineStyle, pen.getOwnLineStyleValue());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_lineColor, pen.getOwnLineColor());
writer.closeElement(true);
}
public void writeBox(JRLineBox box) throws IOException
{
writeBox(box, null);
}
/**
*
*/
public void writeBox(JRLineBox box, XmlNamespace namespace) throws IOException
{
if (box != null)
{
writer.startElement(JRXmlConstants.ELEMENT_box, namespace);
writer.addAttribute(JRXmlConstants.ATTRIBUTE_padding, box.getOwnPadding());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_topPadding, box.getOwnTopPadding());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_leftPadding, box.getOwnLeftPadding());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_bottomPadding, box.getOwnBottomPadding());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_rightPadding, box.getOwnRightPadding());
writePen(JRXmlConstants.ELEMENT_pen, box.getPen());
writePen(JRXmlConstants.ELEMENT_topPen, box.getTopPen());
writePen(JRXmlConstants.ELEMENT_leftPen, box.getLeftPen());
writePen(JRXmlConstants.ELEMENT_bottomPen, box.getBottomPen());
writePen(JRXmlConstants.ELEMENT_rightPen, box.getRightPen());
writer.closeElement(true);
}
}
public void writeParagraph(JRParagraph paragraph) throws IOException
{
writeParagraph(paragraph, null);
}
/**
*
*/
public void writeParagraph(JRParagraph paragraph, XmlNamespace namespace) throws IOException
{
if (paragraph != null && isNewerVersionOrEqual(JRConstants.VERSION_4_0_2))
{
writer.startElement(JRXmlConstants.ELEMENT_paragraph, namespace);
writer.addAttribute(JRXmlConstants.ATTRIBUTE_lineSpacing, paragraph.getOwnLineSpacing());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_lineSpacingSize, paragraph.getOwnLineSpacingSize());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_firstLineIndent, paragraph.getOwnFirstLineIndent());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_leftIndent, paragraph.getOwnLeftIndent());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_rightIndent, paragraph.getOwnRightIndent());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_spacingBefore, paragraph.getOwnSpacingBefore());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_spacingAfter, paragraph.getOwnSpacingAfter());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_tabStopWidth, paragraph.getOwnTabStopWidth());
/* */
TabStop[] tabStops = paragraph.getTabStops();
if (tabStops != null && tabStops.length > 0)
{
for(int i = 0; i < tabStops.length; i++)
{
writeTabStop(tabStops[i]);
}
}
writer.closeElement(true);
}
}
/**
*
*/
public void writeTabStop(TabStop tabStop) throws IOException
{
if (tabStop != null)
{
writer.startElement(JRXmlConstants.ELEMENT_tabStop);
writer.addAttribute(JRXmlConstants.ATTRIBUTE_position, tabStop.getPosition());
writer.addAttribute(JRXmlConstants.ATTRIBUTE_alignment, tabStop.getAlignment());
writer.closeElement(true);
}
}
/**
*
*/
protected boolean isNewerVersionOrEqual(String oldVersion)
{
return versionComparator.compare(version, oldVersion) >= 0;
}
/**
*
*/
protected boolean isOlderVersionThan(String version)
{
return versionComparator.compare(this.version, version) < 0;
}
@SuppressWarnings("deprecation")
protected void writeExpression(String name, JRExpression expression, boolean writeClass) throws IOException
{
if(isNewerVersionOrEqual(JRConstants.VERSION_4_1_1))
{
writer.writeExpression(name, expression);
}
else
{
writer.writeExpression(name, expression, writeClass);
}
}
}