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