]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/edit.c
New debug code + update Python prototypes
[bacula/bacula] / bacula / src / lib / edit.c
1 /*
2  *   edit.c  edit string to ascii, and ascii to internal 
3  * 
4  *    Kern Sibbald, December MMII
5  *
6  *   Version $Id$
7  */
8
9 /*
10    Copyright (C) 2000-2004 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"
30 #include <math.h>
31
32 /* We assume ASCII input and don't worry about overflow */
33 uint64_t str_to_uint64(char *str) 
34 {
35    register char *p = str;
36    register uint64_t value = 0;
37
38    if (!p) {
39       return 0;
40    }
41    while (B_ISSPACE(*p)) {
42       p++;
43    }
44    if (*p == '+') {
45       p++;
46    }
47    while (B_ISDIGIT(*p)) {
48       value = value * 10 + *p - '0';
49       p++;
50    }
51    return value;
52 }
53
54 int64_t str_to_int64(char *str) 
55 {
56    register char *p = str;
57    register int64_t value;
58    bool negative = false;
59
60    if (!p) {
61       return 0;
62    }
63    while (B_ISSPACE(*p)) {
64       p++;
65    }
66    if (*p == '+') {
67       p++;
68    } else if (*p == '-') {
69       negative = true;
70       p++;
71    }
72    value = str_to_uint64(p);
73    if (negative) {
74       value = -value;
75    }
76    return value;
77 }
78
79
80 /*
81  * Edit an integer number with commas, the supplied buffer
82  * must be at least 27 bytes long.  The incoming number
83  * is always widened to 64 bits.
84  */
85 char *edit_uint64_with_commas(uint64_t val, char *buf)
86 {
87    /*  
88     * Replacement for sprintf(buf, "%" llu, val)
89     */
90    char mbuf[50];
91    mbuf[sizeof(mbuf)-1] = 0;
92    int i = sizeof(mbuf)-2;                 /* edit backward */
93    if (val == 0) {
94       mbuf[i--] = '0';
95    } else {
96       while (val != 0) {
97          mbuf[i--] = "0123456789"[val%10];
98          val /= 10;
99       }
100    }
101    strcpy(buf, &mbuf[i+1]);
102    return add_commas(buf, buf);
103 }
104
105 /*
106  * Edit an integer number, the supplied buffer
107  * must be at least 27 bytes long.  The incoming number
108  * is always widened to 64 bits.
109  */
110 char *edit_uint64(uint64_t val, char *buf)
111 {
112    /*  
113     * Replacement for sprintf(buf, "%" llu, val)
114     */
115    char mbuf[50];
116    mbuf[sizeof(mbuf)-1] = 0;
117    int i = sizeof(mbuf)-2;                 /* edit backward */
118    if (val == 0) {
119       mbuf[i--] = '0';
120    } else {
121       while (val != 0) {
122          mbuf[i--] = "0123456789"[val%10];
123          val /= 10;
124       }
125    }
126    strcpy(buf, &mbuf[i+1]);
127    return buf;
128 }
129
130 /*
131  * Given a string "str", separate the integer part into
132  *   str, and the modifier into mod.
133  */
134 static bool get_modifier(char *str, char *num, int num_len, char *mod, int mod_len)
135 {
136    int i, len, num_begin, num_end, mod_begin, mod_end;
137          
138    /*
139     * Look for modifier by walking back looking for the first
140     *   space or digit.
141     */
142    strip_trailing_junk(str);
143    len = strlen(str);
144
145    for (i=0; i<len; i++) {
146       if (!B_ISSPACE(str[i])) {
147          break;
148       }
149    }
150    num_begin = i;
151
152    /* Walk through integer part */
153    for ( ; i<len; i++) {
154       if (!B_ISDIGIT(str[i])) {
155          break;
156       }
157    }
158    num_end = i;
159    if (num_len > (num_end - num_begin + 1)) {
160       num_len = num_end - num_begin + 1;
161    }
162    if (num_len == 0) {
163       return false;
164    }
165    for ( ; i<len; i++) {
166       if (!B_ISSPACE(str[i])) {
167          break;
168       }
169    }
170    mod_begin = i;
171    for ( ; i<len; i++) {
172       if (!B_ISALPHA(str[i])) {
173          break;
174       }
175    }
176    mod_end = i;
177    if (mod_len > (mod_end - mod_begin + 1)) {
178       mod_len = mod_end - mod_begin + 1;
179    }
180    Dmsg5(900, "str=%s: num_beg=%d num_end=%d mod_beg=%d mod_end=%d\n",
181       str, num_begin, num_end, mod_begin, mod_end);
182    bstrncpy(num, &str[num_begin], num_len);
183    bstrncpy(mod, &str[mod_begin], mod_len);
184    if (!is_a_number(num)) {
185       return false;
186    }
187    bstrncpy(str, &str[mod_end], len);
188
189    return true;
190 }
191
192 /*
193  * Convert a string duration to utime_t (64 bit seconds)
194  * Returns 0: if error
195            1: if OK, and value stored in value
196  */
197 int duration_to_utime(char *str, utime_t *value)
198 {
199    int i, mod_len;
200    double val, total = 0.0;
201    char mod_str[20];
202    char num_str[50];
203    /*
204     * The "n" = mins and months appears before minutes so that m maps
205     *   to months. These "kludges" make it compatible with pre 1.31 
206     *   Baculas.
207     */
208    static const char *mod[] = {"n", "seconds", "months", "minutes", 
209                   "hours", "days", "weeks",   "quarters",   "years", NULL};
210    static const int32_t mult[] = {60,   1, 60*60*24*30, 60, 
211                   60*60, 60*60*24, 60*60*24*7, 60*60*24*91, 60*60*24*365};
212
213    while (*str) {
214       if (!get_modifier(str, num_str, sizeof(num_str), mod_str, sizeof(mod_str))) {
215          return 0;
216       }
217       /* Now find the multiplier corresponding to the modifier */
218       mod_len = strlen(mod_str);
219       if (mod_len == 0) {
220          i = 1;                          /* assume seconds */
221       } else {
222          for (i=0; mod[i]; i++) {
223             if (strncasecmp(mod_str, mod[i], mod_len) == 0) {
224                break;
225             }
226          }
227          if (mod[i] == NULL) {
228             i = 1;                       /* no modifier, assume secs */
229          }
230       }
231       Dmsg2(900, "str=%s: mult=%d\n", num_str, mult[i]);
232       errno = 0;
233       val = strtod(num_str, NULL);
234       if (errno != 0 || val < 0) {
235          return 0;
236       }
237       total += val * mult[i];
238    }
239    *value = (utime_t)total;
240    return 1;
241 }
242
243 /*
244  * Edit a utime "duration" into ASCII
245  */
246 char *edit_utime(utime_t val, char *buf, int buf_len)
247 {
248    char mybuf[200];
249    static const int32_t mult[] = {60*60*24*365, 60*60*24*30, 60*60*24, 60*60, 60};
250    static const char *mod[]  = {"year",  "month",  "day", "hour", "min"};
251    int i;
252    uint32_t times;
253
254    *buf = 0;
255    for (i=0; i<5; i++) {
256       times = (uint32_t)(val / mult[i]);
257       if (times > 0) {
258          val = val - (utime_t)times * mult[i];
259          bsnprintf(mybuf, sizeof(mybuf), "%d %s%s ", times, mod[i], times>1?"s":"");
260          bstrncat(buf, mybuf, buf_len);
261       }
262    }
263    if (val == 0 && strlen(buf) == 0) {     
264       bstrncat(buf, "0 secs", buf_len);
265    } else if (val != 0) {
266       bsnprintf(mybuf, sizeof(mybuf), "%d sec%s", (uint32_t)val, val>1?"s":"");
267       bstrncat(buf, mybuf, buf_len);
268    }
269    return buf;
270 }
271
272 /*
273  * Convert a size in bytes to uint64_t
274  * Returns 0: if error
275            1: if OK, and value stored in value
276  */
277 int size_to_uint64(char *str, int str_len, uint64_t *value)
278 {
279    int i, mod_len;
280    double val;
281    char mod_str[20];
282    char num_str[50];
283    static const char *mod[]  = {"*", "k", "kb", "m", "mb",  "g", "gb",  NULL}; /* first item * not used */
284    const int64_t mult[] = {1,             /* byte */
285                            1024,          /* kilobyte */
286                            1000,          /* kb kilobyte */
287                            1048576,       /* megabyte */
288                            1000000,       /* mb megabyte */
289                            1073741824,    /* gigabyte */
290                            1000000000};   /* gb gigabyte */
291
292    if (!get_modifier(str, num_str, sizeof(num_str), mod_str, sizeof(mod_str))) {
293       return 0;
294    }
295    /* Now find the multiplier corresponding to the modifier */
296    mod_len = strlen(mod_str);
297    for (i=0; mod[i]; i++) {
298       if (strncasecmp(mod_str, mod[i], mod_len) == 0) {
299          break;
300       }
301    }
302    if (mod[i] == NULL) {
303       i = 0;                          /* no modifier found, assume 1 */
304    }
305    Dmsg2(900, "str=%s: mult=%d\n", str, mult[i]);
306    errno = 0;
307    val = strtod(num_str, NULL);
308    if (errno != 0 || val < 0) {
309       return 0;
310    }
311   *value = (utime_t)(val * mult[i]);
312    return 1;
313 }
314
315 /*
316  * Check if specified string is a number or not.
317  *  Taken from SQLite, cool, thanks.
318  */
319 bool is_a_number(const char *n)
320 {
321    bool digit_seen = false;
322
323    if( *n == '-' || *n == '+' ) {
324       n++;
325    }
326    while (B_ISDIGIT(*n)) {
327       digit_seen = true;
328       n++;
329    }
330    if (digit_seen && *n == '.') {
331       n++;
332       while (B_ISDIGIT(*n)) { n++; }
333    }
334    if (digit_seen && (*n == 'e' || *n == 'E')
335        && (B_ISDIGIT(n[1]) || ((n[1]=='-' || n[1] == '+') && B_ISDIGIT(n[2])))) {
336       n += 2;                         /* skip e- or e+ or e digit */
337       while (B_ISDIGIT(*n)) { n++; }
338    }
339    return digit_seen && *n==0;
340 }
341
342 /*
343  * Check if the specified string is an integer   
344  */
345 bool is_an_integer(const char *n)
346 {
347    bool digit_seen = false;
348    while (B_ISDIGIT(*n)) {
349       digit_seen = true;
350       n++;
351    }
352    return digit_seen && *n==0;
353 }
354
355 /*
356  * Check if Bacula Resoure Name is valid
357  */
358 /* 
359  * Check if the Volume name has legal characters
360  * If ua is non-NULL send the message
361  */
362 bool is_name_valid(char *name, POOLMEM **msg)
363 {
364    int len;
365    char *p;
366    /* Special characters to accept */
367    const char *accept = ":.-_ ";
368
369    /* Restrict the characters permitted in the Volume name */
370    for (p=name; *p; p++) {
371       if (B_ISALPHA(*p) || B_ISDIGIT(*p) || strchr(accept, (int)(*p))) {
372          continue;
373       }
374       if (msg) {
375          Mmsg(msg, _("Illegal character \"%c\" in name.\n"), *p);
376       }
377       return false;
378    }
379    len = strlen(name);
380    if (len >= MAX_NAME_LENGTH) {
381       if (msg) {
382          Mmsg(msg, _("Name too long.\n"));
383       }
384       return false;
385    }
386    if (len == 0) {
387       if (msg) {
388          Mmsg(msg,  _("Volume name must be at least one character long.\n"));
389       }
390       return false;
391    }
392    return true;
393 }
394
395
396
397 /*
398  * Add commas to a string, which is presumably
399  * a number.  
400  */
401 char *add_commas(char *val, char *buf)
402 {
403    int len, nc;
404    char *p, *q;
405    int i;
406
407    if (val != buf) {
408       strcpy(buf, val);
409    }
410    len = strlen(buf);
411    if (len < 1) {
412       len = 1;
413    }
414    nc = (len - 1) / 3;
415    p = buf+len;
416    q = p + nc;
417    *q-- = *p--;
418    for ( ; nc; nc--) {
419       for (i=0; i < 3; i++) {
420           *q-- = *p--;
421       }
422       *q-- = ',';
423    }   
424    return buf;
425 }
426
427 #ifdef TEST_PROGRAM
428 void d_msg(const char*, int, int, const char*, ...)
429 {}
430 int main(int argc, char *argv[])
431 {
432    char *str[] = {"3", "3n", "3 hours", "3.5 day", "3 week", "3 m", "3 q", "3 years"};
433    utime_t val;
434    char buf[100];
435    char outval[100];
436
437    for (int i=0; i<8; i++) {
438       strcpy(buf, str[i]);
439       if (!duration_to_utime(buf, &val)) {
440          printf("Error return from duration_to_utime for in=%s\n", str[i]);
441          continue;
442       }
443       edit_utime(val, outval);
444       printf("in=%s val=%" lld " outval=%s\n", str[i], val, outval);
445    }
446 }
447 #endif