8f88d6898f68a89b037b35059b86b18d2316e968
[rrdtool.git] / src / rrd_info.c
1 /*****************************************************************************
2  * RRDtool 1.2.99907080300  Copyright by Tobi Oetiker, 1997-2007
3  *****************************************************************************
4  * rrd_info  Get Information about the configuration of an RRD
5  *****************************************************************************/
6
7 #include "rrd_tool.h"
8 #include "rrd_rpncalc.h"
9 #include <stdarg.h>
10
11 /* proto */
12 info_t   *rrd_info(
13     int,
14     char **);
15 info_t   *rrd_info_r(
16     char *filename);
17
18 /* allocate memory for string */
19 char     *sprintf_alloc(
20     char *fmt,
21     ...)
22 {
23 #ifdef HAVE_VSNPRINTF
24     int       maxlen = 50;
25 #else
26     int       maxlen = 1000;
27 #endif
28     char     *str = NULL;
29     va_list   argp;
30     str = malloc(sizeof(char) * (strlen(fmt) + maxlen));
31     if (str != NULL) {
32         va_start(argp, fmt);
33 #ifdef HAVE_VSNPRINTF
34         vsnprintf(str, maxlen - 1, fmt, argp);
35 #else
36         vsprintf(str, fmt, argp);
37 #endif
38     }
39     va_end(argp);
40     return str;
41 }
42
43 /* the function formerly known as push was renamed info_push because
44  * it is now used outside the scope of this file */
45 info_t
46          *info_push(
47     info_t *info,
48     char *key,
49     enum info_type type,
50     infoval value)
51 {
52     info_t   *next;
53
54     next = malloc(sizeof(*next));
55     next->next = (info_t *) 0;
56     if (info)
57         info->next = next;
58     next->type = type;
59     next->key = key;
60     switch (type) {
61     case RD_I_VAL:
62         next->value.u_val = value.u_val;
63         break;
64     case RD_I_CNT:
65         next->value.u_cnt = value.u_cnt;
66         break;
67     case RD_I_INT:
68         next->value.u_int = value.u_int;
69         break;
70     case RD_I_STR:
71         next->value.u_str = malloc(sizeof(char) * (strlen(value.u_str) + 1));
72         strcpy(next->value.u_str, value.u_str);
73         break;
74     }
75     return (next);
76 }
77
78
79 info_t   *rrd_info(
80     int argc,
81     char **argv)
82 {
83     info_t   *info;
84
85     if (argc < 2) {
86         rrd_set_error("please specify an rrd");
87         return NULL;
88     }
89
90     info = rrd_info_r(argv[1]);
91
92     return (info);
93 }
94
95
96
97 info_t   *rrd_info_r(
98     char *filename)
99 {
100     unsigned int i, ii = 0;
101     rrd_t     rrd;
102     info_t   *data = NULL, *cd;
103     infoval   info;
104     rrd_file_t *rrd_file;
105     enum cf_en current_cf;
106     enum dst_en current_ds;
107
108     rrd_file = rrd_open(filename, &rrd, RRD_READONLY);
109     if (rrd_file == NULL)
110         goto err_free;
111
112     info.u_str = filename;
113     cd = info_push(NULL, sprintf_alloc("filename"), RD_I_STR, info);
114     data = cd;
115
116     info.u_str = rrd.stat_head->version;
117     cd = info_push(cd, sprintf_alloc("rrd_version"), RD_I_STR, info);
118
119     info.u_cnt = rrd.stat_head->pdp_step;
120     cd = info_push(cd, sprintf_alloc("step"), RD_I_CNT, info);
121
122     info.u_cnt = rrd.live_head->last_up;
123     cd = info_push(cd, sprintf_alloc("last_update"), RD_I_CNT, info);
124
125     for (i = 0; i < rrd.stat_head->ds_cnt; i++) {
126
127         info.u_str = rrd.ds_def[i].dst;
128         cd = info_push(cd, sprintf_alloc("ds[%s].type", rrd.ds_def[i].ds_nam),
129                        RD_I_STR, info);
130
131         current_ds = dst_conv(rrd.ds_def[i].dst);
132         switch (current_ds) {
133         case DST_CDEF:
134         {
135             char     *buffer = NULL;
136
137             rpn_compact2str((rpn_cdefds_t *) &(rrd.ds_def[i].par[DS_cdef]),
138                             rrd.ds_def, &buffer);
139             info.u_str = buffer;
140             cd = info_push(cd,
141                            sprintf_alloc("ds[%s].cdef", rrd.ds_def[i].ds_nam),
142                            RD_I_STR, info);
143             free(buffer);
144         }
145             break;
146         default:
147             info.u_cnt = rrd.ds_def[i].par[DS_mrhb_cnt].u_cnt;
148             cd = info_push(cd,
149                            sprintf_alloc("ds[%s].minimal_heartbeat",
150                                          rrd.ds_def[i].ds_nam), RD_I_CNT,
151                            info);
152
153             info.u_val = rrd.ds_def[i].par[DS_min_val].u_val;
154             cd = info_push(cd,
155                            sprintf_alloc("ds[%s].min", rrd.ds_def[i].ds_nam),
156                            RD_I_VAL, info);
157
158             info.u_val = rrd.ds_def[i].par[DS_max_val].u_val;
159             cd = info_push(cd,
160                            sprintf_alloc("ds[%s].max", rrd.ds_def[i].ds_nam),
161                            RD_I_VAL, info);
162             break;
163         }
164
165         info.u_str = rrd.pdp_prep[i].last_ds;
166         cd = info_push(cd,
167                        sprintf_alloc("ds[%s].last_ds", rrd.ds_def[i].ds_nam),
168                        RD_I_STR, info);
169
170         info.u_val = rrd.pdp_prep[i].scratch[PDP_val].u_val;
171         cd = info_push(cd,
172                        sprintf_alloc("ds[%s].value", rrd.ds_def[i].ds_nam),
173                        RD_I_VAL, info);
174
175         info.u_cnt = rrd.pdp_prep[i].scratch[PDP_unkn_sec_cnt].u_cnt;
176         cd = info_push(cd,
177                        sprintf_alloc("ds[%s].unknown_sec",
178                                      rrd.ds_def[i].ds_nam), RD_I_CNT, info);
179     }
180
181     for (i = 0; i < rrd.stat_head->rra_cnt; i++) {
182         info.u_str = rrd.rra_def[i].cf_nam;
183         cd = info_push(cd, sprintf_alloc("rra[%d].cf", i), RD_I_STR, info);
184         current_cf = cf_conv(rrd.rra_def[i].cf_nam);
185
186         info.u_cnt = rrd.rra_def[i].row_cnt;
187         cd = info_push(cd, sprintf_alloc("rra[%d].rows", i), RD_I_CNT, info);
188
189         info.u_cnt = rrd.rra_def[i].pdp_cnt;
190         cd = info_push(cd, sprintf_alloc("rra[%d].pdp_per_row", i), RD_I_CNT,
191                        info);
192
193         switch (current_cf) {
194         case CF_HWPREDICT:
195         case CF_MHWPREDICT:
196             info.u_val = rrd.rra_def[i].par[RRA_hw_alpha].u_val;
197             cd = info_push(cd, sprintf_alloc("rra[%d].alpha", i), RD_I_VAL,
198                            info);
199             info.u_val = rrd.rra_def[i].par[RRA_hw_beta].u_val;
200             cd = info_push(cd, sprintf_alloc("rra[%d].beta", i), RD_I_VAL,
201                            info);
202             break;
203         case CF_SEASONAL:
204         case CF_DEVSEASONAL:
205             info.u_val = rrd.rra_def[i].par[RRA_seasonal_gamma].u_val;
206             cd = info_push(cd, sprintf_alloc("rra[%d].gamma", i), RD_I_VAL,
207                            info);
208             if (atoi(rrd.stat_head->version) >= 4) {
209                     info.u_val = rrd.rra_def[i].par[RRA_seasonal_smoothing_window].u_val;
210                     cd = info_push(cd, sprintf_alloc("rra[%d].smoothing_window", i), RD_I_VAL,
211                                    info);
212             }
213             break;
214         case CF_FAILURES:
215             info.u_val = rrd.rra_def[i].par[RRA_delta_pos].u_val;
216             cd = info_push(cd, sprintf_alloc("rra[%d].delta_pos", i),
217                            RD_I_VAL, info);
218             info.u_val = rrd.rra_def[i].par[RRA_delta_neg].u_val;
219             cd = info_push(cd, sprintf_alloc("rra[%d].delta_neg", i),
220                            RD_I_VAL, info);
221             info.u_cnt = rrd.rra_def[i].par[RRA_failure_threshold].u_cnt;
222             cd = info_push(cd, sprintf_alloc("rra[%d].failure_threshold", i),
223                            RD_I_CNT, info);
224             info.u_cnt = rrd.rra_def[i].par[RRA_window_len].u_cnt;
225             cd = info_push(cd, sprintf_alloc("rra[%d].window_length", i),
226                            RD_I_CNT, info);
227             break;
228         case CF_DEVPREDICT:
229             break;
230         default:
231             info.u_val = rrd.rra_def[i].par[RRA_cdp_xff_val].u_val;
232             cd = info_push(cd, sprintf_alloc("rra[%d].xff", i), RD_I_VAL,
233                            info);
234             break;
235         }
236
237         for (ii = 0; ii < rrd.stat_head->ds_cnt; ii++) {
238             switch (current_cf) {
239             case CF_HWPREDICT:
240             case CF_MHWPREDICT:
241                 info.u_val =
242                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
243                                  ii].scratch[CDP_hw_intercept].u_val;
244                 cd = info_push(cd,
245                                sprintf_alloc("rra[%d].cdp_prep[%d].intercept",
246                                              i, ii), RD_I_VAL, info);
247                 info.u_val =
248                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
249                                  ii].scratch[CDP_hw_slope].u_val;
250                 cd = info_push(cd,
251                                sprintf_alloc("rra[%d].cdp_prep[%d].slope", i,
252                                              ii), RD_I_VAL, info);
253                 info.u_cnt =
254                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
255                                  ii].scratch[CDP_null_count].u_cnt;
256                 cd = info_push(cd,
257                                sprintf_alloc("rra[%d].cdp_prep[%d].NaN_count",
258                                              i, ii), RD_I_CNT, info);
259                 break;
260             case CF_SEASONAL:
261                 info.u_val =
262                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
263                                  ii].scratch[CDP_hw_seasonal].u_val;
264                 cd = info_push(cd,
265                                sprintf_alloc("rra[%d].cdp_prep[%d].seasonal",
266                                              i, ii), RD_I_VAL, info);
267                 break;
268             case CF_DEVSEASONAL:
269                 info.u_val =
270                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
271                                  ii].scratch[CDP_seasonal_deviation].u_val;
272                 cd = info_push(cd,
273                                sprintf_alloc("rra[%d].cdp_prep[%d].deviation",
274                                              i, ii), RD_I_VAL, info);
275                 break;
276             case CF_DEVPREDICT:
277                 break;
278             case CF_FAILURES:
279             {
280                 unsigned short j;
281                 char     *violations_array;
282                 char      history[MAX_FAILURES_WINDOW_LEN + 1];
283
284                 violations_array =
285                     (char *) rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
286                                           ii].scratch;
287                 for (j = 0; j < rrd.rra_def[i].par[RRA_window_len].u_cnt; ++j)
288                     history[j] = (violations_array[j] == 1) ? '1' : '0';
289                 history[j] = '\0';
290                 info.u_str = history;
291                 cd = info_push(cd,
292                                sprintf_alloc("rra[%d].cdp_prep[%d].history",
293                                              i, ii), RD_I_STR, info);
294             }
295                 break;
296             default:
297                 info.u_val =
298                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
299                                  ii].scratch[CDP_val].u_val;
300                 cd = info_push(cd,
301                                sprintf_alloc("rra[%d].cdp_prep[%d].value", i,
302                                              ii), RD_I_VAL, info);
303                 info.u_cnt =
304                     rrd.cdp_prep[i * rrd.stat_head->ds_cnt +
305                                  ii].scratch[CDP_unkn_pdp_cnt].u_cnt;
306                 cd = info_push(cd,
307                                sprintf_alloc
308                                ("rra[%d].cdp_prep[%d].unknown_datapoints", i,
309                                 ii), RD_I_CNT, info);
310                 break;
311             }
312         }
313     }
314
315     rrd_close(rrd_file);
316   err_free:
317     rrd_free(&rrd);
318     return (data);
319 }