X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_dump.c;h=accf2f74a4164bb20f3ba43f58c1ba8b01e0561b;hp=4e79c9c57e30b99abd1733b47c38a0ecbe5edf86;hb=35354e059a77479a7a135c1e4fc71c76523fd7c4;hpb=9becc239839e47acb1ca494365931cfb750f927c diff --git a/src/rrd_dump.c b/src/rrd_dump.c index 4e79c9c..accf2f7 100644 --- a/src/rrd_dump.c +++ b/src/rrd_dump.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2.19 Copyright by Tobi Oetiker, 1997-2007 + * RRDtool 1.3.0 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_dump Display a RRD ***************************************************************************** @@ -48,320 +48,442 @@ extern char *tzname[2]; #endif -int -rrd_dump(int argc, char **argv) -{ - int rc; - - if (argc < 2) { - rrd_set_error("Not enough arguments"); - return -1; - } - if (argc == 3) - { - rc = rrd_dump_r(argv[1], argv[2]); - } - else - { - rc = rrd_dump_r(argv[1], NULL); - } - - return rc; -} +int rrd_dump_opt_r( + const char *filename, + char *outname, + int opt_noheader) +{ + unsigned int i, ii, ix, iii = 0; + time_t now; + char somestring[255]; + rrd_value_t my_cdp; + off_t rra_base, rra_start, rra_next; + rrd_file_t *rrd_file; + FILE *out_file; + rrd_t rrd; + rrd_value_t value; + struct tm tm; -int -rrd_dump_r(const char *filename, char *outname) -{ - unsigned int i,ii,ix,iii=0; - time_t now; - char somestring[255]; - rrd_value_t my_cdp; - long rra_base, rra_start, rra_next; - FILE *in_file; - FILE *out_file; - rrd_t rrd; - rrd_value_t value; - struct tm tm; - if(rrd_open(filename, &in_file,&rrd, RRD_READONLY)==-1){ - rrd_free(&rrd); - return(-1); + rrd_file = rrd_open(filename, &rrd, RRD_READONLY | RRD_READAHEAD); + if (rrd_file == NULL) { + rrd_free(&rrd); + return (-1); } out_file = NULL; - if (outname) - { - if (!(out_file = fopen(outname, "w"))) - { - return (-1); - } + if (outname) { + if (!(out_file = fopen(outname, "w"))) { + return (-1); + } + } else { + out_file = stdout; } - else - { - out_file = stdout; + + if (!opt_noheader) { + fputs("\n", out_file); + fputs + ("\n", + out_file); } - fputs("", out_file); fputs("", out_file); - fprintf(out_file, "\t %s \n",RRD_VERSION); - fprintf(out_file, "\t %lu \n",rrd.stat_head->pdp_step); + if (atoi(rrd.stat_head->version) <= 3) { + fprintf(out_file, "\t %s \n", RRD_VERSION3); + } else { + fprintf(out_file, "\t %s \n", RRD_VERSION); + } + fprintf(out_file, "\t %lu \n", + rrd.stat_head->pdp_step); #if HAVE_STRFTIME localtime_r(&rrd.live_head->last_up, &tm); - strftime(somestring,200,"%Y-%m-%d %H:%M:%S %Z", - &tm); + strftime(somestring, 200, "%Y-%m-%d %H:%M:%S %Z", &tm); #else # error "Need strftime" #endif - fprintf(out_file, "\t %ld \n\n", - rrd.live_head->last_up,somestring); - for(i=0;ids_cnt;i++){ - fprintf(out_file, "\t\n"); - fprintf(out_file, "\t\t %s \n",rrd.ds_def[i].ds_nam); - fprintf(out_file, "\t\t %s \n",rrd.ds_def[i].dst); - if (dst_conv(rrd.ds_def[i].dst) != DST_CDEF) { - fprintf(out_file, "\t\t %lu \n",rrd.ds_def[i].par[DS_mrhb_cnt].u_cnt); - if (isnan(rrd.ds_def[i].par[DS_min_val].u_val)){ - fprintf(out_file, "\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t %0.10e \n",rrd.ds_def[i].par[DS_min_val].u_val); - } - if (isnan(rrd.ds_def[i].par[DS_max_val].u_val)){ - fprintf(out_file, "\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t %0.10e \n",rrd.ds_def[i].par[DS_max_val].u_val); - } - } else { /* DST_CDEF */ - char *str=NULL; - rpn_compact2str((rpn_cdefds_t *) &(rrd.ds_def[i].par[DS_cdef]),rrd.ds_def,&str); - fprintf(out_file, "\t\t %s \n", str); - free(str); - } - fprintf(out_file, "\n\t\t\n"); - fprintf(out_file, "\t\t %s \n",rrd.pdp_prep[i].last_ds); - if (isnan(rrd.pdp_prep[i].scratch[PDP_val].u_val)){ - fprintf(out_file, "\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t %0.10e \n",rrd.pdp_prep[i].scratch[PDP_val].u_val); - } - fprintf(out_file, "\t\t %lu \n", - rrd.pdp_prep[i].scratch[PDP_unkn_sec_cnt].u_cnt); - - fprintf(out_file, "\t\n\n"); - } + fprintf(out_file, "\t %lu \n\n", + (unsigned long) rrd.live_head->last_up, somestring); + for (i = 0; i < rrd.stat_head->ds_cnt; i++) { + fprintf(out_file, "\t\n"); + fprintf(out_file, "\t\t %s \n", rrd.ds_def[i].ds_nam); + fprintf(out_file, "\t\t %s \n", rrd.ds_def[i].dst); + if (dst_conv(rrd.ds_def[i].dst) != DST_CDEF) { + fprintf(out_file, + "\t\t %lu \n", + rrd.ds_def[i].par[DS_mrhb_cnt].u_cnt); + if (isnan(rrd.ds_def[i].par[DS_min_val].u_val)) { + fprintf(out_file, "\t\t NaN \n"); + } else { + fprintf(out_file, "\t\t %0.10e \n", + rrd.ds_def[i].par[DS_min_val].u_val); + } + if (isnan(rrd.ds_def[i].par[DS_max_val].u_val)) { + fprintf(out_file, "\t\t NaN \n"); + } else { + fprintf(out_file, "\t\t %0.10e \n", + rrd.ds_def[i].par[DS_max_val].u_val); + } + } else { /* DST_CDEF */ + char *str = NULL; + + rpn_compact2str((rpn_cdefds_t *) &(rrd.ds_def[i].par[DS_cdef]), + rrd.ds_def, &str); + fprintf(out_file, "\t\t %s \n", str); + free(str); + } + fprintf(out_file, "\n\t\t\n"); + fprintf(out_file, "\t\t %s \n", + rrd.pdp_prep[i].last_ds); + if (isnan(rrd.pdp_prep[i].scratch[PDP_val].u_val)) { + fprintf(out_file, "\t\t NaN \n"); + } else { + fprintf(out_file, "\t\t %0.10e \n", + rrd.pdp_prep[i].scratch[PDP_val].u_val); + } + fprintf(out_file, "\t\t %lu \n", + rrd.pdp_prep[i].scratch[PDP_unkn_sec_cnt].u_cnt); + + fprintf(out_file, "\t\n\n"); + } fputs("", out_file); - rra_base=ftell(in_file); + rra_base = rrd_file->header_len; rra_next = rra_base; - for(i=0;irra_cnt;i++){ - - long timer=0; - rra_start= rra_next; - rra_next += ( rrd.stat_head->ds_cnt - * rrd.rra_def[i].row_cnt - * sizeof(rrd_value_t)); - fprintf(out_file, "\t\n"); - fprintf(out_file, "\t\t %s \n",rrd.rra_def[i].cf_nam); - fprintf(out_file, "\t\t %lu \n\n", - rrd.rra_def[i].pdp_cnt, rrd.rra_def[i].pdp_cnt - *rrd.stat_head->pdp_step); - /* support for RRA parameters */ - fprintf(out_file, "\t\t\n"); - switch(cf_conv(rrd.rra_def[i].cf_nam)) { - case CF_HWPREDICT: - fprintf(out_file, "\t\t %0.10e \n", - rrd.rra_def[i].par[RRA_hw_alpha].u_val); - fprintf(out_file, "\t\t %0.10e \n", - rrd.rra_def[i].par[RRA_hw_beta].u_val); - fprintf(out_file, "\t\t %lu \n", - rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt); - break; - case CF_SEASONAL: - case CF_DEVSEASONAL: - fprintf(out_file, "\t\t %0.10e \n", - rrd.rra_def[i].par[RRA_seasonal_gamma].u_val); - fprintf(out_file, "\t\t %lu \n", - rrd.rra_def[i].par[RRA_seasonal_smooth_idx].u_cnt); - fprintf(out_file, "\t\t %lu \n", - rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt); - break; - case CF_FAILURES: - fprintf(out_file, "\t\t %0.10e \n", - rrd.rra_def[i].par[RRA_delta_pos].u_val); - fprintf(out_file, "\t\t %0.10e \n", - rrd.rra_def[i].par[RRA_delta_neg].u_val); - fprintf(out_file, "\t\t %lu \n", - rrd.rra_def[i].par[RRA_window_len].u_cnt); - fprintf(out_file, "\t\t %lu \n", - rrd.rra_def[i].par[RRA_failure_threshold].u_cnt); - /* fall thru */ - case CF_DEVPREDICT: - fprintf(out_file, "\t\t %lu \n", - rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt); - break; - case CF_AVERAGE: - case CF_MAXIMUM: - case CF_MINIMUM: - case CF_LAST: - default: - fprintf(out_file, "\t\t %0.10e \n", rrd.rra_def[i].par[RRA_cdp_xff_val].u_val); - break; - } - fprintf(out_file, "\t\t\n"); - fprintf(out_file, "\t\t\n"); - for(ii=0;iids_cnt;ii++){ - unsigned long ivalue; - fprintf(out_file, "\t\t\t\n"); - /* support for exporting all CDP parameters */ - /* parameters common to all CFs */ - /* primary_val and secondary_val do not need to be saved between updates - * so strictly speaking they could be omitted. - * However, they can be useful for diagnostic purposes, so are included here. */ - value = rrd.cdp_prep[i*rrd.stat_head->ds_cnt - +ii].scratch[CDP_primary_val].u_val; - if (isnan(value)) { - fprintf(out_file, "\t\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t\t %0.10e \n", value); - } - value = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_secondary_val].u_val; - if (isnan(value)) { - fprintf(out_file, "\t\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t\t %0.10e \n", value); - } - switch(cf_conv(rrd.rra_def[i].cf_nam)) { - case CF_HWPREDICT: - value = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_hw_intercept].u_val; - if (isnan(value)) { - fprintf(out_file, "\t\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t\t %0.10e \n", value); - } - value = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_hw_last_intercept].u_val; - if (isnan(value)) { - fprintf(out_file, "\t\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t\t %0.10e \n", value); - } - value = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_hw_slope].u_val; - if (isnan(value)) { - fprintf(out_file, "\t\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t\t %0.10e \n", value); - } - value = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_hw_last_slope].u_val; - if (isnan(value)) { - fprintf(out_file, "\t\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t\t %0.10e \n", value); - } - ivalue = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_null_count].u_cnt; - fprintf(out_file, "\t\t\t %lu \n", ivalue); - ivalue = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_last_null_count].u_cnt; - fprintf(out_file, "\t\t\t %lu \n", ivalue); - break; - case CF_SEASONAL: - case CF_DEVSEASONAL: - value = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_hw_seasonal].u_val; - if (isnan(value)) { - fprintf(out_file, "\t\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t\t %0.10e \n", value); - } - value = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_hw_last_seasonal].u_val; - if (isnan(value)) { - fprintf(out_file, "\t\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t\t %0.10e \n", value); - } - ivalue = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_init_seasonal].u_cnt; - fprintf(out_file, "\t\t\t %lu \n", ivalue); - break; - case CF_DEVPREDICT: - break; - case CF_FAILURES: - { - unsigned short vidx; - char *violations_array = (char *) ((void*) - rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch); - fprintf(out_file, "\t\t\t "); - for (vidx = 0; vidx < rrd.rra_def[i].par[RRA_window_len].u_cnt; ++vidx) - { - fprintf(out_file, "%d",violations_array[vidx]); - } - fprintf(out_file, " \n"); - } - break; - case CF_AVERAGE: - case CF_MAXIMUM: - case CF_MINIMUM: - case CF_LAST: - default: - value = rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_val].u_val; - if (isnan(value)) { - fprintf(out_file, "\t\t\t NaN \n"); - } else { - fprintf(out_file, "\t\t\t %0.10e \n", value); - } - fprintf(out_file, "\t\t\t %lu \n", - rrd.cdp_prep[i*rrd.stat_head->ds_cnt+ii].scratch[CDP_unkn_pdp_cnt].u_cnt); - break; - } - fprintf(out_file, "\t\t\t\n"); - } - fprintf(out_file, "\t\t\n"); + for (i = 0; i < rrd.stat_head->rra_cnt; i++) { + + long timer = 0; + + rra_start = rra_next; + rra_next += (rrd.stat_head->ds_cnt + * rrd.rra_def[i].row_cnt * sizeof(rrd_value_t)); + fprintf(out_file, "\t\n"); + fprintf(out_file, "\t\t %s \n", rrd.rra_def[i].cf_nam); + fprintf(out_file, + "\t\t %lu \n\n", + rrd.rra_def[i].pdp_cnt, + rrd.rra_def[i].pdp_cnt * rrd.stat_head->pdp_step); + /* support for RRA parameters */ + fprintf(out_file, "\t\t\n"); + switch (cf_conv(rrd.rra_def[i].cf_nam)) { + case CF_HWPREDICT: + case CF_MHWPREDICT: + fprintf(out_file, "\t\t %0.10e \n", + rrd.rra_def[i].par[RRA_hw_alpha].u_val); + fprintf(out_file, "\t\t %0.10e \n", + rrd.rra_def[i].par[RRA_hw_beta].u_val); + fprintf(out_file, + "\t\t %lu \n", + rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt); + break; + case CF_SEASONAL: + case CF_DEVSEASONAL: + fprintf(out_file, + "\t\t %0.10e \n", + rrd.rra_def[i].par[RRA_seasonal_gamma].u_val); + fprintf(out_file, + "\t\t %lu \n", + rrd.rra_def[i].par[RRA_seasonal_smooth_idx].u_cnt); + if (atoi(rrd.stat_head->version) >= 4) { + fprintf(out_file, + "\t\t %0.10e \n", + rrd.rra_def[i].par[RRA_seasonal_smoothing_window]. + u_val); + } + fprintf(out_file, + "\t\t %lu \n", + rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt); + break; + case CF_FAILURES: + fprintf(out_file, "\t\t %0.10e \n", + rrd.rra_def[i].par[RRA_delta_pos].u_val); + fprintf(out_file, "\t\t %0.10e \n", + rrd.rra_def[i].par[RRA_delta_neg].u_val); + fprintf(out_file, "\t\t %lu \n", + rrd.rra_def[i].par[RRA_window_len].u_cnt); + fprintf(out_file, + "\t\t %lu \n", + rrd.rra_def[i].par[RRA_failure_threshold].u_cnt); + /* fall thru */ + case CF_DEVPREDICT: + fprintf(out_file, + "\t\t %lu \n", + rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt); + break; + case CF_AVERAGE: + case CF_MAXIMUM: + case CF_MINIMUM: + case CF_LAST: + default: + fprintf(out_file, "\t\t %0.10e \n", + rrd.rra_def[i].par[RRA_cdp_xff_val].u_val); + break; + } + fprintf(out_file, "\t\t\n"); + fprintf(out_file, "\t\t\n"); + for (ii = 0; ii < rrd.stat_head->ds_cnt; ii++) { + unsigned long ivalue; - fprintf(out_file, "\t\t\n"); - fseek(in_file,(rra_start - +(rrd.rra_ptr[i].cur_row+1) - * rrd.stat_head->ds_cnt - * sizeof(rrd_value_t)),SEEK_SET); - timer = - (rrd.rra_def[i].row_cnt-1); - ii=rrd.rra_ptr[i].cur_row; - for(ix=0;ix=rrd.rra_def[i].row_cnt) { - fseek(in_file,rra_start,SEEK_SET); - ii=0; /* wrap if max row cnt is reached */ - } - now = (rrd.live_head->last_up - - rrd.live_head->last_up - % (rrd.rra_def[i].pdp_cnt*rrd.stat_head->pdp_step)) - + (timer*rrd.rra_def[i].pdp_cnt*rrd.stat_head->pdp_step); + fprintf(out_file, "\t\t\t\n"); + /* support for exporting all CDP parameters */ + /* parameters common to all CFs */ + /* primary_val and secondary_val do not need to be saved between updates + * so strictly speaking they could be omitted. + * However, they can be useful for diagnostic purposes, so are included here. */ + value = rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_primary_val].u_val; + if (isnan(value)) { + fprintf(out_file, + "\t\t\t NaN \n"); + } else { + fprintf(out_file, + "\t\t\t %0.10e \n", + value); + } + value = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_secondary_val].u_val; + if (isnan(value)) { + fprintf(out_file, + "\t\t\t NaN \n"); + } else { + fprintf(out_file, + "\t\t\t %0.10e \n", + value); + } + switch (cf_conv(rrd.rra_def[i].cf_nam)) { + case CF_HWPREDICT: + case CF_MHWPREDICT: + value = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_hw_intercept].u_val; + if (isnan(value)) { + fprintf(out_file, "\t\t\t NaN \n"); + } else { + fprintf(out_file, + "\t\t\t %0.10e \n", value); + } + value = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_hw_last_intercept].u_val; + if (isnan(value)) { + fprintf(out_file, + "\t\t\t NaN \n"); + } else { + fprintf(out_file, + "\t\t\t %0.10e \n", + value); + } + value = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_hw_slope].u_val; + if (isnan(value)) { + fprintf(out_file, "\t\t\t NaN \n"); + } else { + fprintf(out_file, "\t\t\t %0.10e \n", + value); + } + value = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_hw_last_slope].u_val; + if (isnan(value)) { + fprintf(out_file, + "\t\t\t NaN \n"); + } else { + fprintf(out_file, + "\t\t\t %0.10e \n", + value); + } + ivalue = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_null_count].u_cnt; + fprintf(out_file, "\t\t\t %lu \n", + ivalue); + ivalue = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_last_null_count].u_cnt; + fprintf(out_file, + "\t\t\t %lu \n", + ivalue); + break; + case CF_SEASONAL: + case CF_DEVSEASONAL: + value = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_hw_seasonal].u_val; + if (isnan(value)) { + fprintf(out_file, "\t\t\t NaN \n"); + } else { + fprintf(out_file, "\t\t\t %0.10e \n", + value); + } + value = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_hw_last_seasonal].u_val; + if (isnan(value)) { + fprintf(out_file, + "\t\t\t NaN \n"); + } else { + fprintf(out_file, + "\t\t\t %0.10e \n", + value); + } + ivalue = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_init_seasonal].u_cnt; + fprintf(out_file, "\t\t\t %lu \n", + ivalue); + break; + case CF_DEVPREDICT: + break; + case CF_FAILURES: + { + unsigned short vidx; + char *violations_array = (char *) ((void *) + rrd.cdp_prep[i * + rrd. + stat_head-> + ds_cnt + + ii]. + scratch); + fprintf(out_file, "\t\t\t "); + for (vidx = 0; + vidx < rrd.rra_def[i].par[RRA_window_len].u_cnt; + ++vidx) { + fprintf(out_file, "%d", violations_array[vidx]); + } + fprintf(out_file, " \n"); + } + break; + case CF_AVERAGE: + case CF_MAXIMUM: + case CF_MINIMUM: + case CF_LAST: + default: + value = + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_val].u_val; + if (isnan(value)) { + fprintf(out_file, "\t\t\t NaN \n"); + } else { + fprintf(out_file, "\t\t\t %0.10e \n", + value); + } + fprintf(out_file, + "\t\t\t %lu \n", + rrd.cdp_prep[i * rrd.stat_head->ds_cnt + + ii].scratch[CDP_unkn_pdp_cnt].u_cnt); + break; + } + fprintf(out_file, "\t\t\t\n"); + } + fprintf(out_file, "\t\t\n"); - timer++; + fprintf(out_file, "\t\t\n"); + rrd_seek(rrd_file, (rra_start + (rrd.rra_ptr[i].cur_row + 1) + * rrd.stat_head->ds_cnt + * sizeof(rrd_value_t)), SEEK_SET); + timer = -(rrd.rra_def[i].row_cnt - 1); + ii = rrd.rra_ptr[i].cur_row; + for (ix = 0; ix < rrd.rra_def[i].row_cnt; ix++) { + ii++; + if (ii >= rrd.rra_def[i].row_cnt) { + rrd_seek(rrd_file, rra_start, SEEK_SET); + ii = 0; /* wrap if max row cnt is reached */ + } + now = (rrd.live_head->last_up + - rrd.live_head->last_up + % (rrd.rra_def[i].pdp_cnt * rrd.stat_head->pdp_step)) + + (timer * rrd.rra_def[i].pdp_cnt * rrd.stat_head->pdp_step); + + timer++; #if HAVE_STRFTIME - localtime_r(&now, &tm); - strftime(somestring,200,"%Y-%m-%d %H:%M:%S %Z", &tm); + localtime_r(&now, &tm); + strftime(somestring, 200, "%Y-%m-%d %H:%M:%S %Z", &tm); #else # error "Need strftime" #endif - fprintf(out_file, "\t\t\t ",somestring,(int)now); - for(iii=0;iiids_cnt;iii++){ - fread(&my_cdp,sizeof(rrd_value_t),1,in_file); - if (isnan(my_cdp)){ - fprintf(out_file, " NaN "); - } else { - fprintf(out_file, " %0.10e ",my_cdp); - }; - } - fprintf(out_file, "\n"); - } - fprintf(out_file, "\t\t\n\t\n"); - + fprintf(out_file, "\t\t\t ", somestring, + (int) now); + for (iii = 0; iii < rrd.stat_head->ds_cnt; iii++) { + rrd_read(rrd_file, &my_cdp, sizeof(rrd_value_t) * 1); + if (isnan(my_cdp)) { + fprintf(out_file, " NaN "); + } else { + fprintf(out_file, " %0.10e ", my_cdp); + }; + } + fprintf(out_file, "\n"); + } + fprintf(out_file, "\t\t\n\t\n"); + } fprintf(out_file, "\n"); rrd_free(&rrd); - fclose(in_file); - if (out_file != stdout) - { - fclose(out_file); + if (out_file != stdout) { + fclose(out_file); } - return(0); + return rrd_close(rrd_file); +} + +/* backward compatibility with 1.2.x */ +int rrd_dump_r( + const char *filename, + char *outname) +{ + return rrd_dump_opt_r(filename, outname, 0); } +int rrd_dump( + int argc, + char **argv) +{ + int rc; + int opt_noheader = 0; + + /* init rrd clean */ + + optind = 0; + opterr = 0; /* initialize getopt */ + + while (42) { + int opt; + int option_index = 0; + static struct option long_options[] = { + {"no-header", no_argument, 0, 'n'}, + {0, 0, 0, 0} + }; + opt = getopt_long(argc, argv, "n", long_options, &option_index); + if (opt == EOF) + break; + switch (opt) { + case 'n': + opt_noheader = 1; + break; + + default: + rrd_set_error("usage rrdtool %s [--no-header|-n] " + "file.rrd [file.xml]", argv[0]); + return (-1); + break; + } + } /* while (42) */ + + if ((argc - optind) < 1 || (argc - optind) > 2) { + rrd_set_error("usage rrdtool %s [--no-header|-n] " + "file.rrd [file.xml]", argv[0]); + return (-1); + } + + if ((argc - optind) == 2) { + rc = rrd_dump_opt_r(argv[optind], argv[optind + 1], opt_noheader); + } else { + rc = rrd_dump_opt_r(argv[optind], NULL, opt_noheader); + } + + return rc; +}