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