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