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