Package org.rrd4j.core.jrrd
Class Archive
java.lang.Object
org.rrd4j.core.jrrd.Archive
public class Archive extends Object
Instances of this class model an archive section of an RRD file.
- Version:
- $Revision: 1.1 $
- Author:
- Ciaran Treanor
-
Field Summary
Fields Modifier and Type Field Description (package private) List<CDPStatusBlock>
cdpStatusBlocks
Consolitation data points(package private) int
currentRow
Row for last modification time of database(package private) long
dataOffset
Data offset within file in bytes(package private) RRDatabase
db
(package private) long
headerOffset
Header offset within file in bytes(package private) int
pdpCount
(package private) int
rowCount
Data row count(package private) double
xff
-
Constructor Summary
Constructors Constructor Description Archive(RRDatabase db)
-
Method Summary
Modifier and Type Method Description CDPStatusBlock
getCDPStatusBlock(int index)
Returns theCDPStatusBlock
at the specified position in this archive.Iterator<CDPStatusBlock>
getCDPStatusBlocks()
Returns an iterator over the CDP status blocks in this archive in proper sequence.int
getPdpCount()
Returns the number of primary data points required for a consolidated data point in this archive.int
getRowCount()
Returns the number of entries in this archive.ConsolidationFunctionType
getType()
Returns the type of function used to calculate the consolidated data point.double[][]
getValues()
Getter for the fieldvalues
.double
getXff()
Returns the X-Files Factor for this archive.(package private) void
loadCDPStatusBlocks(RRDFile file, int numBlocks)
(package private) void
loadCurrentRow(RRDFile file)
(package private) void
loadData(DataChunk chunk)
(package private) void
loadData(RRDFile file, int dsCount)
(package private) void
printInfo(PrintStream s, NumberFormat numberFormat, int index)
String
toString()
Returns a summary the contents of this archive.(package private) void
toXml(PrintStream s)
-
Field Details
-
db
-
headerOffset
final long headerOffsetHeader offset within file in bytes -
dataOffset
long dataOffsetData offset within file in bytes -
rowCount
final int rowCountData row count -
pdpCount
final int pdpCount -
xff
final double xff -
cdpStatusBlocks
List<CDPStatusBlock> cdpStatusBlocksConsolitation data points -
currentRow
int currentRowRow for last modification time of database
-
-
Constructor Details
-
Archive
- Throws:
IOException
-
-
Method Details
-
getType
Returns the type of function used to calculate the consolidated data point.- Returns:
- the type of function used to calculate the consolidated data point.
-
loadCDPStatusBlocks
- Throws:
IOException
-
getCDPStatusBlock
Returns theCDPStatusBlock
at the specified position in this archive.- Parameters:
index
- index ofCDPStatusBlock
to return.- Returns:
- the
CDPStatusBlock
at the specified position in this archive.
-
getCDPStatusBlocks
Returns an iterator over the CDP status blocks in this archive in proper sequence.- Returns:
- an iterator over the CDP status blocks in this archive in proper sequence.
- See Also:
CDPStatusBlock
-
loadCurrentRow
- Throws:
IOException
-
loadData
- Throws:
IOException
-
loadData
- Throws:
IOException
-
printInfo
-
toXml
-
getValues
Getter for the field
values
.- Returns:
- an array of double.
- Throws:
IOException
- if any.
-
getPdpCount
public int getPdpCount()Returns the number of primary data points required for a consolidated data point in this archive.- Returns:
- the number of primary data points required for a consolidated data point in this archive.
-
getRowCount
public int getRowCount()Returns the number of entries in this archive.- Returns:
- the number of entries in this archive.
-
getXff
public double getXff()Returns the X-Files Factor for this archive.- Returns:
- the X-Files Factor for this archive.
-
toString
Returns a summary the contents of this archive.
-