summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sfiligoi <isfiligoi@ucsd.edu>2012-09-08 20:27:15 +0000
committerIgor Sfiligoi <isfiligoi@ucsd.edu>2012-09-08 20:27:15 +0000
commit15de0a22c03c2d1e7b080643ed5f5bfa5bb16e37 (patch)
tree9b50e4d61bd1e926f18d33ba19e91b5507cfe28a
parentd173ba1aebf1c4cdbda66035d500bdcf074046cc (diff)
Allow for mixed 32 and 64 bit align. Make index calculation more dynamic
-rw-r--r--src/lib/rrdFile.js124
1 files changed, 73 insertions, 51 deletions
diff --git a/src/lib/rrdFile.js b/src/lib/rrdFile.js
index c55fb0e..0f7c80d 100644
--- a/src/lib/rrdFile.js
+++ b/src/lib/rrdFile.js
@@ -89,13 +89,16 @@ RRDDS.prototype.getMax = function() {
// ============================================================
// RRD RRA Info class
function RRDRRAInfo(rrd_data,rra_def_idx,
- rrd_align,row_cnt,pdp_step,my_idx) {
+ int_align,row_cnt,pdp_step,my_idx) {
this.rrd_data=rrd_data;
this.rra_def_idx=rra_def_idx;
- this.rrd_align=rrd_align;
+ this.int_align=int_align;
this.row_cnt=row_cnt;
this.pdp_step=pdp_step;
this.my_idx=my_idx;
+
+ // char nam[20], uint row_cnt, uint pdp_cnt
+ this.rra_pdp_cnt_idx=rra_def_idx+Math.ceil(20/int_align)*int_align+int_align;
}
RRDRRAInfo.prototype.getIdx = function() {
@@ -110,10 +113,7 @@ RRDRRAInfo.prototype.getNrRows = function() {
// Get number of slots used for consolidation
// Mostly for internal use
RRDRRAInfo.prototype.getPdpPerRow = function() {
- if (this.rrd_align==32)
- return this.rrd_data.getLongAt(this.rra_def_idx+24,20);
- else
- return this.rrd_data.getLongAt(this.rra_def_idx+32,20);
+ return this.rrd_data.getLongAt(this.rra_pdp_cnt_idx);
}
// Get RRA step (expressed in seconds)
@@ -199,7 +199,6 @@ RRDRRA.prototype.getElFast = function(row_idx,ds_idx) {
function RRDHeader(rrd_data) {
this.rrd_data=rrd_data;
this.validate_rrd();
- this.load_header();
this.calc_idxs();
}
@@ -208,34 +207,71 @@ RRDHeader.prototype.validate_rrd = function() {
if (this.rrd_data.getCStringAt(0,4)!=="RRD") throw new InvalidRRD("Wrong magic id.");
this.rrd_version=this.rrd_data.getCStringAt(4,5);
- if ((this.rrd_version!=="0003")&&(this.rrd_version!=="0004")) {
+ if ((this.rrd_version!=="0003")&&(this.rrd_version!=="0004")&&(this.rrd_version!=="0001")) {
throw new InvalidRRD("Unsupported RRD version "+this.rrd_version+".");
}
- if (this.rrd_data.getDoubleAt(12)==8.642135e+130) {
- this.rrd_align=32;
- } else if (this.rrd_data.getDoubleAt(16)==8.642135e+130) {
- this.rrd_align=64;
+ this.float_width=8;
+ if (this.rrd_data.getLongAt(12)==0) {
+ // not a double here... likely 64 bit
+ this.float_align=8;
+ if (this.rrd_data.getDoubleAt(16)==8.642135e+130) {
+ // now, is it all 64bit or only float 64 bit?
+ if (this.rrd_data.getLongAt(28)==0) {
+ // true 64 bit align
+ this.int_align=8;
+ this.int_width=8;
+ } else {
+ // integers are 32bit aligned
+ this.int_align=4;
+ this.int_width=4;
+ }
+ } else {
+ throw new InvalidRRD("Magic float not found at 16.");
+ }
} else {
- throw new InvalidRRD("Unsupported platform.");
+ /// should be 32 bit alignment
+ if (this.rrd_data.getDoubleAt(12)==8.642135e+130) {
+ this.float_align=4;
+ this.int_align=4;
+ this.int_width=4;
+ } else {
+ throw new InvalidRRD("Magic float not found at 12.");
+ }
}
-}
+ this.unival_width=this.float_width;
+ this.unival_align=this.float_align;
-// Internal, used for initialization
-RRDHeader.prototype.load_header = function() {
- if (this.rrd_align==32) {
- this.ds_cnt=this.rrd_data.getLongAt(20,false);
- this.rra_cnt=this.rrd_data.getLongAt(24,false);
- this.pdp_step=this.rrd_data.getLongAt(28,false);
- // 8*10 unused values follow
- this.top_header_size=112;
- } else {
- //get only the low 32 bits, the high 32 should always be 0
- this.ds_cnt=this.rrd_data.getLongAt(24,false);
- this.rra_cnt=this.rrd_data.getLongAt(32,false);
- this.pdp_step=this.rrd_data.getLongAt(40,false);
- // 8*10 unused values follow
- this.top_header_size=128;
+ // process the header here, since I need it for validation
+
+ // char magic[4], char version[5], double magic_float
+
+ // long ds_cnt, long rra_cnt, long pdp_step, unival par[10]
+ this.ds_cnt_idx=Math.ceil((4+5)/this.float_align)*this.float_align+this.float_width;
+ this.rra_cnt_idx=this.ds_cnt_idx+this.int_width;
+ this.pdp_step_idx=this.rra_cnt_idx+this.int_width;
+
+ //always get only the low 32 bits, the high 32 on 64 bit archs should always be 0
+ this.ds_cnt=this.rrd_data.getLongAt(this.ds_cnt_idx);
+ if (this.ds_cnt<1) {
+ throw new InvalidRRD("ds count less than 1.");
+ }
+
+ this.rra_cnt=this.rrd_data.getLongAt(this.rra_cnt_idx);
+ if (this.ds_cnt<1) {
+ throw new InvalidRRD("rra count less than 1.");
+ }
+
+ this.pdp_step=this.rrd_data.getLongAt(this.pdp_step_idx);
+ if (this.pdp_step<1) {
+ throw new InvalidRRD("pdp step less than 1.");
+ }
+
+ // best guess, assuming no weird align problems
+ this.top_header_size=Math.ceil((this.pdp_step_idx+this.int_width)/this.unival_align)*this.unival_align+10*this.unival_width;
+ var t=this.rrd_data.getLongAt(this.top_header_size);
+ if (t==0) {
+ throw new InvalidRRD("Could not find first DS name.");
}
}
@@ -243,42 +279,28 @@ RRDHeader.prototype.load_header = function() {
RRDHeader.prototype.calc_idxs = function() {
this.ds_def_idx=this.top_header_size;
// char ds_nam[20], char dst[20], unival par[10]
- this.ds_el_size=120;
+ this.ds_el_size=Math.ceil((20+20)/this.unival_align)*this.unival_align+10*this.unival_width;
this.rra_def_idx=this.ds_def_idx+this.ds_el_size*this.ds_cnt;
// char cf_nam[20], uint row_cnt, uint pdp_cnt, unival par[10]
- this.row_cnt_idx;
- if (this.rrd_align==32) {
- this.rra_def_el_size=108;
- this.row_cnt_idx=20;
- } else {
- this.rra_def_el_size=120;
- this.row_cnt_idx=24;
- }
+ this.row_cnt_idx=Math.ceil(20/this.int_align)*this.int_align;
+ this.rra_def_el_size=Math.ceil((this.row_cnt_idx+2*this.int_width)/this.unival_align)*this.unival_align+10*this.unival_width;
this.live_head_idx=this.rra_def_idx+this.rra_def_el_size*this.rra_cnt;
// time_t last_up, int last_up_usec
- if (this.rrd_align==32) {
- this.live_head_size=8;
- } else {
- this.live_head_size=16;
- }
+ this.live_head_size=2*this.int_width;
this.pdp_prep_idx=this.live_head_idx+this.live_head_size;
// char last_ds[30], unival scratch[10]
- this.pdp_prep_el_size=112;
+ this.pdp_prep_el_size=Math.ceil(30/this.unival_align)*this.unival_align+10*this.unival_width;
this.cdp_prep_idx=this.pdp_prep_idx+this.pdp_prep_el_size*this.ds_cnt;
// unival scratch[10]
- this.cdp_prep_el_size=80;
+ this.cdp_prep_el_size=10*this.unival_width;
this.rra_ptr_idx=this.cdp_prep_idx+this.cdp_prep_el_size*this.ds_cnt*this.rra_cnt;
// uint cur_row
- if (this.rrd_align==32) {
- this.rra_ptr_el_size=4;
- } else {
- this.rra_ptr_el_size=8;
- }
+ this.rra_ptr_el_size=1*this.int_width;
this.header_size=this.rra_ptr_idx+this.rra_ptr_el_size*this.rra_cnt;
}
@@ -344,7 +366,7 @@ RRDHeader.prototype.getRRAInfo = function(idx) {
if ((idx>=0) && (idx<this.rra_cnt)) {
return new RRDRRAInfo(this.rrd_data,
this.rra_def_idx+idx*this.rra_def_el_size,
- this.rrd_align,this.rra_def_row_cnts[idx],this.pdp_step,
+ this.int_align,this.rra_def_row_cnts[idx],this.pdp_step,
idx);
} else {
throw RangeError("RRA idx ("+ idx +") out of range [0-" + this.rra_cnt +").");