629d99b9ceaa3fec0a4536b6ee1f5448600b0a02
[rrdtool.git] / src / rrd_resize.c
1 /*****************************************************************************
2  * RRDtool 1.4.3  Copyright by Tobi Oetiker, 1997-2010
3  *****************************************************************************
4  * rrd_resize.c Alters size of an RRA
5  *****************************************************************************
6  * Initial version by Alex van den Bogaerdt
7  *****************************************************************************/
8
9 #include <stdlib.h>
10
11 #include "rrd_tool.h"
12
13 int rrd_resize(
14     int argc,
15     char **argv)
16 {
17     char     *infilename, outfilename[11] = "resize.rrd";
18     rrd_t     rrdold, rrdnew;
19     rrd_value_t buffer;
20     int       version;
21     unsigned long l, rra;
22     long      modify;
23     unsigned long target_rra;
24     int       grow = 0, shrink = 0;
25     char     *endptr;
26     rrd_file_t *rrd_file, *rrd_out_file;
27
28     infilename = argv[1];
29     if (!strcmp(infilename, "resize.rrd")) {
30         rrd_set_error("resize.rrd is a reserved name");
31         return (-1);
32     }
33     if (argc != 5) {
34         rrd_set_error("wrong number of parameters");
35         return (-1);
36     }
37
38     target_rra = strtol(argv[2], &endptr, 0);
39
40     if (!strcmp(argv[3], "GROW"))
41         grow = 1;
42     else if (!strcmp(argv[3], "SHRINK"))
43         shrink = 1;
44     else {
45         rrd_set_error("I can only GROW or SHRINK");
46         return (-1);
47     }
48
49     modify = strtol(argv[4], &endptr, 0);
50
51     if ((modify < 1)) {
52         rrd_set_error("Please grow or shrink with at least 1 row");
53         return (-1);
54     }
55
56     if (shrink)
57         modify = -modify;
58
59
60     rrd_init(&rrdold);
61     rrd_file = rrd_open(infilename, &rrdold, RRD_READWRITE | RRD_COPY);
62     if (rrd_file == NULL) {
63         rrd_free(&rrdold);
64         return (-1);
65     }
66
67     if (rrd_lock(rrd_file) != 0) {
68         rrd_set_error("could not lock original RRD");
69         rrd_free(&rrdold);
70         rrd_close(rrd_file);
71         return (-1);
72     }
73
74
75     if (target_rra >= rrdold.stat_head->rra_cnt) {
76         rrd_set_error("no such RRA in this RRD");
77         rrd_free(&rrdold);
78         rrd_close(rrd_file);
79         return (-1);
80     }
81
82     if (modify < 0)
83         if ((long) rrdold.rra_def[target_rra].row_cnt <= -modify) {
84             rrd_set_error("This RRA is not that big");
85             rrd_free(&rrdold);
86             rrd_close(rrd_file);
87             return (-1);
88         }
89
90     rrd_init(&rrdnew);
91     /* These need to be initialised before calling rrd_open() with 
92        the RRD_CREATE flag */
93
94     if ((rrdnew.stat_head = (stat_head_t*)calloc(1, sizeof(stat_head_t))) == NULL) {
95         rrd_set_error("allocating stat_head for new RRD");
96         rrd_free(&rrdold);
97         rrd_close(rrd_file);
98         return (-1);
99     }
100     memcpy(rrdnew.stat_head,rrdold.stat_head,sizeof(stat_head_t));
101
102     if ((rrdnew.rra_def = (rra_def_t *)malloc(sizeof(rra_def_t) * rrdold.stat_head->rra_cnt)) == NULL) {
103         rrd_set_error("allocating rra_def for new RRD");
104         rrd_free(&rrdnew);
105         rrd_free(&rrdold);
106         rrd_close(rrd_file);
107         return (-1);
108     }
109     memcpy(rrdnew.rra_def,rrdold.rra_def,sizeof(rra_def_t) * rrdold.stat_head->rra_cnt);
110
111     /* Set this so that the file will be created with the correct size */
112     rrdnew.rra_def[target_rra].row_cnt += modify;
113
114     rrd_out_file = rrd_open(outfilename, &rrdnew, RRD_READWRITE | RRD_CREAT);
115     if (rrd_out_file == NULL) {
116         rrd_set_error("Can't create '%s': %s", outfilename,
117                       rrd_strerror(errno));
118         rrd_free(&rrdnew);
119         rrd_free(&rrdold);
120         rrd_close(rrd_file);
121         return (-1);
122     }
123     if (rrd_lock(rrd_out_file) != 0) {
124         rrd_set_error("could not lock new RRD");
125         rrd_free(&rrdnew);
126         rrd_free(&rrdold);
127         rrd_close(rrd_file);
128         rrd_close(rrd_out_file);
129         return (-1);
130     }
131 /*XXX: do one write for those parts of header that are unchanged */
132     if ((rrdnew.rra_ptr = (rra_ptr_t *)malloc(sizeof(rra_ptr_t) * rrdold.stat_head->rra_cnt)) == NULL) {
133         rrd_set_error("allocating rra_ptr for new RRD");
134         rrd_free(&rrdnew);
135         rrd_free(&rrdold);
136         rrd_close(rrd_file);
137         rrd_close(rrd_out_file);
138         return (-1);
139     }
140
141     /* Put this back the way it was so that the rest of the algorithm
142        below remains unchanged, it will be corrected later */
143     rrdnew.rra_def[target_rra].row_cnt -= modify;
144
145     rrdnew.ds_def = rrdold.ds_def;
146     rrdnew.live_head = rrdold.live_head;
147     rrdnew.pdp_prep = rrdold.pdp_prep;
148     rrdnew.cdp_prep = rrdold.cdp_prep;
149     memcpy(rrdnew.rra_ptr,rrdold.rra_ptr,sizeof(rra_ptr_t) * rrdold.stat_head->rra_cnt);
150
151
152     version = atoi(rrdold.stat_head->version);
153     switch (version) {
154     case 4:
155         break;        
156     case 3:
157         break;
158     case 1:
159         rrdnew.stat_head->version[3] = '3';
160         break;
161     default:
162         rrd_set_error("Do not know how to handle RRD version %s",
163                       rrdold.stat_head->version);
164         rrd_free(&rrdnew);
165         rrd_free(&rrdold);
166         rrd_close(rrd_file);
167         rrd_close(rrd_out_file);
168         return (-1);
169         break;
170     }
171
172 /* XXX: Error checking? */
173     rrd_write(rrd_out_file, rrdnew.stat_head, sizeof(stat_head_t) * 1);
174     rrd_write(rrd_out_file, rrdnew.ds_def,
175               sizeof(ds_def_t) * rrdnew.stat_head->ds_cnt);
176     rrd_write(rrd_out_file, rrdnew.rra_def,
177               sizeof(rra_def_t) * rrdnew.stat_head->rra_cnt);
178     rrd_write(rrd_out_file, rrdnew.live_head, sizeof(live_head_t) * 1);
179     rrd_write(rrd_out_file, rrdnew.pdp_prep,
180               sizeof(pdp_prep_t) * rrdnew.stat_head->ds_cnt);
181     rrd_write(rrd_out_file, rrdnew.cdp_prep,
182               sizeof(cdp_prep_t) * rrdnew.stat_head->ds_cnt *
183               rrdnew.stat_head->rra_cnt);
184     rrd_write(rrd_out_file, rrdnew.rra_ptr,
185               sizeof(rra_ptr_t) * rrdnew.stat_head->rra_cnt);
186
187     /* Move the CDPs from the old to the new database.
188      ** This can be made (much) faster but isn't worth the effort. Clarity
189      ** is much more important.
190      */
191
192     /* Move data in unmodified RRAs
193      */
194     l = 0;
195     for (rra = 0; rra < target_rra; rra++) {
196         l += rrdnew.stat_head->ds_cnt * rrdnew.rra_def[rra].row_cnt;
197     }
198     while (l > 0) {
199         rrd_read(rrd_file, &buffer, sizeof(rrd_value_t) * 1);
200         rrd_write(rrd_out_file, &buffer, sizeof(rrd_value_t) * 1);
201         l--;
202     }
203     /* Move data in this RRA, either removing or adding some rows
204      */
205     if (modify > 0) {
206         /* Adding extra rows; insert unknown values just after the
207          ** current row number.
208          */
209         l = rrdnew.stat_head->ds_cnt *
210             (rrdnew.rra_ptr[target_rra].cur_row + 1);
211         while (l > 0) {
212             rrd_read(rrd_file, &buffer, sizeof(rrd_value_t) * 1);
213             rrd_write(rrd_out_file, &buffer, sizeof(rrd_value_t) * 1);
214             l--;
215         }
216         buffer = DNAN;
217         l = rrdnew.stat_head->ds_cnt * modify;
218         while (l > 0) {
219             rrd_write(rrd_out_file, &buffer, sizeof(rrd_value_t) * 1);
220             l--;
221         }
222     } else {
223         /* Removing rows. Normally this would be just after the cursor
224          ** however this may also mean that we wrap to the beginning of
225          ** the array.
226          */
227         signed long int remove_end = 0;
228
229         remove_end =
230             (rrdnew.rra_ptr[target_rra].cur_row -
231              modify) % rrdnew.rra_def[target_rra].row_cnt;
232         if (remove_end <=
233             (signed long int) rrdnew.rra_ptr[target_rra].cur_row) {
234             while (remove_end >= 0) {
235                 rrd_seek(rrd_file,
236                          sizeof(rrd_value_t) * rrdnew.stat_head->ds_cnt,
237                          SEEK_CUR);
238                 rrdnew.rra_ptr[target_rra].cur_row--;
239                 rrdnew.rra_def[target_rra].row_cnt--;
240                 remove_end--;
241                 modify++;
242             }
243             remove_end = rrdnew.rra_def[target_rra].row_cnt - 1;
244         }
245         for (l = 0; l <= rrdnew.rra_ptr[target_rra].cur_row; l++) {
246             unsigned int tmp;
247
248             for (tmp = 0; tmp < rrdnew.stat_head->ds_cnt; tmp++) {
249                 rrd_read(rrd_file, &buffer, sizeof(rrd_value_t) * 1);
250                 rrd_write(rrd_out_file, &buffer, sizeof(rrd_value_t) * 1);
251             }
252         }
253         while (modify < 0) {
254             rrd_seek(rrd_file,
255                      sizeof(rrd_value_t) * rrdnew.stat_head->ds_cnt,
256                      SEEK_CUR);
257             rrdnew.rra_def[target_rra].row_cnt--;
258             modify++;
259         }
260     }
261     /* Move the rest of the CDPs
262      */
263     while (1) {
264         if (rrd_read(rrd_file, &buffer, sizeof(rrd_value_t) * 1) <= 0)
265             break;
266         rrd_write(rrd_out_file, &buffer, sizeof(rrd_value_t) * 1);
267     }
268     rrdnew.rra_def[target_rra].row_cnt += modify;
269     rrd_seek(rrd_out_file,
270              sizeof(stat_head_t) +
271              sizeof(ds_def_t) * rrdnew.stat_head->ds_cnt, SEEK_SET);
272     rrd_write(rrd_out_file, rrdnew.rra_def,
273               sizeof(rra_def_t) * rrdnew.stat_head->rra_cnt);
274     rrd_seek(rrd_out_file, sizeof(live_head_t), SEEK_CUR);
275     rrd_seek(rrd_out_file, sizeof(pdp_prep_t) * rrdnew.stat_head->ds_cnt,
276              SEEK_CUR);
277     rrd_seek(rrd_out_file,
278              sizeof(cdp_prep_t) * rrdnew.stat_head->ds_cnt *
279              rrdnew.stat_head->rra_cnt, SEEK_CUR);
280     rrd_write(rrd_out_file, rrdnew.rra_ptr,
281               sizeof(rra_ptr_t) * rrdnew.stat_head->rra_cnt);
282     rrd_close(rrd_file);    
283     rrd_close(rrd_out_file);    
284     rrd_free(&rrdold);
285     rrd_free(&rrdnew);
286     return (0);
287 }