/* * 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.governors; import net.sf.jasperreports.engine.JRDefaultScriptlet; import net.sf.jasperreports.engine.JRParameter; import net.sf.jasperreports.engine.JRScriptletException; import net.sf.jasperreports.engine.JasperReport; import net.sf.jasperreports.engine.util.JRProperties; /** * @author Teodor Danciu (teodord@users.sourceforge.net) * @version $Id: TimeoutGovernor.java 3279 2010-01-19 16:55:42Z lucianc $ */ public class TimeoutGovernor extends JRDefaultScriptlet { /** * */ public static final String PROPERTY_TIMEOUT_ENABLED = JRProperties.PROPERTY_PREFIX + "governor.timeout.enabled"; public static final String PROPERTY_TIMEOUT = JRProperties.PROPERTY_PREFIX + "governor.timeout"; /** * */ private long startTime = 0; private long timeout = 0; /** * */ public TimeoutGovernor(long timeout) { this.timeout = timeout; } /** * */ public void beforeReportInit() throws JRScriptletException { startTime = System.currentTimeMillis(); } /** * */ public void beforeDetailEval() throws JRScriptletException { long ellapsedTime = System.currentTimeMillis() - startTime; if (timeout < ellapsedTime) { throw new TimeoutGovernorException( ((JasperReport)getParameterValue(JRParameter.JASPER_REPORT, false)).getName(), timeout ); } } }