]> sjero.net Git - wget/blob - src/main.c
[svn] Commit several minor changes:
[wget] / src / main.c
1 /* Command line parsing.
2    Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
3
4 This file is part of Wget.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #ifdef HAVE_UNISTD_H
25 # include <unistd.h>
26 #endif /* HAVE_UNISTD_H */
27 #include <sys/types.h>
28 #ifdef HAVE_STRING_H
29 # include <string.h>
30 #else
31 # include <strings.h>
32 #endif /* HAVE_STRING_H */
33 #ifdef HAVE_SIGNAL_H
34 # include <signal.h>
35 #endif
36 #ifdef HAVE_NLS
37 #ifdef HAVE_LOCALE_H
38 # include <locale.h>
39 #endif /* HAVE_LOCALE_H */
40 #endif /* HAVE_NLS */
41 #include <errno.h>
42
43 #define OPTIONS_DEFINED_HERE    /* for options.h */
44
45 #include "wget.h"
46 #include "utils.h"
47 #include "getopt.h"
48 #include "init.h"
49 #include "retr.h"
50 #include "recur.h"
51 #include "host.h"
52 #include "cookies.h"
53
54 #ifndef PATH_SEPARATOR
55 # define PATH_SEPARATOR '/'
56 #endif
57
58 extern char *version_string;
59
60 #ifndef errno
61 extern int errno;
62 #endif
63
64 struct options opt;
65
66 /* From log.c.  */
67 void log_init PARAMS ((const char *, int));
68 void log_close PARAMS ((void));
69 void redirect_output PARAMS ((const char *));
70
71 static RETSIGTYPE redirect_output_signal PARAMS ((int));
72
73 const char *exec_name;
74 \f
75 /* Initialize I18N.  The initialization amounts to invoking
76    setlocale(), bindtextdomain() and textdomain().
77    Does nothing if NLS is disabled or missing.  */
78 static void
79 i18n_initialize (void)
80 {
81   /* If HAVE_NLS is defined, assume the existence of the three
82      functions invoked here.  */
83 #ifdef HAVE_NLS
84   /* Set the current locale.  */
85   /* Here we use LC_MESSAGES instead of LC_ALL, for two reasons.
86      First, message catalogs are all of I18N Wget uses anyway.
87      Second, setting LC_ALL has a dangerous potential of messing
88      things up.  For example, when in a foreign locale, Solaris
89      strptime() fails to handle international dates correctly, which
90      makes http_atotm() malfunction.  */
91 #ifdef LC_MESSAGES
92   setlocale (LC_MESSAGES, "");
93   setlocale (LC_CTYPE, "");
94 #else
95   setlocale (LC_ALL, "");
96 #endif
97   /* Set the text message domain.  */
98   bindtextdomain ("wget", LOCALEDIR);
99   textdomain ("wget");
100 #endif /* HAVE_NLS */
101 }
102
103 /* It's kosher to declare these here because their interface _has_ to
104    be void foo(void).  */
105 void host_init PARAMS ((void));
106
107 /* This just calls the various initialization functions from the
108    modules that need one-time initialization. */
109 static void
110 private_initialize (void)
111 {
112   host_init ();
113 }
114 \f
115 /* Print the usage message.  */
116 static void
117 print_usage (void)
118 {
119   printf (_("Usage: %s [OPTION]... [URL]...\n"), exec_name);
120 }
121
122 /* Print the help message, describing all the available options.  If
123    you add an option, be sure to update this list.  */
124 static void
125 print_help (void)
126 {
127   printf (_("GNU Wget %s, a non-interactive network retriever.\n"),
128           version_string);
129   print_usage ();
130   /* Had to split this in parts, so the #@@#%# Ultrix compiler and cpp
131      don't bitch.  Also, it makes translation much easier.  */
132   fputs (_("\
133 \n\
134 Mandatory arguments to long options are mandatory for short options too.\n\
135 \n"), stdout);
136   fputs (_("\
137 Startup:\n\
138   -V,  --version           display the version of Wget and exit.\n\
139   -h,  --help              print this help.\n\
140   -b,  --background        go to background after startup.\n\
141   -e,  --execute=COMMAND   execute a `.wgetrc\'-style command.\n\
142 \n"), stdout);
143   fputs (_("\
144 Logging and input file:\n\
145   -o,  --output-file=FILE     log messages to FILE.\n\
146   -a,  --append-output=FILE   append messages to FILE.\n\
147   -d,  --debug                print debug output.\n\
148   -q,  --quiet                quiet (no output).\n\
149   -v,  --verbose              be verbose (this is the default).\n\
150   -nv, --non-verbose          turn off verboseness, without being quiet.\n\
151   -i,  --input-file=FILE      download URLs found in FILE.\n\
152   -F,  --force-html           treat input file as HTML.\n\
153   -B,  --base=URL             prepends URL to relative links in -F -i file.\n\
154        --sslcertfile=FILE     optional client certificate.\n\
155        --sslcertkey=KEYFILE   optional keyfile for this certificate.\n\
156 \n"), stdout);
157   fputs (_("\
158 Download:\n\
159        --bind-address=ADDRESS   bind to ADDRESS (hostname or IP) on local host.\n\
160   -t,  --tries=NUMBER           set number of retries to NUMBER (0 unlimits).\n\
161   -O   --output-document=FILE   write documents to FILE.\n\
162   -nc, --no-clobber             don\'t clobber existing files or use .# suffixes.\n\
163   -c,  --continue               resume getting a partially-downloaded file.\n\
164        --dot-style=STYLE        set retrieval display style.\n\
165   -N,  --timestamping           don\'t re-retrieve files unless newer than local.\n\
166   -S,  --server-response        print server response.\n\
167        --spider                 don\'t download anything.\n\
168   -T,  --timeout=SECONDS        set the read timeout to SECONDS.\n\
169   -w,  --wait=SECONDS           wait SECONDS between retrievals.\n\
170        --waitretry=SECONDS      wait 1...SECONDS between retries of a retrieval.\n\
171   -Y,  --proxy=on/off           turn proxy on or off.\n\
172   -Q,  --quota=NUMBER           set retrieval quota to NUMBER.\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   -nh, --no-host-lookup             don\'t DNS-lookup hosts.\n\
231   -np, --no-parent                  don\'t ascend to the parent directory.\n\
232 \n"), stdout);
233   fputs (_("Mail bug reports and suggestions to <bug-wget@gnu.org>.\n"),
234          stdout);
235 }
236 \f
237 int
238 main (int argc, char *const *argv)
239 {
240   char **url, **t;
241   int i, c, nurl, status, append_to_log;
242   int wr = 0;
243
244   static struct option long_options[] =
245   {
246     /* Options without arguments: */
247     { "background", no_argument, NULL, 'b' },
248     { "backup-converted", no_argument, NULL, 'K' },
249     { "continue", no_argument, NULL, 'c' },
250     { "convert-links", no_argument, NULL, 'k' },
251     { "debug", no_argument, NULL, 'd' },
252     { "delete-after", no_argument, NULL, 136 },
253     { "dont-remove-listing", no_argument, NULL, 149 },
254     { "follow-ftp", no_argument, NULL, 142 },
255     { "force-directories", no_argument, NULL, 'x' },
256     { "force-hier", no_argument, NULL, 'x' }, /* obsolete */
257     { "force-html", no_argument, NULL, 'F'},
258     { "help", no_argument, NULL, 'h' },
259     { "html-extension", no_argument, NULL, 'E' },
260     { "ignore-length", no_argument, NULL, 138 },
261     { "mirror", no_argument, NULL, 'm' },
262     { "no-clobber", no_argument, NULL, 141 },
263     { "no-directories", no_argument, NULL, 147 },
264     { "no-host-directories", no_argument, NULL, 148 },
265     { "no-host-lookup", no_argument, NULL, 150 },
266     { "no-http-keep-alive", no_argument, NULL, 156 },
267     { "no-parent", no_argument, NULL, 133 },
268     { "non-verbose", no_argument, NULL, 146 },
269     { "passive-ftp", no_argument, NULL, 139 },
270     { "page-requisites", no_argument, NULL, 'p' },
271     { "quiet", no_argument, NULL, 'q' },
272     { "recursive", no_argument, NULL, 'r' },
273     { "relative", no_argument, NULL, 'L' },
274     { "retr-symlinks", no_argument, NULL, 137 },
275     { "save-headers", no_argument, NULL, 's' },
276     { "server-response", no_argument, NULL, 'S' },
277     { "span-hosts", no_argument, NULL, 'H' },
278     { "spider", no_argument, NULL, 132 },
279     { "timestamping", no_argument, NULL, 'N' },
280     { "verbose", no_argument, NULL, 'v' },
281     { "version", no_argument, NULL, 'V' },
282
283     /* Options accepting an argument: */
284     { "accept", required_argument, NULL, 'A' },
285     { "append-output", required_argument, NULL, 'a' },
286     { "backups", required_argument, NULL, 151 }, /* undocumented */
287     { "base", required_argument, NULL, 'B' },
288     { "bind-address", required_argument, NULL, 155 },
289     { "cache", required_argument, NULL, 'C' },
290     { "cookies", required_argument, NULL, 160 },
291     { "cut-dirs", required_argument, NULL, 145 },
292     { "directory-prefix", required_argument, NULL, 'P' },
293     { "domains", required_argument, NULL, 'D' },
294     { "dot-style", required_argument, NULL, 134 },
295     { "execute", required_argument, NULL, 'e' },
296     { "exclude-directories", required_argument, NULL, 'X' },
297     { "exclude-domains", required_argument, NULL, 140 },
298     { "follow-tags", required_argument, NULL, 153 },
299     { "glob", required_argument, NULL, 'g' },
300     { "header", required_argument, NULL, 131 },
301     { "htmlify", required_argument, NULL, 135 },
302     { "http-passwd", required_argument, NULL, 130 },
303     { "http-user", required_argument, NULL, 129 },
304     { "ignore-tags", required_argument, NULL, 'G' },
305     { "include-directories", required_argument, NULL, 'I' },
306     { "input-file", required_argument, NULL, 'i' },
307     { "level", required_argument, NULL, 'l' },
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     { "proxy", required_argument, NULL, 'Y' },
313     { "proxy-passwd", required_argument, NULL, 144 },
314     { "proxy-user", required_argument, NULL, 143 },
315     { "quota", required_argument, NULL, 'Q' },
316     { "reject", required_argument, NULL, 'R' },
317     { "save-cookies", required_argument, NULL, 162 },
318     { "timeout", required_argument, NULL, 'T' },
319     { "tries", required_argument, NULL, 't' },
320     { "user-agent", required_argument, NULL, 'U' },
321     { "referer", required_argument, NULL, 157 },
322     { "use-proxy", required_argument, NULL, 'Y' },
323 #ifdef HAVE_SSL
324     { "sslcertfile", required_argument, NULL, 158 },
325     { "sslcertkey", required_argument, NULL, 159 },
326 #endif /* HAVE_SSL */
327     { "wait", required_argument, NULL, 'w' },
328     { "waitretry", required_argument, NULL, 152 },
329     { 0, 0, 0, 0 }
330   };
331
332   i18n_initialize ();
333   private_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 150:
401           setval ("simplehostcheck", "on");
402           break;
403         case 155:
404           setval ("bindaddress", optarg);
405           break;
406         case 156:
407           setval ("httpkeepalive", "off");
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 Free Software Foundation, Inc.\n\
473 This program is distributed in the hope that it will be useful,\n\
474 but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
475 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\
476 GNU General Public License for more details.\n"));
477           printf (_("\nOriginally written by Hrvoje Niksic <hniksic@arsdigita.com>.\n"));
478           exit (0);
479           break;
480         case 'v':
481           setval ("verbose", "on");
482           break;
483         case 'x':
484           setval ("dirstruct", "on");
485           break;
486
487           /* Options accepting an argument: */
488         case 129:
489           setval ("httpuser", optarg);
490           break;
491         case 130:
492           setval ("httppasswd", optarg);
493           break;
494         case 131:
495           setval ("header", optarg);
496           break;
497         case 134:
498           setval ("dotstyle", optarg);
499           break;
500         case 135:
501           setval ("htmlify", optarg);
502           break;
503         case 140:
504           setval ("excludedomains", optarg);
505           break;
506         case 143:
507           setval ("proxyuser", optarg);
508           break;
509         case 144:
510           setval ("proxypasswd", optarg);
511           break;
512         case 151:
513           setval ("backups", optarg);
514           break;
515         case 152:
516           setval ("waitretry", optarg);
517           wr = 1;
518           break;
519         case 153:
520           setval ("followtags", optarg);
521           break;
522         case 160:
523           setval ("cookies", optarg);
524           break;
525         case 161:
526           setval ("loadcookies", optarg);
527           break;
528         case 162:
529           setval ("savecookies", optarg);
530           break;
531         case 157:
532           setval ("referer", optarg);
533           break;
534 #ifdef HAVE_SSL
535         case 158:
536           setval ("sslcertfile", optarg);
537           break;
538         case 159:
539           setval ("sslcertkey", optarg);
540           break;
541 #endif /* HAVE_SSL */
542         case 'A':
543           setval ("accept", optarg);
544           break;
545         case 'a':
546           setval ("logfile", optarg);
547           append_to_log = 1;
548           break;
549         case 'B':
550           setval ("base", optarg);
551           break;
552         case 'C':
553           setval ("cache", optarg);
554           break;
555         case 'D':
556           setval ("domains", optarg);
557           break;
558         case 'e':
559           {
560             char *com, *val;
561             if (parse_line (optarg, &com, &val))
562               {
563                 if (!setval (com, val))
564                   exit (1);
565               }
566             else
567               {
568                 fprintf (stderr, _("%s: %s: invalid command\n"), exec_name,
569                          optarg);
570                 exit (1);
571               }
572             xfree (com);
573             xfree (val);
574           }
575           break;
576         case 'G':
577           setval ("ignoretags", optarg);
578           break;
579         case 'g':
580           setval ("glob", optarg);
581           break;
582         case 'I':
583           setval ("includedirectories", optarg);
584           break;
585         case 'i':
586           setval ("input", optarg);
587           break;
588         case 'l':
589           setval ("reclevel", optarg);
590           break;
591         case 'n':
592           {
593             /* #### The n? options are utter crock!  */
594             char *p;
595
596             for (p = optarg; *p; p++)
597               switch (*p)
598                 {
599                 case 'v':
600                   setval ("verbose", "off");
601                   break;
602                 case 'h':
603                   setval ("simplehostcheck", "on");
604                   break;
605                 case 'H':
606                   setval ("addhostdir", "off");
607                   break;
608                 case 'd':
609                   setval ("dirstruct", "off");
610                   break;
611                 case 'c':
612                   setval ("noclobber", "on");
613                   break;
614                 case 'r':
615                   setval ("removelisting", "off");
616                   break;
617                 case 'p':
618                   setval ("noparent", "on");
619                   break;
620                 case 'k':
621                   setval ("httpkeepalive", "off");
622                   break;
623                 default:
624                   printf (_("%s: illegal option -- `-n%c'\n"), exec_name, *p);
625                   print_usage ();
626                   printf ("\n");
627                   printf (_("Try `%s --help\' for more options.\n"), exec_name);
628                   exit (1);
629                 }
630             break;
631           }
632         case 'O':
633           setval ("outputdocument", optarg);
634           break;
635         case 'o':
636           setval ("logfile", optarg);
637           break;
638         case 'P':
639           setval ("dirprefix", optarg);
640           break;
641         case 'Q':
642           setval ("quota", optarg);
643           break;
644         case 'R':
645           setval ("reject", optarg);
646           break;
647         case 'T':
648           setval ("timeout", optarg);
649           break;
650         case 't':
651           setval ("tries", optarg);
652           break;
653         case 'U':
654           setval ("useragent", optarg);
655           break;
656         case 'w':
657           setval ("wait", optarg);
658           break;
659         case 'X':
660           setval ("excludedirectories", optarg);
661           break;
662         case 'Y':
663           setval ("useproxy", optarg);
664           break;
665
666         case '?':
667           print_usage ();
668           printf ("\n");
669           printf (_("Try `%s --help' for more options.\n"), exec_name);
670           exit (0);
671           break;
672         }
673     }
674
675   /* All user options have now been processed, so it's now safe to do
676      interoption dependency checks. */
677
678   if (opt.reclevel == 0)
679     opt.reclevel = INFINITE_RECURSION;  /* see wget.h for commentary on this */
680
681   if (opt.page_requisites && !opt.recursive)
682     {
683       opt.recursive = TRUE;
684       opt.reclevel = 0;
685       if (!opt.no_dirstruct)
686         opt.dirstruct = TRUE;  /* usually handled by cmd_spec_recursive() */
687     }
688
689   if (opt.verbose == -1)
690     opt.verbose = !opt.quiet;
691
692   /* Retain compatibility with previous scripts.
693      if wait has been set, but waitretry has not, give it the wait value.
694      A simple check on the values is not enough, I could have set
695      wait to n>0 and waitretry to 0 - HEH */
696   if (opt.wait && !wr)
697     {
698       char  opt_wait_str[256];  /* bigger than needed buf to prevent overflow */
699
700       sprintf(opt_wait_str, "%ld", opt.wait);
701       setval ("waitretry", opt_wait_str);
702     }
703     
704   /* Sanity checks.  */
705   if (opt.verbose && opt.quiet)
706     {
707       printf (_("Can't be verbose and quiet at the same time.\n"));
708       print_usage ();
709       exit (1);
710     }
711   if (opt.timestamping && opt.noclobber)
712     {
713       printf (_("\
714 Can't timestamp and not clobber old files at the same time.\n"));
715       print_usage ();
716       exit (1);
717     }
718   nurl = argc - optind;
719   if (!nurl && !opt.input_filename)
720     {
721       /* No URL specified.  */
722       printf (_("%s: missing URL\n"), exec_name);
723       print_usage ();
724       printf ("\n");
725       /* #### Something nicer should be printed here -- similar to the
726          pre-1.5 `--help' page.  */
727       printf (_("Try `%s --help' for more options.\n"), exec_name);
728       exit (1);
729     }
730
731   if (opt.background)
732     fork_to_background ();
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 *irix4_cc_needs_this;
740       STRDUP_ALLOCA (irix4_cc_needs_this, argv[optind]);
741       url[i] = irix4_cc_needs_this;
742     }
743   url[i] = NULL;
744
745   /* Change the title of console window on Windows.  #### I think this
746      statement should belong to retrieve_url().  --hniksic.  */
747 #ifdef WINDOWS
748   ws_changetitle (*url, nurl);
749 #endif
750
751   /* Initialize logging.  */
752   log_init (opt.lfilename, append_to_log);
753
754   DEBUGP (("DEBUG output created by Wget %s on %s.\n\n", version_string,
755            OS_TYPE));
756
757   /* Open the output filename if necessary.  */
758   if (opt.output_document)
759     {
760       if (HYPHENP (opt.output_document))
761         opt.dfp = stdout;
762       else
763         {
764           struct stat st;
765           opt.dfp = fopen (opt.output_document, opt.always_rest ? "ab" : "wb");
766           if (opt.dfp == NULL)
767             {
768               perror (opt.output_document);
769               exit (1);
770             }
771           if (fstat (fileno (opt.dfp), &st) == 0 && S_ISREG (st.st_mode))
772             opt.od_known_regular = 1;
773         }
774     }
775
776 #ifdef WINDOWS
777   ws_startup ();
778 #endif
779
780   /* Setup the signal handler to redirect output when hangup is
781      received.  */
782 #ifdef HAVE_SIGNAL
783   if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
784     signal(SIGHUP, redirect_output_signal);
785   /* ...and do the same for SIGUSR1.  */
786   signal (SIGUSR1, redirect_output_signal);
787   /* Writing to a closed socket normally signals SIGPIPE, and the
788      process exits.  What we want is to ignore SIGPIPE and just check
789      for the return value of write().  */
790   signal (SIGPIPE, SIG_IGN);
791 #endif /* HAVE_SIGNAL */
792
793   status = RETROK;              /* initialize it, just-in-case */
794   recursive_reset ();
795   /* Retrieve the URLs from argument list.  */
796   for (t = url; *t; t++)
797     {
798       char *filename, *redirected_URL;
799       int dt;
800
801       status = retrieve_url (*t, &filename, &redirected_URL, NULL, &dt);
802       if (opt.recursive && status == RETROK && (dt & TEXTHTML))
803         status = recursive_retrieve (filename,
804                                      redirected_URL ? redirected_URL : *t);
805
806       if (opt.delete_after && file_exists_p(filename))
807         {
808           DEBUGP (("Removing file due to --delete-after in main():\n"));
809           logprintf (LOG_VERBOSE, _("Removing %s.\n"), filename);
810           if (unlink (filename))
811             logprintf (LOG_NOTQUIET, "unlink: %s\n", strerror (errno));
812         }
813
814       FREE_MAYBE (redirected_URL);
815       FREE_MAYBE (filename);
816     }
817
818   /* And then from the input file, if any.  */
819   if (opt.input_filename)
820     {
821       int count;
822       status = retrieve_from_file (opt.input_filename, opt.force_html, &count);
823       if (!count)
824         logprintf (LOG_NOTQUIET, _("No URLs found in %s.\n"),
825                    opt.input_filename);
826     }
827   /* Print the downloaded sum.  */
828   if (opt.recursive
829       || nurl > 1
830       || (opt.input_filename && opt.downloaded != 0))
831     {
832       logprintf (LOG_NOTQUIET,
833                  _("\nFINISHED --%s--\nDownloaded: %s bytes in %d files\n"),
834                  time_str (NULL),
835                  (opt.downloaded_overflow ?
836                   "<overflow>" : legible_very_long (opt.downloaded)),
837                  opt.numurls);
838       /* Print quota warning, if exceeded.  */
839       if (downloaded_exceeds_quota ())
840         logprintf (LOG_NOTQUIET,
841                    _("Download quota (%s bytes) EXCEEDED!\n"),
842                    legible (opt.quota));
843     }
844
845   if (opt.cookies_output)
846     save_cookies (opt.cookies_output);
847
848   if (opt.convert_links && !opt.delete_after)
849     {
850       convert_all_links ();
851     }
852   log_close ();
853   cleanup ();
854 #ifdef DEBUG_MALLOC
855   print_malloc_debug_stats ();
856 #endif
857   if (status == RETROK)
858     return 0;
859   else
860     return 1;
861 }
862 \f
863 /* Hangup signal handler.  When wget receives SIGHUP or SIGUSR1, it
864    will proceed operation as usual, trying to write into a log file.
865    If that is impossible, the output will be turned off.  */
866
867 #ifdef HAVE_SIGNAL
868 static RETSIGTYPE
869 redirect_output_signal (int sig)
870 {
871   char tmp[100];
872   signal (sig, redirect_output_signal);
873   /* Please note that the double `%' in `%%s' is intentional, because
874      redirect_output passes tmp through printf.  */
875   sprintf (tmp, _("%s received, redirecting output to `%%s'.\n"),
876            (sig == SIGHUP ? "SIGHUP" :
877             (sig == SIGUSR1 ? "SIGUSR1" :
878              "WTF?!")));
879   redirect_output (tmp);
880 }
881 #endif /* HAVE_SIGNAL */