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

📄 gprint.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 java.util.HashMap;
import java.util.ArrayList;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import net.jumperz.ext.org.jrobin.core.RrdException;
import net.jumperz.ext.org.jrobin.core.XmlWriter;

/**
 * <p>Represents a piece of aligned text (containing a retrieved datasource value) to be drawn on the graph.</p>
 * 
 * @author Arne Vandamme (cobralord@jrobin.org)
 * @author Sasa Markovic (saxon@jrobin.org)
 */
class Gprint extends Comment 
{
	// ================================================================
	// -- Members
	// ================================================================
	private static final String SCALE_MARKER 			= "@s";
	private static final String UNIFORM_SCALE_MARKER 	= "@S";
	private static final String VALUE_MARKER 			= "@([0-9]*\\.[0-9]{1}|[0-9]{1}|\\.[0-9]{1})";
	private static final Pattern VALUE_PATTERN 			= Pattern.compile(VALUE_MARKER);
	
	private String sourceName;
	private int aggregate; 
	private int numDec									= 3;		// Show 3 decimal values by default
	private int strLen									= -1;
	private double baseValue							= -1;		// Default: use global base value
	private boolean normalScale							= false;
	private boolean uniformScale						= false;

	protected ArrayList parsedList;


	// ================================================================
	// -- Constructors
	// ================================================================
	/**
	 * Constructs a Gprint object based on a string of text (with a specific placement
	 * marker in), a source from which to retrieve a value, and a consolidation function that
	 * specifies which value to retrieve.  Possible consolidation functions are <code>AVERAGE, MAX, MIN, FIRST, LAST</code>
	 * and <code>TOTAL</code>.
	 * @param sourceName Name of the datasource from which to retrieve the consolidated value.
	 * @param consolFunc Consolidation function to use.
	 * @param text String of text with a placement marker for the resulting value.
	 * @throws RrdException Thrown in case of a JRobin specific error.
	 */
	Gprint( String sourceName, String consolFunc, String text ) throws RrdException
	{
		this.text = text;
		checkValuePlacement();		// First see if this GPRINT is valid
		super.parseComment();

		this.commentType 	= Comment.CMT_GPRINT;
		this.sourceName 	= sourceName;
		
		if ( consolFunc.equalsIgnoreCase("AVERAGE") || consolFunc.equalsIgnoreCase("AVG") )
			aggregate = Source.AGG_AVERAGE;
		else if ( consolFunc.equalsIgnoreCase("MAX") || consolFunc.equalsIgnoreCase("MAXIMUM") )
			aggregate = Source.AGG_MAXIMUM;
		else if ( consolFunc.equalsIgnoreCase("MIN") || consolFunc.equalsIgnoreCase("MINIMUM") )
			aggregate = Source.AGG_MINIMUM;
		else if ( consolFunc.equalsIgnoreCase("LAST") )
			aggregate = Source.AGG_LAST;
		else if ( consolFunc.equalsIgnoreCase("FIRST") )
			aggregate = Source.AGG_FIRST;
		else if ( consolFunc.equalsIgnoreCase("TOTAL") )
			aggregate = Source.AGG_TOTAL;
		else
			throw new RrdException( "Invalid consolidation function specified." );
	}
	
	/**
	 * Constructs a Gprint object based on a string of text (with a specific placement
	 * marker in), a source from which to retrieve a value, and a consolidation function that
	 * specifies which value to retrieve.  Possible consolidation functions are <code>AVERAGE, MAX, MIN, FIRST</code>
	 * and <code>LAST</code>.
	 * @param sourceName Name of the datasource from which to retrieve the consolidated value.
	 * @param consolFunc Consolidation function to use.
	 * @param text String of text with a placement marker for the resulting value.
	 * @param base Base value to use for formatting the value that needs to be printed.
	 * @throws RrdException Thrown in case of a JRobin specific error.
	 */
	Gprint( String sourceName, String consolFunc, String text, double base ) throws RrdException
	{
		this( sourceName, consolFunc, text );
		
		baseValue	= base;
	}
	
	// ================================================================
	// -- Protected methods
	// ================================================================
	/**
	 * Sets the consolidated value based on the internal sourceName and consolFunc, and the
	 * provided list of datasources with lookup table.  The retrieved value will be formatted
	 * to a string using a <code>ValueFormatter</code> object.
	 * @param sources Source table containing all datasources necessary to create the final graph.
	 * @param sourceIndex HashMap containing the sourcename - index keypairs, to retrieve the index 
	 * in the Source table based on the sourcename.
	 * @param vFormat ValueFormatter object used to retrieve a formatted string of the requested value.
	 * @throws RrdException Thrown in case of a JRobin specific error.
	 */
	void setValue( Source[] sources, HashMap sourceIndex, ValueFormatter vFormat ) throws RrdException
	{
		try
		{
			double value 	= sources[ ((Integer) sourceIndex.get(sourceName)).intValue() ].getAggregate( aggregate );
						
			// See if we need to use a specific value for the formatting
			double oldBase	= vFormat.getBase();
			if ( baseValue != -1 && baseValue != vFormat.getBase() )
				vFormat.setBase( baseValue );
			
			vFormat.setFormat( value, numDec, strLen );
			vFormat.setScaling( normalScale, uniformScale );
			
			String valueStr = vFormat.getFormattedValue();
			String prefix	= vFormat.getPrefix();

			// Create a copy of the token/pair list
			parsedList		= new ArrayList( oList );

			// Replace all values
			for (int i = 0; i < oList.size(); i += 2 )
			{
				String str = (String) oList.get(i);
				
				str = str.replaceAll(VALUE_MARKER, valueStr);
				if ( normalScale ) str = str.replaceAll(SCALE_MARKER, prefix);
				if ( uniformScale ) str = str.replaceAll(UNIFORM_SCALE_MARKER, prefix);
				
				parsedList.set( i, str );
			}
			
			// Reset the base value of the formatter
			if ( baseValue != -1 )
				vFormat.setBase( oldBase );
		}
		catch (Exception e) {
			throw new RrdException( "Could not find datasource: " + sourceName );
		}
	}

	/**
	 * Retrieves a <code>ArrayList</code> containing all string/token pairs in order of <code>String</code> - <code>Byte</code>.
	 * @return ArrayList containing all string/token pairs of this Comment.
	 */
	ArrayList getTokens()
	{
		return parsedList;
	}


	// ================================================================
	// -- Private methods
	// ================================================================
	/**
	 * Checks value placement by finding placeholder, checks for uniform or regular scaling and 
	 * checks for the number of decimals to allow and the complete value string length.
	 * @throws RrdException Thrown in case of a JRobin specific error.
	 */
	private void checkValuePlacement() throws RrdException
	{
		Matcher m = VALUE_PATTERN.matcher(text);
		
		if ( m.find() )
		{	
			normalScale 	= (text.indexOf(SCALE_MARKER) >= 0);
			uniformScale	= (text.indexOf(UNIFORM_SCALE_MARKER) >= 0);
			
			if ( normalScale && uniformScale )
				throw new RrdException( "Can't specify normal scaling and uniform scaling at the same time." );
			
			String[] group 	= m.group(1).split("\\.");
			strLen 			= -1;
			numDec 			= 0;
	
			if ( group.length > 1 ) 
			{
				if ( group[0].length() > 0 ) {
					strLen 	= Integer.parseInt(group[0]);
					numDec 	= Integer.parseInt(group[1]);
				}
				else
					numDec 	= Integer.parseInt(group[1]);
			}
			else
				numDec = Integer.parseInt(group[0]);
		}
		else
			throw new RrdException( "Could not find where to place value. No @ placeholder found." );
	}
	
	void exportXmlTemplate(XmlWriter xml) {
		xml.startTag("gprint");
		xml.writeTag("datasource", sourceName);
		xml.writeTag("cf", Source.aggregates[aggregate]);
		xml.writeTag("format", text);
		if ( baseValue != -1 )
			xml.writeTag( "base", baseValue );
		xml.closeTag(); // gprint
	}

}

⌨️ 快捷键说明

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