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