]> sjero.net Git - wget/blob - src/main.c
c9e76846bedfe9ff5a5c856aae7b1f8444318fd5
[wget] / src / main.c
1 /* Command line parsing.
2    Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
3
4 This file is part of Wget.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <ctype.h>
25 #ifdef HAVE_UNISTD_H
26 # include <unistd.h>
27 #endif /* HAVE_UNISTD_H */
28 #include <sys/types.h>
29 #ifdef HAVE_STRING_H
30 # include <string.h>
31 #else
32 # include <strings.h>
33 #endif /* HAVE_STRING_H */
34 #ifdef HAVE_SIGNAL_H
35 # include <signal.h>
36 #endif
37 #ifdef HAVE_NLS
38 #ifdef HAVE_LOCALE_H
39 # include <locale.h>
40 #endif /* HAVE_LOCALE_H */
41 #endif /* HAVE_NLS */
42
43 #define OPTIONS_DEFINED_HERE    /* for options.h */
44
45 #include "wget.h"
46 #include "utils.h"
47 #include "getopt.h"
48 #include "init.h"
49 #include "retr.h"
50 #include "recur.h"
51 #include "host.h"
52
53 #ifndef PATH_SEPARATOR
54 # define PATH_SEPARATOR '/'
55 #endif
56
57 extern char *version_string;
58
59 #ifndef errno
60 extern int errno;
61 #endif
62
63 struct options opt;
64
65 /* From log.c.  */
66 void log_init PARAMS ((const char *, int));
67 void log_close PARAMS ((void));
68 void redirect_output PARAMS ((const char *));
69
70 static RETSIGTYPE redirect_output_signal PARAMS ((int));
71
72 const char *exec_name;
73 \f
74 /* Initialize I18N.  The initialization amounts to invoking
75    setlocale(), bindtextdomain() and textdomain().
76    Does nothing if NLS is disabled or missing.  */
77 static void
78 i18n_initialize (void)
79 {
80   /* If HAVE_NLS is defined, assume the existence of the three
81      functions invoked here.  */
82 #ifdef HAVE_NLS
83   /* Set the current locale.  */
84   /* Here we use LC_MESSAGES instead of LC_ALL, for two reasons.
85      First, message catalogs are all of I18N Wget uses anyway.
86      Second, setting LC_ALL has a dangerous potential of messing
87      things up.  For example, when in a foreign locale, Solaris
88      strptime() fails to handle international dates correctly, which
89      makes http_atotm() malfunction.  */
90   setlocale (LC_MESSAGES, "");
91   /* Set the text message domain.  */
92   bindtextdomain ("wget", LOCALEDIR);
93   textdomain ("wget");
94 #endif /* HAVE_NLS */
95 }
96 \f
97 /* Print the usage message.  */
98 static void
99 print_usage (void)
100 {
101   printf (_("Usage: %s [OPTION]... [URL]...\n"), exec_name);
102 }
103
104 /* Print the help message, describing all the available options.  If
105    you add an option, be sure to update this list.  */
106 static void
107 print_help (void)
108 {
109   printf (_("GNU Wget %s, a non-interactive network retriever.\n"),
110           version_string);
111   print_usage ();
112   /* Had to split this in parts, so the #@@#%# Ultrix compiler and cpp
113      don't bitch.  Also, it makes translation much easier.  */
114   printf ("%s%s%s%s%s%s%s%s%s%s", _("\
115 \n\
116 Mandatory arguments to long options are mandatory for short options too.\n\
117 \n"), _("\
118 Startup:\n\
119   -V,  --version           display the version of Wget and exit.\n\
120   -h,  --help              print this help.\n\
121   -b,  --background        go to background after startup.\n\
122   -e,  --execute=COMMAND   execute a `.wgetrc\' command.\n\
123 \n"), _("\
124 Logging and input file:\n\
125   -o,  --output-file=FILE     log messages to FILE.\n\
126   -a,  --append-output=FILE   append messages to FILE.\n\
127   -d,  --debug                print debug output.\n\
128   -q,  --quiet                quiet (no output).\n\
129   -v,  --verbose              be verbose (this is the default).\n\
130   -nv, --non-verbose          turn off verboseness, without being quiet.\n\
131   -i,  --input-file=FILE      read URL-s from file.\n\
132   -F,  --force-html           treat input file as HTML.\n\
133 \n"), _("\
134 Download:\n\
135   -t,  --tries=NUMBER           set number of retries to NUMBER (0 unlimits).\n\
136   -O   --output-document=FILE   write documents to FILE.\n\
137   -nc, --no-clobber             don\'t clobber existing files.\n\
138   -c,  --continue               restart getting an existing file.\n\
139        --dot-style=STYLE        set retrieval display style.\n\
140   -N,  --timestamping           don\'t retrieve files if older than local.\n\
141   -S,  --server-response        print server response.\n\
142        --spider                 don\'t download anything.\n\
143   -T,  --timeout=SECONDS        set the read timeout to SECONDS.\n\
144   -w,  --wait=SECONDS           wait SECONDS between retrievals.\n\
145        --waitretry=SECONDS      wait 0..max SECONDS between retries of a retrieval.\n\
146   -Y,  --proxy=on/off           turn proxy on or off.\n\
147   -Q,  --quota=NUMBER           set retrieval quota to NUMBER.\n\
148 \n"),  _("\
149 Directories:\n\
150   -nd  --no-directories            don\'t create directories.\n\
151   -x,  --force-directories         force creation of directories.\n\
152   -nH, --no-host-directories       don\'t create host directories.\n\
153   -P,  --directory-prefix=PREFIX   save files to PREFIX/...\n\
154        --cut-dirs=NUMBER           ignore NUMBER remote directory components.\n\
155 \n"), _("\
156 HTTP options:\n\
157        --http-user=USER      set http user to USER.\n\
158        --http-passwd=PASS    set http password to PASS.\n\
159   -C,  --cache=on/off        (dis)allow server-cached data (normally allowed).\n\
160        --ignore-length       ignore `Content-Length\' header field.\n\
161        --header=STRING       insert STRING among the headers.\n\
162        --proxy-user=USER     set USER as proxy username.\n\
163        --proxy-passwd=PASS   set PASS as proxy password.\n\
164   -s,  --save-headers        save the HTTP headers to file.\n\
165   -U,  --user-agent=AGENT    identify as AGENT instead of Wget/VERSION.\n\
166 \n"), _("\
167 FTP options:\n\
168        --retr-symlinks   retrieve FTP symbolic links.\n\
169   -g,  --glob=on/off     turn file name globbing on or off.\n\
170        --passive-ftp     use the \"passive\" transfer mode.\n\
171 \n"), _("\
172 Recursive retrieval:\n\
173   -r,  --recursive             recursive web-suck -- use with care!.\n\
174   -l,  --level=NUMBER          maximum recursion depth (0 to unlimit).\n\
175        --delete-after          delete downloaded files.\n\
176   -k,  --convert-links         convert non-relative links to relative.\n\
177   -K,  --backup-converted      before converting file X, back up as X.orig.\n\
178   -m,  --mirror                turn on options suitable for mirroring.\n\
179   -nr, --dont-remove-listing   don\'t remove `.listing\' files.\n\
180 \n"), _("\
181 Recursive accept/reject:\n\
182   -A,  --accept=LIST                list of accepted extensions.\n\
183   -R,  --reject=LIST                list of rejected extensions.\n\
184   -D,  --domains=LIST               list of accepted domains.\n\
185        --exclude-domains=LIST       comma-separated list of rejected domains.\n\
186   -L,  --relative                   follow relative links only.\n\
187        --follow-ftp                 follow FTP links from HTML documents.\n\
188   -H,  --span-hosts                 go to foreign hosts when recursive.\n\
189   -I,  --include-directories=LIST   list of allowed directories.\n\
190   -X,  --exclude-directories=LIST   list of excluded directories.\n\
191   -nh, --no-host-lookup             don\'t DNS-lookup hosts.\n\
192   -np, --no-parent                  don\'t ascend to the parent directory.\n\
193 \n"), _("Mail bug reports and suggestions to <bug-wget@gnu.org>.\n"));
194 }
195 \f
196 int
197 main (int argc, char *const *argv)
198 {
199   char **url, **t;
200   int i, c, nurl, status, append_to_log;
201   int wr = 0;
202
203   static struct option long_options[] =
204   {
205     { "background", no_argument, NULL, 'b' },
206     { "continue", no_argument, NULL, 'c' },
207     { "convert-links", no_argument, NULL, 'k' },
208     { "backup-converted", no_argument, NULL, 'K' },
209     { "debug", no_argument, NULL, 'd' },
210     { "dont-remove-listing", no_argument, NULL, 21 },
211     { "email-address", no_argument, NULL, 'E' }, /* undocumented (debug) */
212     { "follow-ftp", no_argument, NULL, 14 },
213     { "force-directories", no_argument, NULL, 'x' },
214     { "force-hier", no_argument, NULL, 'x' }, /* obsolete */
215     { "force-html", no_argument, NULL, 'F'},
216     { "help", no_argument, NULL, 'h' },
217     { "ignore-length", no_argument, NULL, 10 },
218     { "mirror", no_argument, NULL, 'm' },
219     { "no-clobber", no_argument, NULL, 13 },
220     { "no-directories", no_argument, NULL, 19 },
221     { "no-host-directories", no_argument, NULL, 20 },
222     { "no-host-lookup", no_argument, NULL, 22 },
223     { "no-parent", no_argument, NULL, 5 },
224     { "non-verbose", no_argument, NULL, 18 },
225     { "passive-ftp", no_argument, NULL, 11 },
226     { "quiet", no_argument, NULL, 'q' },
227     { "recursive", no_argument, NULL, 'r' },
228     { "relative", no_argument, NULL, 'L' },
229     { "retr-symlinks", no_argument, NULL, 9 },
230     { "save-headers", no_argument, NULL, 's' },
231     { "server-response", no_argument, NULL, 'S' },
232     { "span-hosts", no_argument, NULL, 'H' },
233     { "spider", no_argument, NULL, 4 },
234     { "timestamping", no_argument, NULL, 'N' },
235     { "verbose", no_argument, NULL, 'v' },
236     { "version", no_argument, NULL, 'V' },
237
238     { "accept", required_argument, NULL, 'A' },
239     { "append-output", required_argument, NULL, 'a' },
240     { "backups", required_argument, NULL, 23 }, /* undocumented */
241     { "base", required_argument, NULL, 'B' },
242     { "cache", required_argument, NULL, 'C' },
243     { "cut-dirs", required_argument, NULL, 17 },
244     { "delete-after", no_argument, NULL, 8 },
245     { "directory-prefix", required_argument, NULL, 'P' },
246     { "domains", required_argument, NULL, 'D' },
247     { "dot-style", required_argument, NULL, 6 },
248     { "execute", required_argument, NULL, 'e' },
249     { "exclude-directories", required_argument, NULL, 'X' },
250     { "exclude-domains", required_argument, NULL, 12 },
251     { "glob", required_argument, NULL, 'g' },
252     { "header", required_argument, NULL, 3 },
253     { "htmlify", required_argument, NULL, 7 },
254     { "http-passwd", required_argument, NULL, 2 },
255     { "http-user", required_argument, NULL, 1 },
256     { "include-directories", required_argument, NULL, 'I' },
257     { "input-file", required_argument, NULL, 'i' },
258     { "level", required_argument, NULL, 'l' },
259     { "no", required_argument, NULL, 'n' },
260     { "output-document", required_argument, NULL, 'O' },
261     { "output-file", required_argument, NULL, 'o' },
262     { "proxy", required_argument, NULL, 'Y' },
263     { "proxy-passwd", required_argument, NULL, 16 },
264     { "proxy-user", required_argument, NULL, 15 },
265     { "quota", required_argument, NULL, 'Q' },
266     { "reject", required_argument, NULL, 'R' },
267     { "timeout", required_argument, NULL, 'T' },
268     { "tries", required_argument, NULL, 't' },
269     { "user-agent", required_argument, NULL, 'U' },
270     { "referer", required_argument, NULL, 129 },
271     { "use-proxy", required_argument, NULL, 'Y' },
272     { "wait", required_argument, NULL, 'w' },
273     { "waitretry", required_argument, NULL, 24 },
274     { 0, 0, 0, 0 }
275   };
276
277   i18n_initialize ();
278
279   append_to_log = 0;
280
281   /* Construct the name of the executable, without the directory part.  */
282   exec_name = strrchr (argv[0], PATH_SEPARATOR);
283   if (!exec_name)
284     exec_name = argv[0];
285   else
286     ++exec_name;
287
288 #ifdef WINDOWS
289   windows_main_junk (&argc, (char **) argv, (char **) &exec_name);
290 #endif
291
292   initialize ();
293
294   while ((c = getopt_long (argc, argv, "\
295 hVqvdkKsxmNWrHSLcFbEY:g:T:U:O:l:n:i:o:a:t:D:A:R:P:B:e:Q:X:I:w:",
296                            long_options, (int *)0)) != EOF)
297     {
298       switch (c)
299         {
300           /* Options without arguments: */
301         case 4:
302           setval ("spider", "on");
303           break;
304         case 5:
305           setval ("noparent", "on");
306           break;
307         case 8:
308           setval ("deleteafter", "on");
309           break;
310         case 9:
311           setval ("retrsymlinks", "on");
312           break;
313         case 10:
314           setval ("ignorelength", "on");
315           break;
316         case 11:
317           setval ("passiveftp", "on");
318           break;
319         case 13:
320           setval ("noclobber", "on");
321           break;
322         case 14:
323           setval ("followftp", "on");
324           break;
325         case 17:
326           setval ("cutdirs", optarg);
327           break;
328         case 18:
329           setval ("verbose", "off");
330           break;
331         case 19:
332           setval ("dirstruct", "off");
333           break;
334         case 20:
335           setval ("addhostdir", "off");
336           break;
337         case 21:
338           setval ("removelisting", "off");
339           break;
340         case 22:
341           setval ("simplehostcheck", "on");
342           break;
343         case 'b':
344           setval ("background", "on");
345           break;
346         case 'c':
347           setval ("continue", "on");
348           break;
349         case 'd':
350 #ifdef DEBUG
351           setval ("debug", "on");
352 #else  /* not DEBUG */
353           fprintf (stderr, _("%s: debug support not compiled in.\n"),
354                    exec_name);
355 #endif /* not DEBUG */
356           break;
357         case 'E':
358           /* For debugging purposes.  */
359           printf ("%s\n", ftp_getaddress ());
360           exit (0);
361           break;
362         case 'F':
363           setval ("forcehtml", "on");
364           break;
365         case 'H':
366           setval ("spanhosts", "on");
367           break;
368         case 'h':
369           print_help ();
370 #ifdef WINDOWS
371           ws_help (exec_name);
372 #endif
373           exit (0);
374           break;
375         case 'k':
376           setval ("convertlinks", "on");
377           break;
378         case 'K':
379           setval ("backupconverted", "on");
380           break;
381         case 'L':
382           setval ("relativeonly", "on");
383           break;
384         case 'm':
385           setval ("mirror", "on");
386           break;
387         case 'N':
388           setval ("timestamping", "on");
389           break;
390         case 'S':
391           setval ("serverresponse", "on");
392           break;
393         case 's':
394           setval ("saveheaders", "on");
395           break;
396         case 'q':
397           setval ("quiet", "on");
398           break;
399         case 'r':
400           setval ("recursive", "on");
401           break;
402         case 'V':
403           printf ("GNU Wget %s\n\n", version_string);
404           printf ("%s", _("\
405 Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.\n\
406 This program is distributed in the hope that it will be useful,\n\
407 but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
408 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\
409 GNU General Public License for more details.\n"));
410           printf (_("\nWritten by Hrvoje Niksic <hniksic@srce.hr>.\n"));
411           exit (0);
412           break;
413         case 'v':
414           setval ("verbose", "on");
415           break;
416         case 'x':
417           setval ("dirstruct", "on");
418           break;
419
420           /* Options accepting an argument: */
421         case 1:
422           setval ("httpuser", optarg);
423           break;
424         case 2:
425           setval ("httppasswd", optarg);
426           break;
427         case 3:
428           setval ("header", optarg);
429           break;
430         case 6:
431           setval ("dotstyle", optarg);
432           break;
433         case 7:
434           setval ("htmlify", optarg);
435           break;
436         case 12:
437           setval ("excludedomains", optarg);
438           break;
439         case 15:
440           setval ("proxyuser", optarg);
441           break;
442         case 16:
443           setval ("proxypasswd", optarg);
444           break;
445         case 23:
446           setval ("backups", optarg);
447           break;
448         case 'A':
449           setval ("accept", optarg);
450           break;
451         case 'a':
452           setval ("logfile", optarg);
453           append_to_log = 1;
454           break;
455         case 'B':
456           setval ("base", optarg);
457           break;
458         case 'C':
459           setval ("cache", optarg);
460           break;
461         case 'D':
462           setval ("domains", optarg);
463           break;
464         case 'e':
465           {
466             char *com, *val;
467             if (parse_line (optarg, &com, &val))
468               {
469                 if (!setval (com, val))
470                   exit (1);
471               }
472             else
473               {
474                 fprintf (stderr, _("%s: %s: invalid command\n"), exec_name,
475                          optarg);
476                 exit (1);
477               }
478             free (com);
479             free (val);
480           }
481           break;
482         case 'g':
483           setval ("glob", optarg);
484           break;
485         case 'I':
486           setval ("includedirectories", optarg);
487           break;
488         case 'i':
489           setval ("input", optarg);
490           break;
491         case 'l':
492           setval ("reclevel", optarg);
493           break;
494         case 'n':
495           {
496             /* #### The n? options are utter crock!  */
497             char *p;
498
499             for (p = optarg; *p; p++)
500               switch (*p)
501                 {
502                 case 'v':
503                   setval ("verbose", "off");
504                   break;
505                 case 'h':
506                   setval ("simplehostcheck", "on");
507                   break;
508                 case 'H':
509                   setval ("addhostdir", "off");
510                   break;
511                 case 'd':
512                   setval ("dirstruct", "off");
513                   break;
514                 case 'c':
515                   setval ("noclobber", "on");
516                   break;
517                 case 'r':
518                   setval ("removelisting", "off");
519                   break;
520                 case 'p':
521                   setval ("noparent", "on");
522                   break;
523                 default:
524                   printf (_("%s: illegal option -- `-n%c'\n"), exec_name, *p);
525                   print_usage ();
526                   printf ("\n");
527                   printf (_("Try `%s --help\' for more options.\n"), exec_name);
528                   exit (1);
529                 }
530             break;
531           }
532         case 'O':
533           setval ("outputdocument", optarg);
534           break;
535         case 'o':
536           setval ("logfile", optarg);
537           break;
538         case 'P':
539           setval ("dirprefix", optarg);
540           break;
541         case 'Q':
542           setval ("quota", optarg);
543           break;
544         case 'R':
545           setval ("reject", optarg);
546           break;
547         case 'T':
548           setval ("timeout", optarg);
549           break;
550         case 't':
551           setval ("tries", optarg);
552           break;
553         case 'U':
554           setval ("useragent", optarg);
555           break;
556         case 129:
557           setval ("referer", optarg);
558           break;
559         case 'w':
560           setval ("wait", optarg);
561           break;
562         case 24:
563           setval ("waitretry", optarg);
564           wr = 1;
565           break;
566         case 'X':
567           setval ("excludedirectories", optarg);
568           break;
569         case 'Y':
570           setval ("useproxy", optarg);
571           break;
572
573         case '?':
574           print_usage ();
575           printf ("\n");
576           printf (_("Try `%s --help' for more options.\n"), exec_name);
577           exit (0);
578           break;
579         }
580     }
581   if (opt.verbose == -1)
582     opt.verbose = !opt.quiet;
583
584   /* Retain compatibility with previous scripts.
585      if wait has been set, but waitretry has not, give it the wait value.
586      A simple check on the values is not enough, I could have set
587      wait to n>0 and waitretry to 0 - HEH */
588   if (opt.wait && !wr)
589     {
590       char  opt_wait_str[256];  /* bigger than needed buf to prevent overflow */
591
592       sprintf(opt_wait_str, "%ld", opt.wait);
593       setval ("waitretry", opt_wait_str);
594     }
595     
596   /* Sanity checks.  */
597   if (opt.verbose && opt.quiet)
598     {
599       printf (_("Can't be verbose and quiet at the same time.\n"));
600       print_usage ();
601       exit (1);
602     }
603   if (opt.timestamping && opt.noclobber)
604     {
605       printf (_("\
606 Can't timestamp and not clobber old files at the same time.\n"));
607       print_usage ();
608       exit (1);
609     }
610   nurl = argc - optind;
611   if (!nurl && !opt.input_filename)
612     {
613       /* No URL specified.  */
614       printf (_("%s: missing URL\n"), exec_name);
615       print_usage ();
616       printf ("\n");
617       /* #### Something nicer should be printed here -- similar to the
618          pre-1.5 `--help' page.  */
619       printf (_("Try `%s --help' for more options.\n"), exec_name);
620       exit (1);
621     }
622
623   if (opt.background)
624     fork_to_background ();
625
626   /* Allocate basic pointer.  */
627   url = ALLOCA_ARRAY (char *, nurl + 1);
628   /* Fill in the arguments.  */
629   for (i = 0; i < nurl; i++, optind++)
630     {
631       char *irix4_cc_needs_this;
632       STRDUP_ALLOCA (irix4_cc_needs_this, argv[optind]);
633       url[i] = irix4_cc_needs_this;
634     }
635   url[i] = NULL;
636
637   /* Change the title of console window on Windows.  #### I think this
638      statement should belong to retrieve_url().  --hniksic.  */
639 #ifdef WINDOWS
640   ws_changetitle (*url, nurl);
641 #endif
642
643   /* Initialize logging.  */
644   log_init (opt.lfilename, append_to_log);
645
646   DEBUGP (("DEBUG output created by Wget %s on %s.\n\n", version_string,
647            OS_TYPE));
648   /* Open the output filename if necessary.  */
649   if (opt.output_document)
650     {
651       if (HYPHENP (opt.output_document))
652         opt.dfp = stdout;
653       else
654         {
655           opt.dfp = fopen (opt.output_document, "wb");
656           if (opt.dfp == NULL)
657             {
658               perror (opt.output_document);
659               exit (1);
660             }
661         }
662     }
663
664 #ifdef WINDOWS
665   ws_startup ();
666 #endif
667
668   /* Setup the signal handler to redirect output when hangup is
669      received.  */
670 #ifdef HAVE_SIGNAL
671   if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
672     signal(SIGHUP, redirect_output_signal);
673   /* ...and do the same for SIGUSR1.  */
674   signal (SIGUSR1, redirect_output_signal);
675   /* Writing to a closed socket normally signals SIGPIPE, and the
676      process exits.  What we want is to ignore SIGPIPE and just check
677      for the return value of write().  */
678   signal (SIGPIPE, SIG_IGN);
679 #endif /* HAVE_SIGNAL */
680
681   status = RETROK;              /* initialize it, just-in-case */
682   recursive_reset ();
683   /* Retrieve the URLs from argument list.  */
684   for (t = url; *t; t++)
685     {
686       char *filename, *new_file;
687       int dt;
688
689       status = retrieve_url (*t, &filename, &new_file, NULL, &dt);
690       if (opt.recursive && status == RETROK && (dt & TEXTHTML))
691         status = recursive_retrieve (filename, new_file ? new_file : *t);
692       FREE_MAYBE (new_file);
693       FREE_MAYBE (filename);
694     }
695
696   /* And then from the input file, if any.  */
697   if (opt.input_filename)
698     {
699       int count;
700       status = retrieve_from_file (opt.input_filename, opt.force_html, &count);
701       if (!count)
702         logprintf (LOG_NOTQUIET, _("No URLs found in %s.\n"),
703                    opt.input_filename);
704     }
705   /* Print the downloaded sum.  */
706   if (opt.recursive
707       || nurl > 1
708       || (opt.input_filename && opt.downloaded != 0))
709     {
710       logprintf (LOG_NOTQUIET,
711                  _("\nFINISHED --%s--\nDownloaded: %s bytes in %d files\n"),
712                  time_str (NULL), legible (opt.downloaded), opt.numurls);
713       /* Print quota warning, if exceeded.  */
714       if (opt.quota && opt.downloaded > opt.quota)
715         logprintf (LOG_NOTQUIET,
716                    _("Download quota (%s bytes) EXCEEDED!\n"),
717                    legible (opt.quota));
718     }
719   if (opt.convert_links)
720     {
721       convert_all_links ();
722     }
723   log_close ();
724   cleanup ();
725   if (status == RETROK)
726     return 0;
727   else
728     return 1;
729 }
730 \f
731 /* Hangup signal handler.  When wget receives SIGHUP or SIGUSR1, it
732    will proceed operation as usual, trying to write into a log file.
733    If that is impossible, the output will be turned off.  */
734
735 #ifdef HAVE_SIGNAL
736 static RETSIGTYPE
737 redirect_output_signal (int sig)
738 {
739   char tmp[100];
740   signal (sig, redirect_output_signal);
741   /* Please note that the double `%' in `%%s' is intentional, because
742      redirect_output passes tmp through printf.  */
743   sprintf (tmp, _("%s received, redirecting output to `%%s'.\n"),
744            (sig == SIGHUP ? "SIGHUP" :
745             (sig == SIGUSR1 ? "SIGUSR1" :
746              "WTF?!")));
747   redirect_output (tmp);
748 }
749 #endif /* HAVE_SIGNAL */