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