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.
/*
* 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.components.map;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.sf.jasperreports.components.items.Item;
import net.sf.jasperreports.components.items.ItemCompiler;
import net.sf.jasperreports.components.items.ItemData;
import net.sf.jasperreports.components.items.ItemProperty;
import net.sf.jasperreports.engine.JRExpressionCollector;
import net.sf.jasperreports.engine.base.JRBaseObjectFactory;
import net.sf.jasperreports.engine.component.Component;
import net.sf.jasperreports.engine.component.ComponentCompiler;
import net.sf.jasperreports.engine.design.JRVerifier;
import net.sf.jasperreports.engine.type.EvaluationTimeEnum;
/**
*
* @author Teodor Danciu ([email protected])
*/
public class MapCompiler implements ComponentCompiler
{
private final static Map addressMap = new HashMap<>();
static {
addressMap.put(MapComponent.ITEM_PROPERTY_latitude, MapComponent.ITEM_PROPERTY_address);
addressMap.put(MapComponent.ITEM_PROPERTY_longitude, MapComponent.ITEM_PROPERTY_address);
}
@Override
public void collectExpressions(Component component, JRExpressionCollector collector)
{
MapComponent map = (MapComponent) component;
collector.addExpression(map.getLatitudeExpression());
collector.addExpression(map.getLongitudeExpression());
collector.addExpression(map.getAddressExpression());
collector.addExpression(map.getZoomExpression());
collector.addExpression(map.getLanguageExpression());
collectExpressions(map.getLegendItem(), collector);
collectExpressions(map.getResetMapItem(), collector);
List markerItemDataList = map.getMarkerItemDataList();
if(markerItemDataList != null && markerItemDataList.size() > 0) {
for(MarkerItemData markerData : markerItemDataList){
ItemCompiler.collectExpressions(markerData, collector);
collector.addExpression(markerData.getSeriesNameExpression());
collector.addExpression(markerData.getMarkerClusteringExpression());
collector.addExpression(markerData.getMarkerSpideringExpression());
collector.addExpression(markerData.getLegendIconExpression());
}
}
List pathStyleList = map.getPathStyleList();
if(pathStyleList != null && pathStyleList.size() > 0) {
for(ItemData pathStyle : pathStyleList){
ItemCompiler.collectExpressions(pathStyle, collector);
}
}
List pathDataList = map.getPathDataList();
if(pathDataList != null && pathDataList.size() > 0) {
for(ItemData pathData : pathDataList){
ItemCompiler.collectExpressions(pathData, collector);
}
}
}
protected void collectExpressions(Item item, JRExpressionCollector collector)
{
if (item != null)
{
List itemProperties = item.getProperties();
if(itemProperties != null)
{
for(ItemProperty property : itemProperties)
{
collector.addExpression(property.getValueExpression());
}
}
}
}
@Override
public Component toCompiledComponent(Component component,
JRBaseObjectFactory baseFactory)
{
MapComponent map = (MapComponent) component;
return new StandardMapComponent(map, baseFactory);
}
@Override
public void verify(Component component, JRVerifier verifier)
{
MapComponent map = (MapComponent) component;
EvaluationTimeEnum evaluationTime = map.getEvaluationTime();
if (evaluationTime == EvaluationTimeEnum.AUTO)
{
verifier.addBrokenRule("Auto evaluation time is not supported for maps", map);
}
else if (evaluationTime == EvaluationTimeEnum.GROUP)
{
String evaluationGroup = map.getEvaluationGroup();
if (evaluationGroup == null || evaluationGroup.length() == 0)
{
verifier.addBrokenRule("No evaluation group set for map", map);
}
else if (!verifier.getReportDesign().getGroupsMap().containsKey(evaluationGroup))
{
verifier.addBrokenRule("Map evaluation group \""
+ evaluationGroup + " not found", map);
}
}
if((map.getLatitudeExpression() == null || map.getLongitudeExpression() == null) && map.getAddressExpression() == null){
verifier.addBrokenRule("Missing the latitude and/or the longitude expression for the map center. Try to configure them properly, or configure the equivalent addressExpression for this map.", map);
}
String[] reqNames = new String[]{MapComponent.ITEM_PROPERTY_latitude, MapComponent.ITEM_PROPERTY_longitude};
List markerItemDataList = map.getMarkerItemDataList();
if (markerItemDataList != null && markerItemDataList.size() > 0)
{
for(ItemData markerData : markerItemDataList){
ItemCompiler.verifyItemData(verifier, markerData, MapComponent.ELEMENT_MARKER_DATA, reqNames, addressMap);
}
}
List pathStyleList = map.getPathStyleList();
if (pathStyleList != null && pathStyleList.size() > 0)
{
for(ItemData pathStyle : pathStyleList){
ItemCompiler.verifyItemData(verifier, pathStyle, MapComponent.ELEMENT_PATH_STYLE, new String[]{MapComponent.ITEM_PROPERTY_name}, null);
}
}
List pathDataList = map.getPathDataList();
if (pathDataList != null && pathDataList.size() > 0)
{
for(ItemData pathData : pathDataList){
ItemCompiler.verifyItemData(verifier, pathData, MapComponent.ELEMENT_PATH_DATA, reqNames, addressMap);
}
}
}
}