/*! * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program 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. * * Copyright (c) 2002-2013 Pentaho Corporation.. All rights reserved. */ package org.pentaho.platform.admin; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.pentaho.platform.api.engine.IPentahoSession; import org.pentaho.platform.api.engine.IPentahoSystemListener; import org.pentaho.platform.api.scheduler2.IScheduler; import org.pentaho.platform.api.scheduler2.JobTrigger; import org.pentaho.platform.api.scheduler2.SimpleJobTrigger; import org.pentaho.platform.engine.core.system.PentahoSystem; import java.io.Serializable; import java.util.Date; import java.util.HashMap; import java.util.Map; public class GatherStatsListener implements IPentahoSystemListener { private static final String JOB_NAME = "Gather Stats"; private String transFileName; private static final Log logger = LogFactory.getLog( GatherStatsListener.class ); private int intervalInSeconds = -1; Map<String, Serializable> jobMap = new HashMap<String, Serializable>(); @Override public void shutdown() { // TODO Auto-generated method stub } @Override public boolean startup( IPentahoSession arg0 ) { try { scheduleJob( intervalInSeconds ); } catch ( Exception e ) { logger.error( "Exception when scheduling stats job", e ); } return true; } private void scheduleJob( int intervalInSeconds ) throws Exception { IScheduler scheduler = PentahoSystem.get( IScheduler.class, "IScheduler2", null ); //$NON-NLS-1$ JobTrigger trigger = new SimpleJobTrigger( new Date(), null, -1, intervalInSeconds ); jobMap.put( "transFileName", getTransFileName() ); scheduler.createJob( GatherStatsListener.JOB_NAME, GatherStatsAction.class, jobMap, trigger ); logger.info( "Statistics gathering jop has been scheduled." ); } /* * protected Class<?> resolveClass(String className) throws PluginBeanException { * * Class<?> clazz = null; * * IPluginManager pluginManager = PentahoSystem.get(IPluginManager.class); clazz = pluginManager.loadClass(className); * if (clazz == null) { throw new PluginBeanException(); } return clazz; } */ public int getIntervalInSeconds() { return intervalInSeconds; } public String getTransFileName() { return transFileName; } public void setTransFileName( String transfileName ) { this.transFileName = transfileName; } public void setIntervalInSeconds( int intervalInSeconds ) { this.intervalInSeconds = intervalInSeconds; } }