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