source: MondoRescue/branches/3.0/mondo/src/common/libmondo-string.c@ 3107

Last change on this file since 3107 was 3042, checked in by Bruno Cornec, 12 years ago
  • Fix some compilations warnings and 1 error
  • Property svn:keywords set to Id
File size: 29.4 KB
Line 
1/* $Id: libmondo-string.c 3042 2012-10-07 18:44:28Z bruno $ */
2
3
4/**
5 * @file
6 * Functions for handling strings.
7 */
8
9#include "my-stuff.h"
10#include "mr_mem.h"
11#include "mondostructures.h"
12#include "libmondo-string.h"
13#include "lib-common-externs.h"
14#include "libmondo-files-EXT.h"
15#include "libmondo-gui-EXT.h"
16#include "libmondo-tools-EXT.h"
17
18/*@unused@*/
19//static char cvsid[] = "$Id: libmondo-string.c 3042 2012-10-07 18:44:28Z bruno $";
20
21extern int g_current_media_number;
22extern long long g_tape_posK;
23
24/* Reference to global bkpinfo */
25extern struct s_bkpinfo *bkpinfo;
26
27
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 */
40char *build_partition_name(char *partition, const char *drive, int partno)
41{
42 char *p, *c;
43
44 assert(partition != NULL);
45 assert_string_is_neither_NULL_nor_zerolength(drive);
46 assert(partno >= 0);
47
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++ =
59#ifdef BSD
60 's';
61#else
62 'p';
63#endif
64 }
65 }
66 sprintf(p, "%d", partno);
67 return (partition);
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 */
87void center_string(char *in_out, int width)
88{
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 */
95
96 assert(in_out != NULL);
97 assert(width > 2);
98
99 if (strlen(in_out) == 0) {
100 return;
101 }
102 for (p = in_out; *p == ' '; p++);
103 strcpy(scratch, p);
104 strip_spaces (scratch);
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);
113 for (i = x + len ; i < width - 1; i++) {
114 in_out[i] = ' ';
115 }
116 in_out[i] = '\0';
117}
118
119
120
121
122inline void turn_wildcard_chars_into_literal_chars(char *sout, char *sin)
123{
124 char *p, *q;
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'
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 */
142char *commarize(char *input)
143{
144 char pos_w_commas[MAX_STR_LEN];
145 static char output[MAX_STR_LEN];
146 char tmp[MAX_STR_LEN];
147 int j;
148
149 assert(input != NULL);
150
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);
157// tmp[j-2] = ',';
158// strcpy(tmp+j-1, pos_w_commas+j-3);
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);
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 */
191char *disklist_entry_to_string(struct list_of_disks *disklist, int lino)
192{
193
194 /*@ buffers ********************************************************** */
195 static char output[MAX_STR_LEN];
196
197 assert(disklist != NULL);
198
199 sprintf(output, "%-24s %8d", disklist->el[lino].device,
200 disklist->el[lino].index);
201 return (output);
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 */
215long friendly_sizestr_to_sizelong(char *incoming)
216{
217 long outval;
218 int i;
219 char *tmp;
220 char ch;
221
222 assert_string_is_neither_NULL_nor_zerolength(incoming);
223
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
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 :-)");
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);
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 */
274char *leftpad_string(char *incoming, int width)
275{
276 /*@ buffers ***************************************************** */
277 static char output[MAX_STR_LEN];
278
279 /*@ ints ******************************************************** */
280 int i;
281
282 /*@ end vars **************************************************** */
283 assert(incoming != NULL);
284 assert(width > 2);
285
286 strcpy(output, incoming);
287 for (i = (int) strlen(output); i < width; i++) {
288 output[i] = ' ';
289 }
290 output[i] = '\0';
291 return (output);
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 */
303char *marker_to_string(int marker)
304{
305 /*@ buffer ****************************************************** */
306 static char outstr[MAX_STR_LEN];
307
308
309 /*@ end vars *************************************************** */
310
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);
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 */
393char *mountlist_entry_to_string(struct mountlist_itself *mountlist,
394 int lino)
395{
396
397 /*@ buffer *********************************************************** */
398 static char output[MAX_STR_LEN];
399
400 assert(mountlist != NULL);
401
402 sprintf(output, "%-24s %-24s %-10s %8lld", mountlist->el[lino].device,
403 mountlist->el[lino].mountpoint, mountlist->el[lino].format,
404 mountlist->el[lino].size / 1024L);
405 return (output);
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 */
421char *number_of_disks_as_string(int noof_disks, char *label)
422{
423
424 /*@ buffers ********************************************************* */
425 static char output[MAX_STR_LEN];
426
427 /*@ char ******************************************************** */
428 char p;
429
430 assert(label != NULL);
431
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);
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 */
453char *number_to_text(int i)
454{
455
456 /*@ buffers ***************************************************** */
457 static char output[MAX_STR_LEN];
458
459
460 /*@ end vars *************************************************** */
461
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);
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 */
510void resolve_naff_tokens(char *output, char *ip, char *value, char *token)
511{
512 /*@ buffers *** */
513 char *input;
514
515 /*@ pointers * */
516 char *p;
517
518 input = malloc(2000);
519 // BERLIOS: seems to cause invalid errors
520 //assert_string_is_neither_NULL_nor_zerolength(ip);
521 assert_string_is_neither_NULL_nor_zerolength(token);
522 assert(value != NULL);
523
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);
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 */
555char *slice_fname(long bigfileno, long sliceno, char *path, char *s)
556{
557
558 /*@ buffers **************************************************** */
559 static char output[MAX_STR_LEN];
560 static char suffix[MAX_STR_LEN];
561
562 /*@ end vars *************************************************** */
563
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);
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 */
584int special_dot_char(int i)
585{
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 ('.');
599}
600
601
602/**
603 * Compare @p stringA and @p stringB. This uses an ASCII sort for everything
604 * up to the digits on the end but a numerical sort for the digits on the end.
605 * @param stringA The first string to compare.
606 * @param stringB The second string to compare.
607 * @return The same as strcmp() - <0 if A<B, 0 if A=B, >0 if A>B.
608 * @note This function only does a numerical sort on the @e last set of numbers. If
609 * there are any in the middle those will be sorted ASCIIbetically.
610 */
611int strcmp_inc_numbers(char *stringA, char *stringB)
612{
613 /*@ int ********************************************************* */
614 int i;
615 int start_of_numbers_in_A;
616 int start_of_numbers_in_B;
617 int res;
618
619 /*@ long ******************************************************* */
620 long numA;
621 long numB;
622
623 /*@ end vars *************************************************** */
624 assert(stringA != NULL);
625 assert(stringB != NULL);
626
627 if (strlen(stringA) == strlen(stringB)) {
628 return (strcmp(stringA, stringB));
629 }
630 for (i = (int) strlen(stringA); i > 0 && isdigit(stringA[i - 1]); i--);
631 if (i == (int) strlen(stringA)) {
632 return (strcmp(stringA, stringB));
633 }
634 start_of_numbers_in_A = i;
635 for (i = (int) strlen(stringB); i > 0 && isdigit(stringB[i - 1]); i--);
636 if (i == (int) strlen(stringB)) {
637 return (strcmp(stringA, stringB));
638 }
639 start_of_numbers_in_B = i;
640 if (start_of_numbers_in_A != start_of_numbers_in_B) {
641 return (strcmp(stringA, stringB));
642 }
643 res = strncmp(stringA, stringB, (size_t) i);
644 if (res) {
645 return (res);
646 }
647 numA = atol(stringA + start_of_numbers_in_A);
648 numB = atol(stringB + start_of_numbers_in_B);
649 /*
650 sprintf(tmp,"Comparing %s and %s --> %ld,%ld\n",stringA,stringB,numA,numB);
651 log_to_screen(tmp);
652 */
653 return ((int) (numA - numB));
654}
655
656
657
658/**
659 * Strip excess baggage from @p input, which should be a line from afio.
660 * For now this copies the whole line unless it finds a set of quotes, in which case
661 * it copies their contents only.
662 * @param input The input line (presumably from afio).
663 * @return The stripped line.
664 * @note The returned string points to static storage that will be overwritten with each call.
665 */
666char *strip_afio_output_line(char *input)
667{
668 /*@ buffer ****************************************************** */
669 static char output[MAX_STR_LEN];
670
671 /*@ pointers **************************************************** */
672 char *p;
673 char *q;
674 /*@ end vars *************************************************** */
675
676 assert(input != NULL);
677 strcpy(output, input);
678 p = strchr(input, '\"');
679 if (p) {
680 q = strchr(++p, '\"');
681 if (q) {
682 strcpy(output, p);
683 *(strchr(output, '\"')) = '\0';
684 }
685 }
686 return (output);
687}
688
689
690
691/**
692 * Remove all characters whose ASCII value is less than or equal to 32
693 * (spaces and control characters) from both sides of @p in_out.
694 * @param in_out The string to strip spaces/control characters from (modified).
695 */
696void strip_spaces(char *in_out)
697{
698 /*@ buffers ***************************************************** */
699 char *tmp = NULL;
700
701 /*@ int ******************************************************** */
702 int i;
703
704 /*@ end vars *************************************************** */
705
706 assert(in_out != NULL);
707 malloc_string(tmp);
708 for (i = 0; in_out[i] <= ' ' && i < (int) strlen(in_out) -1; i++);
709 strcpy(tmp, in_out + i);
710 for (i = (int) strlen(tmp) -1; i >= 0 && tmp[i] <= ' '; i--);
711 i++;
712 tmp[i] = '\0';
713
714 // Now tmp contains the stripped string
715 strcpy(in_out,tmp);
716 paranoid_free(tmp);
717}
718
719/**
720 * Remove all characters whose ASCII value is less than or equal to 32
721 * (spaces and control characters) from both sides of @p in_out.
722 * @param in_out The string to strip spaces/control characters from (modified).
723 */
724void strip_spaces2(char *in_out)
725{
726 /*@ buffers ***************************************************** */
727 char *tmp;
728
729 /*@ pointers **************************************************** */
730 char *p;
731
732 /*@ int ******************************************************** */
733 int i;
734 int original_incoming_length;
735
736 /*@ end vars *************************************************** */
737
738 assert(in_out != NULL);
739 malloc_string(tmp);
740 original_incoming_length = (int) strlen(in_out);
741 for (i = 0; in_out[i] <= ' ' && i < (int) strlen(in_out); i++);
742 strcpy(tmp, in_out + i);
743 for (i = (int) strlen(tmp); i > 0 && tmp[i - 1] <= 32; i--);
744 tmp[i] = '\0';
745 for (i = 0; i < original_incoming_length && MAX_STR_LEN; i++) {
746 in_out[i] = ' ';
747 }
748 in_out[i] = '\0';
749 i = 0;
750 p = tmp;
751 while (*p != '\0') {
752 in_out[i] = *(p++);
753 in_out[i + 1] = '\0';
754 if (in_out[i] < 32 && i > 0) {
755 if (in_out[i] == 8) {
756 i--;
757 } else if (in_out[i] == 9) {
758 in_out[i++] = ' ';
759 } else if (in_out[i] == '\r') // added 1st October 2003 -- FIXME
760 {
761 strcpy(tmp, in_out + i);
762 strcpy(in_out, tmp);
763 i = -1;
764 continue;
765 } else if (in_out[i] == '\t') {
766 for (i++; i % 5; i++);
767 } else if (in_out[i] >= 10 && in_out[i] <= 13) {
768 break;
769 } else {
770 i--;
771 }
772 } else {
773 i++;
774 }
775 }
776 in_out[i] = '\0';
777 paranoid_free(tmp);
778/* for(i=strlen(in_out); i>0 && in_out[i-1]<=32; i--) {in_out[i-1]='\0';} */
779}
780
781
782/**
783 * If there are double quotes "" around @p incoming then remove them.
784 * This does not affect other quotes that may be embedded within the string.
785 * @param incoming The string to trim quotes from (modified).
786 * @return @p incoming.
787 */
788char *trim_empty_quotes(char *incoming)
789{
790 /*@ buffer ****************************************************** */
791 static char outgoing[MAX_STR_LEN];
792
793 /*@ end vars *************************************************** */
794 assert(incoming != NULL);
795
796 if (incoming[0] == '\"' && incoming[strlen(incoming) - 1] == '\"') {
797 strcpy(outgoing, incoming + 1);
798 outgoing[strlen(outgoing) - 1] = '\0';
799 } else {
800 strcpy(outgoing, incoming);
801 }
802 return (outgoing);
803}
804
805
806
807
808/**
809 * Remove any partition info from @p partition, leaving just the drive name.
810 * @param partition The partition name soon-to-become drive name. (modified)
811 * @return @p partition.
812 */
813char *truncate_to_drive_name(const char *partition)
814{
815 int i = strlen(partition) - 1;
816 char *c;
817 char *trunc = NULL;
818
819 assert_string_is_neither_NULL_nor_zerolength(partition);
820 mr_asprintf(&trunc, "%s", partition);
821
822#ifdef __FreeBSD__
823
824 if (islower(trunc[i])) // BSD subpartition
825 i--;
826 if (trunc[i-1] == 's') {
827 while (isdigit(trunc[i]))
828 i--;
829 i--;
830 }
831 trunc[i+1] = '\0';
832
833#else
834
835 /* first see if it's a devfs style device */
836 c = strrchr(trunc, '/');
837 if (c && strncmp(c, "/part", 5) == 0) {
838 /* yup it's devfs, return the "disc" path */
839 strcpy(c + 1, "disc");
840 return trunc;
841 }
842 /* then see if it's a dm style device */
843 if (c && strncmp(c, "/dm-", 4) == 0) {
844 /* yup it's dm, return the full path */
845 return trunc;
846 }
847
848
849 for (i = strlen(trunc); isdigit(trunc[i-1]); i--)
850 continue;
851 if (trunc[i-1] == 'p' && isdigit(trunc[i-2])) {
852 i--;
853 } else {
854 /* Some full devices like this /dev/mapper/mpath0
855 /dev/cciss/c0d0 may be used as partition names */
856 if ((strstr(trunc,"/dev/mapper/mpath") != NULL) ||
857 (strstr(trunc,"/dev/cciss/c") != NULL) ||
858 (strstr(trunc,"/dev/rd/") != NULL)) {
859 return trunc;
860 }
861 }
862 trunc[i] = '\0';
863
864#endif
865
866 return trunc;
867}
868
869
870
871
872
873/**
874 * Turn a RAID level number (-1 to 5) into a friendly string. The string
875 * is either "Linear RAID" for -1, or " RAID %-2d " (%d = @p raid_level)
876 * for anything else.
877 * @param raid_level The RAID level to stringify.
878 * @return The string form of @p raid_level.
879 * @note The returned value points to static storage that will be overwritten with each call.
880 */
881char *turn_raid_level_number_to_string(int raid_level)
882{
883
884 /*@ buffer ********************************************************** */
885 static char output[MAX_STR_LEN];
886
887
888
889 if (raid_level >= 0) {
890 sprintf(output, " RAID %-2d ", raid_level);
891 } else {
892 sprintf(output, "Linear RAID");
893 }
894 return (output);
895}
896
897
898
899
900
901
902
903
904
905/**
906 * Determine the severity (1-3, 1 being low) of the fact that
907 * @p fn changed in the live filesystem (verify/compare).
908 * @param fn The filename that changed.
909 * @param out_reason If non-NULL, a descriptive reason for the difference will be copied here.
910 * @return The severity (1-3).
911 */
912int severity_of_difference(char *fn, char *out_reason)
913{
914 int sev;
915 char *reason;
916 char *filename;
917
918 malloc_string(reason);
919 malloc_string(filename);
920// out_reason might be null on purpose, so don't bomb if it is :) OK?
921 assert_string_is_neither_NULL_nor_zerolength(fn);
922 if (!strncmp(fn, MNT_RESTORING, strlen(MNT_RESTORING))) {
923 strcpy(filename, fn + strlen(MNT_RESTORING));
924 } else if (fn[0] != '/') {
925 sprintf(filename, "/%s", fn);
926 } else {
927 strcpy(filename, fn);
928 }
929
930 sev = 3;
931 sprintf(reason,
932 "Changed since backup. Consider running a differential backup in a day or two.");
933 if (!strncmp(filename, "/var/", 5)) {
934 sev = 2;
935 sprintf(reason,
936 "/var's contents will change regularly, inevitably.");
937 }
938 if (!strncmp(filename, "/home", 5)) {
939 sev = 2;
940 sprintf(reason,
941 "It's in your /home directory. Therefore, it is important.");
942 }
943 if (!strncmp(filename, "/usr/", 5)) {
944 sev = 3;
945 sprintf(reason,
946 "You may have installed/removed software during the backup.");
947 }
948 if (!strncmp(filename, "/etc/", 5)) {
949 sev = 3;
950 sprintf(reason,
951 "Do not edit config files while backing up your PC.");
952 }
953 if (!strcmp(filename, "/etc/adjtime")
954 || !strcmp(filename, "/etc/mtab")) {
955 sev = 1;
956 sprintf(reason, "This file changes all the time. It's OK.");
957 }
958 if (!strncmp(filename, "/root/", 6)) {
959 sev = 3;
960 sprintf(reason, "Were you compiling/editing something in /root?");
961 }
962 if (!strncmp(filename, "/root/.", 7)) {
963 sev = 2;
964 sprintf(reason, "Temp or 'dot' files changed in /root.");
965 }
966 if (!strncmp(filename, "/var/lib/", 9)) {
967 sev = 2;
968 sprintf(reason, "Did you add/remove software during backing?");
969 }
970 if (!strncmp(filename, "/var/lib/rpm", 12)) {
971 sev = 3;
972 sprintf(reason, "Did you add/remove software during backing?");
973 }
974 if (!strncmp(filename, "/var/lib/slocate", 16)) {
975 sev = 1;
976 sprintf(reason,
977 "The 'update' daemon ran during backup. This does not affect the integrity of your backup.");
978 }
979 if (!strncmp(filename, "/var/log/", 9)
980 || strstr(filename, "/.xsession")
981 || !strcmp(filename + strlen(filename) - 4, ".log")) {
982 sev = 1;
983 sprintf(reason,
984 "Log files change frequently as the computer runs. Fret not.");
985 }
986 if (!strncmp(filename, "/var/spool", 10)) {
987 sev = 1;
988 sprintf(reason,
989 "Background processes or printers were active. This does not affect the integrity of your backup.");
990 }
991 if (!strncmp(filename, "/var/spool/mail", 10)) {
992 sev = 2;
993 sprintf(reason, "Mail was sent/received during backup.");
994 }
995 if (filename[strlen(filename) - 1] == '~') {
996 sev = 1;
997 sprintf(reason,
998 "Backup copy of another file which was modified recently.");
999 }
1000 if (strstr(filename, "cache")) {
1001 sev = 1;
1002 sprintf(reason,
1003 "Part of a cache of data. Caches change from time to time. Don't worry.");
1004 }
1005 if (!strncmp(filename, "/var/run/", 9)
1006 || !strncmp(filename, "/var/lock", 8)
1007 || strstr(filename, "/.DCOPserver") || strstr(filename, "/.MCOP")
1008 || strstr(filename, "/.Xauthority")) {
1009 sev = 1;
1010 sprintf(reason,
1011 "Temporary file (a lockfile, perhaps) used by software such as X or KDE to register its presence.");
1012 }
1013 if (out_reason) {
1014 strcpy(out_reason, reason);
1015 }
1016 paranoid_free(filename);
1017 paranoid_free(reason);
1018 return (sev);
1019}
1020
1021
1022
1023/**
1024 * Compare the filenames in two filelist entries (s_filelist_entry*) casted
1025 * to void*.
1026 * @param va The first filelist entry, cast as a @c void pointer.
1027 * @param vb The second filelist entry, cast as a @c void pointer.
1028 * @return The return value of strcmp().
1029 */
1030int compare_two_filelist_entries(void *va, void *vb)
1031{
1032 static int res;
1033 struct s_filelist_entry *fa, *fb;
1034
1035 assert(va != NULL);
1036 assert(vb != NULL);
1037 fa = (struct s_filelist_entry *) va;
1038 fb = (struct s_filelist_entry *) vb;
1039 res = strcmp(fa->filename, fb->filename);
1040 return (res);
1041}
1042
1043
1044
1045
1046
1047
1048
1049/**
1050 * Generate a line intended to be passed to update_evalcall_form(), indicating
1051 * the current media fill percentage (or number of kilobytes if size is not known).
1052 * @param bkpinfo The backup media structure. Fields used:
1053 * - @c bkpinfo->backup_media_type
1054 * - @c bkpinfo->media_size
1055 * - @c bkpinfo->scratchdir
1056 * @return The string indicating media fill.
1057 * @note The returned string points to static storage that will be overwritten with each call.
1058 */
1059char *percent_media_full_comment()
1060{
1061 /*@ int *********************************************** */
1062 int percentage;
1063 int j;
1064
1065 /*@ buffers ******************************************* */
1066 static char outstr[MAX_STR_LEN];
1067 char *pos_w_commas, *tmp;
1068 char *mds = NULL;
1069
1070 assert(bkpinfo != NULL);
1071 malloc_string(pos_w_commas);
1072 malloc_string(tmp);
1073 sprintf(tmp, "%lld", g_tape_posK);
1074 strcpy(pos_w_commas, commarize(tmp));
1075
1076
1077
1078 if (bkpinfo->media_size[g_current_media_number] <= 0)
1079// { fatal_error( "percentage_media_full_comment() - unknown media size"); }
1080 {
1081 sprintf(outstr, "Volume %d: %s kilobytes archived so far",
1082 g_current_media_number, pos_w_commas);
1083 return (outstr);
1084 }
1085
1086/* update screen */
1087 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
1088 percentage =
1089 (int) (g_tape_posK / 10 /
1090 bkpinfo->media_size[g_current_media_number]);
1091 if (percentage > 100) {
1092 percentage = 100;
1093 }
1094 sprintf(outstr, "Volume %d: [", g_current_media_number);
1095 } else {
1096 percentage =
1097 (int) (space_occupied_by_cd(bkpinfo->scratchdir) * 100 / 1024 /
1098 bkpinfo->media_size[g_current_media_number]);
1099 mds = media_descriptor_string(bkpinfo->backup_media_type);
1100 sprintf(outstr, "%s %d: [", mds, g_current_media_number);
1101 mr_free(mds);
1102 }
1103 for (j = 0; j < percentage; j += 5) {
1104 strcat(outstr, "*");
1105 }
1106 for (; j < 100; j += 5) {
1107 strcat(outstr, ".");
1108 }
1109 j = (int) strlen(outstr);
1110 sprintf(outstr + j, "] %d%% used", percentage);
1111 paranoid_free(pos_w_commas);
1112 paranoid_free(tmp);
1113 return (outstr);
1114}
1115
1116/**
1117 * Get a string form of @p type_of_bkp.
1118 * @param type_of_bkp The backup type to stringify.
1119 * @return The stringification of @p type_of_bkp.
1120 * @note The returned string points to static storage that will be overwritten with each call.
1121 */
1122char *media_descriptor_string(t_bkptype type_of_bkp) {
1123
1124 char *type_of_backup = NULL;
1125
1126 switch (type_of_bkp) {
1127 case dvd:
1128 mr_asprintf(&type_of_backup, "DVD");
1129 break;
1130 case cdr:
1131 mr_asprintf(&type_of_backup, "CDR");
1132 break;
1133 case cdrw:
1134 mr_asprintf(&type_of_backup, "CDRW");
1135 break;
1136 case tape:
1137 mr_asprintf(&type_of_backup, "tape");
1138 break;
1139 case cdstream:
1140 mr_asprintf(&type_of_backup, "CDR");
1141 break;
1142 case udev:
1143 mr_asprintf(&type_of_backup, "udev");
1144 break;
1145 case iso:
1146 mr_asprintf(&type_of_backup, "ISO");
1147 break;
1148 case netfs:
1149 mr_asprintf(&type_of_backup, "%s", bkpinfo->netfs_proto);
1150 break;
1151 case usb:
1152 mr_asprintf(&type_of_backup, "USB");
1153 break;
1154 default:
1155 mr_asprintf(&type_of_backup, "ISO");
1156 }
1157 return (type_of_backup);
1158}
Note: See TracBrowser for help on using the repository browser.