source: MondoRescue/branches/2.2.9/mondo/src/common/libmondo-string.c@ 2241

Last change on this file since 2241 was 2241, checked in by Bruno Cornec, 15 years ago

r3144@localhost: bruno | 2009-06-26 12:18:08 +0200

  • Remove mr_string.c|.h useless and in de=uplication with mr_str.c|.h
  • Solve with valgrind's help some memroy leak (harmless mostly)
  • Solve a seg fault at end, when unallocating a bkpinfo member after the strcuture disallocation !
  • after mr_strtok, memory ssociated with the token needs to be free
  • Adds a new function free_newt_stuff to free newt related allocated memory
  • Do not exit if mr_free is unsuccessful, and only warn when debug > 8
  • Property svn:keywords set to Id
File size: 30.1 KB
RevLine 
[557]1/* $Id: libmondo-string.c 2241 2009-06-29 17:19:14Z bruno $ */
[1]2
3
4/**
5 * @file
6 * Functions for handling strings.
7 */
8
9#include "my-stuff.h"
[2211]10#include "mr_mem.h"
[1]11#include "mondostructures.h"
12#include "libmondo-string.h"
[541]13#include "lib-common-externs.h"
[1]14#include "libmondo-files-EXT.h"
[541]15#include "libmondo-gui-EXT.h"
[1]16#include "libmondo-tools-EXT.h"
17
18/*@unused@*/
[128]19//static char cvsid[] = "$Id: libmondo-string.c 2241 2009-06-29 17:19:14Z bruno $";
[1]20
21extern int g_current_media_number;
22extern long long g_tape_posK;
23
[1645]24/* Reference to global bkpinfo */
25extern struct s_bkpinfo *bkpinfo;
[1]26
[1645]27
[1]28/**
29 * @addtogroup stringGroup
30 * @{
31 */
32/**
33 * Build a partition name from a drive and a partition number.
34 * @param drive The drive basename of the partition name (e.g. /dev/hda)
35 * @param partno The partition number (e.g. 1)
36 * @param partition Where to put the partition name (e.g. /dev/hda1)
37 * @return @p partition.
38 * @note If @p drive ends in a digit, then 'p' (on Linux) or 's' (on *BSD) is added before @p partno.
39 */
[128]40char *build_partition_name(char *partition, const char *drive, int partno)
[1]41{
[128]42 char *p, *c;
[1]43
[128]44 assert(partition != NULL);
45 assert_string_is_neither_NULL_nor_zerolength(drive);
46 assert(partno >= 0);
[1]47
[128]48 p = strcpy(partition, drive);
49 /* is this a devfs device path? */
50 c = strrchr(partition, '/');
51 if (c && strncmp(c, "/disc", 5) == 0) {
52 /* yup it's devfs, return the "part" path */
53 strcpy(c + 1, "part");
54 p = c + 5;
55 } else {
56 p += strlen(p);
57 if (isdigit(p[-1])) {
58 *p++ =
[1]59#ifdef BSD
[128]60 's';
[1]61#else
[128]62 'p';
[1]63#endif
[128]64 }
65 }
66 sprintf(p, "%d", partno);
67 return (partition);
[1]68}
69
70
71
72
73
74
75
76
77
78
79
80
81
82/**
83 * Pad a string on both sides so it appears centered.
84 * @param in_out The string to be center-padded (modified).
85 * @param width The width of the final result.
86 */
[128]87void center_string(char *in_out, int width)
[1]88{
[128]89 char scratch[MAX_STR_LEN];
90 char *p;
91 int i; /* purpose */
92 int len; /* purpose */
93 int mid; /* purpose */
94 int x; /* purpose */
[1]95
[128]96 assert(in_out != NULL);
97 assert(width > 2);
[1]98
[128]99 if (strlen(in_out) == 0) {
100 return;
101 }
102 for (p = in_out; *p == ' '; p++);
103 strcpy(scratch, p);
[841]104 strip_spaces (scratch);
[128]105 len = (int) strlen(scratch);
106 mid = width / 2;
107 x = mid - len / 2;
108 for (i = 0; i < x; i++) {
109 in_out[i] = ' ';
110 }
111 in_out[i] = '\0';
112 strcat(in_out, scratch);
[841]113 for (i = x + len ; i < width - 1; i++) {
114 in_out[i] = ' ';
115 }
116 in_out[i] = '\0';
[1]117}
118
119
120
121
[128]122inline void turn_wildcard_chars_into_literal_chars(char *sout, char *sin)
[1]123{
124 char *p, *q;
[128]125
126 for (p = sin, q = sout; *p != '\0'; *(q++) = *(p++)) {
127 if (strchr("[]*?", *p)) {
128 *(q++) = '\\';
129 }
130 }
131 *q = *p; // for the final '\0'
[1]132}
133
134
135
136/**
137 * Add commas every third place in @p input.
138 * @param input The string to commarize.
139 * @return The string with commas.
140 * @note The returned string points to static storage that will be overwritten with each call.
141 */
[128]142char *commarize(char *input)
[1]143{
[128]144 char pos_w_commas[MAX_STR_LEN];
145 static char output[MAX_STR_LEN];
146 char tmp[MAX_STR_LEN];
147 int j;
[1]148
[128]149 assert(input != NULL);
[1]150
[128]151 strcpy(tmp, input);
152 if (strlen(tmp) > 6) {
153 strcpy(pos_w_commas, tmp);
154 j = (int) strlen(pos_w_commas);
155 tmp[j - 6] = ',';
156 strcpy(tmp + j - 5, pos_w_commas + j - 6);
[1]157// tmp[j-2] = ',';
158// strcpy(tmp+j-1, pos_w_commas+j-3);
[128]159 strcpy(pos_w_commas, tmp);
160 }
161 if (strlen(tmp) > 3) {
162 j = (int) strlen(tmp);
163 strcpy(pos_w_commas, tmp);
164 pos_w_commas[j - 3] = ',';
165 strcpy(pos_w_commas + j - 2, tmp + j - 3);
166 } else {
167 strcpy(pos_w_commas, tmp);
168 }
169 strcpy(output, pos_w_commas);
170 return (output);
[1]171}
172
173
174
175
176
177
178
179
180
181/**
182 * Turn an entry from the RAID editor's disklist into a GUI-friendly string.
183 * The format is: the device left-aligned and padded to 24 places, followed by a space and the
184 * index, right-aligned and padded to eight places. The total string length
185 * is exactly 33.
186 * @param disklist The disklist to operate on.
187 * @param lino The line number from @p disklist to convert to a string.
188 * @return The string form of the disklist entry.
189 * @note The returned string points to static storage and will be overwritten with each call.
190 */
[128]191char *disklist_entry_to_string(struct list_of_disks *disklist, int lino)
[1]192{
193
[128]194 /*@ buffers ********************************************************** */
195 static char output[MAX_STR_LEN];
[1]196
[128]197 assert(disklist != NULL);
[1]198
[128]199 sprintf(output, "%-24s %8d", disklist->el[lino].device,
200 disklist->el[lino].index);
201 return (output);
[1]202}
203
204
205
206
207
208/**
209 * Turn a "friendly" sizestring into a number of megabytes.
210 * Supports the suffixes 'k'/'K', 'm'/'M', and 'g'/'G'. Calls
211 * fatal_error() if an unknown suffix is encountered.
212 * @param incoming The sizestring to convert (e.g. "40m", "2g").
213 * @return The size in megabytes.
214 */
[128]215long friendly_sizestr_to_sizelong(char *incoming)
[1]216{
[128]217 long outval;
218 int i;
219 char *tmp;
220 char ch;
[1]221
[128]222 assert_string_is_neither_NULL_nor_zerolength(incoming);
[1]223
[128]224 malloc_string(tmp);
225 if (!incoming[0]) {
226 free(tmp);
227 return (0);
228 }
229 if (strchr(incoming, '.')) {
230 fatal_error("Please use integers only. No decimal points.");
231 }
232 strcpy(tmp, incoming);
233 i = (int) strlen(tmp);
234 if (tmp[i - 1] == 'B' || tmp[i - 1] == 'b') {
235 tmp[i - 1] = '\0';
236 }
237 for (i = 0; i < (int) strlen(tmp) && isdigit(tmp[i]); i++);
238 ch = tmp[i];
239 tmp[i] = '\0';
240 outval = atol(tmp);
241 if (ch == 'g' || ch == 'G') {
242 outval = outval * 1024;
243 } else if (ch == 'k' || ch == 'K') {
244 outval = outval / 1024;
245 } else if (ch == 't' || ch == 'T') // terabyte
246 {
247 outval *= 1048576;
248 } else if (ch == 'Y' || ch == 'y') // yottabyte - the biggest measure in the info file
249 {
250 log_it
251 ("Oh my gosh. You actually think a YOTTABYTE will get you anywhere? What're you going to do with 1,208,925,819,614,629,174,706,176 bytes of data?!?!");
252 popup_and_OK
[541]253 ("That sizespec is more than 1,208,925,819,614,629,174,706,176 bytes. You have a shocking amount of data. Please send a screenshot to the list :-)");
[128]254 fatal_error("Integer overflow.");
255 } else if (ch != 'm' && ch != 'M') {
256 sprintf(tmp, "Re: parameter '%s' - bad multiplier ('%c')",
257 incoming, ch);
258 fatal_error(tmp);
259 }
260 paranoid_free(tmp);
261 return (outval);
[1]262}
263
264
265
266/**
267 * Add spaces to the right of @p incoming to make it @p width characters wide.
268 * @param incoming The string to left-pad.
269 * @param width The width to pad it to.
270 * @return The left-padded string.
271 * @note The returned string points to static storage that will be overwritten with each call.
272 * @bug Why does center_string() modify its argument but leftpad_string() returns a modified copy?
273 */
[128]274char *leftpad_string(char *incoming, int width)
[1]275{
[128]276 /*@ buffers ***************************************************** */
277 static char output[MAX_STR_LEN];
[1]278
[128]279 /*@ ints ******************************************************** */
280 int i;
[1]281
[128]282 /*@ end vars **************************************************** */
283 assert(incoming != NULL);
284 assert(width > 2);
[1]285
[128]286 strcpy(output, incoming);
287 for (i = (int) strlen(output); i < width; i++) {
288 output[i] = ' ';
289 }
290 output[i] = '\0';
291 return (output);
[1]292}
293
294
295
296/**
297 * Turn a marker byte (e.g. BLK_START_OF_BACKUP) into a string (e.g. "BLK_START_OF_BACKUP").
298 * Unknown markers are identified as "BLK_UNKNOWN (%d)" where %d is the decimal value.
299 * @param marker The marker byte to stringify.
300 * @return @p marker as a string.
301 * @note The returned string points to static storage that will be overwritten with each call.
302 */
[128]303char *marker_to_string(int marker)
[1]304{
[128]305 /*@ buffer ****************************************************** */
306 static char outstr[MAX_STR_LEN];
[1]307
308
[128]309 /*@ end vars *************************************************** */
[1]310
[128]311 switch (marker) {
312 case BLK_START_OF_BACKUP:
313 strcpy(outstr, "BLK_START_OF_BACKUP");
314 break;
315 case BLK_START_OF_TAPE:
316 strcpy(outstr, "BLK_START_OF_TAPE");
317 break;
318 case BLK_START_AN_AFIO_OR_SLICE:
319 strcpy(outstr, "BLK_START_AN_AFIO_OR_SLICE");
320 break;
321 case BLK_STOP_AN_AFIO_OR_SLICE:
322 strcpy(outstr, "BLK_STOP_AN_AFIO_OR_SLICE");
323 break;
324 case BLK_START_AFIOBALLS:
325 strcpy(outstr, "BLK_START_AFIOBALLS");
326 break;
327 case BLK_STOP_AFIOBALLS:
328 strcpy(outstr, "BLK_STOP_AFIOBALLS");
329 break;
330 case BLK_STOP_BIGGIEFILES:
331 strcpy(outstr, "BLK_STOP_BIGGIEFILES");
332 break;
333 case BLK_START_A_NORMBIGGIE:
334 strcpy(outstr, "BLK_START_A_NORMBIGGIE");
335 break;
336 case BLK_START_A_PIHBIGGIE:
337 strcpy(outstr, "BLK_START_A_PIHBIGGIE");
338 break;
339 case BLK_START_EXTENDED_ATTRIBUTES:
340 strcpy(outstr, "BLK_START_EXTENDED_ATTRIBUTES");
341 break;
342 case BLK_STOP_EXTENDED_ATTRIBUTES:
343 strcpy(outstr, "BLK_STOP_EXTENDED_ATTRIBUTES");
344 break;
345 case BLK_START_EXAT_FILE:
346 strcpy(outstr, "BLK_START_EXAT_FILE");
347 break;
348 case BLK_STOP_EXAT_FILE:
349 strcpy(outstr, "BLK_STOP_EXAT_FILE");
350 break;
351 case BLK_START_BIGGIEFILES:
352 strcpy(outstr, "BLK_START_BIGGIEFILES");
353 break;
354 case BLK_STOP_A_BIGGIE:
355 strcpy(outstr, "BLK_STOP_A_BIGGIE");
356 break;
357 case BLK_END_OF_TAPE:
358 strcpy(outstr, "BLK_END_OF_TAPE");
359 break;
360 case BLK_END_OF_BACKUP:
361 strcpy(outstr, "BLK_END_OF_BACKUP");
362 break;
363 case BLK_ABORTED_BACKUP:
364 strcpy(outstr, "BLK_ABORTED_BACKUP");
365 break;
366 case BLK_START_FILE:
367 strcpy(outstr, "BLK_START_FILE");
368 break;
369 case BLK_STOP_FILE:
370 strcpy(outstr, "BLK_STOP_FILE");
371 break;
372 default:
373 sprintf(outstr, "BLK_UNKNOWN (%d)", marker);
374 break;
375 }
376 return (outstr);
[1]377}
378
379
380
381
382/**
383 * Turn a line from the mountlist into a GUI-friendly string.
384 * The format is as follows: the left-aligned @p device field padded to 24 places,
385 * a space, the left-aligned @p mountpoint field again padded to 24 places, a space,
386 * the left-aligned @p format field padded to 10 places, a space, and the right-aligned
387 * @p size field (in MB) padded to 8 places. The total string length is exactly 69.
388 * @param mountlist The mountlist to operate on.
389 * @param lino The line number in @p mountlist to stringify.
390 * @return The string form of <tt>mountlist</tt>-\>el[<tt>lino</tt>].
391 * @note The returned string points to static storage and will be overwritten with each call.
392 */
[128]393char *mountlist_entry_to_string(struct mountlist_itself *mountlist,
394 int lino)
[1]395{
396
[128]397 /*@ buffer *********************************************************** */
398 static char output[MAX_STR_LEN];
[1]399
[128]400 assert(mountlist != NULL);
[1]401
[128]402 sprintf(output, "%-24s %-24s %-10s %8lld", mountlist->el[lino].device,
403 mountlist->el[lino].mountpoint, mountlist->el[lino].format,
[2125]404 mountlist->el[lino].size / 1024L);
[128]405 return (output);
[1]406}
407
408
409
410
411
412
413/**
414 * Generate a friendly string containing "X blah blah disk(s)"
415 * @param noof_disks The number of disks (the X).
416 * @param label The "blah blah" part in the middle. If you leave this blank
417 * there will be a weird double space in the middle, so pass *something*.
418 * @return The string containing "X blah blah disk(s)".
419 * @note The returned string points to static storage and will be overwritten with each call.
420 */
[128]421char *number_of_disks_as_string(int noof_disks, char *label)
[1]422{
423
[128]424 /*@ buffers ********************************************************* */
425 static char output[MAX_STR_LEN];
[1]426
[128]427 /*@ char ******************************************************** */
428 char p;
[1]429
[128]430 assert(label != NULL);
[1]431
[128]432 if (noof_disks > 1) {
433 p = 's';
434 } else {
435 p = ' ';
436 }
437 sprintf(output, "%d %s disk%c", noof_disks, label, p);
438 while (strlen(output) < 14) {
439 strcat(output, " ");
440 }
441 return (output);
[1]442}
443
444
445
446/**
447 * Change @p i into a friendly string. If @p i is \<= 10 then write out the
448 * number (e.g. "one", "two", ..., "nine", "ten", "11", ...).
449 * @param i The number to stringify.
450 * @return The string form of @p i.
451 * @note The returned value points to static strorage that will be overwritten with each call.
452 */
[128]453char *number_to_text(int i)
[1]454{
455
[128]456 /*@ buffers ***************************************************** */
457 static char output[MAX_STR_LEN];
[1]458
459
[128]460 /*@ end vars *************************************************** */
[1]461
[128]462 switch (i) {
463 case 0:
464 strcpy(output, "zero");
465 break;
466 case 1:
467 strcpy(output, "one");
468 break;
469 case 2:
470 strcpy(output, "two");
471 break;
472 case 3:
473 strcpy(output, "three");
474 break;
475 case 4:
476 strcpy(output, "four");
477 break;
478 case 5:
479 strcpy(output, "five");
480 break;
481 case 6:
482 strcpy(output, "six");
483 break;
484 case 7:
485 strcpy(output, "seven");
486 break;
487 case 8:
488 strcpy(output, "eight");
489 break;
490 case 9:
491 strcpy(output, "nine");
492 case 10:
493 strcpy(output, "ten");
494 default:
495 sprintf(output, "%d", i);
496 }
497 return (output);
[1]498}
499
500
501
502
503/**
504 * Replace all occurences of @p token with @p value while copying @p ip to @p output.
505 * @param ip The input string containing zero or more <tt>token</tt>s.
506 * @param output The output string written with the <tt>token</tt>s replaced by @p value.
507 * @param token The token to be relaced with @p value.
508 * @param value The value to replace @p token.
509 */
[128]510void resolve_naff_tokens(char *output, char *ip, char *value, char *token)
[1]511{
[128]512 /*@ buffers *** */
513 char *input;
[1]514
[128]515 /*@ pointers * */
516 char *p;
[1]517
[128]518 input = malloc(2000);
[1236]519 // BERLIOS: seems to cause invalid errors
520 //assert_string_is_neither_NULL_nor_zerolength(ip);
[128]521 assert_string_is_neither_NULL_nor_zerolength(token);
522 assert(value != NULL);
[1]523
[128]524 strcpy(output, ip); /* just in case the token doesn't appear in string at all */
525 for (strcpy(input, ip); strstr(input, token); strcpy(input, output)) {
526 strcpy(output, input);
527 p = strstr(output, token);
528 *p = '\0';
529 strcat(output, value);
530 p = strstr(input, token) + strlen(token);
531 strcat(output, p);
532 }
533 paranoid_free(input);
[1]534}
535
536
537
538
539
540/**
541 * Generate the filename of slice @p sliceno of biggiefile @p bigfileno
542 * in @p path with suffix @p s. The format is as follows: @p path, followed
543 * by "/slice-" and @p bigfileno zero-padded to 7 places, followed by
544 * a dot and @p sliceno zero-padded to 5 places, followed by ".dat" and the
545 * suffix. The string is a minimum of 24 characters long.
546 * @param bigfileno The biggiefile number. Starts from 0.
547 * @param sliceno The slice number of biggiefile @p bigfileno. 0 is a "header"
548 * slice (no suffix) containing the biggiestruct, then are the compressed
549 * slices, then an empty uncompressed "trailer" slice.
550 * @param path The path to append (with a / in the middle) to the slice filename.
551 * @param s If not "" then add a "." and this to the end.
552 * @return The slice filename.
553 * @note The returned value points to static storage and will be overwritten with each call.
554 */
[128]555char *slice_fname(long bigfileno, long sliceno, char *path, char *s)
[1]556{
557
[128]558 /*@ buffers **************************************************** */
559 static char output[MAX_STR_LEN];
560 static char suffix[MAX_STR_LEN];
[1]561
[128]562 /*@ end vars *************************************************** */
[1]563
[128]564 assert_string_is_neither_NULL_nor_zerolength(path);
565 if (s[0] != '\0') {
566 sprintf(suffix, ".%s", s);
567 } else {
568 suffix[0] = '\0';
569 }
570 sprintf(output, "%s/slice-%07ld.%05ld.dat%s", path, bigfileno, sliceno,
571 suffix);
572 return (output);
[1]573}
574
575
576/**
577 * Generate a spinning symbol based on integer @p i.
578 * The symbol rotates through the characters / - \ | to form an ASCII "spinner"
579 * if successively written to the same location on screen.
580 * @param i The amount of progress or whatever else to use to determine the character
581 * for this iteration of the spinner.
582 * @return The character for this iteration.
583 */
[128]584int special_dot_char(int i)
[1]585{
[128]586 switch (i % 4) {
587 case 0:
588 return ('/');
589 case 1:
590 return ('-');
591 case 2:
592 return ('\\');
593 case 3:
594 return ('|');
595 default:
596 return ('.');
597 }
598 return ('.');
[1]599}
600
601
602
603
604/**
605 * Wrap @p flaws_str across three lines. The first two are no more than 74 characters wide.
606 * @param flaws_str The original string to split.
607 * @param flaws_str_A Where to put the first 74-or-less characters.
608 * @param flaws_str_B Where to put the second 74-or-less characters.
609 * @param flaws_str_C Where to put the rest.
610 * @param res The result of the original evaluate_mountlist() operation.
611 * @return TRUE if res == 0, FALSE otherwise.
612 */
613bool
[128]614spread_flaws_across_three_lines(char *flaws_str, char *flaws_str_A,
615 char *flaws_str_B, char *flaws_str_C,
616 int res)
[1]617{
618
[128]619 /*@ int ************************************************************* */
620 int i = 0;
[1]621
[128]622 /*@ initialize ****************************************************** */
623 assert(flaws_str_A != NULL);
624 assert(flaws_str_B != NULL);
625 assert(flaws_str_C != NULL);
626 assert(flaws_str != NULL);
[1]627
[128]628 if (!res && !strlen(flaws_str)) {
629 return (TRUE);
630 }
631 if (strlen(flaws_str) > 0) {
[2209]632 paranoid_free(flaws_str_A);
[2211]633 mr_asprintf(&flaws_str_A, "%s", flaws_str + 1);
[128]634 }
635 if (strlen(flaws_str_A) >= 74) {
636 for (i = 74; flaws_str_A[i] != ' '; i--);
[2209]637 paranoid_free(flaws_str_B);
[2211]638 mr_asprintf(&flaws_str_B, "%s", flaws_str_A + i + 1);
[128]639 flaws_str_A[i] = '\0';
640 }
641 if (strlen(flaws_str_B) >= 74) {
642 for (i = 74; flaws_str_B[i] != ' '; i--);
[2209]643 paranoid_free(flaws_str_C);
[2211]644 mr_asprintf(&flaws_str_C, "%s", flaws_str_B + i + 1);
[128]645 flaws_str_B[i] = '\0';
646 }
647 if (res) {
648 return (FALSE);
649 } else {
650 return (TRUE);
651 }
[1]652}
653
654
655
656/**
657 * Compare @p stringA and @p stringB. This uses an ASCII sort for everything
658 * up to the digits on the end but a numerical sort for the digits on the end.
659 * @param stringA The first string to compare.
660 * @param stringB The second string to compare.
661 * @return The same as strcmp() - <0 if A<B, 0 if A=B, >0 if A>B.
662 * @note This function only does a numerical sort on the @e last set of numbers. If
663 * there are any in the middle those will be sorted ASCIIbetically.
664 */
[128]665int strcmp_inc_numbers(char *stringA, char *stringB)
[1]666{
[128]667 /*@ int ********************************************************* */
668 int i;
669 int start_of_numbers_in_A;
670 int start_of_numbers_in_B;
671 int res;
[1]672
[128]673 /*@ long ******************************************************* */
674 long numA;
675 long numB;
[1]676
[128]677 /*@ end vars *************************************************** */
678 assert(stringA != NULL);
679 assert(stringB != NULL);
[1]680
[128]681 if (strlen(stringA) == strlen(stringB)) {
682 return (strcmp(stringA, stringB));
683 }
684 for (i = (int) strlen(stringA); i > 0 && isdigit(stringA[i - 1]); i--);
685 if (i == (int) strlen(stringA)) {
686 return (strcmp(stringA, stringB));
687 }
688 start_of_numbers_in_A = i;
689 for (i = (int) strlen(stringB); i > 0 && isdigit(stringB[i - 1]); i--);
690 if (i == (int) strlen(stringB)) {
691 return (strcmp(stringA, stringB));
692 }
693 start_of_numbers_in_B = i;
694 if (start_of_numbers_in_A != start_of_numbers_in_B) {
695 return (strcmp(stringA, stringB));
696 }
697 res = strncmp(stringA, stringB, (size_t) i);
698 if (res) {
699 return (res);
700 }
701 numA = atol(stringA + start_of_numbers_in_A);
702 numB = atol(stringB + start_of_numbers_in_B);
703 /*
704 sprintf(tmp,"Comparing %s and %s --> %ld,%ld\n",stringA,stringB,numA,numB);
705 log_to_screen(tmp);
706 */
707 return ((int) (numA - numB));
[1]708}
709
710
711
712/**
713 * Strip excess baggage from @p input, which should be a line from afio.
714 * For now this copies the whole line unless it finds a set of quotes, in which case
715 * it copies their contents only.
716 * @param input The input line (presumably from afio).
717 * @return The stripped line.
718 * @note The returned string points to static storage that will be overwritten with each call.
719 */
[128]720char *strip_afio_output_line(char *input)
[1]721{
[128]722 /*@ buffer ****************************************************** */
723 static char output[MAX_STR_LEN];
[1]724
[128]725 /*@ pointers **************************************************** */
726 char *p;
727 char *q;
728 /*@ end vars *************************************************** */
[1]729
[128]730 assert(input != NULL);
731 strcpy(output, input);
732 p = strchr(input, '\"');
733 if (p) {
734 q = strchr(++p, '\"');
735 if (q) {
736 strcpy(output, p);
737 *(strchr(output, '\"')) = '\0';
738 }
[1]739 }
[128]740 return (output);
[1]741}
742
743
744
745/**
746 * Remove all characters whose ASCII value is less than or equal to 32
747 * (spaces and control characters) from both sides of @p in_out.
748 * @param in_out The string to strip spaces/control characters from (modified).
749 */
[128]750void strip_spaces(char *in_out)
[1]751{
[128]752 /*@ buffers ***************************************************** */
753 char *tmp;
[1]754
[128]755 /*@ pointers **************************************************** */
756 char *p;
[1]757
[128]758 /*@ int ******************************************************** */
759 int i;
760 int original_incoming_length;
[1]761
[128]762 /*@ end vars *************************************************** */
[1]763
[128]764 assert(in_out != NULL);
765 malloc_string(tmp);
766 original_incoming_length = (int) strlen(in_out);
767 for (i = 0; in_out[i] <= ' ' && i < (int) strlen(in_out); i++);
768 strcpy(tmp, in_out + i);
769 for (i = (int) strlen(tmp); i > 0 && tmp[i - 1] <= 32; i--);
770 tmp[i] = '\0';
771 for (i = 0; i < original_incoming_length && MAX_STR_LEN; i++) {
772 in_out[i] = ' ';
[1]773 }
[128]774 in_out[i] = '\0';
775 i = 0;
776 p = tmp;
777 while (*p != '\0') {
778 in_out[i] = *(p++);
779 in_out[i + 1] = '\0';
780 if (in_out[i] < 32 && i > 0) {
781 if (in_out[i] == 8) {
782 i--;
783 } else if (in_out[i] == 9) {
784 in_out[i++] = ' ';
785 } else if (in_out[i] == '\r') // added 1st October 2003 -- FIXME
786 {
787 strcpy(tmp, in_out + i);
788 strcpy(in_out, tmp);
789 i = -1;
790 continue;
791 } else if (in_out[i] == '\t') {
792 for (i++; i % 5; i++);
793 } else if (in_out[i] >= 10 && in_out[i] <= 13) {
794 break;
795 } else {
796 i--;
797 }
798 } else {
799 i++;
800 }
[1]801 }
[128]802 in_out[i] = '\0';
803 paranoid_free(tmp);
[1]804/* for(i=strlen(in_out); i>0 && in_out[i-1]<=32; i--) {in_out[i-1]='\0';} */
805}
806
807
808/**
809 * If there are double quotes "" around @p incoming then remove them.
810 * This does not affect other quotes that may be embedded within the string.
811 * @param incoming The string to trim quotes from (modified).
812 * @return @p incoming.
813 */
[128]814char *trim_empty_quotes(char *incoming)
[1]815{
[128]816 /*@ buffer ****************************************************** */
817 static char outgoing[MAX_STR_LEN];
[1]818
[128]819 /*@ end vars *************************************************** */
820 assert(incoming != NULL);
[1]821
[128]822 if (incoming[0] == '\"' && incoming[strlen(incoming) - 1] == '\"') {
823 strcpy(outgoing, incoming + 1);
824 outgoing[strlen(outgoing) - 1] = '\0';
825 } else {
826 strcpy(outgoing, incoming);
827 }
828 return (outgoing);
[1]829}
830
831
832
833
834/**
835 * Remove any partition info from @p partition, leaving just the drive name.
836 * @param partition The partition name soon-to-become drive name. (modified)
837 * @return @p partition.
838 */
[128]839char *truncate_to_drive_name(char *partition)
[1]840{
[128]841 int i = strlen(partition) - 1;
842 char *c;
[2230]843 char *trunc = NULL;
[1]844
[2237]845 assert_string_is_neither_NULL_nor_zerolength(partition);
[2230]846 mr_asprintf(&trunc, "%s", partition);
847
[1]848#ifdef __FreeBSD__
849
[2230]850 if (islower(trunc[i])) // BSD subpartition
[128]851 i--;
[2230]852 if (trunc[i-1] == 's') {
853 while (isdigit(trunc[i]))
[128]854 i--;
855 i--;
856 }
[2230]857 trunc[i+1] = '\0';
[1]858
859#else
860
[128]861 /* first see if it's a devfs style device */
[2230]862 c = strrchr(trunc, '/');
[128]863 if (c && strncmp(c, "/part", 5) == 0) {
864 /* yup it's devfs, return the "disc" path */
865 strcpy(c + 1, "disc");
[2230]866 return trunc;
[128]867 }
[2052]868 /* then see if it's a dm style device */
[2105]869 if (c && strncmp(c, "/dm-", 4) == 0) {
[2052]870 /* yup it's dm, return the full path */
[2230]871 return trunc;
[2052]872 }
[1]873
[2105]874
[2230]875 for (i = strlen(trunc); isdigit(trunc[i-1]); i--)
[128]876 continue;
[2230]877 if (trunc[i-1] == 'p' && isdigit(trunc[i-2])) {
[128]878 i--;
[2105]879 } else {
880 /* Some full devices like this /dev/mapper/mpath0
[2190]881 /dev/cciss/c0d0 may be used as partition names */
[2230]882 if ((strstr(trunc,"/dev/mapper/mpath") != NULL) ||
883 (strstr(trunc,"/dev/cciss/c") != NULL) ||
884 (strstr(trunc,"/dev/rd/") != NULL)) {
885 return trunc;
[2105]886 }
[128]887 }
[2230]888 trunc[i] = '\0';
[1]889
890#endif
891
[2230]892 return trunc;
[1]893}
894
895
896
897
898
899/**
900 * Turn a RAID level number (-1 to 5) into a friendly string. The string
901 * is either "Linear RAID" for -1, or " RAID %-2d " (%d = @p raid_level)
902 * for anything else.
903 * @param raid_level The RAID level to stringify.
904 * @return The string form of @p raid_level.
905 * @note The returned value points to static storage that will be overwritten with each call.
906 */
[128]907char *turn_raid_level_number_to_string(int raid_level)
[1]908{
909
[128]910 /*@ buffer ********************************************************** */
911 static char output[MAX_STR_LEN];
[1]912
913
914
[128]915 if (raid_level >= 0) {
916 sprintf(output, " RAID %-2d ", raid_level);
917 } else {
918 sprintf(output, "Linear RAID");
919 }
920 return (output);
[1]921}
922
923
924
925
926
927
928
929
930
931/**
932 * Determine the severity (1-3, 1 being low) of the fact that
933 * @p fn changed in the live filesystem (verify/compare).
934 * @param fn The filename that changed.
935 * @param out_reason If non-NULL, a descriptive reason for the difference will be copied here.
936 * @return The severity (1-3).
937 */
938int severity_of_difference(char *fn, char *out_reason)
939{
[128]940 int sev;
941 char *reason;
942 char *filename;
[1]943
[128]944 malloc_string(reason);
945 malloc_string(filename);
[1]946// out_reason might be null on purpose, so don't bomb if it is :) OK?
[128]947 assert_string_is_neither_NULL_nor_zerolength(fn);
948 if (!strncmp(fn, MNT_RESTORING, strlen(MNT_RESTORING))) {
949 strcpy(filename, fn + strlen(MNT_RESTORING));
950 } else if (fn[0] != '/') {
951 sprintf(filename, "/%s", fn);
952 } else {
953 strcpy(filename, fn);
954 }
[1]955
[128]956 sev = 3;
957 sprintf(reason,
[541]958 "Changed since backup. Consider running a differential backup in a day or two.");
[128]959 if (!strncmp(filename, "/var/", 5)) {
960 sev = 2;
961 sprintf(reason,
[541]962 "/var's contents will change regularly, inevitably.");
[128]963 }
964 if (!strncmp(filename, "/home", 5)) {
965 sev = 2;
966 sprintf(reason,
[1585]967 "It's in your /home directory. Therefore, it is important.");
[128]968 }
969 if (!strncmp(filename, "/usr/", 5)) {
970 sev = 3;
971 sprintf(reason,
[541]972 "You may have installed/removed software during the backup.");
[128]973 }
974 if (!strncmp(filename, "/etc/", 5)) {
975 sev = 3;
976 sprintf(reason,
[541]977 "Do not edit config files while backing up your PC.");
[128]978 }
979 if (!strcmp(filename, "/etc/adjtime")
980 || !strcmp(filename, "/etc/mtab")) {
981 sev = 1;
[541]982 sprintf(reason, "This file changes all the time. It's OK.");
[128]983 }
984 if (!strncmp(filename, "/root/", 6)) {
985 sev = 3;
[541]986 sprintf(reason, "Were you compiling/editing something in /root?");
[128]987 }
988 if (!strncmp(filename, "/root/.", 7)) {
989 sev = 2;
[541]990 sprintf(reason, "Temp or 'dot' files changed in /root.");
[128]991 }
992 if (!strncmp(filename, "/var/lib/", 9)) {
993 sev = 2;
[541]994 sprintf(reason, "Did you add/remove software during backing?");
[128]995 }
996 if (!strncmp(filename, "/var/lib/rpm", 12)) {
997 sev = 3;
[541]998 sprintf(reason, "Did you add/remove software during backing?");
[128]999 }
1000 if (!strncmp(filename, "/var/lib/slocate", 16)) {
1001 sev = 1;
1002 sprintf(reason,
[541]1003 "The 'update' daemon ran during backup. This does not affect the integrity of your backup.");
[128]1004 }
1005 if (!strncmp(filename, "/var/log/", 9)
1006 || strstr(filename, "/.xsession")
1007 || !strcmp(filename + strlen(filename) - 4, ".log")) {
1008 sev = 1;
1009 sprintf(reason,
[541]1010 "Log files change frequently as the computer runs. Fret not.");
[128]1011 }
1012 if (!strncmp(filename, "/var/spool", 10)) {
1013 sev = 1;
1014 sprintf(reason,
[541]1015 "Background processes or printers were active. This does not affect the integrity of your backup.");
[128]1016 }
1017 if (!strncmp(filename, "/var/spool/mail", 10)) {
1018 sev = 2;
[541]1019 sprintf(reason, "Mail was sent/received during backup.");
[128]1020 }
1021 if (filename[strlen(filename) - 1] == '~') {
1022 sev = 1;
1023 sprintf(reason,
[541]1024 "Backup copy of another file which was modified recently.");
[128]1025 }
1026 if (strstr(filename, "cache")) {
1027 sev = 1;
1028 sprintf(reason,
[541]1029 "Part of a cache of data. Caches change from time to time. Don't worry.");
[128]1030 }
1031 if (!strncmp(filename, "/var/run/", 9)
1032 || !strncmp(filename, "/var/lock", 8)
1033 || strstr(filename, "/.DCOPserver") || strstr(filename, "/.MCOP")
1034 || strstr(filename, "/.Xauthority")) {
1035 sev = 1;
1036 sprintf(reason,
1037 "Temporary file (a lockfile, perhaps) used by software such as X or KDE to register its presence.");
1038 }
1039 if (out_reason) {
1040 strcpy(out_reason, reason);
1041 }
1042 paranoid_free(filename);
1043 paranoid_free(reason);
1044 return (sev);
[1]1045}
1046
1047
1048
1049/**
1050 * Compare the filenames in two filelist entries (s_filelist_entry*) casted
1051 * to void*.
1052 * @param va The first filelist entry, cast as a @c void pointer.
1053 * @param vb The second filelist entry, cast as a @c void pointer.
1054 * @return The return value of strcmp().
1055 */
[128]1056int compare_two_filelist_entries(void *va, void *vb)
[1]1057{
[128]1058 static int res;
1059 struct s_filelist_entry *fa, *fb;
[1]1060
[128]1061 assert(va != NULL);
1062 assert(vb != NULL);
1063 fa = (struct s_filelist_entry *) va;
1064 fb = (struct s_filelist_entry *) vb;
1065 res = strcmp(fa->filename, fb->filename);
1066 return (res);
[1]1067}
1068
1069
1070
1071
1072
1073
1074
1075/**
1076 * Generate a line intended to be passed to update_evalcall_form(), indicating
1077 * the current media fill percentage (or number of kilobytes if size is not known).
1078 * @param bkpinfo The backup media structure. Fields used:
1079 * - @c bkpinfo->backup_media_type
1080 * - @c bkpinfo->media_size
1081 * - @c bkpinfo->scratchdir
1082 * @return The string indicating media fill.
1083 * @note The returned string points to static storage that will be overwritten with each call.
1084 */
[1645]1085char *percent_media_full_comment()
[1]1086{
[128]1087 /*@ int *********************************************** */
1088 int percentage;
1089 int j;
[1]1090
[128]1091 /*@ buffers ******************************************* */
1092 static char outstr[MAX_STR_LEN];
1093 char *pos_w_commas, *tmp;
[1]1094
[128]1095 assert(bkpinfo != NULL);
1096 malloc_string(pos_w_commas);
1097 malloc_string(tmp);
1098 sprintf(tmp, "%lld", g_tape_posK);
1099 strcpy(pos_w_commas, commarize(tmp));
[1]1100
1101
1102
[128]1103 if (bkpinfo->media_size[g_current_media_number] <= 0)
[1]1104// { fatal_error( "percentage_media_full_comment() - unknown media size"); }
[128]1105 {
[541]1106 sprintf(outstr, "Volume %d: %s kilobytes archived so far",
[128]1107 g_current_media_number, pos_w_commas);
1108 return (outstr);
1109 }
[1]1110
1111/* update screen */
[128]1112 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
1113 percentage =
1114 (int) (g_tape_posK / 10 /
1115 bkpinfo->media_size[g_current_media_number]);
1116 if (percentage > 100) {
1117 percentage = 100;
1118 }
[541]1119 sprintf(outstr, "Volume %d: [", g_current_media_number);
[128]1120 } else {
1121 percentage =
1122 (int) (space_occupied_by_cd(bkpinfo->scratchdir) * 100 / 1024 /
1123 bkpinfo->media_size[g_current_media_number]);
1124 sprintf(outstr, "%s %d: [",
1125 media_descriptor_string(bkpinfo->backup_media_type),
1126 g_current_media_number);
[1]1127 }
[128]1128 for (j = 0; j < percentage; j += 5) {
1129 strcat(outstr, "*");
1130 }
1131 for (; j < 100; j += 5) {
1132 strcat(outstr, ".");
1133 }
1134 j = (int) strlen(outstr);
[541]1135 sprintf(outstr + j, "] %d%% used", percentage);
[128]1136 paranoid_free(pos_w_commas);
1137 paranoid_free(tmp);
1138 return (outstr);
[1]1139}
1140
1141/**
1142 * Get a string form of @p type_of_bkp.
1143 * @param type_of_bkp The backup type to stringify.
1144 * @return The stringification of @p type_of_bkp.
1145 * @note The returned string points to static storage that will be overwritten with each call.
1146 */
[2241]1147/* BCO/BERLIOS change that function to allocate memory, return a pointer and modify caller to free the mem */
[1]1148char *media_descriptor_string(t_bkptype type_of_bkp)
1149{
[128]1150 static char *type_of_backup = NULL;
1151
1152 if (!type_of_backup) {
1153 malloc_string(type_of_backup);
1154 }
1155
1156 switch (type_of_bkp) {
[1]1157 case dvd:
1158 strcpy(type_of_backup, "DVD");
1159 break;
1160 case cdr:
1161 strcpy(type_of_backup, "CDR");
1162 break;
1163 case cdrw:
1164 strcpy(type_of_backup, "CDRW");
1165 break;
1166 case tape:
1167 strcpy(type_of_backup, "tape");
1168 break;
1169 case cdstream:
1170 strcpy(type_of_backup, "CDR");
1171 break;
1172 case udev:
1173 strcpy(type_of_backup, "udev");
1174 break;
1175 case iso:
1176 strcpy(type_of_backup, "ISO");
1177 break;
1178 case nfs:
1179 strcpy(type_of_backup, "nfs");
1180 break;
[1687]1181 case usb:
1182 strcpy(type_of_backup, "USB");
1183 break;
[1]1184 default:
1185 strcpy(type_of_backup, "ISO");
1186 }
[128]1187 return (type_of_backup);
[1]1188}
Note: See TracBrowser for help on using the repository browser.