net.sf.jasperreports.engine.util.Java15BigDecimalHandler Maven / Gradle / Ivy
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2023 Cloud Software Group, 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.util;
import java.math.BigDecimal;
import java.math.MathContext;
import java.math.RoundingMode;
import net.sf.jasperreports.annotations.properties.Property;
import net.sf.jasperreports.annotations.properties.PropertyScope;
import net.sf.jasperreports.engine.DefaultJasperReportsContext;
import net.sf.jasperreports.engine.JRPropertiesUtil;
import net.sf.jasperreports.properties.PropertyConstants;
/**
* {@link BigDecimalHandler} implementation used on Java 1.5 or newer.
*
*
* This implementation uses a configured minimum precision when performing
* divisions.
*
* @author Lucian Chirita ([email protected])
* @see BigDecimalUtils#divide(BigDecimal, BigDecimal)
* @see #PROPERTY_MINIMUM_PRECISION
*/
public class Java15BigDecimalHandler implements BigDecimalHandler
{
/**
* An integer property that provides the minimum precision to be used for
* division operations.
*
*
* The property can only be set globally. The default value is 16.
*/
@Property(
category = PropertyConstants.CATEGORY_OTHER,
defaultValue = "16",
scopes = {PropertyScope.GLOBAL},
sinceVersion = PropertyConstants.VERSION_3_5_4,
valueType = Integer.class
)
public static final String PROPERTY_MINIMUM_PRECISION =
JRPropertiesUtil.PROPERTY_PREFIX + "big.decimal.minimum.precision";
private final int minPrecision;
private final ThreadLocal mathContexts;
public Java15BigDecimalHandler()
{
this(readConfiguredPrecision());
}
public Java15BigDecimalHandler(final int minPrecision)
{
if (minPrecision <= 0)
{
throw new IllegalArgumentException("minPrecision must be positive");
}
this.minPrecision = minPrecision;
this.mathContexts = new ThreadLocal<>();
}
private static int readConfiguredPrecision()
{
return JRPropertiesUtil.getInstance(DefaultJasperReportsContext.getInstance()).getIntegerProperty(PROPERTY_MINIMUM_PRECISION);
}
/**
* Divides the values using the biggest of the dividend precision,
* the divisor precision and the configured minimum precision as result
* precision, and {@link RoundingMode#HALF_UP} as rounding mode.
*
* @see #PROPERTY_MINIMUM_PRECISION
*/
@Override
public BigDecimal divide(BigDecimal dividend, BigDecimal divisor)
{
int precision = getDivisionPrecision(dividend, divisor);
MathContext mathContext = getMathContext(precision);
return dividend.divide(divisor, mathContext);
}
protected int getDivisionPrecision(BigDecimal dividend, BigDecimal divisor)
{
int precision = minPrecision;
if (dividend.precision() > precision)
{
precision = dividend.precision();
}
if (divisor.precision() > precision)
{
precision = divisor.precision();
}
return precision;
}
protected MathContext getMathContext(int precision)
{
MathContext[] contexts = mathContexts.get();
int idx = precision - minPrecision;
if (contexts == null || contexts.length < idx + 1)
{
MathContext[] newContexts = new MathContext[idx + 1];
if (contexts != null)
{
System.arraycopy(contexts, 0, newContexts, 0, contexts.length);
}
mathContexts.set(newContexts);
contexts = newContexts;
}
MathContext mathContext = contexts[idx];
if (mathContext == null)
{
mathContext = new MathContext(precision, RoundingMode.HALF_UP);
contexts[idx] = mathContext;
}
return mathContext;
}
}