⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 source.java

📁 httptunnel.jar httptunnel java 源码
💻 JAVA
字号:
/* ============================================================
 * JRobin : Pure java implementation of RRDTool's functionality
 * ============================================================
 *
 * Project Info:  http://www.jrobin.org
 * Project Lead:  Sasa Markovic (saxon@jrobin.org)
 * 
 * Developers:    Sasa Markovic (saxon@jrobin.org)
 *                Arne Vandamme (cobralord@jrobin.org)
 *
 * (C) Copyright 2003, by Sasa Markovic.
 *
 * This library 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 2.1 of the License, or (at your option) any later version.
 *
 * This library 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 this
 * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, MA 02111-1307, USA.
 */
package net.jumperz.ext.org.jrobin.graph;

import net.jumperz.ext.org.jrobin.core.Util;

/**
 * <p>Class used to represent a number of datapoints for a graph.</p>
 * 
 * @author Arne Vandamme (cobralord@jrobin.org)
 */
class Source 
{
	// ================================================================
	// -- Members
	// ================================================================
	protected static final int AGG_MINIMUM	= 0;
	protected static final int AGG_MAXIMUM	= 1;
	protected static final int AGG_AVERAGE	= 2;
	protected static final int AGG_FIRST	= 3;
	protected static final int AGG_LAST		= 4;
	protected static final int AGG_TOTAL	= 5;
	
	protected static final String[] aggregates = { "MINIMUM", "MAXIMUM", "AVERAGE", "FIRST", "LAST", "TOTAL" };
	private String name;

	protected int aggregatePoints;
	protected double[] values;
	
	private double min						= Double.NaN;
	private double max						= Double.NaN;
	private double lastValue 				= Double.NaN;
	private double totalValue				= 0;
	private double nextValue				= Double.POSITIVE_INFINITY;

	protected long step						= 0;
	private long lastPreciseTime			= 0;		// Last time requested
	private long lastTime					= 0;
	private long totalTime					= 0;

	private int stPos						= 0;
	private int lastStPos					= 0;		// Last value position requested

	// ================================================================
	// -- Constructors
	// ================================================================
	/**
	 * Constructs a new Source object holding a number of datapoints for a graph.
	 * @param name Name of the datasource in the graph definition.
	 */
	Source( String name )
	{
		this.name = name;
	}
	
	
	// ================================================================
	// -- Protected methods
	// ================================================================
	/**
	 * Stub method, sets the value of a specific datapoint.
	 * Forces this point to be used in aggregate function calculating.
	 * @param pos Position (index in the value table) of the new datapoint.
	 * @param time Timestamp of the new datapoint in number of seconds.
	 * @param val Double value of the new datapoint.
	 */
	void set( int pos, long time, double val )
	{
		// The first sample is before the time range we want, and as such
		// should not be counted for data aggregation
		if ( pos > 0 && pos < aggregatePoints )
			aggregate( time, val );
	}

	void setFetchedStep( long step ) {
		this.step = step;
	}

	long getStep() {
		return step;
	}

	/**
	 * Get the double value of a datapoint.
	 *
	 * @param pos Index in the value table of the datapoint.
	 * @return The double value of the requested datapoint.
	 */
	double get( int pos ) 
	{
		if ( pos < 0 )
			return Double.NaN;
		if ( pos > values.length )
			return Double.NaN;

		double val = values[pos];

		if ( Double.isInfinite(val) )
		{
			// Return the next value if we fetched it before
			if ( !Double.isInfinite(nextValue) && pos >= lastStPos )
				return nextValue;

			lastStPos = pos;
			
			// Try to fetch the next value
			for ( int i = pos + 1; i < values.length; i++ )
			{
				if ( !Double.isInfinite(values[i]) )
				{
					nextValue = values[i];

					return nextValue;
				}
			}

			// No more next value
			nextValue = Double.NaN;

			return nextValue;
		}
		else
			nextValue = Double.POSITIVE_INFINITY;

		lastStPos = pos;

		return values[pos];
	}

	double get( long preciseTime, long[] reducedTimestamps )
	{
		long t 			= Util.normalize( preciseTime, step );
		t				= ( t < preciseTime ? t + step : t );

		if ( preciseTime < lastPreciseTime )	// Backward fetching is weird, start over, we prolly in a new iteration
			stPos 		= 0;

		lastPreciseTime	= preciseTime;

		while ( stPos < reducedTimestamps.length - 1 )
		{
			if ( reducedTimestamps[ stPos + 1 ] <= t )
				stPos++;
			else
				return get( stPos );
		}

		if ( t <= reducedTimestamps[stPos] )
			return get( stPos );

		return Double.NaN;
	}

	/**
	 * Gets a specific aggregate of this datasource.
	 * Requested aggregate can be one of the following:
	 * <code>AGG_MINIMUM, AGG_MAXIMUM, AGG_AVERAGE, AGG_FIRST, AGG_TOTAL</code>
	 * and <code>AGG_LAST</code>.
	 * @param aggType Type of the aggregate requested.
	 * @return The double value of the requested aggregate.
	 */
	double getAggregate( int aggType )
	{
		switch ( aggType )
		{
			case AGG_MINIMUM:
				return min;
				
			case AGG_MAXIMUM:
				return max;
				
			case AGG_AVERAGE:
				if ( totalTime > 0 )
					return totalValue / totalTime;
				break;
				
			case AGG_FIRST:
				if ( values != null && values.length > 0)
					return values[0];
				break;
				
			case AGG_LAST:
				if ( values != null && values.length > 0)
					return values[values.length - 1];
				break;
				
			case AGG_TOTAL:
				return totalValue;
		}
		
		return Double.NaN;
	}
	
	String getName() {
		return name;	
	}
	
	double[] getValues() {
		return values;
	}
	
	long getSampleCount() {
		return ( values != null ? values.length : 0 );
	}
	
	
	// ================================================================
	// -- Private methods
	// ================================================================
	/**
	 * Adds a datapoint to the aggregate function calculation.
	 * @param time Timestamp in seconds of the datapoint.
	 * @param value Double value of the datapoint.
	 */
	private void aggregate( long time, double value ) 
	{
		if ( Double.isInfinite(value) )
			return;

		min = Util.min( min, value );
		max = Util.max( max, value );
		
		if ( !Double.isNaN(lastValue) && !Double.isNaN(value) )
		{
			long timeDelta 	= time - lastTime;

			totalValue		+= timeDelta * ( value + lastValue ) / 2.0;
			totalTime		+= timeDelta;
		}

		lastTime	= time;
		lastValue	= value;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -