source: MondoRescue/branches/2.2.8/mondo/src/common/libmondo-string.c@ 2052

Last change on this file since 2052 was 2052, checked in by Bruno Cornec, 16 years ago

Adds support for dm devices in truncate_to_drive_name

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