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

📄 xmlreader.java

📁 jrobin,使用纯java实现的RRD数据库,使用RRD数据库来统计数据.
💻 JAVA
字号:
/* ============================================================
 * JRobin : Pure java implementation of RRDTool's functionality
 * ============================================================
 *
 * Project Info:  http://www.jrobin.org
 * Project Lead:  Sasa Markovic (saxon@jrobin.org);
 *
 * (C) Copyright 2003-2005, by Sasa Markovic.
 *
 * Developers:    Sasa Markovic (saxon@jrobin.org)
 *
 *
 * 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 org.jrobin.core;

import org.w3c.dom.Element;
import org.w3c.dom.Node;

import java.io.File;
import java.io.IOException;

class XmlReader extends DataImporter {

	private Element root;
	private Node[] dsNodes, arcNodes;

	XmlReader(String xmlFilePath) throws IOException, RrdException {
		root = Util.Xml.getRootElement(new File(xmlFilePath));
		dsNodes = Util.Xml.getChildNodes(root, "ds");
		arcNodes = Util.Xml.getChildNodes(root, "rra");
	}

	String getVersion() throws RrdException {
		return Util.Xml.getChildValue(root, "version");
	}

	long getLastUpdateTime() throws RrdException {
		return Util.Xml.getChildValueAsLong(root, "lastupdate");
	}

	long getStep() throws RrdException {
		return Util.Xml.getChildValueAsLong(root, "step");
	}

	int getDsCount() {
		return dsNodes.length;
	}

	int getArcCount() {
		return arcNodes.length;
	}

	String getDsName(int dsIndex) throws RrdException {
		return Util.Xml.getChildValue(dsNodes[dsIndex], "name");
	}

	String getDsType(int dsIndex) throws RrdException {
		return Util.Xml.getChildValue(dsNodes[dsIndex], "type");
	}

	long getHeartbeat(int dsIndex) throws RrdException {
		return Util.Xml.getChildValueAsLong(dsNodes[dsIndex], "minimal_heartbeat");
	}

	double getMinValue(int dsIndex) throws RrdException {
		return Util.Xml.getChildValueAsDouble(dsNodes[dsIndex], "min");
	}

	double getMaxValue(int dsIndex) throws RrdException {
		return Util.Xml.getChildValueAsDouble(dsNodes[dsIndex], "max");
	}

	double getLastValue(int dsIndex) throws RrdException {
		return Util.Xml.getChildValueAsDouble(dsNodes[dsIndex], "last_ds");
	}

	double getAccumValue(int dsIndex) throws RrdException {
		return Util.Xml.getChildValueAsDouble(dsNodes[dsIndex], "value");
	}

	long getNanSeconds(int dsIndex) throws RrdException {
		return Util.Xml.getChildValueAsLong(dsNodes[dsIndex], "unknown_sec");
	}

	String getConsolFun(int arcIndex) throws RrdException {
		return Util.Xml.getChildValue(arcNodes[arcIndex], "cf");
	}

	double getXff(int arcIndex) throws RrdException {
		return Util.Xml.getChildValueAsDouble(arcNodes[arcIndex], "xff");
	}

	int getSteps(int arcIndex) throws RrdException {
		return Util.Xml.getChildValueAsInt(arcNodes[arcIndex], "pdp_per_row");
	}

	double getStateAccumValue(int arcIndex, int dsIndex) throws RrdException {
		Node cdpNode = Util.Xml.getFirstChildNode(arcNodes[arcIndex], "cdp_prep");
		Node[] dsNodes = Util.Xml.getChildNodes(cdpNode, "ds");
		return Util.Xml.getChildValueAsDouble(dsNodes[dsIndex], "value");
	}

	int getStateNanSteps(int arcIndex, int dsIndex) throws RrdException {
		Node cdpNode = Util.Xml.getFirstChildNode(arcNodes[arcIndex], "cdp_prep");
		Node[] dsNodes = Util.Xml.getChildNodes(cdpNode, "ds");
		return Util.Xml.getChildValueAsInt(dsNodes[dsIndex], "unknown_datapoints");
	}

	int getRows(int arcIndex) throws RrdException {
		Node dbNode = Util.Xml.getFirstChildNode(arcNodes[arcIndex], "database");
		Node[] rows = Util.Xml.getChildNodes(dbNode, "row");
		return rows.length;
	}

	double[] getValues(int arcIndex, int dsIndex) throws RrdException {
		Node dbNode = Util.Xml.getFirstChildNode(arcNodes[arcIndex], "database");
		Node[] rows = Util.Xml.getChildNodes(dbNode, "row");
		double[] values = new double[rows.length];
		for (int i = 0; i < rows.length; i++) {
			Node[] vNodes = Util.Xml.getChildNodes(rows[i], "v");
			Node vNode = vNodes[dsIndex];
			values[i] = Util.parseDouble(vNode.getFirstChild().getNodeValue().trim());
		}
		return values;
	}
}

⌨️ 快捷键说明

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