re-indented files that have gone out of indent-style over the last few weeks
[rrdtool.git] / src / rrd_dump.c
1 /*****************************************************************************
2  * RRDtool 1.2.99907080300  Copyright by Tobi Oetiker, 1997-2007
3  *****************************************************************************
4  * rrd_dump  Display a RRD
5  *****************************************************************************
6  * $Id$
7  * $Log$
8  * Revision 1.7  2004/05/25 20:53:21  oetiker
9  * prevent small leak when resources are exhausted -- Mike Slifcak
10  *
11  * Revision 1.6  2004/05/25 20:51:49  oetiker
12  * Update displayed copyright messages to be consistent. -- Mike Slifcak
13  *
14  * Revision 1.5  2003/02/13 07:05:27  oetiker
15  * Find attached the patch I promised to send to you. Please note that there
16  * are three new source files (src/rrd_is_thread_safe.h, src/rrd_thread_safe.c
17  * and src/rrd_not_thread_safe.c) and the introduction of librrd_th. This
18  * library is identical to librrd, but it contains support code for per-thread
19  * global variables currently used for error information only. This is similar
20  * to how errno per-thread variables are implemented.  librrd_th must be linked
21  * alongside of libpthred
22  *
23  * There is also a new file "THREADS", holding some documentation.
24  *
25  * -- Peter Stamfest <peter@stamfest.at>
26  *
27  * Revision 1.4  2002/02/01 20:34:49  oetiker
28  * fixed version number and date/time
29  *
30  * Revision 1.3  2001/03/10 23:54:39  oetiker
31  * Support for COMPUTE data sources (CDEF data sources). Removes the RPN
32  * parser and calculator from rrd_graph and puts then in a new file,
33  * rrd_rpncalc.c. Changes to core files rrd_create and rrd_update. Some
34  * clean-up of aberrant behavior stuff, including a bug fix.
35  * Documentation update (rrdcreate.pod, rrdupdate.pod). Change xml format.
36  * -- Jake Brutlag <jakeb@corp.webtv.net>
37  *
38  * Revision 1.2  2001/03/04 13:01:55  oetiker
39  *
40  * Revision 1.1.1.1  2001/02/25 22:25:05  oetiker
41  * checkin
42  *
43  *****************************************************************************/
44 #include "rrd_tool.h"
45 #include "rrd_rpncalc.h"
46
47 #if !(defined(NETWARE) || defined(WIN32))
48 extern char *tzname[2];
49 #endif
50
51 int rrd_dump(
52     int argc,
53     char **argv)
54 {
55     int       rc;
56
57     if (argc < 2) {
58         rrd_set_error("Not enough arguments");
59         return -1;
60     }
61
62     if (argc == 3) {
63         rc = rrd_dump_r(argv[1], argv[2]);
64     } else {
65         rc = rrd_dump_r(argv[1], NULL);
66     }
67
68     return rc;
69 }
70
71 int rrd_dump_r(
72     const char *filename,
73     char *outname)
74 {
75     unsigned int i, ii, ix, iii = 0;
76     time_t    now;
77     char      somestring[255];
78     rrd_value_t my_cdp;
79     off_t     rra_base, rra_start, rra_next;
80     rrd_file_t *rrd_file;
81     FILE     *out_file;
82     rrd_t     rrd;
83     rrd_value_t value;
84     struct tm tm;
85
86     rrd_file = rrd_open(filename, &rrd, RRD_READONLY | RRD_READAHEAD);
87     if (rrd_file == NULL) {
88         rrd_free(&rrd);
89         return (-1);
90     }
91
92     out_file = NULL;
93     if (outname) {
94         if (!(out_file = fopen(outname, "w"))) {
95             return (-1);
96         }
97     } else {
98         out_file = stdout;
99     }
100
101     fputs("<!-- Round Robin Database Dump -->", out_file);
102     fputs("<rrd>", out_file);
103     if (atoi(rrd.stat_head->version) <= 3) {
104         fprintf(out_file, "\t<version> %s </version>\n", RRD_VERSION3);
105     } else {
106         fprintf(out_file, "\t<version> %s </version>\n", RRD_VERSION);
107     }
108     fprintf(out_file, "\t<step> %lu </step> <!-- Seconds -->\n",
109             rrd.stat_head->pdp_step);
110 #if HAVE_STRFTIME
111     localtime_r(&rrd.live_head->last_up, &tm);
112     strftime(somestring, 200, "%Y-%m-%d %H:%M:%S %Z", &tm);
113 #else
114 # error "Need strftime"
115 #endif
116     fprintf(out_file, "\t<lastupdate> %ld </lastupdate> <!-- %s -->\n\n",
117             rrd.live_head->last_up, somestring);
118     for (i = 0; i < rrd.stat_head->ds_cnt; i++) {
119         fprintf(out_file, "\t<ds>\n");
120         fprintf(out_file, "\t\t<name> %s </name>\n", rrd.ds_def[i].ds_nam);
121         fprintf(out_file, "\t\t<type> %s </type>\n", rrd.ds_def[i].dst);
122         if (dst_conv(rrd.ds_def[i].dst) != DST_CDEF) {
123             fprintf(out_file,
124                     "\t\t<minimal_heartbeat> %lu </minimal_heartbeat>\n",
125                     rrd.ds_def[i].par[DS_mrhb_cnt].u_cnt);
126             if (isnan(rrd.ds_def[i].par[DS_min_val].u_val)) {
127                 fprintf(out_file, "\t\t<min> NaN </min>\n");
128             } else {
129                 fprintf(out_file, "\t\t<min> %0.10e </min>\n",
130                         rrd.ds_def[i].par[DS_min_val].u_val);
131             }
132             if (isnan(rrd.ds_def[i].par[DS_max_val].u_val)) {
133                 fprintf(out_file, "\t\t<max> NaN </max>\n");
134             } else {
135                 fprintf(out_file, "\t\t<max> %0.10e </max>\n",
136                         rrd.ds_def[i].par[DS_max_val].u_val);
137             }
138         } else {        /* DST_CDEF */
139             char     *str = NULL;
140
141             rpn_compact2str((rpn_cdefds_t *) &(rrd.ds_def[i].par[DS_cdef]),
142                             rrd.ds_def, &str);
143             fprintf(out_file, "\t\t<cdef> %s </cdef>\n", str);
144             free(str);
145         }
146         fprintf(out_file, "\n\t\t<!-- PDP Status -->\n");
147         fprintf(out_file, "\t\t<last_ds> %s </last_ds>\n",
148                 rrd.pdp_prep[i].last_ds);
149         if (isnan(rrd.pdp_prep[i].scratch[PDP_val].u_val)) {
150             fprintf(out_file, "\t\t<value> NaN </value>\n");
151         } else {
152             fprintf(out_file, "\t\t<value> %0.10e </value>\n",
153                     rrd.pdp_prep[i].scratch[PDP_val].u_val);
154         }
155         fprintf(out_file, "\t\t<unknown_sec> %lu </unknown_sec>\n",
156                 rrd.pdp_prep[i].scratch[PDP_unkn_sec_cnt].u_cnt);
157
158         fprintf(out_file, "\t</ds>\n\n");
159     }
160
161     fputs("<!-- Round Robin Archives -->", out_file);
162
163     rra_base = rrd_file->header_len;
164     rra_next = rra_base;
165
166     for (i = 0; i < rrd.stat_head->rra_cnt; i++) {
167
168         long      timer = 0;
169
170         rra_start = rra_next;
171         rra_next += (rrd.stat_head->ds_cnt
172                      * rrd.rra_def[i].row_cnt * sizeof(rrd_value_t));
173         fprintf(out_file, "\t<rra>\n");
174         fprintf(out_file, "\t\t<cf> %s </cf>\n", rrd.rra_def[i].cf_nam);
175         fprintf(out_file,
176                 "\t\t<pdp_per_row> %lu </pdp_per_row> <!-- %lu seconds -->\n\n",
177                 rrd.rra_def[i].pdp_cnt,
178                 rrd.rra_def[i].pdp_cnt * rrd.stat_head->pdp_step);
179         /* support for RRA parameters */
180         fprintf(out_file, "\t\t<params>\n");
181         switch (cf_conv(rrd.rra_def[i].cf_nam)) {
182         case CF_HWPREDICT:
183         case CF_MHWPREDICT:
184             fprintf(out_file, "\t\t<hw_alpha> %0.10e </hw_alpha>\n",
185                     rrd.rra_def[i].par[RRA_hw_alpha].u_val);
186             fprintf(out_file, "\t\t<hw_beta> %0.10e </hw_beta>\n",
187                     rrd.rra_def[i].par[RRA_hw_beta].u_val);
188             fprintf(out_file,
189                     "\t\t<dependent_rra_idx> %lu </dependent_rra_idx>\n",
190                     rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt);
191             break;
192         case CF_SEASONAL:
193         case CF_DEVSEASONAL:
194             fprintf(out_file,
195                     "\t\t<seasonal_gamma> %0.10e </seasonal_gamma>\n",
196                     rrd.rra_def[i].par[RRA_seasonal_gamma].u_val);
197             fprintf(out_file,
198                     "\t\t<seasonal_smooth_idx> %lu </seasonal_smooth_idx>\n",
199                     rrd.rra_def[i].par[RRA_seasonal_smooth_idx].u_cnt);
200             if (atoi(rrd.stat_head->version) >= 4) {
201                 fprintf(out_file,
202                         "\t\t<smoothing_window> %0.10e </smoothing_window>\n",
203                         rrd.rra_def[i].par[RRA_seasonal_smoothing_window].
204                         u_val);
205             }
206             fprintf(out_file,
207                     "\t\t<dependent_rra_idx> %lu </dependent_rra_idx>\n",
208                     rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt);
209             break;
210         case CF_FAILURES:
211             fprintf(out_file, "\t\t<delta_pos> %0.10e </delta_pos>\n",
212                     rrd.rra_def[i].par[RRA_delta_pos].u_val);
213             fprintf(out_file, "\t\t<delta_neg> %0.10e </delta_neg>\n",
214                     rrd.rra_def[i].par[RRA_delta_neg].u_val);
215             fprintf(out_file, "\t\t<window_len> %lu </window_len>\n",
216                     rrd.rra_def[i].par[RRA_window_len].u_cnt);
217             fprintf(out_file,
218                     "\t\t<failure_threshold> %lu </failure_threshold>\n",
219                     rrd.rra_def[i].par[RRA_failure_threshold].u_cnt);
220             /* fall thru */
221         case CF_DEVPREDICT:
222             fprintf(out_file,
223                     "\t\t<dependent_rra_idx> %lu </dependent_rra_idx>\n",
224                     rrd.rra_def[i].par[RRA_dependent_rra_idx].u_cnt);
225             break;
226         case CF_AVERAGE:
227         case CF_MAXIMUM:
228         case CF_MINIMUM:
229         case CF_LAST:
230         default:
231             fprintf(out_file, "\t\t<xff> %0.10e </xff>\n",
232                     rrd.rra_def[i].par[RRA_cdp_xff_val].u_val);
233             break;
234         }
235         fprintf(out_file, "\t\t</params>\n");
236         fprintf(out_file, "\t\t<cdp_prep>\n");
237         for (ii = 0; ii < rrd.stat_head->ds_cnt; ii++) {
238             unsigned long ivalue;
239
240             fprintf(out_file, "\t\t\t<ds>\n");
241             /* support for exporting all CDP parameters */
242             /* parameters common to all CFs */
243             /* primary_val and secondary_val do not need to be saved between updates
244              * so strictly speaking they could be omitted.
245              * However, they can be useful for diagnostic purposes, so are included here. */
246             value = rrd.cdp_prep[i * rrd.stat_head->ds_cnt
247                                  + ii].scratch[CDP_primary_val].u_val;
248             if (isnan(value)) {
249                 fprintf(out_file,
250                         "\t\t\t<primary_value> NaN </primary_value>\n");
251             } else {
252                 fprintf(out_file,
253                         "\t\t\t<primary_value> %0.10e </primary_value>\n",
254                         value);
255             }
256             value =
257                 rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
258                              ii].scratch[CDP_secondary_val].u_val;
259             if (isnan(value)) {
260                 fprintf(out_file,
261                         "\t\t\t<secondary_value> NaN </secondary_value>\n");
262             } else {
263                 fprintf(out_file,
264                         "\t\t\t<secondary_value> %0.10e </secondary_value>\n",
265                         value);
266             }
267             switch (cf_conv(rrd.rra_def[i].cf_nam)) {
268             case CF_HWPREDICT:
269             case CF_MHWPREDICT:
270                 value =
271                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
272                                  ii].scratch[CDP_hw_intercept].u_val;
273                 if (isnan(value)) {
274                     fprintf(out_file, "\t\t\t<intercept> NaN </intercept>\n");
275                 } else {
276                     fprintf(out_file,
277                             "\t\t\t<intercept> %0.10e </intercept>\n", value);
278                 }
279                 value =
280                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
281                                  ii].scratch[CDP_hw_last_intercept].u_val;
282                 if (isnan(value)) {
283                     fprintf(out_file,
284                             "\t\t\t<last_intercept> NaN </last_intercept>\n");
285                 } else {
286                     fprintf(out_file,
287                             "\t\t\t<last_intercept> %0.10e </last_intercept>\n",
288                             value);
289                 }
290                 value =
291                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
292                                  ii].scratch[CDP_hw_slope].u_val;
293                 if (isnan(value)) {
294                     fprintf(out_file, "\t\t\t<slope> NaN </slope>\n");
295                 } else {
296                     fprintf(out_file, "\t\t\t<slope> %0.10e </slope>\n",
297                             value);
298                 }
299                 value =
300                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
301                                  ii].scratch[CDP_hw_last_slope].u_val;
302                 if (isnan(value)) {
303                     fprintf(out_file,
304                             "\t\t\t<last_slope> NaN </last_slope>\n");
305                 } else {
306                     fprintf(out_file,
307                             "\t\t\t<last_slope> %0.10e </last_slope>\n",
308                             value);
309                 }
310                 ivalue =
311                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
312                                  ii].scratch[CDP_null_count].u_cnt;
313                 fprintf(out_file, "\t\t\t<nan_count> %lu </nan_count>\n",
314                         ivalue);
315                 ivalue =
316                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
317                                  ii].scratch[CDP_last_null_count].u_cnt;
318                 fprintf(out_file,
319                         "\t\t\t<last_nan_count> %lu </last_nan_count>\n",
320                         ivalue);
321                 break;
322             case CF_SEASONAL:
323             case CF_DEVSEASONAL:
324                 value =
325                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
326                                  ii].scratch[CDP_hw_seasonal].u_val;
327                 if (isnan(value)) {
328                     fprintf(out_file, "\t\t\t<seasonal> NaN </seasonal>\n");
329                 } else {
330                     fprintf(out_file, "\t\t\t<seasonal> %0.10e </seasonal>\n",
331                             value);
332                 }
333                 value =
334                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
335                                  ii].scratch[CDP_hw_last_seasonal].u_val;
336                 if (isnan(value)) {
337                     fprintf(out_file,
338                             "\t\t\t<last_seasonal> NaN </last_seasonal>\n");
339                 } else {
340                     fprintf(out_file,
341                             "\t\t\t<last_seasonal> %0.10e </last_seasonal>\n",
342                             value);
343                 }
344                 ivalue =
345                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
346                                  ii].scratch[CDP_init_seasonal].u_cnt;
347                 fprintf(out_file, "\t\t\t<init_flag> %lu </init_flag>\n",
348                         ivalue);
349                 break;
350             case CF_DEVPREDICT:
351                 break;
352             case CF_FAILURES:
353             {
354                 unsigned short vidx;
355                 char     *violations_array = (char *) ((void *)
356                                                        rrd.cdp_prep[i *
357                                                                     rrd.
358                                                                     stat_head->
359                                                                     ds_cnt +
360                                                                     ii].
361                                                        scratch);
362                 fprintf(out_file, "\t\t\t<history> ");
363                 for (vidx = 0;
364                      vidx < rrd.rra_def[i].par[RRA_window_len].u_cnt;
365                      ++vidx) {
366                     fprintf(out_file, "%d", violations_array[vidx]);
367                 }
368                 fprintf(out_file, " </history>\n");
369             }
370                 break;
371             case CF_AVERAGE:
372             case CF_MAXIMUM:
373             case CF_MINIMUM:
374             case CF_LAST:
375             default:
376                 value =
377                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
378                                  ii].scratch[CDP_val].u_val;
379                 if (isnan(value)) {
380                     fprintf(out_file, "\t\t\t<value> NaN </value>\n");
381                 } else {
382                     fprintf(out_file, "\t\t\t<value> %0.10e </value>\n",
383                             value);
384                 }
385                 fprintf(out_file,
386                         "\t\t\t<unknown_datapoints> %lu </unknown_datapoints>\n",
387                         rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
388                                      ii].scratch[CDP_unkn_pdp_cnt].u_cnt);
389                 break;
390             }
391             fprintf(out_file, "\t\t\t</ds>\n");
392         }
393         fprintf(out_file, "\t\t</cdp_prep>\n");
394
395         fprintf(out_file, "\t\t<database>\n");
396         rrd_seek(rrd_file, (rra_start + (rrd.rra_ptr[i].cur_row + 1)
397                             * rrd.stat_head->ds_cnt
398                             * sizeof(rrd_value_t)), SEEK_SET);
399         timer = -(rrd.rra_def[i].row_cnt - 1);
400         ii = rrd.rra_ptr[i].cur_row;
401         for (ix = 0; ix < rrd.rra_def[i].row_cnt; ix++) {
402             ii++;
403             if (ii >= rrd.rra_def[i].row_cnt) {
404                 rrd_seek(rrd_file, rra_start, SEEK_SET);
405                 ii = 0; /* wrap if max row cnt is reached */
406             }
407             now = (rrd.live_head->last_up
408                    - rrd.live_head->last_up
409                    % (rrd.rra_def[i].pdp_cnt * rrd.stat_head->pdp_step))
410                 + (timer * rrd.rra_def[i].pdp_cnt * rrd.stat_head->pdp_step);
411
412             timer++;
413 #if HAVE_STRFTIME
414             localtime_r(&now, &tm);
415             strftime(somestring, 200, "%Y-%m-%d %H:%M:%S %Z", &tm);
416 #else
417 # error "Need strftime"
418 #endif
419             fprintf(out_file, "\t\t\t<!-- %s / %d --> <row>", somestring,
420                     (int) now);
421             for (iii = 0; iii < rrd.stat_head->ds_cnt; iii++) {
422                 rrd_read(rrd_file, &my_cdp, sizeof(rrd_value_t) * 1);
423                 if (isnan(my_cdp)) {
424                     fprintf(out_file, "<v> NaN </v>");
425                 } else {
426                     fprintf(out_file, "<v> %0.10e </v>", my_cdp);
427                 };
428             }
429             fprintf(out_file, "</row>\n");
430         }
431         fprintf(out_file, "\t\t</database>\n\t</rra>\n");
432
433     }
434     fprintf(out_file, "</rrd>\n");
435     rrd_free(&rrd);
436     if (out_file != stdout) {
437         fclose(out_file);
438     }
439     return rrd_close(rrd_file);
440 }