source: MondoRescue/branches/2.05/mondo/mondo/common/newt-specific.c@ 126

Last change on this file since 126 was 126, checked in by bcornec, 18 years ago

This patch avoids useless invocations of `cat <file> |' where the second
process in the pipe can more efficiently read its input file itself.
It replaces also some grep'+sed' commands by an unique `sed' command.
This patch also improves readability of shell commands by
replacing \" by ' where possible.
This patch instructs mondo to say DVD' instead of CD' when appropriate.
This patch forces growisofs to use speed=1 for DVD burning. In my
experience, DVD burning time is only a small part of the total backup
time so this should not make a big difference in backup time, but
a big one in reliability of mondo. On my installation, without
the option `speed=1', mondo/growisofs is unable to burn a DVD. With
the option `speed=1', mondo works.
(Philippe De Muyter)

  • Property svn:keywords set to Id
File size: 48.6 KB
Line 
1/* newt-specific.c
2 $Id: newt-specific.c 126 2005-11-19 00:53:52Z bcornec $
3
4 subroutines which do display-type things
5 and use the newt library to do them
6.
7
810/02
9- tell user not to bother mailing list unless snapshot
10
1107/09
12- finish() calls g_erase_tmpdir_and_scratchdir to erase
13 tmpdir and scratchdir at end
14
1506/25
16- tried to fix newtFinished() segfault
17
1804/13/2004
19- lots of char[]'s are now *char's
20
2110/09/2003
22- allow DVD option for text-mode which_backup_type() too
23
2409/28
25- log_to_screen() now takes printf-like parameters
26
2709/26
28- b5 now means dvd (was udev)
29
3009/16
31- echo fatal error to screen before exiting
32- working on fatal_error()
33- swapped g_blurb2 and g_blurb3 in a few places to fix a GUI problem;
34 it shouldn't have worked! :) I think there's a mem-leak somewhere
35
3609/13
37- changed some '\n' occurrences to '\r\n'
38
3909/09
40- fixed silly bug in log_to_screen()
41
4207/02
43- modified popup_and_get_string()
44
4505/03
46- cleaned up fatal_error()
47
4804/30
49- fixed popup_changelist_*()
50
5104/27
52- replace newtFinished() and newtInit() with
53 newtSuspend() and newtResume()
54
5504/25
56- after comparing, popup the changelist for the user
57- moved the relevant code from compare_to_cds() into
58 compare_mode(), so that tape users may benefit too
59
6004/24
61- added lots of assert()'s and log_OS_error()'s
62- cleaned up a few uninitialized strings (valgrind)
63
6404/22
65- line 1181 - 'read from' (not 'restoring from')
66
6703/15/2003
68- fixed potentially infinite loop in log_to_screen (Tom Mortell)
69
7012/04/2002
71- changed "Pick file" to "Non-matching files"
72
7311/28
74- finish() now unregisters Mondo's pid
75
7610/28
77- unmount tmpfs if fatal_error
78
7910/04
80- more XMondo-related work
81- added some =NULL's in a few places
82
8309/01 - 09/30
84- write log_to_screen()'s string to stdout if in text mode
85- update_progress_form_FULL(), update_evalcall_form(),
86 popup_and_*(), ask_me_yes_or_no() now write
87 XMondo-friendly info to stdout if in text mode
88- if fatal error then popup and say what the fatal error is
89- run_program_and_log_output() now takes boolean operator to specify
90 whether it will log its activities in the event of _success_
91- added popup_changelist_from_file(char*source_file, char*topic, void*call_if_entry_selected(void*));
92
9308/07
94- added some functions to let user choose backup dev + format
95
9607/27
97- created
98*/
99
100
101/**
102 * @file
103 * Functions for doing display-type things with the Newt library.
104 */
105
106#define MAX_NEWT_COMMENT_LEN 200
107
108#if __cplusplus
109extern "C" {
110#endif
111
112#include "my-stuff.h"
113#include "mondostructures.h"
114#include "newt-specific.h"
115#include "libmondo-string-EXT.h"
116#include "libmondo-files-EXT.h"
117#include "libmondo-devices-EXT.h"
118#include "libmondo-tools-EXT.h"
119#include "libmondo-fork-EXT.h"
120#include "libmondo-gui-EXT.h"
121#include "lib-common-externs.h"
122
123/*@unused@*/
124//static char cvsid[] = "$Id: newt-specific.c 126 2005-11-19 00:53:52Z bcornec $";
125
126extern pid_t g_mastermind_pid;
127extern char *g_tmpfs_mountpt;
128extern char *g_boot_mountpt;
129extern char *g_mondo_home;
130
131extern char g_version[];
132
133extern void set_signals(int);
134
135/**
136 * @addtogroup globalGroup
137 * @{
138 */
139/**
140 * Whether we are currently in a nested call of fatal_error().
141 */
142bool g_exiting=FALSE;
143
144/**
145 * Padding below the Newt components, to overcome bugs in Newt.
146 */
147char g_haharrrrr[500];
148
149
150newtComponent g_timeline=NULL, ///< The line of the progress form that shows the time elapsed/remaining
151 g_percentline=NULL, ///< The line of the progress form that shows the percent completed/remaining
152 g_scale=NULL, ///< The progress bar component in the progress form
153 g_progressForm=NULL, ///< The progress form component itself
154 g_blurb1=NULL, ///< The component for line 1 of the blurb in the progress form
155 g_blurb2=NULL, ///< The component for line 2 of the blurb in the progress form
156 g_blurb3=NULL, ///< The component for line 3 (updated continuously) of the blurb in the progress form
157 g_label=NULL; ///< ????? @bug ?????
158
159/**
160 * Padding above the Newt components, to overcome bugs in Newt.
161 */
162char g_jim_lad_yarr[500];
163char **err_log_lines = NULL, ///< The list of log lines to show on the screen.
164 g_blurb_str_1[MAX_NEWT_COMMENT_LEN] = "", ///< The string for line 1 of the blurb in the progress form
165 g_blurb_str_2[MAX_NEWT_COMMENT_LEN] = "", ///< The string for line 2 of the blurb in the progress form
166 g_blurb_str_3[MAX_NEWT_COMMENT_LEN] = ""; ///< The string for line 3 (updated continuously) of the blurb in the progress form
167newtComponent g_isoform_main = NULL, ///< The evalcall form component itself
168 g_isoform_header=NULL, ///< The component for the evalcall form title
169 g_isoform_scale=NULL, ///< The progress bar component in the evalcall form
170 g_isoform_timeline=NULL, ///< The line of the evalcall form that shows the time elapsed/remaining
171 g_isoform_pcline=NULL; ///< The line of the evalcall form that shows the percent completed/remaining
172long g_isoform_starttime; ///< The time (in seconds since the epoch) that the evalcall form was opened.
173int g_isoform_old_progress = -1; ///< The most recent progress update of the evalcall form (percent).
174char g_isoform_header_str[MAX_STR_LEN]=" "; ///< The string for the evalcall form title.
175int g_mysterious_dot_counter; ///< The counter for the twirling baton (/ | \\ - ...) on percentage less than 3
176int g_noof_log_lines = 6; ///< The number of lines to show in the log at the bottom of the screen.
177int g_noof_rows = 25; ///< The number of rows on the screen.
178
179int g_currentY = 3; ///< The row to write background progress messages to. Incremented each time a message is written.
180extern int g_current_media_number;
181pid_t g_main_pid = 0; ///< The PID of the main Mondo process.
182long g_maximum_progress = 999; ///< The maximum amount of progress (100%) for the currently opened progress form.
183long g_current_progress = -999; ///< The current amount of progress (filelist #, etc.) for the currently opened progress form.
184long g_start_time = 0; ///< The time (in seconds since the epoch) that the progress form was opened.
185bool g_text_mode = TRUE; ///< If FALSE, use a newt interface; if TRUE, use an ugly (but more compatible) dumb terminal interface.
186char g_xmondo_stdin[MAX_NEWT_COMMENT_LEN], ///< ... @bug Unneeded w/current XMondo.
187 g_xmondo_stdout[MAX_NEWT_COMMENT_LEN]; ///< .... @bug Unneeded w/current XMondo.
188bool g_called_by_xmondo=FALSE; ///< @bug Unneeded w/current XMondo.
189char *g_erase_tmpdir_and_scratchdir; ///< The command to run to erase the tmpdir and scratchdir at the end of Mondo.
190char *g_selfmounted_isodir; ///< Holds the NFS mountpoint if mounted via mondoarchive.
191
192/* @} - end of globalGroup */
193
194//int g_fd_in=-1, g_fd_out=-1;
195
196void popup_and_OK(char*);
197
198
199/**
200 * @addtogroup guiGroup
201 * @{
202 */
203/**
204 * Ask the user a yes/no question.
205 * @param prompt The question to ask the user.
206 * @return TRUE for yes; FALSE for no.
207 */
208bool
209ask_me_yes_or_no (char *prompt)
210{
211
212 /*@ buffers ***********************************************************/
213 char *tmp;
214 int i;
215
216 tmp = malloc(MAX_NEWT_COMMENT_LEN);
217 assert_string_is_neither_NULL_nor_zerolength(prompt);
218
219 if (g_text_mode)
220 {
221 while(1)
222 {
223 system("sync");
224 printf ("---promptdialogYN---1--- %s\r\n---promptdialogYN---Q--- [yes] [no] ---\r\n--> ", prompt);
225 (void) fgets(tmp, MAX_NEWT_COMMENT_LEN, stdin);
226 if (tmp[strlen (tmp) - 1] == '\n')
227 tmp[strlen (tmp) - 1] = '\0';
228
229 i = (int) strlen(tmp);
230 if (i>0 && tmp[i-1]<32) { tmp[i-1]='\0'; }
231 if (strstr ("yesYES", tmp))
232 {
233 paranoid_free(tmp);
234 return (TRUE);
235 }
236 else if (strstr ("NOno", tmp))
237 {
238 paranoid_free(tmp);
239 return (FALSE);
240 }
241 else
242 {
243 system("sync");
244 printf("Please enter either YES or NO (or yes or no, or y or n, or...)\n");
245 }
246 }
247 }
248 else
249 {
250 paranoid_free(tmp);
251 return (popup_with_buttons (prompt, "Yes", "No"));
252 }
253}
254
255
256/**
257 * Give the user the opportunity to continue the current operation (OK)
258 * or cancel it (Cancel).
259 * @param prompt The string to be displayed.
260 * @return TRUE for OK, FALSE for Cancel.
261 */
262bool
263ask_me_OK_or_cancel (char *prompt)
264{
265
266 /*@ buffer ************************************************************/
267 char *tmp;
268 int i;
269
270 tmp = malloc(MAX_NEWT_COMMENT_LEN);
271 assert_string_is_neither_NULL_nor_zerolength(prompt);
272 if (g_text_mode)
273 {
274 system("sync");
275 printf ("---promptdialogOKC---1--- %s\r\n---promptdialogOKC---Q--- [OK] [Cancel] ---\r\n--> ", prompt);
276 (void) fgets(tmp, MAX_NEWT_COMMENT_LEN, stdin);
277 if (tmp[strlen (tmp) - 1] == '\n')
278 tmp[strlen (tmp) - 1] = '\0';
279
280 i = (int) strlen(tmp);
281 if (i>0 && tmp[i-1]<32) { tmp[i-1]='\0'; }
282 if (strstr ("okOKOkYESyes", tmp))
283 {
284 paranoid_free(tmp);
285 return (TRUE);
286 }
287 else
288 {
289 paranoid_free(tmp);
290 return (FALSE);
291 }
292 }
293 else
294 {
295 paranoid_free(tmp);
296 return (popup_with_buttons (prompt, " Okay ", "Cancel"));
297 }
298}
299
300
301
302/**
303 * Close the currently opened evalcall form.
304 */
305void
306close_evalcall_form (void)
307{
308 if (g_text_mode) {return;}
309 if (g_isoform_main == NULL) {return; }
310 update_evalcall_form (100);
311 usleep (500000);
312 if (g_text_mode)
313 {
314 log_msg (2, "Closing evalcall form");
315 return;
316 }
317 newtPopHelpLine ();
318 newtFormDestroy (g_isoform_main);
319 newtPopWindow ();
320 g_isoform_main = NULL;
321 g_isoform_old_progress = -1;
322}
323
324
325/**
326 * Close the currently opened progress form.
327 */
328void
329close_progress_form ()
330{
331 if (g_text_mode) {return;}
332 if (g_current_progress == -999)
333 {
334 log_msg (2, "Trying to close the progress form when it ain't open!");
335 return;
336 }
337 g_current_progress = g_maximum_progress;
338 update_progress_form ("Complete");
339 sleep (1);
340 if (g_text_mode)
341 {
342 log_msg (2, "Closing progress form");
343 return;
344 }
345 newtPopHelpLine ();
346 newtFormDestroy (g_progressForm);
347 newtPopWindow ();
348 g_progressForm = NULL;
349 g_current_progress = -999;
350}
351
352
353
354
355/**
356 * Exit Mondo with a fatal error.
357 * @param error_string The error message to present to the user before exiting.
358 * @note This function never returns.
359 */
360void
361fatal_error (char *error_string)
362{
363 /*@ buffers ******************************************************/
364 char fatalstr[MAX_NEWT_COMMENT_LEN] = "-------FATAL ERROR---------";
365 char *tmp;
366 char *command;
367 static bool already_exiting=FALSE;
368 int i;
369
370 /*@ end vars *****************************************************/
371
372 malloc_string(command);
373 tmp = malloc(MAX_NEWT_COMMENT_LEN);
374 set_signals(FALSE); // link to external func
375 g_exiting = TRUE;
376 log_msg(1, "Fatal error received - '%s'", error_string);
377 printf("Fatal error... %s\n", error_string);
378 if (getpid() == g_mastermind_pid)
379 {
380 log_msg(2, "mastermind %d is exiting", (int)getpid());
381 kill(g_main_pid, SIGTERM);
382 paranoid_free(tmp);
383 finish(1);
384 }
385
386 if (getpid() != g_main_pid)
387 {
388 if (g_mastermind_pid != 0 && getpid() != g_mastermind_pid)
389 {
390 log_msg(2, "non-m/m %d is exiting", (int)getpid());
391 kill(g_main_pid, SIGTERM);
392 paranoid_free(tmp);
393 finish(1);
394 }
395 }
396
397 log_msg (3, "OK, I think I'm the main PID.");
398 if (already_exiting)
399 {
400 log_msg(3, "...I'm already exiting. Give me time, Julian!");
401 paranoid_free(tmp);
402 finish(1);
403 }
404
405 already_exiting = TRUE;
406 log_msg(2, "I'm going to do some cleaning up now.");
407 paranoid_system("killall mindi 2> /dev/null");
408 kill_anything_like_this("/mondo/do-not");
409 kill_anything_like_this("tmp.mondo");
410 kill_anything_like_this("partimagehack");
411 sync();
412 sprintf(tmp, "umount %s", g_tmpfs_mountpt);
413 chdir("/");
414 for(i=0; i<10 && run_program_and_log_output(tmp, 5); i++)
415 {
416 log_msg(2, "Waiting for child processes to terminate");
417 sleep(1);
418 run_program_and_log_output(tmp, 5);
419 }
420
421 if (g_erase_tmpdir_and_scratchdir[0])
422 { run_program_and_log_output(g_erase_tmpdir_and_scratchdir, 5); }
423
424 if (g_selfmounted_isodir) {
425 sprintf(command, "umount %s", g_selfmounted_isodir);
426 run_program_and_log_output(command, 5);
427 sprintf(command, "rmdir %s", g_selfmounted_isodir);
428 run_program_and_log_output(command, 5);
429 }
430
431 if (!g_text_mode)
432 {
433 log_msg (0, fatalstr);
434 log_msg (0, error_string);
435 // popup_and_OK (error_string);
436 newtFinished ();
437 }
438
439 printf ("---FATALERROR--- %s\n", error_string);
440 system("cat /var/log/mondo-archive.log | gzip -9 > /tmp/MA.log.gz 2> /dev/null");
441 if (!strstr(g_version, "cvs") && !strstr(g_version, "svn"))
442 {
443 printf("Please try the snapshot (the version with 'cvs' and the date in its filename)");
444 printf("to see if that fixes the problem. Please don't bother the mailing list with");
445 printf("your problem UNTIL you've tried the snapshot. The snapshot contains bugfixes");
446 printf("which might help you. Go to http://www.mondorescue.org/download/download.html");
447 printf("For more information.\n");
448 log_msg(0, "Please DON'T contact the mailing list. Try the SNAPSHOTS.");
449 }
450 else
451 {
452 printf("If you require technical support, please contact the mailing list.\n");
453 printf("See http://www.mondorescue.org for details.\n");
454 printf("The list's members can help you, if you attach that file to your e-mail.\n");
455 }
456 printf("Log file: %s\n", MONDO_LOGFILE);
457 // printf("VERSION=%s\n", g_version);
458 if (does_file_exist("/tmp/MA.log.gz"))
459 {
460 printf("FYI, I have gzipped the log and saved it to /tmp/MA.log.gz\n");
461 }
462 printf ("Mondo has aborted.\n");
463 register_pid(0, "mondo"); // finish() does this too, FYI
464 if (!g_main_pid) { log_msg(3, "FYI - g_main_pid is blank"); }
465 paranoid_free(tmp);
466 paranoid_free(command);
467 finish (254);
468}
469
470
471
472/**
473 * Exit Mondo normally.
474 * @param signal The exit code (0 indicates a successful backup; 1 for Mondo means the
475 * user aborted; 254 means a fatal error occured).
476 * @note This function never returns.
477 */
478void
479finish (int signal)
480{
481 char *command;
482 malloc_string(command);
483
484 /* if (signal==0) { popup_and_OK("Please press <enter> to quit."); } */
485
486 /* newtPopHelpLine(); */
487
488 register_pid(0, "mondo");
489 chdir("/");
490 run_program_and_log_output("umount "MNT_CDROM, FALSE);
491 run_program_and_log_output("rm -Rf /mondo.scratch.* /tmp.mondo.*", FALSE);
492 if (g_erase_tmpdir_and_scratchdir)
493 {
494 run_program_and_log_output(g_erase_tmpdir_and_scratchdir, 1);
495 }
496 if (g_selfmounted_isodir) {
497 sprintf(command, "umount %s", g_selfmounted_isodir);
498 run_program_and_log_output(command, 1);
499 sprintf(command, "rmdir %s", g_selfmounted_isodir);
500 run_program_and_log_output(command, 1);
501 }
502
503// iamhere("foo");
504 /* system("clear"); */
505// iamhere("About to call newtFinished");
506 if (!g_text_mode)
507 {
508 if (does_file_exist("/THIS-IS-A-RAMDISK"))
509 {
510 log_msg(1, "Calling newtFinished()");
511 newtFinished();
512 }
513 else
514 {
515 log_msg(1, "Calling newtSuspend()");
516 newtSuspend();
517 }
518 }
519// system("clear");
520// iamhere("Finished calling newtFinished");
521 printf( "Execution run ended; result=%d\n", signal);
522 printf( "Type 'less %s' to see the output log\n", MONDO_LOGFILE);
523 free_libmondo_global_strings();
524 exit (signal);
525}
526
527
528
529
530
531/**
532 * Log the last @p g_noof_log_lines lines of @p filename that match @p
533 * grep_for_me to the screen.
534 * @param filename The file to give the end of.
535 * @param grep_for_me If not "", then only give lines in @p filename that match this regular expression.
536 */
537void
538log_file_end_to_screen (char *filename, char *grep_for_me)
539{
540
541 /*@ buffers ***********************************************************/
542 char *command;
543 char *tmp;
544
545 /*@ pointers **********************************************************/
546 FILE *fin;
547
548 /*@ int ***************************************************************/
549 int i = 0;
550
551 malloc_string(command);
552 malloc_string(tmp);
553 assert_string_is_neither_NULL_nor_zerolength(filename);
554 assert(grep_for_me!=NULL);
555
556 if (!does_file_exist (filename))
557 {
558 paranoid_free(command);
559 paranoid_free(tmp);
560 return;
561 }
562 if (grep_for_me[0] != '\0')
563 {
564 sprintf (command, "grep '%s' %s | tail -n%d",
565 grep_for_me, filename,
566 g_noof_log_lines);
567 }
568 else
569 {
570 sprintf (command, "cat %s | tail -n%d %s", g_noof_log_lines, filename);
571 }
572 fin = popen (command, "r");
573 if (!fin)
574 {
575 log_OS_error(command);
576 }
577 else
578 {
579 for (i = 0; i < g_noof_log_lines; i++)
580 {
581 for (err_log_lines[i][0] = '\0';
582 strlen (err_log_lines[i]) < 2 && !feof (fin);)
583 {
584 (void) fgets (err_log_lines[i], MAX_NEWT_COMMENT_LEN, fin);
585 strip_spaces (err_log_lines[i]);
586 if (!strncmp (err_log_lines[i], "root:", 5))
587 {
588 strcpy (tmp, err_log_lines[i] + 6);
589 strcpy (err_log_lines[i], tmp);
590 }
591 if (feof (fin))
592 {
593 break;
594 }
595 }
596 }
597 paranoid_pclose (fin);
598 }
599 refresh_log_screen ();
600 paranoid_free(command);
601 paranoid_free(tmp);
602}
603
604
605/**
606 * Log a message to the screen.
607 * @param fmt A printf-style format string to write. The following parameters are its arguments.
608 * @note The message is also written to the logfile.
609 */
610void
611log_to_screen (const char *fmt, ...)
612{
613
614 /*@ int ***************************************************************/
615 int i = 0;
616 int j = 0;
617 va_list args;
618
619 /*@ buffers ***********************************************************/
620 char *output;
621
622 malloc_string(output);
623
624 va_start(args, fmt);
625 vsprintf(output, fmt, args);
626 log_msg(0, output);
627 output[80] = '\0';
628 va_end(args);
629 i = (int) strlen (output);
630 if (i>0 && output[i - 1] < 32)
631 {
632 output[i - 1] = '\0';
633 }
634
635 if (err_log_lines) {
636 for (i = 1; i < g_noof_log_lines; i++)
637 {
638 strcpy (err_log_lines[i - 1],
639 " ");
640 strcpy (err_log_lines[i - 1], err_log_lines[i]);
641 }
642 }
643 while (strlen(output)>0 && output[strlen (output) - 1] < 32)
644 {
645 output[strlen (output) - 1] = '\0';
646 }
647 for (j = 0; j < (int) strlen (output); j++)
648 {
649 if (output[j] < 32)
650 {
651 output[j] = ' ';
652 }
653 }
654 if (err_log_lines)
655 strcpy (err_log_lines[g_noof_log_lines - 1], output);
656 if (g_text_mode)
657 {
658 printf("%s\n", output);
659 }
660 else
661 {
662 refresh_log_screen ();
663 }
664 paranoid_free(output);
665}
666
667
668
669
670/**
671 * Write a string to the root window at (@p x, @p y) and also to the logfile.
672 * @param y The row to write the string to.
673 * @param x The column to write the string to.
674 * @param output The string to write.
675 */
676void
677mvaddstr_and_log_it (int y, int x, char *output)
678{
679 assert_string_is_neither_NULL_nor_zerolength(output);
680 log_msg (0, output);
681 if (g_text_mode)
682 {
683 printf ("%s\n", output);
684 }
685 else
686 {
687 newtDrawRootText (x, y, output);
688 newtRefresh ();
689 }
690}
691
692
693
694
695/**
696 * Open an evalcall form with title @p ttl.
697 * @param ttl The title to use for the evalcall form.
698 */
699void
700open_evalcall_form (char *ttl)
701{
702
703 /*@ buffers **********************************************************/
704 char *title;
705 char *tmp;
706
707 /*@ initialize *******************************************************/
708 g_isoform_old_progress = -1;
709 g_mysterious_dot_counter = 0;
710 malloc_string(title);
711 malloc_string(tmp);
712
713 assert(ttl!=NULL);
714 strcpy (title, ttl);
715 strcpy (g_isoform_header_str, title);
716// center_string (title, 80);
717 if (g_text_mode)
718 {
719 log_msg (0, title);
720 }
721 else
722 {
723 strcpy(tmp, title);
724 center_string(tmp, 80);
725 newtPushHelpLine (tmp);
726 }
727 center_string (g_isoform_header_str, 36);
728 g_isoform_starttime = get_time ();
729 if (g_text_mode)
730 {
731 log_msg (0, g_isoform_header_str);
732 }
733 else
734 {
735 g_isoform_header = newtLabel (1, 1, g_isoform_header_str);
736 g_isoform_scale = newtScale (3, 3, 34, 100);
737 // newtOpenWindow (20, 6, 40, 7, title); // "Please Wait");
738 newtCenteredWindow (40, 7, title);
739 g_isoform_main = newtForm (NULL, NULL, 0);
740 g_isoform_timeline = newtLabel (1, 5, "This is the timeline");
741 g_isoform_pcline = newtLabel (1, 6, "This is the pcline");
742 newtFormAddComponents (g_isoform_main, g_isoform_timeline,
743 g_isoform_pcline, g_isoform_header,
744 g_isoform_scale, NULL);
745 newtRefresh ();
746 }
747 update_evalcall_form (0);
748 paranoid_free(tmp);
749 paranoid_free(title);
750}
751
752
753
754/**
755 * Open a progress form with title @p title.
756 * @param title The title to use for the progress form (will be put in the title bar on Newt).
757 * @param b1 The first line of the blurb; generally static.
758 * @param b2 The second line of the blurb; generally static.
759 * @param b3 The third line of the blurb; generally dynamic (it is passed
760 * to update_evalcall_form() every time).
761 * @param max_val The maximum amount of progress (number of filesets, etc.)
762 */
763void
764open_progress_form (char *title, char *b1, char *b2, char *b3, long max_val)
765{
766
767 /*@ buffers **********************************************************/
768 char *b1c;
769 char *blurb1;
770 char *blurb2;
771 char *blurb3;
772
773 /*@ initialize *******************************************************/
774 g_mysterious_dot_counter = 0;
775
776 malloc_string(b1c);
777 malloc_string(blurb1);
778 malloc_string(blurb2);
779 malloc_string(blurb3);
780
781 assert(title!=NULL);
782 assert(b1!=NULL);
783 assert(b2!=NULL);
784 assert(b3!=NULL);
785
786 strcpy (blurb1, b1);
787 strcpy (blurb2, b2);
788 strcpy (blurb3, b3);
789 strcpy (b1c, b1);
790 center_string (b1c, 80);
791 if (max_val <= 0)
792 {
793 max_val = 1;
794 }
795
796 g_start_time = get_time ();
797 g_maximum_progress = max_val;
798 g_current_progress = 0;
799 strcpy (g_blurb_str_1, blurb1);
800 strcpy (g_blurb_str_2, blurb3);
801 strcpy (g_blurb_str_3, blurb2);
802 if (g_text_mode)
803 {
804 log_msg (0, blurb1);
805 log_msg (0, blurb2);
806 log_msg (0, blurb3);
807 }
808 else
809 {
810 g_blurb1 = newtLabel (2, 1, blurb1);
811 g_blurb2 = newtLabel (2, 2, blurb3);
812 g_blurb3 = newtLabel (2, 4, blurb2);
813 // newtOpenWindow (10, 4, 60, 11, title);
814 newtCenteredWindow (60, 11, title);
815 g_scale = newtScale (3, 6, 54, g_maximum_progress);
816 g_progressForm = newtForm (NULL, NULL, 0);
817 g_percentline = newtLabel (10, 9, "This is the percentline");
818 g_timeline = newtLabel (10, 8, "This is the timeline");
819 newtFormAddComponents (g_progressForm, g_percentline, g_timeline,
820 g_scale, g_blurb1, g_blurb3, g_blurb2, NULL);
821 newtPushHelpLine (b1c);
822 newtRefresh ();
823 }
824 update_progress_form_full (blurb1, blurb2, blurb3);
825 paranoid_free(b1c);
826 paranoid_free(blurb1);
827 paranoid_free(blurb2);
828 paranoid_free(blurb3);
829}
830
831/**
832 * Give a message to the user in the form of a dialog box (under Newt).
833 * @param prompt The message.
834 */
835void
836popup_and_OK (char *prompt)
837{
838 char ch;
839
840 assert_string_is_neither_NULL_nor_zerolength(prompt);
841
842 log_msg (0, prompt);
843 if (g_text_mode)
844 {
845 printf
846 ("---promptpopup---1--- %s\r\n---promptpopup---Q--- [OK] ---\r\n--> ", prompt);
847 while (((ch = getchar()) != '\n') && (ch != EOF))
848 ;
849 }
850 else
851 {
852 (void) popup_with_buttons (prompt, " OK ", "");
853 }
854}
855
856/**
857 * Ask the user to enter a value.
858 * @param title The title of the dialog box.
859 * @param b The blurb (e.g. what you want the user to enter).
860 * @param output The string to put the user's answer in.
861 * @param maxsize The size in bytes allocated to @p output.
862 * @return TRUE if the user pressed OK, FALSE if they pressed Cancel.
863 */
864bool
865popup_and_get_string (char *title, char *b, char *output, int maxsize)
866{
867
868 /*@ newt *************************************************************/
869 newtComponent myForm;
870 newtComponent b_1;
871 newtComponent b_2;
872 newtComponent b_res;
873 newtComponent text;
874 newtComponent type_here;
875
876 /*@ pointers **********************************************************/
877 char *entry_value;
878
879 /*@ buffers ***********************************************************/
880 char *blurb;
881 char *original_contents;
882
883 blurb = malloc(MAX_NEWT_COMMENT_LEN);
884 original_contents = malloc(MAX_NEWT_COMMENT_LEN);
885 assert_string_is_neither_NULL_nor_zerolength(title);
886 assert(b!=NULL);
887 assert(output!=NULL);
888
889 if (g_text_mode)
890 {
891 printf ("---promptstring---1--- %s\r\n---promptstring---2--- %s\r\n---promptstring---Q---\r\n--> ", title, b);
892 (void) fgets(output, maxsize, stdin);
893 if (output[strlen (output) - 1] == '\n')
894 output[strlen (output) - 1] = '\0';
895 paranoid_free(blurb);
896 paranoid_free(original_contents);
897 return (TRUE);
898 }
899 strcpy (blurb, b);
900 text = newtTextboxReflowed (2, 1, blurb, 48, 5, 5, 0);
901 strcpy (original_contents, output);
902 output[0] = '\0';
903 type_here =
904 newtEntry (2, newtTextboxGetNumLines (text) + 2, original_contents, 50,
905#ifdef __cplusplus
906 0, NEWT_FLAG_RETURNEXIT
907#else
908 (void*)&entry_value, NEWT_FLAG_RETURNEXIT
909#endif
910 );
911 b_1 = newtButton (6, newtTextboxGetNumLines (text) + 4, " OK ");
912 b_2 = newtButton (18, newtTextboxGetNumLines (text) + 4, "Cancel");
913 // newtOpenWindow (8, 5, 54, newtTextboxGetNumLines (text) + 9, title);
914 newtCenteredWindow (54, newtTextboxGetNumLines (text) + 9, title);
915 myForm = newtForm (NULL, NULL, 0);
916 newtFormAddComponents (myForm, text, type_here, b_1, b_2, NULL);
917 center_string (blurb, 80);
918 newtPushHelpLine (blurb);
919 b_res = newtRunForm (myForm);
920 strcpy (output, entry_value);
921 newtPopHelpLine ();
922 newtFormDestroy (myForm);
923 newtPopWindow ();
924 if (b_res == b_2)
925 {
926 strcpy (output, original_contents);
927 paranoid_free(blurb);
928 paranoid_free(original_contents);
929 return (FALSE);
930 }
931 else
932 {
933 paranoid_free(blurb);
934 paranoid_free(original_contents);
935 return (TRUE);
936 }
937}
938
939
940/**
941 * Pop up a dialog box with user-defined buttons.
942 * @param p The text to put in the dialog box.
943 * @param button1 The label on the first button.
944 * @param button2 The label on the second button, or "" if you only want one button.
945 * @return TRUE if @p button1 was pushed, FALSE otherwise.
946 */
947bool
948popup_with_buttons (char *p, char *button1, char *button2)
949{
950
951 /*@ buffers ************************************************************/
952 char *prompt, *tmp;
953
954 /*@ newt ***************************************************************/
955 newtComponent myForm;
956 newtComponent b_1;
957 newtComponent b_2;
958 newtComponent b_res;
959 newtComponent text;
960
961 prompt = malloc(MAX_NEWT_COMMENT_LEN);
962 tmp = malloc(MAX_NEWT_COMMENT_LEN);
963 assert_string_is_neither_NULL_nor_zerolength(p);
964 assert(button1!=NULL);
965 assert(button2!=NULL);
966 if (g_text_mode)
967 {
968 if (strlen(button2)==0)
969 { printf("%s (%s) --> ", p, button1); }
970 else
971 { printf("%s (%s or %s) --> ", p, button1, button2); }
972 for(tmp[0]='\0'; strcmp(tmp, button1) && (strlen(button2)==0 || strcmp(tmp, button2)); )
973 {
974 printf("--> ");
975 (void) fgets(tmp, MAX_NEWT_COMMENT_LEN, stdin);
976 }
977 if (!strcmp(tmp, button1)) { paranoid_free(tmp); paranoid_free(prompt); return(TRUE); }
978 else { paranoid_free(tmp); paranoid_free(prompt); return(FALSE); }
979 }
980
981 strcpy (prompt, p);
982 text = newtTextboxReflowed (1, 1, prompt, 40, 5, 5, 0);
983 b_1 =
984 newtButton (20 -
985 ((button2[0] !=
986 '\0') ? strlen (button1) + 2 : strlen (button1) / 2),
987 newtTextboxGetNumLines (text) + 3, button1);
988 if (button2[0] != '\0')
989 {
990 b_2 = newtButton (24, newtTextboxGetNumLines (text) + 3, button2);
991 }
992 else
993 {
994 b_2 = NULL;
995 }
996 // newtOpenWindow (25, 5, 46, newtTextboxGetNumLines (text) + 7, "Alert");
997 newtCenteredWindow (46, newtTextboxGetNumLines (text) + 7, "Alert");
998 myForm = newtForm (NULL, NULL, 0);
999 newtFormAddComponents (myForm, text, b_1, b_2, NULL);
1000 center_string (prompt, 80);
1001 newtPushHelpLine (prompt);
1002 b_res = newtRunForm (myForm);
1003 newtPopHelpLine ();
1004 newtFormDestroy (myForm);
1005 newtPopWindow ();
1006 if (b_res == b_1)
1007 {
1008paranoid_free(tmp); paranoid_free(prompt); return (TRUE);
1009 }
1010 else
1011 {
1012paranoid_free(tmp); paranoid_free(prompt); return (FALSE);
1013 }
1014}
1015
1016
1017
1018
1019/**
1020 * Synchronize the log messages stored in @p err_log_lines with those shown
1021 * on the screen.
1022 */
1023void
1024refresh_log_screen ()
1025{
1026
1027 /*@ int ************************************************************/
1028 int i = 0;
1029
1030
1031 if (g_text_mode || !err_log_lines)
1032 {
1033 return;
1034 }
1035 for (i = g_noof_log_lines - 1; i >= 0; i--)
1036 {
1037 newtDrawRootText (0, i + g_noof_rows - 1 - g_noof_log_lines,
1038" ");
1039 }
1040 newtRefresh ();
1041 for (i = g_noof_log_lines - 1; i >= 0; i--)
1042 {
1043 err_log_lines[i][79] = '\0';
1044 newtDrawRootText (0, i + g_noof_rows - 1 - g_noof_log_lines, err_log_lines[i]);
1045 }
1046 newtRefresh ();
1047}
1048
1049
1050/**
1051 * Set up the Newt graphical environment. If @p g_text_mode is TRUE, then
1052 * only allocate some memory.
1053 */
1054void
1055setup_newt_stuff ()
1056{
1057
1058 /*@ int ************************************************************/
1059 int i = 0;
1060 int cols;
1061
1062 if (!g_text_mode)
1063 {
1064 newtInit();
1065 newtCls();
1066 newtPushHelpLine
1067 ("Welcome to Mondo Rescue, by Hugo Rabson and the Internet. All rights reversed.");
1068 /* newtDrawRootText(28,0,"Welcome to Mondo Rescue"); */
1069 newtDrawRootText (18, 0, WELCOME_STRING);
1070 newtRefresh();
1071 newtGetScreenSize (&cols, &g_noof_rows);
1072 g_noof_log_lines = (g_noof_rows / 5) + 1;
1073 }
1074
1075 err_log_lines = (char **) malloc (sizeof (char *) * g_noof_log_lines);
1076 if (!err_log_lines) {
1077 fatal_error ("Out of memory");
1078 }
1079
1080 for (i = 0; i < g_noof_log_lines; i++) {
1081 err_log_lines[i] = (char *) malloc (MAX_NEWT_COMMENT_LEN);
1082 if (!err_log_lines[i]) {
1083 fatal_error ("Out of memory");
1084 }
1085 }
1086
1087 for (i = 0; i < g_noof_log_lines; i++)
1088 {
1089 err_log_lines[i][0] = '\0';
1090 }
1091}
1092
1093
1094/**
1095 * Update the evalcall form to show (<tt>num</tt>/<tt>denom</tt>)*100 %.
1096 * @param num The numerator of the ratio.
1097 * @param denom The denomenator of the ratio.
1098 */
1099void
1100update_evalcall_form_ratio (int num, int denom)
1101{
1102
1103 /*@ long *************************************************************/
1104 long current_time = 0;
1105 long time_taken = 0;
1106 long time_total_est = 0;
1107 long time_remaining = 0;
1108
1109 /*@ buffers ***********************************************************/
1110 char *timeline_str;
1111 char *pcline_str;
1112 char *taskprogress;
1113
1114 /*@ int ***************************************************************/
1115 int percentage = 0;
1116 int i = 0;
1117 int j = 0;
1118
1119 malloc_string(timeline_str);
1120 malloc_string(pcline_str);
1121 malloc_string(taskprogress);
1122 timeline_str[0] = '\0';
1123// log_it("update_eval_call_form called");
1124 if (num * 100 < denom)
1125 {
1126 percentage = 1;
1127 }
1128 else
1129 {
1130 percentage = (num * 100 + denom / 2) / denom ;
1131 }
1132
1133 current_time = get_time ();
1134 time_taken = current_time - g_isoform_starttime;
1135 if (num)
1136 {
1137 time_total_est = time_taken * denom / num;
1138 time_remaining = time_total_est - time_taken;
1139 }
1140 else
1141 {
1142 time_remaining = 0;
1143 }
1144 if (!g_text_mode)
1145 {
1146 newtLabelSetText (g_isoform_header, g_isoform_header_str);
1147 }
1148 g_mysterious_dot_counter = (g_mysterious_dot_counter + 1) % 27;
1149 if ((percentage < 3 && g_isoform_old_progress < 3)
1150 || percentage > g_isoform_old_progress)
1151 {
1152 g_isoform_old_progress = percentage;
1153 sprintf (timeline_str,
1154 "%2ld:%02ld taken %2ld:%02ld remaining",
1155 time_taken / 60, time_taken % 60, time_remaining / 60,
1156 time_remaining % 60);
1157 if (percentage < 3)
1158 {
1159 sprintf (pcline_str, " Working");
1160 for (j = 0; j < g_mysterious_dot_counter; j++)
1161 {
1162 strcat (pcline_str, ".");
1163 }
1164 for (; j < 27; j++)
1165 {
1166 strcat (pcline_str, " ");
1167 }
1168 sprintf (pcline_str + strlen (pcline_str), " %c",
1169 special_dot_char (g_mysterious_dot_counter));
1170 }
1171 else
1172 {
1173 sprintf (pcline_str, " %3d%% done %3d%% to go",
1174 percentage, 100 - percentage);
1175 }
1176 if (g_text_mode)
1177 {
1178 sprintf (taskprogress, "TASK: [");
1179 for (i = 0; i < percentage; i += 5)
1180 {
1181 strcat (taskprogress, "*");
1182 }
1183 for (; i < 100; i += 5)
1184 {
1185 strcat (taskprogress, ".");
1186 }
1187 if (percentage >= 3)
1188 {
1189 sprintf (taskprogress + strlen (taskprogress),
1190 "] %3d%% done; %2ld:%02ld to go", percentage,
1191 time_remaining / 60, time_remaining % 60);
1192 printf ("---evalcall---1--- %s\r\n", g_isoform_header_str);
1193 printf ("---evalcall---2--- %s\r\n", taskprogress);
1194 printf ("---evalcall---E---\r\n");
1195 }
1196 }
1197 else
1198 {
1199 newtScaleSet (g_isoform_scale, (unsigned long long) percentage);
1200 newtLabelSetText (g_isoform_pcline, pcline_str);
1201 if (percentage >= 3)
1202 {
1203 newtLabelSetText (g_isoform_timeline, timeline_str);
1204 }
1205 }
1206 }
1207 if (!g_text_mode)
1208 {
1209// log_it("refreshing");
1210 newtRefresh ();
1211 }
1212 paranoid_free(timeline_str);
1213 paranoid_free(pcline_str);
1214 paranoid_free(taskprogress);
1215}
1216
1217
1218
1219/**
1220 * Update the evalcall form to show @p curr %.
1221 * @param curr The current amount of progress (percentage) in the evalcall form.
1222 */
1223void
1224update_evalcall_form (int curr)
1225{
1226 update_evalcall_form_ratio (curr, 100);
1227}
1228
1229
1230
1231/**
1232 * Update the progress form to show @p blurb3 and the current value of
1233 * @p g_maximum_progress.
1234 * @param blurb3 The new third line of the blurb; use @p g_blurb_str_2 (no, that's not a typo) to keep it the same.
1235 */
1236void
1237update_progress_form (char *blurb3)
1238{
1239 /* log_it("update_progress_form --- called"); */
1240 if (g_current_progress == -999)
1241 {
1242 /* log_it("You're trying to update progress form when it ain't open. Aww, that's OK. I'll let it go. It's a bit naughty but it's a nonfatal error. No prob, Bob."); */
1243 return;
1244 }
1245 strcpy (g_blurb_str_2, blurb3);
1246 update_progress_form_full (g_blurb_str_1, g_blurb_str_2, g_blurb_str_3);
1247}
1248
1249
1250/**
1251 * Update the progress form's complete blurb and show @p g_current_progress.
1252 * @param blurb1 The first line of the blurb. Use @p g_blurb_str_1 to keep it unchanged.
1253 * @param blurb2 The second line of the blurb. Use @p g_blurb_str_3 (no, that's not a typo) to keep it the same.
1254 * @param blurb3 The third line of the blurb. Use @p g_blurb_str_2 (no, that's not a typo either) to keep it the same.
1255 */
1256void
1257update_progress_form_full (char *blurb1, char *blurb2, char *blurb3)
1258{
1259 /*@ long ******************************************************/
1260 long current_time = 0;
1261 long time_taken = 0;
1262 long time_remaining = 0;
1263 long time_total_est = 0;
1264
1265 /*@ int ********************************************************/
1266 int percentage = 0;
1267 int i = 0;
1268
1269 /*@ buffers ****************************************************/
1270 char *percentline_str;
1271 char *timeline_str;
1272 char *taskprogress;
1273 char *tmp;
1274
1275// log_msg(1, "'%s' '%s' '%s'", blurb1, blurb2, blurb3);
1276 percentline_str = malloc(MAX_NEWT_COMMENT_LEN);
1277 timeline_str = malloc(MAX_NEWT_COMMENT_LEN);
1278 taskprogress = malloc(MAX_NEWT_COMMENT_LEN);
1279 malloc_string(tmp);
1280 if (!g_text_mode)
1281 {
1282 assert(blurb1!=NULL);
1283 assert(blurb2!=NULL);
1284 assert(blurb3!=NULL);
1285 assert(g_timeline!=NULL);
1286 }
1287
1288 percentline_str[0] = '\0';
1289
1290 current_time = get_time ();
1291 time_taken = current_time - g_start_time;
1292 if (g_maximum_progress == 0)
1293 {
1294 percentage = 0;
1295 }
1296 else
1297 {
1298 if (g_current_progress > g_maximum_progress)
1299 {
1300 sprintf (tmp,
1301 "update_progress_form_full(%s,%s,%s) --- g_current_progress=%ld; g_maximum_progress=%ld",
1302 blurb1, blurb2, blurb3, g_current_progress,
1303 g_maximum_progress);
1304 log_msg (0, tmp);
1305 g_current_progress = g_maximum_progress;
1306 }
1307 percentage = (int) ((g_current_progress * 100L) / g_maximum_progress);
1308 }
1309 if (percentage < 1)
1310 {
1311 percentage = 1;
1312 }
1313 if (percentage > 100)
1314 {
1315 percentage = 100;
1316 }
1317 if (g_current_progress)
1318 {
1319 time_total_est = time_taken * (long) g_maximum_progress / (long) (g_current_progress);
1320 time_remaining = time_total_est - time_taken;
1321 }
1322 else
1323 {
1324 time_remaining = 0;
1325 }
1326 g_mysterious_dot_counter = (g_mysterious_dot_counter + 1) % 27;
1327 sprintf (timeline_str,
1328 "%2ld:%02ld taken %2ld:%02ld remaining ",
1329 time_taken / 60, time_taken % 60, time_remaining / 60,
1330 time_remaining % 60);
1331 sprintf (percentline_str, " %3d%% done %3d%% to go",
1332 percentage, 100 - percentage);
1333
1334 if (g_text_mode)
1335 {
1336 printf("---progress-form---1--- %s\r\n", blurb1);
1337 printf("---progress-form---2--- %s\r\n", blurb2);
1338 printf("---progress-form---3--- %s\r\n", blurb3);
1339 printf("---progress-form---E---\n");
1340 sprintf (taskprogress, "TASK: [");
1341 for (i = 0; i < percentage; i += 5)
1342 {
1343 strcat (taskprogress, "*");
1344 }
1345 for (; i < 100; i += 5)
1346 {
1347 strcat (taskprogress, ".");
1348 }
1349 if (percentage>100) { log_msg(2, "percentage = %d", percentage); }
1350 sprintf (taskprogress + strlen (taskprogress),
1351 "] %3d%c", percentage, '%');
1352 sprintf (taskprogress + strlen (taskprogress),
1353 " done; %2ld:%02ld to go",
1354 time_remaining / 60, time_remaining % 60);
1355 printf("---progress-form---4--- %s\r\n", taskprogress);
1356 }
1357 else
1358 {
1359 center_string (blurb1, 54);
1360 center_string (blurb2, 54);
1361 center_string (blurb3, 54);
1362 newtLabelSetText (g_blurb1, blurb1);
1363 newtLabelSetText (g_blurb2, blurb3);
1364 newtLabelSetText (g_blurb3, blurb2);
1365 newtScaleSet (g_scale, (unsigned long long) g_current_progress);
1366 if (percentage >= 2)
1367 {
1368 newtLabelSetText (g_timeline, timeline_str);
1369 }
1370 newtLabelSetText (g_percentline, percentline_str);
1371 newtRefresh ();
1372 }
1373 paranoid_free(percentline_str);
1374 paranoid_free(timeline_str);
1375 paranoid_free(taskprogress);
1376 paranoid_free(tmp);
1377}
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392/**
1393 * Ask the user which backup media type they would like to use.
1394 * The choices are @p none (exit to shell), @c cdr, @c cdrw, @c dvd,
1395 * @c tape, @c cdstream, @c udev (only when @p g_text_mode is TRUE), @c nfs,
1396 * and @c iso.
1397 * @param restoring TRUE if we're restoring, FALSE if we're backing up.
1398 * @return The backup type chosen, or @c none if the user chose "Exit to shell".
1399 */
1400t_bkptype
1401which_backup_media_type (bool restoring)
1402{
1403
1404 /*@ char *************************************************************/
1405 t_bkptype output;
1406
1407
1408 /*@ newt *************************************************************/
1409 char *title_sz;
1410 char *minimsg_sz;
1411 static t_bkptype possible_bkptypes[] = { none,cdr,cdrw,dvd,tape,cdstream,udev,nfs,iso };
1412 static char *possible_responses[] = {"none", "cdr", "cdrw", "dvd", "tape", "cdstream", "udev", "nfs", "iso", NULL };
1413 char *outstr;
1414 t_bkptype backup_type;
1415 int i;
1416
1417 newtComponent b1;
1418 newtComponent b2;
1419 newtComponent b3;
1420 newtComponent b4;
1421 newtComponent b5;
1422 newtComponent b6;
1423 newtComponent b7;
1424 newtComponent b8;
1425 newtComponent b_res;
1426 newtComponent myForm;
1427
1428 title_sz = malloc(MAX_NEWT_COMMENT_LEN);
1429 minimsg_sz = malloc(MAX_NEWT_COMMENT_LEN);
1430 outstr = malloc(MAX_NEWT_COMMENT_LEN);
1431 if (g_text_mode)
1432 {
1433 for(backup_type = none; backup_type == none; )
1434 {
1435 printf("Backup type (");
1436 for(i=0; possible_responses[i]; i++)
1437 {
1438 printf("%c%s", (i==0)?'\0':' ', possible_responses[i]);
1439 }
1440 printf(")\n--> ");
1441 (void) fgets(outstr, MAX_NEWT_COMMENT_LEN, stdin);
1442 strip_spaces(outstr);
1443 for(i=0; possible_responses[i]; i++)
1444 {
1445 if (!strcmp(possible_responses[i], outstr))
1446 { backup_type = possible_bkptypes[i]; }
1447 }
1448 }
1449 paranoid_free(title_sz);
1450 paranoid_free(minimsg_sz);
1451 paranoid_free(outstr);
1452 return(backup_type);
1453 }
1454 newtDrawRootText (18, 0, WELCOME_STRING);
1455 if (restoring)
1456 {
1457 strcpy(title_sz, "Please choose the backup media from which you want to read data.");
1458 strcpy(minimsg_sz, "Read from:");
1459 }
1460 else
1461 {
1462 strcpy(title_sz, "Please choose the backup media to which you want to archive data.");
1463 strcpy(minimsg_sz, "Backup to:");
1464 }
1465 newtPushHelpLine (title_sz);
1466 // newtOpenWindow (23, 3, 34, 17, minimsg_sz);
1467 newtCenteredWindow (34, 17, minimsg_sz);
1468 b1 = newtButton ( 1, 1, "CD-R disks ");
1469 b2 = newtButton (17, 1, "CD-RW disks");
1470 b3 = newtButton ( 1, 9, "Tape drive ");
1471 b4 = newtButton (17, 5, "CD streamer");
1472 b5 = newtButton ( 1, 5, " DVD disks ");
1473 b6 = newtButton (17, 9, " NFS mount ");
1474 b7 = newtButton ( 1,13, " Hard disk ");
1475 b8 = newtButton (17,13, " Exit ");
1476 myForm = newtForm (NULL, NULL, 0);
1477 newtFormAddComponents (myForm, b1, b5, b3, b7, b2, b4, b6, b8, NULL);
1478 b_res = newtRunForm (myForm);
1479 newtFormDestroy (myForm);
1480 newtPopWindow ();
1481 if (b_res == b1) { output = cdr; }
1482 else if (b_res == b2) { output = cdrw; }
1483 else if (b_res == b3) { output = tape; }
1484 else if (b_res == b4) { output = cdstream; }
1485 else if (b_res == b5) { output = dvd; }
1486 else if (b_res == b6) { output = nfs; }
1487 else if (b_res == b7) { output = iso; }
1488 else { output = none; }
1489 newtPopHelpLine ();
1490 paranoid_free(title_sz);
1491 paranoid_free(minimsg_sz);
1492 paranoid_free(outstr);
1493 return (output);
1494}
1495
1496
1497
1498
1499/**
1500 * Ask the user how much compression they would like to use.
1501 * The choices are "None" (0), "Minimum" (1), "Average" (4), and "Maximum" (9).
1502 * @return The compression level (0-9) chosen, or -1 for "Exit".
1503 */
1504int
1505which_compression_level ()
1506{
1507
1508 /*@ char *************************************************************/
1509 int output = none;
1510
1511
1512 /*@ newt *************************************************************/
1513
1514 newtComponent b1;
1515 newtComponent b2;
1516 newtComponent b3;
1517 newtComponent b4;
1518 newtComponent b5;
1519 newtComponent b_res;
1520 newtComponent myForm;
1521
1522 newtDrawRootText (18, 0, WELCOME_STRING);
1523 newtPushHelpLine
1524 (" Please specify the level of compression that you want.");
1525 // newtOpenWindow (23, 3, 34, 13, "How much compression?");
1526 newtCenteredWindow (34, 13, "How much compression?");
1527 b1 = newtButton ( 4, 1, "Maximum");
1528 b2 = newtButton (18, 1, "Average");
1529 b3 = newtButton ( 4, 5, "Minumum");
1530 b4 = newtButton (18, 5, " None ");
1531 b5 = newtButton ( 4, 9, " Exit ");
1532 myForm = newtForm (NULL, NULL, 0);
1533 newtFormAddComponents (myForm, b1, b3, b2, b4, b5, NULL);
1534 b_res = newtRunForm (myForm);
1535 newtFormDestroy (myForm);
1536 newtPopWindow ();
1537 if (b_res == b1) { output = 9; }
1538 else if (b_res == b2) { output = 4; }
1539 else if (b_res == b3) { output = 1; }
1540 else if (b_res == b4) { output = 0; }
1541 else if (b_res == b5) { output = -1; }
1542 newtPopHelpLine ();
1543 return (output);
1544}
1545
1546
1547
1548
1549
1550/**
1551 * Load @p source_file (a list of files) into @p filelist. There can be no more than
1552 * @p ARBITRARY_MAXIMUM entries.
1553 * @param filelist The filelist structure to load @p source_file into.
1554 * @param source_file The file containing a list of filenames to load into @p filelist.
1555 */
1556int load_filelist_into_array(struct s_filelist *filelist, char *source_file)
1557{
1558 int i;
1559 bool done;
1560 char *tmp;
1561 FILE*fin;
1562 struct s_filelist_entry dummy_fle;
1563
1564 malloc_string(tmp);
1565 assert(filelist!=NULL);
1566 assert_string_is_neither_NULL_nor_zerolength(source_file);
1567
1568 iamhere("entering");
1569 if (!(fin=fopen(source_file, "r"))) { log_OS_error(source_file); log_msg(2, "Can't open %s; therefore, cannot popup list", source_file); paranoid_free(tmp); return(1); }
1570 log_msg(2, "Loading %s", source_file);
1571 for(filelist->entries = 0; filelist->entries <= ARBITRARY_MAXIMUM; filelist->entries++)
1572 {
1573god_i_hate_gotos:
1574 if (feof(fin)) { break; }
1575 (void) fgets(tmp, MAX_NEWT_COMMENT_LEN, fin);
1576 i = (int) strlen(tmp);
1577 if (i<2) { goto god_i_hate_gotos; }
1578 if (tmp[i-1]<32) { tmp[--i]='\0'; }
1579 if (i<2) { goto god_i_hate_gotos; }
1580 if (!does_file_exist(tmp)) { goto god_i_hate_gotos; }
1581 filelist->el[filelist->entries].severity = severity_of_difference(tmp, NULL);
1582 strcpy(filelist->el[filelist->entries].filename, tmp);
1583 if (feof(fin)) { break; }
1584 }
1585 paranoid_fclose(fin);
1586 if (filelist->entries >= ARBITRARY_MAXIMUM)
1587 {
1588 log_to_screen ("Arbitrary limits suck, man!");
1589 paranoid_free(tmp);
1590 return(1);
1591 }
1592 for(done=FALSE;!done;)
1593 {
1594 done = TRUE;
1595 for(i=0; i<filelist->entries-1; i++)
1596 {
1597// if (strcmp(filelist->el[i].filename, filelist->el[i+1].filename) > 0)
1598 if (filelist->el[i].severity < filelist->el[i+1].severity || (filelist->el[i].severity==filelist->el[i+1].severity && strcmp(filelist->el[i].filename, filelist->el[i+1].filename)>0))
1599 {
1600 memcpy((void*)&dummy_fle, (void*)&(filelist->el[i]), sizeof(struct s_filelist_entry));
1601 memcpy((void*)&(filelist->el[i]), (void*)&(filelist->el[i+1]), sizeof(struct s_filelist_entry));
1602 memcpy((void*)&(filelist->el[i+1]), (void*)&dummy_fle, sizeof(struct s_filelist_entry));
1603 log_msg(2, "Swapping %s and %s", filelist->el[i].filename, filelist->el[i+1].filename);
1604 done = FALSE;
1605 }
1606 }
1607 }
1608 paranoid_free(tmp);
1609 iamhere("leaving");
1610 return(0);
1611}
1612
1613
1614
1615/**
1616 * Generate a pretty string based on @p flentry.
1617 * @param flentry The filelist entry to stringify.
1618 * @return The string form of @p flentry.
1619 * @note The returned value points to static storage that will be overwritten with each call.
1620 */
1621char*filelist_entry_to_string(struct s_filelist_entry *flentry)
1622{
1623 static char comment[100];
1624 char *tmp;
1625
1626 iamhere("entering");
1627 malloc_string(tmp);
1628 assert(flentry!=NULL);
1629 if (flentry->severity==0) { strcpy(tmp, "0 "); }
1630 else if (flentry->severity==1) { strcpy(tmp, "low "); }
1631 else if (flentry->severity==2) { strcpy(tmp, "med "); }
1632 else { strcpy(tmp, "high"); }
1633 strcat(tmp, " ");
1634 strncat(tmp, flentry->filename, 100);
1635 tmp[98] = '\0';
1636 strcpy(comment, tmp);
1637 paranoid_free(tmp);
1638 iamhere("leaving");
1639 return(comment);
1640}
1641
1642
1643
1644
1645
1646/**
1647 * Pop up a list containing the filenames in @p source_file and the severity if they have changed since the
1648 * last backup. There can be no more than @p ARBITRARY_MAXIMUM files in @p source_file.
1649 * @param source_file The file containing a list of changed files.
1650 */
1651void popup_changelist_from_file(char*source_file)
1652{
1653 char *reason;
1654 newtComponent myForm;
1655 newtComponent bClose;
1656 newtComponent bSelect;
1657 newtComponent b_res;
1658 newtComponent fileListbox;
1659 newtComponent headerMsg;
1660
1661 /*@ ???? *************************************************************/
1662 void *curr_choice;
1663 void *keylist[ARBITRARY_MAXIMUM];
1664
1665 /*@ int **************************************************************/
1666 int i = 0;
1667 int currline = 0;
1668 int finished = FALSE;
1669 long lng = 0;
1670
1671 /*@ buffers **********************************************************/
1672 char *tmp;
1673 char *differ_sz;
1674
1675 struct s_filelist *filelist;
1676 malloc_string(reason);
1677 tmp = malloc(5000);
1678 malloc_string(differ_sz);
1679 assert_string_is_neither_NULL_nor_zerolength(source_file);
1680 if (g_text_mode)
1681 {
1682 log_msg(2, "Text mode. Therefore, no popup list.");
1683 goto free_to_go;
1684 }
1685 log_msg (2, "Examining file %s", source_file);
1686
1687 lng = count_lines_in_file(source_file);
1688 if (lng < 1)
1689 {
1690 log_msg (2, "No lines in file. Therefore, no popup list."); paranoid_free(reason);
1691 goto free_to_go;
1692 }
1693 else if (lng >= ARBITRARY_MAXIMUM)
1694 {
1695 log_msg(2, "Too many files differ for me to list.");
1696 goto free_to_go;
1697 }
1698
1699 filelist = (struct s_filelist*)malloc(sizeof(struct s_filelist));
1700 fileListbox =
1701 newtListbox (2, 2, 12, NEWT_FLAG_SCROLL | NEWT_FLAG_RETURNEXIT);
1702 newtListboxClear (fileListbox);
1703
1704 if (load_filelist_into_array(filelist, source_file)) { log_msg (2, "Can't open %s; therefore, cannot popup list", source_file); paranoid_free(reason); return; }
1705 log_msg(2, "%d files loaded into filelist array", filelist->entries);
1706 for(i=0; i<filelist->entries; i++)
1707 {
1708 keylist[i] = (void *) i;
1709 newtListboxAppendEntry (fileListbox, filelist_entry_to_string(&(filelist->el[i])), keylist[i]);
1710 }
1711 sprintf(differ_sz, " %d files differ. Hit 'Select' to pick a file. Hit 'Close' to quit the list.", i);
1712 newtPushHelpLine(differ_sz);
1713 bClose = newtCompactButton (10, 15, " Close ");
1714 bSelect = newtCompactButton (30, 15, " Select ");
1715 sprintf (tmp, "%-10s %-20s", "Priority", "Filename");
1716 headerMsg = newtLabel (2, 1, tmp);
1717 newtOpenWindow (5, 4, 70, 16, "Non-matching files");
1718 myForm = newtForm (NULL, NULL, 0);
1719 newtFormAddComponents (myForm, headerMsg, fileListbox, bClose, bSelect, NULL);
1720 while (!finished)
1721 {
1722 b_res = newtRunForm (myForm);
1723 if (b_res == bClose)
1724 {
1725 finished = TRUE;
1726 }
1727 else
1728 {
1729 curr_choice = newtListboxGetCurrent (fileListbox);
1730 for (i = 0; i < filelist->entries && keylist[i] != curr_choice;
1731 i++);
1732 if (i == filelist->entries && filelist->entries > 0)
1733 {
1734 log_to_screen ("I don't know what that button does!");
1735 }
1736 else
1737 {
1738 currline = i;
1739 if (filelist->entries > 0)
1740 {
1741 severity_of_difference(filelist->el[currline].filename, reason);
1742 sprintf(tmp, "%s --- %s", filelist->el[currline].filename, reason);
1743 popup_and_OK(tmp);
1744 }
1745 }
1746 }
1747 }
1748 newtFormDestroy (myForm);
1749 newtPopWindow ();
1750 newtPopHelpLine ();
1751free_to_go:
1752 paranoid_free(reason);
1753 paranoid_free(tmp);
1754 paranoid_free(differ_sz);
1755 return;
1756}
1757
1758/* @} - end of guiGroup */
1759
1760
1761#if __cplusplus
1762} /* extern "C" */
1763#endif
1764
1765
1766void wait_until_software_raids_are_prepped(char*mdstat_file, int wait_for_percentage);
1767
Note: See TracBrowser for help on using the repository browser.