]> sjero.net Git - wget/blob - src/main.c
[svn] Logging system bugfixes and improvements.
[wget] / src / main.c
1 /* Command line parsing.
2    Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001
3    Free Software Foundation, Inc.
4
5 This file is part of GNU Wget.
6
7 GNU Wget is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 GNU Wget is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Wget; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
20
21 #include <config.h>
22
23 #include <stdio.h>
24 #include <stdlib.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 #include <errno.h>
43
44 #define OPTIONS_DEFINED_HERE    /* for options.h */
45
46 #include "wget.h"
47 #include "utils.h"
48 #include "init.h"
49 #include "retr.h"
50 #include "recur.h"
51 #include "host.h"
52 #include "cookies.h"
53 #include "url.h"
54 #include "progress.h"           /* for progress_handle_sigwinch */
55
56 #ifdef HAVE_SSL
57 # include "gen_sslfunc.h"
58 #endif
59
60 /* On GNU system this will include system-wide getopt.h. */
61 #include "getopt.h"
62
63 #ifndef PATH_SEPARATOR
64 # define PATH_SEPARATOR '/'
65 #endif
66
67 extern char *version_string;
68
69 #ifndef errno
70 extern int errno;
71 #endif
72
73 struct options opt;
74
75 /* From log.c.  */
76 void log_init PARAMS ((const char *, int));
77 void log_close PARAMS ((void));
78 void log_request_redirect_output PARAMS ((const char *));
79
80 static RETSIGTYPE redirect_output_signal PARAMS ((int));
81
82 const char *exec_name;
83 \f
84 /* Initialize I18N.  The initialization amounts to invoking
85    setlocale(), bindtextdomain() and textdomain().
86    Does nothing if NLS is disabled or missing.  */
87 static void
88 i18n_initialize (void)
89 {
90   /* If HAVE_NLS is defined, assume the existence of the three
91      functions invoked here.  */
92 #ifdef HAVE_NLS
93   /* Set the current locale.  */
94   /* Here we use LC_MESSAGES instead of LC_ALL, for two reasons.
95      First, message catalogs are all of I18N Wget uses anyway.
96      Second, setting LC_ALL has a dangerous potential of messing
97      things up.  For example, when in a foreign locale, Solaris
98      strptime() fails to handle international dates correctly, which
99      makes http_atotm() malfunction.  */
100 #ifdef LC_MESSAGES
101   setlocale (LC_MESSAGES, "");
102   setlocale (LC_CTYPE, "");
103 #else
104   setlocale (LC_ALL, "");
105 #endif
106   /* Set the text message domain.  */
107   bindtextdomain ("wget", LOCALEDIR);
108   textdomain ("wget");
109 #endif /* HAVE_NLS */
110 }
111 \f
112 /* Print the usage message.  */
113 static void
114 print_usage (void)
115 {
116   printf (_("Usage: %s [OPTION]... [URL]...\n"), exec_name);
117 }
118
119 /* Print the help message, describing all the available options.  If
120    you add an option, be sure to update this list.  */
121 static void
122 print_help (void)
123 {
124   printf (_("GNU Wget %s, a non-interactive network retriever.\n"),
125           version_string);
126   print_usage ();
127   /* Had to split this in parts, so the #@@#%# Ultrix compiler and cpp
128      don't bitch.  Also, it makes translation much easier.  */
129   fputs (_("\
130 \n\
131 Mandatory arguments to long options are mandatory for short options too.\n\
132 \n"), stdout);
133   fputs (_("\
134 Startup:\n\
135   -V,  --version           display the version of Wget and exit.\n\
136   -h,  --help              print this help.\n\
137   -b,  --background        go to background after startup.\n\
138   -e,  --execute=COMMAND   execute a `.wgetrc\'-style command.\n\
139 \n"), stdout);
140   fputs (_("\
141 Logging and input file:\n\
142   -o,  --output-file=FILE     log messages to FILE.\n\
143   -a,  --append-output=FILE   append messages to FILE.\n\
144   -d,  --debug                print debug output.\n\
145   -q,  --quiet                quiet (no output).\n\
146   -v,  --verbose              be verbose (this is the default).\n\
147   -nv, --non-verbose          turn off verboseness, without being quiet.\n\
148   -i,  --input-file=FILE      download URLs found in FILE.\n\
149   -F,  --force-html           treat input file as HTML.\n\
150   -B,  --base=URL             prepends URL to relative links in -F -i file.\n\
151        --sslcertfile=FILE     optional client certificate.\n\
152        --sslcertkey=KEYFILE   optional keyfile for this certificate.\n\
153        --egd-file=FILE        file name of the EGD socket.\n\
154 \n"), stdout);
155   fputs (_("\
156 Download:\n\
157        --bind-address=ADDRESS   bind to ADDRESS (hostname or IP) on local host.\n\
158   -t,  --tries=NUMBER           set number of retries to NUMBER (0 unlimits).\n\
159   -O   --output-document=FILE   write documents to FILE.\n\
160   -nc, --no-clobber             don\'t clobber existing files or use .# suffixes.\n\
161   -c,  --continue               resume getting a partially-downloaded file.\n\
162        --progress=TYPE          select progress gauge type.\n\
163   -N,  --timestamping           don\'t re-retrieve files unless newer than local.\n\
164   -S,  --server-response        print server response.\n\
165        --spider                 don\'t download anything.\n\
166   -T,  --timeout=SECONDS        set the read timeout to SECONDS.\n\
167   -w,  --wait=SECONDS           wait SECONDS between retrievals.\n\
168        --waitretry=SECONDS      wait 1...SECONDS between retries of a retrieval.\n\
169        --random-wait            wait from 0...2*WAIT secs between retrievals.\n\
170   -Y,  --proxy=on/off           turn proxy on or off.\n\
171   -Q,  --quota=NUMBER           set retrieval quota to NUMBER.\n\
172        --limit-rate=RATE        limit download rate to RATE.\n\
173 \n"), stdout);
174   fputs (_("\
175 Directories:\n\
176   -nd  --no-directories            don\'t create directories.\n\
177   -x,  --force-directories         force creation of directories.\n\
178   -nH, --no-host-directories       don\'t create host directories.\n\
179   -P,  --directory-prefix=PREFIX   save files to PREFIX/...\n\
180        --cut-dirs=NUMBER           ignore NUMBER remote directory components.\n\
181 \n"), stdout);
182   fputs (_("\
183 HTTP options:\n\
184        --http-user=USER      set http user to USER.\n\
185        --http-passwd=PASS    set http password to PASS.\n\
186   -C,  --cache=on/off        (dis)allow server-cached data (normally allowed).\n\
187   -E,  --html-extension      save all text/html documents with .html extension.\n\
188        --ignore-length       ignore `Content-Length\' header field.\n\
189        --header=STRING       insert STRING among the headers.\n\
190        --proxy-user=USER     set USER as proxy username.\n\
191        --proxy-passwd=PASS   set PASS as proxy password.\n\
192        --referer=URL         include `Referer: URL\' header in HTTP request.\n\
193   -s,  --save-headers        save the HTTP headers to file.\n\
194   -U,  --user-agent=AGENT    identify as AGENT instead of Wget/VERSION.\n\
195        --no-http-keep-alive  disable HTTP keep-alive (persistent connections).\n\
196        --cookies=off         don't use cookies.\n\
197        --load-cookies=FILE   load cookies from FILE before session.\n\
198        --save-cookies=FILE   save cookies to FILE after session.\n\
199 \n"), stdout);
200   fputs (_("\
201 FTP options:\n\
202   -nr, --dont-remove-listing   don\'t remove `.listing\' files.\n\
203   -g,  --glob=on/off           turn file name globbing on or off.\n\
204        --passive-ftp           use the \"passive\" transfer mode.\n\
205        --retr-symlinks         when recursing, get linked-to files (not dirs).\n\
206 \n"), stdout);
207   fputs (_("\
208 Recursive retrieval:\n\
209   -r,  --recursive          recursive web-suck -- use with care!\n\
210   -l,  --level=NUMBER       maximum recursion depth (inf or 0 for infinite).\n\
211        --delete-after       delete files locally after downloading them.\n\
212   -k,  --convert-links      convert non-relative links to relative.\n\
213   -K,  --backup-converted   before converting file X, back up as X.orig.\n\
214   -m,  --mirror             shortcut option equivalent to -r -N -l inf -nr.\n\
215   -p,  --page-requisites    get all images, etc. needed to display HTML page.\n\
216 \n"), stdout);
217   fputs (_("\
218 Recursive accept/reject:\n\
219   -A,  --accept=LIST                comma-separated list of accepted extensions.\n\
220   -R,  --reject=LIST                comma-separated list of rejected extensions.\n\
221   -D,  --domains=LIST               comma-separated list of accepted domains.\n\
222        --exclude-domains=LIST       comma-separated list of rejected domains.\n\
223        --follow-ftp                 follow FTP links from HTML documents.\n\
224        --follow-tags=LIST           comma-separated list of followed HTML tags.\n\
225   -G,  --ignore-tags=LIST           comma-separated list of ignored HTML tags.\n\
226   -H,  --span-hosts                 go to foreign hosts when recursive.\n\
227   -L,  --relative                   follow relative links only.\n\
228   -I,  --include-directories=LIST   list of allowed directories.\n\
229   -X,  --exclude-directories=LIST   list of excluded directories.\n\
230   -np, --no-parent                  don\'t ascend to the parent directory.\n\
231 \n"), stdout);
232   fputs (_("Mail bug reports and suggestions to <bug-wget@gnu.org>.\n"),
233          stdout);
234 }
235 \f
236 int
237 main (int argc, char *const *argv)
238 {
239   char **url, **t;
240   int i, c, nurl, status, append_to_log;
241
242   static struct option long_options[] =
243   {
244     /* Options without arguments: */
245     { "background", no_argument, NULL, 'b' },
246     { "backup-converted", no_argument, NULL, 'K' },
247     { "continue", no_argument, NULL, 'c' },
248     { "convert-links", no_argument, NULL, 'k' },
249     { "debug", no_argument, NULL, 'd' },
250     { "delete-after", no_argument, NULL, 136 },
251     { "dont-remove-listing", no_argument, NULL, 149 },
252     { "follow-ftp", no_argument, NULL, 142 },
253     { "force-directories", no_argument, NULL, 'x' },
254     { "force-hier", no_argument, NULL, 'x' }, /* obsolete */
255     { "force-html", no_argument, NULL, 'F'},
256     { "help", no_argument, NULL, 'h' },
257     { "html-extension", no_argument, NULL, 'E' },
258     { "ignore-length", no_argument, NULL, 138 },
259     { "mirror", no_argument, NULL, 'm' },
260     { "no-clobber", no_argument, NULL, 141 },
261     { "no-directories", no_argument, NULL, 147 },
262     { "no-host-directories", no_argument, NULL, 148 },
263     { "no-host-lookup", no_argument, NULL, 150 },
264     { "no-http-keep-alive", no_argument, NULL, 156 },
265     { "no-parent", no_argument, NULL, 133 },
266     { "non-verbose", no_argument, NULL, 146 },
267     { "passive-ftp", no_argument, NULL, 139 },
268     { "page-requisites", no_argument, NULL, 'p' },
269     { "quiet", no_argument, NULL, 'q' },
270     { "random-wait", no_argument, NULL, 165 },
271     { "recursive", no_argument, NULL, 'r' },
272     { "relative", no_argument, NULL, 'L' },
273     { "retr-symlinks", no_argument, NULL, 137 },
274     { "save-headers", no_argument, NULL, 's' },
275     { "server-response", no_argument, NULL, 'S' },
276     { "span-hosts", no_argument, NULL, 'H' },
277     { "spider", no_argument, NULL, 132 },
278     { "timestamping", no_argument, NULL, 'N' },
279     { "verbose", no_argument, NULL, 'v' },
280     { "version", no_argument, NULL, 'V' },
281
282     /* Options accepting an argument: */
283     { "accept", required_argument, NULL, 'A' },
284     { "append-output", required_argument, NULL, 'a' },
285     { "backups", required_argument, NULL, 151 }, /* undocumented */
286     { "base", required_argument, NULL, 'B' },
287     { "bind-address", required_argument, NULL, 155 },
288     { "cache", required_argument, NULL, 'C' },
289     { "cookies", required_argument, NULL, 160 },
290     { "cut-dirs", required_argument, NULL, 145 },
291     { "directory-prefix", required_argument, NULL, 'P' },
292     { "domains", required_argument, NULL, 'D' },
293     { "dot-style", required_argument, NULL, 134 },
294     { "execute", required_argument, NULL, 'e' },
295     { "exclude-directories", required_argument, NULL, 'X' },
296     { "exclude-domains", required_argument, NULL, 140 },
297     { "follow-tags", required_argument, NULL, 153 },
298     { "glob", required_argument, NULL, 'g' },
299     { "header", required_argument, NULL, 131 },
300     { "htmlify", required_argument, NULL, 135 },
301     { "http-passwd", required_argument, NULL, 130 },
302     { "http-user", required_argument, NULL, 129 },
303     { "ignore-tags", required_argument, NULL, 'G' },
304     { "include-directories", required_argument, NULL, 'I' },
305     { "input-file", required_argument, NULL, 'i' },
306     { "level", required_argument, NULL, 'l' },
307     { "limit-rate", required_argument, NULL, 164 },
308     { "load-cookies", required_argument, NULL, 161 },
309     { "no", required_argument, NULL, 'n' },
310     { "output-document", required_argument, NULL, 'O' },
311     { "output-file", required_argument, NULL, 'o' },
312     { "progress", required_argument, NULL, 163 },
313     { "proxy", required_argument, NULL, 'Y' },
314     { "proxy-passwd", required_argument, NULL, 144 },
315     { "proxy-user", required_argument, NULL, 143 },
316     { "quota", required_argument, NULL, 'Q' },
317     { "reject", required_argument, NULL, 'R' },
318     { "save-cookies", required_argument, NULL, 162 },
319     { "timeout", required_argument, NULL, 'T' },
320     { "tries", required_argument, NULL, 't' },
321     { "user-agent", required_argument, NULL, 'U' },
322     { "referer", required_argument, NULL, 157 },
323     { "use-proxy", required_argument, NULL, 'Y' },
324 #ifdef HAVE_SSL
325     { "sslcertfile", required_argument, NULL, 158 },
326     { "sslcertkey", required_argument, NULL, 159 },
327     { "egd-file", required_argument, NULL, 166 },
328 #endif /* HAVE_SSL */
329     { "wait", required_argument, NULL, 'w' },
330     { "waitretry", required_argument, NULL, 152 },
331     { 0, 0, 0, 0 }
332   };
333
334   i18n_initialize ();
335
336   append_to_log = 0;
337
338   /* Construct the name of the executable, without the directory part.  */
339   exec_name = strrchr (argv[0], PATH_SEPARATOR);
340   if (!exec_name)
341     exec_name = argv[0];
342   else
343     ++exec_name;
344
345 #ifdef WINDOWS
346   windows_main_junk (&argc, (char **) argv, (char **) &exec_name);
347 #endif
348
349   initialize (); /* sets option defaults; reads the system wgetrc and .wgetrc */
350
351   /* [Is the order of the option letters significant?  If not, they should be
352       alphabetized, like the long_options.  The only thing I know for sure is
353       that the options with required arguments must be followed by a ':'.
354       -- Dan Harkless <wget@harkless.org>] */
355   while ((c = getopt_long (argc, argv, "\
356 hpVqvdkKsxmNWrHSLcFbEY:G:g:T:U:O:l:n:i:o:a:t:D:A:R:P:B:e:Q:X:I:w:C:",
357                            long_options, (int *)0)) != EOF)
358     {
359       switch (c)
360         {
361           /* Options without arguments: */
362         case 132:
363           setval ("spider", "on");
364           break;
365         case 133:
366           setval ("noparent", "on");
367           break;
368         case 136:
369           setval ("deleteafter", "on");
370           break;
371         case 137:
372           setval ("retrsymlinks", "on");
373           break;
374         case 138:
375           setval ("ignorelength", "on");
376           break;
377         case 139:
378           setval ("passiveftp", "on");
379           break;
380         case 141:
381           setval ("noclobber", "on");
382           break;
383         case 142:
384           setval ("followftp", "on");
385           break;
386         case 145:
387           setval ("cutdirs", optarg);
388           break;
389         case 146:
390           setval ("verbose", "off");
391           break;
392         case 147:
393           setval ("dirstruct", "off");
394           break;
395         case 148:
396           setval ("addhostdir", "off");
397           break;
398         case 149:
399           setval ("removelisting", "off");
400           break;
401         case 155:
402           setval ("bindaddress", optarg);
403           break;
404         case 156:
405           setval ("httpkeepalive", "off");
406           break;
407         case 165:
408           setval ("randomwait", "on");
409           break;
410         case 'b':
411           setval ("background", "on");
412           break;
413         case 'c':
414           setval ("continue", "on");
415           break;
416         case 'd':
417 #ifdef DEBUG
418           setval ("debug", "on");
419 #else  /* not DEBUG */
420           fprintf (stderr, _("%s: debug support not compiled in.\n"),
421                    exec_name);
422 #endif /* not DEBUG */
423           break;
424         case 'E':
425           setval ("htmlextension", "on");
426           break;
427         case 'F':
428           setval ("forcehtml", "on");
429           break;
430         case 'H':
431           setval ("spanhosts", "on");
432           break;
433         case 'h':
434           print_help ();
435 #ifdef WINDOWS
436           ws_help (exec_name);
437 #endif
438           exit (0);
439           break;
440         case 'K':
441           setval ("backupconverted", "on");
442           break;
443         case 'k':
444           setval ("convertlinks", "on");
445           break;
446         case 'L':
447           setval ("relativeonly", "on");
448           break;
449         case 'm':
450           setval ("mirror", "on");
451           break;
452         case 'N':
453           setval ("timestamping", "on");
454           break;
455         case 'p':
456           setval ("pagerequisites", "on");
457           break;
458         case 'S':
459           setval ("serverresponse", "on");
460           break;
461         case 's':
462           setval ("saveheaders", "on");
463           break;
464         case 'q':
465           setval ("quiet", "on");
466           break;
467         case 'r':
468           setval ("recursive", "on");
469           break;
470         case 'V':
471           printf ("GNU Wget %s\n\n", version_string);
472           printf ("%s", _("\
473 Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.\n"));
474           printf ("%s", _("\
475 This program is distributed in the hope that it will be useful,\n\
476 but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
477 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\
478 GNU General Public License for more details.\n"));
479           printf (_("\nOriginally written by Hrvoje Niksic <hniksic@arsdigita.com>.\n"));
480           exit (0);
481           break;
482         case 'v':
483           setval ("verbose", "on");
484           break;
485         case 'x':
486           setval ("dirstruct", "on");
487           break;
488
489           /* Options accepting an argument: */
490         case 129:
491           setval ("httpuser", optarg);
492           break;
493         case 130:
494           setval ("httppasswd", optarg);
495           break;
496         case 131:
497           setval ("header", optarg);
498           break;
499         case 134:
500           setval ("dotstyle", optarg);
501           break;
502         case 135:
503           setval ("htmlify", optarg);
504           break;
505         case 140:
506           setval ("excludedomains", optarg);
507           break;
508         case 143:
509           setval ("proxyuser", optarg);
510           break;
511         case 144:
512           setval ("proxypasswd", optarg);
513           break;
514         case 151:
515           setval ("backups", optarg);
516           break;
517         case 152:
518           setval ("waitretry", optarg);
519           break;
520         case 153:
521           setval ("followtags", optarg);
522           break;
523         case 160:
524           setval ("cookies", optarg);
525           break;
526         case 161:
527           setval ("loadcookies", optarg);
528           break;
529         case 162:
530           setval ("savecookies", optarg);
531           break;
532         case 163:
533           setval ("progress", optarg);
534           break;
535         case 164:
536           setval ("limitrate", optarg);
537           break;
538         case 157:
539           setval ("referer", optarg);
540           break;
541 #ifdef HAVE_SSL
542         case 158:
543           setval ("sslcertfile", optarg);
544           break;
545         case 159:
546           setval ("sslcertkey", optarg);
547           break;
548         case 166:
549           setval ("egdfile", optarg);
550           break;
551 #endif /* HAVE_SSL */
552         case 'A':
553           setval ("accept", optarg);
554           break;
555         case 'a':
556           setval ("logfile", optarg);
557           append_to_log = 1;
558           break;
559         case 'B':
560           setval ("base", optarg);
561           break;
562         case 'C':
563           setval ("cache", optarg);
564           break;
565         case 'D':
566           setval ("domains", optarg);
567           break;
568         case 'e':
569           {
570             char *com, *val;
571             if (parse_line (optarg, &com, &val))
572               {
573                 if (!setval (com, val))
574                   exit (1);
575               }
576             else
577               {
578                 fprintf (stderr, _("%s: %s: invalid command\n"), exec_name,
579                          optarg);
580                 exit (1);
581               }
582             xfree (com);
583             xfree (val);
584           }
585           break;
586         case 'G':
587           setval ("ignoretags", optarg);
588           break;
589         case 'g':
590           setval ("glob", optarg);
591           break;
592         case 'I':
593           setval ("includedirectories", optarg);
594           break;
595         case 'i':
596           setval ("input", optarg);
597           break;
598         case 'l':
599           setval ("reclevel", optarg);
600           break;
601         case 'n':
602           {
603             /* #### What we really want here is --no-foo. */
604             char *p;
605
606             for (p = optarg; *p; p++)
607               switch (*p)
608                 {
609                 case 'v':
610                   setval ("verbose", "off");
611                   break;
612                 case 'H':
613                   setval ("addhostdir", "off");
614                   break;
615                 case 'd':
616                   setval ("dirstruct", "off");
617                   break;
618                 case 'c':
619                   setval ("noclobber", "on");
620                   break;
621                 case 'r':
622                   setval ("removelisting", "off");
623                   break;
624                 case 'p':
625                   setval ("noparent", "on");
626                   break;
627                 case 'k':
628                   setval ("httpkeepalive", "off");
629                   break;
630                 default:
631                   printf (_("%s: illegal option -- `-n%c'\n"), exec_name, *p);
632                   print_usage ();
633                   printf ("\n");
634                   printf (_("Try `%s --help\' for more options.\n"), exec_name);
635                   exit (1);
636                 }
637             break;
638           }
639         case 'O':
640           setval ("outputdocument", optarg);
641           break;
642         case 'o':
643           setval ("logfile", optarg);
644           break;
645         case 'P':
646           setval ("dirprefix", optarg);
647           break;
648         case 'Q':
649           setval ("quota", optarg);
650           break;
651         case 'R':
652           setval ("reject", optarg);
653           break;
654         case 'T':
655           setval ("timeout", optarg);
656           break;
657         case 't':
658           setval ("tries", optarg);
659           break;
660         case 'U':
661           setval ("useragent", optarg);
662           break;
663         case 'w':
664           setval ("wait", optarg);
665           break;
666         case 'X':
667           setval ("excludedirectories", optarg);
668           break;
669         case 'Y':
670           setval ("useproxy", optarg);
671           break;
672
673         case '?':
674           print_usage ();
675           printf ("\n");
676           printf (_("Try `%s --help' for more options.\n"), exec_name);
677           exit (0);
678           break;
679         }
680     }
681
682   /* All user options have now been processed, so it's now safe to do
683      interoption dependency checks. */
684
685   if (opt.reclevel == 0)
686     opt.reclevel = INFINITE_RECURSION;  /* see wget.h for commentary on this */
687
688   if (opt.page_requisites && !opt.recursive)
689     {
690       opt.recursive = TRUE;
691       opt.reclevel = 0;
692       if (!opt.no_dirstruct)
693         opt.dirstruct = TRUE;  /* usually handled by cmd_spec_recursive() */
694     }
695
696   if (opt.verbose == -1)
697     opt.verbose = !opt.quiet;
698
699   /* Sanity checks.  */
700   if (opt.verbose && opt.quiet)
701     {
702       printf (_("Can't be verbose and quiet at the same time.\n"));
703       print_usage ();
704       exit (1);
705     }
706   if (opt.timestamping && opt.noclobber)
707     {
708       printf (_("\
709 Can't timestamp and not clobber old files at the same time.\n"));
710       print_usage ();
711       exit (1);
712     }
713   nurl = argc - optind;
714   if (!nurl && !opt.input_filename)
715     {
716       /* No URL specified.  */
717       printf (_("%s: missing URL\n"), exec_name);
718       print_usage ();
719       printf ("\n");
720       /* #### Something nicer should be printed here -- similar to the
721          pre-1.5 `--help' page.  */
722       printf (_("Try `%s --help' for more options.\n"), exec_name);
723       exit (1);
724     }
725
726   if (opt.background)
727     fork_to_background ();
728
729   /* Initialize progress.  Have to do this after the options are
730      processed so we know where the log file is.  */
731   if (opt.verbose)
732     set_progress_implementation (opt.progress_type);
733
734   /* Allocate basic pointer.  */
735   url = ALLOCA_ARRAY (char *, nurl + 1);
736   /* Fill in the arguments.  */
737   for (i = 0; i < nurl; i++, optind++)
738     {
739       char *rewritten = rewrite_shorthand_url (argv[optind]);
740       if (rewritten)
741         url[i] = rewritten;
742       else
743         url[i] = xstrdup (argv[optind]);
744     }
745   url[i] = NULL;
746
747   /* Change the title of console window on Windows.  #### I think this
748      statement should belong to retrieve_url().  --hniksic.  */
749 #ifdef WINDOWS
750   ws_changetitle (*url, nurl);
751 #endif
752
753   /* Initialize logging.  */
754   log_init (opt.lfilename, append_to_log);
755
756   DEBUGP (("DEBUG output created by Wget %s on %s.\n\n", version_string,
757            OS_TYPE));
758
759   /* Open the output filename if necessary.  */
760   if (opt.output_document)
761     {
762       if (HYPHENP (opt.output_document))
763         opt.dfp = stdout;
764       else
765         {
766           struct stat st;
767           opt.dfp = fopen (opt.output_document, opt.always_rest ? "ab" : "wb");
768           if (opt.dfp == NULL)
769             {
770               perror (opt.output_document);
771               exit (1);
772             }
773           if (fstat (fileno (opt.dfp), &st) == 0 && S_ISREG (st.st_mode))
774             opt.od_known_regular = 1;
775         }
776     }
777
778 #ifdef WINDOWS
779   ws_startup ();
780 #endif
781
782   /* Setup the signal handler to redirect output when hangup is
783      received.  */
784 #ifdef HAVE_SIGNAL
785   if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
786     signal(SIGHUP, redirect_output_signal);
787   /* ...and do the same for SIGUSR1.  */
788   signal (SIGUSR1, redirect_output_signal);
789   /* Writing to a closed socket normally signals SIGPIPE, and the
790      process exits.  What we want is to ignore SIGPIPE and just check
791      for the return value of write().  */
792   signal (SIGPIPE, SIG_IGN);
793 #ifdef SIGWINCH
794   signal (SIGWINCH, progress_handle_sigwinch);
795 #endif
796 #endif /* HAVE_SIGNAL */
797
798 #ifdef HAVE_SSL
799   /* Must call this before resolving any URLs because it has the power
800      to disable `https'.  */
801   ssl_init_prng ();
802 #endif
803
804   status = RETROK;              /* initialize it, just-in-case */
805   /* Retrieve the URLs from argument list.  */
806   for (t = url; *t; t++)
807     {
808       char *filename = NULL, *redirected_URL = NULL;
809       int dt;
810
811       if (opt.recursive && url_scheme (*t) != SCHEME_FTP)
812         status = retrieve_tree (*t);
813       else
814         status = retrieve_url (*t, &filename, &redirected_URL, NULL, &dt);
815
816       if (opt.delete_after && file_exists_p(filename))
817         {
818           DEBUGP (("Removing file due to --delete-after in main():\n"));
819           logprintf (LOG_VERBOSE, _("Removing %s.\n"), filename);
820           if (unlink (filename))
821             logprintf (LOG_NOTQUIET, "unlink: %s\n", strerror (errno));
822         }
823
824       FREE_MAYBE (redirected_URL);
825       FREE_MAYBE (filename);
826     }
827
828   /* And then from the input file, if any.  */
829   if (opt.input_filename)
830     {
831       int count;
832       status = retrieve_from_file (opt.input_filename, opt.force_html, &count);
833       if (!count)
834         logprintf (LOG_NOTQUIET, _("No URLs found in %s.\n"),
835                    opt.input_filename);
836     }
837   /* Print the downloaded sum.  */
838   if (opt.recursive
839       || nurl > 1
840       || (opt.input_filename && opt.downloaded != 0))
841     {
842       logprintf (LOG_NOTQUIET,
843                  _("\nFINISHED --%s--\nDownloaded: %s bytes in %d files\n"),
844                  time_str (NULL),
845                  (opt.downloaded_overflow ?
846                   "<overflow>" : legible_very_long (opt.downloaded)),
847                  opt.numurls);
848       /* Print quota warning, if exceeded.  */
849       if (downloaded_exceeds_quota ())
850         logprintf (LOG_NOTQUIET,
851                    _("Download quota (%s bytes) EXCEEDED!\n"),
852                    legible (opt.quota));
853     }
854
855   if (opt.cookies_output)
856     save_cookies (opt.cookies_output);
857
858   if (opt.convert_links && !opt.delete_after)
859     {
860       convert_all_links ();
861     }
862
863   log_close ();
864   for (i = 0; i < nurl; i++)
865     xfree (url[i]);
866   cleanup ();
867
868 #ifdef DEBUG_MALLOC
869   print_malloc_debug_stats ();
870 #endif
871   if (status == RETROK)
872     return 0;
873   else
874     return 1;
875 }
876 \f
877 #ifdef HAVE_SIGNAL
878 /* Hangup signal handler.  When wget receives SIGHUP or SIGUSR1, it
879    will proceed operation as usual, trying to write into a log file.
880    If that is impossible, the output will be turned off.
881
882    #### It is unsafe to do call libc functions from a signal handler.
883    What we should do is, set a global variable, and have the code in
884    log.c pick it up.  */
885
886 static RETSIGTYPE
887 redirect_output_signal (int sig)
888 {
889   char *signal_name = (sig == SIGHUP ? "SIGHUP" :
890                        (sig == SIGUSR1 ? "SIGUSR1" :
891                         "WTF?!"));
892   log_request_redirect_output (signal_name);
893   progress_schedule_redirect ();
894   signal (sig, redirect_output_signal);
895 }
896 #endif /* HAVE_SIGNAL */