All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.birt.core.util.BirtTimer Maven / Gradle / Ivy

There is a newer version: 4.6.0-20160607
Show newest version
/*******************************************************************************
 * Copyright (c) 2004 Actuate Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Actuate Corporation  - initial API and implementation
 *******************************************************************************/

package org.eclipse.birt.core.util;

import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * A timer class used to measure time taken for a specific operation. 
 */
public class BirtTimer {
	protected long startTime;
	protected long endTime;
	
	public BirtTimer() {
		
	}
	
	/**
	 * start timer
	 */
	public void start()
	{
		startTime = System.currentTimeMillis();
		endTime = startTime;
	}
	
	/**
	 * stops timer
	 */
	public void stop()
	{
		endTime = System.currentTimeMillis();
	}
	
	/**
	 * @return the time difference between timer start and timer stop
	 */
	public int delta()
	{
		return (int)(endTime - startTime);
	}
	
	/**
	 * restsrt timer
	 */
	public void restart()
	{
		start();
	}

	/**
	 * writes "{0} takes {1} Milliseconds." to log  
	 * 
	 * @param logger a Java logger object
	 * @param level log level
	 * @param operationName the operation name
	 */
	public void logTimeTaken(Logger logger, Level level, String operationName) {
		if (logger.isLoggable(level))
		{
			logger.log(level, "{0} takes {1} Milliseconds.",	// $NON-NLS-1$ 
					new String[] {operationName, new Integer(delta()).toString()} );
		}
	}
	
	/**
	 * writes "{0} takes {1} Milliseconds." to log  
	 * 
	 * @param logger a Java logger object
	 * @param level log level
	 * @param id task identifier
	 * @param operationName the operation name
	 */
	public void logTimeTaken(Logger logger, Level level, String id, String operationName) {
		if (logger.isLoggable(level))
		{
			logger.log(level, "{0}: {1} takes {2} Milliseconds.",	// $NON-NLS-1$ 
					new String[] {id, operationName, new Integer(delta()).toString()} );
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy