]> sjero.net Git - wget/blob - src/convert.c
NEWS: cite --start-pos
[wget] / src / convert.c
1 /* Conversion of links to local files.
2    Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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 3 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, see <http://www.gnu.org/licenses/>.
19
20 Additional permission under GNU GPL version 3 section 7
21
22 If you modify this program, or any covered work, by linking or
23 combining it with the OpenSSL project's OpenSSL library (or a
24 modified version of that library), containing parts covered by the
25 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
26 grants you additional permission to convey the resulting work.
27 Corresponding Source for a non-source form of such a combination
28 shall include the source code for the parts of OpenSSL used as well
29 as that of the covered work.  */
30
31 #include "wget.h"
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <unistd.h>
37 #include <errno.h>
38 #include <assert.h>
39 #include "convert.h"
40 #include "url.h"
41 #include "recur.h"
42 #include "utils.h"
43 #include "hash.h"
44 #include "ptimer.h"
45 #include "res.h"
46 #include "html-url.h"
47 #include "css-url.h"
48 #include "iri.h"
49
50 static struct hash_table *dl_file_url_map;
51 struct hash_table *dl_url_file_map;
52
53 /* Set of HTML/CSS files downloaded in this Wget run, used for link
54    conversion after Wget is done.  */
55 struct hash_table *downloaded_html_set;
56 struct hash_table *downloaded_css_set;
57
58 static void convert_links (const char *, struct urlpos *);
59
60
61 static void
62 convert_links_in_hashtable (struct hash_table *downloaded_set,
63                             int is_css,
64                             int *file_count)
65 {
66   int i;
67
68   int cnt;
69   char **file_array;
70
71   cnt = 0;
72   if (downloaded_set)
73     cnt = hash_table_count (downloaded_set);
74   if (cnt == 0)
75     return;
76   file_array = alloca_array (char *, cnt);
77   string_set_to_array (downloaded_set, file_array);
78
79   for (i = 0; i < cnt; i++)
80     {
81       struct urlpos *urls, *cur_url;
82       char *url;
83       char *file = file_array[i];
84
85       /* Determine the URL of the file.  get_urls_{html,css} will need
86          it.  */
87       url = hash_table_get (dl_file_url_map, file);
88       if (!url)
89         {
90           DEBUGP (("Apparently %s has been removed.\n", file));
91           continue;
92         }
93
94       DEBUGP (("Scanning %s (from %s)\n", file, url));
95
96       /* Parse the file...  */
97       urls = is_css ? get_urls_css_file (file, url) :
98                       get_urls_html (file, url, NULL, NULL);
99
100       /* We don't respect meta_disallow_follow here because, even if
101          the file is not followed, we might still want to convert the
102          links that have been followed from other files.  */
103
104       for (cur_url = urls; cur_url; cur_url = cur_url->next)
105         {
106           char *local_name;
107           struct url *u;
108           struct iri *pi;
109
110           if (cur_url->link_base_p)
111             {
112               /* Base references have been resolved by our parser, so
113                  we turn the base URL into an empty string.  (Perhaps
114                  we should remove the tag entirely?)  */
115               cur_url->convert = CO_NULLIFY_BASE;
116               continue;
117             }
118
119           /* We decide the direction of conversion according to whether
120              a URL was downloaded.  Downloaded URLs will be converted
121              ABS2REL, whereas non-downloaded will be converted REL2ABS.  */
122
123           pi = iri_new ();
124           set_uri_encoding (pi, opt.locale, true);
125
126           u = url_parse (cur_url->url->url, NULL, pi, true);
127           if (!u)
128             continue;
129
130           local_name = hash_table_get (dl_url_file_map, u->url);
131
132           /* Decide on the conversion type.  */
133           if (local_name)
134             {
135               /* We've downloaded this URL.  Convert it to relative
136                  form.  We do this even if the URL already is in
137                  relative form, because our directory structure may
138                  not be identical to that on the server (think `-nd',
139                  `--cut-dirs', etc.)  */
140               cur_url->convert = CO_CONVERT_TO_RELATIVE;
141               cur_url->local_name = xstrdup (local_name);
142               DEBUGP (("will convert url %s to local %s\n", u->url, local_name));
143             }
144           else
145             {
146               /* We haven't downloaded this URL.  If it's not already
147                  complete (including a full host name), convert it to
148                  that form, so it can be reached while browsing this
149                  HTML locally.  */
150               if (!cur_url->link_complete_p)
151                 cur_url->convert = CO_CONVERT_TO_COMPLETE;
152               cur_url->local_name = NULL;
153               DEBUGP (("will convert url %s to complete\n", u->url));
154             }
155
156           url_free (u);
157           iri_free (pi);
158         }
159
160       /* Convert the links in the file.  */
161       convert_links (file, urls);
162       ++*file_count;
163
164       /* Free the data.  */
165       free_urlpos (urls);
166     }
167 }
168
169 /* This function is called when the retrieval is done to convert the
170    links that have been downloaded.  It has to be called at the end of
171    the retrieval, because only then does Wget know conclusively which
172    URLs have been downloaded, and which not, so it can tell which
173    direction to convert to.
174
175    The "direction" means that the URLs to the files that have been
176    downloaded get converted to the relative URL which will point to
177    that file.  And the other URLs get converted to the remote URL on
178    the server.
179
180    All the downloaded HTMLs are kept in downloaded_html_files, and
181    downloaded URLs in urls_downloaded.  All the information is
182    extracted from these two lists.  */
183
184 void
185 convert_all_links (void)
186 {
187   double secs;
188   int file_count = 0;
189
190   struct ptimer *timer = ptimer_new ();
191
192   convert_links_in_hashtable (downloaded_html_set, 0, &file_count);
193   convert_links_in_hashtable (downloaded_css_set, 1, &file_count);
194
195   secs = ptimer_measure (timer);
196   logprintf (LOG_VERBOSE, _("Converted %d files in %s seconds.\n"),
197              file_count, print_decimal (secs));
198
199   ptimer_destroy (timer);
200 }
201
202 static void write_backup_file (const char *, downloaded_file_t);
203 static const char *replace_plain (const char*, int, FILE*, const char *);
204 static const char *replace_attr (const char *, int, FILE *, const char *);
205 static const char *replace_attr_refresh_hack (const char *, int, FILE *,
206                                               const char *, int);
207 static char *local_quote_string (const char *, bool);
208 static char *construct_relative (const char *, const char *);
209
210 /* Change the links in one file.  LINKS is a list of links in the
211    document, along with their positions and the desired direction of
212    the conversion.  */
213 static void
214 convert_links (const char *file, struct urlpos *links)
215 {
216   struct file_memory *fm;
217   FILE *fp;
218   const char *p;
219   downloaded_file_t downloaded_file_return;
220
221   struct urlpos *link;
222   int to_url_count = 0, to_file_count = 0;
223
224   logprintf (LOG_VERBOSE, _("Converting %s... "), file);
225
226   {
227     /* First we do a "dry run": go through the list L and see whether
228        any URL needs to be converted in the first place.  If not, just
229        leave the file alone.  */
230     int dry_count = 0;
231     struct urlpos *dry;
232     for (dry = links; dry; dry = dry->next)
233       if (dry->convert != CO_NOCONVERT)
234         ++dry_count;
235     if (!dry_count)
236       {
237         logputs (LOG_VERBOSE, _("nothing to do.\n"));
238         return;
239       }
240   }
241
242   fm = wget_read_file (file);
243   if (!fm)
244     {
245       logprintf (LOG_NOTQUIET, _("Cannot convert links in %s: %s\n"),
246                  file, strerror (errno));
247       return;
248     }
249
250   downloaded_file_return = downloaded_file (CHECK_FOR_FILE, file);
251   if (opt.backup_converted && downloaded_file_return)
252     write_backup_file (file, downloaded_file_return);
253
254   /* Before opening the file for writing, unlink the file.  This is
255      important if the data in FM is mmaped.  In such case, nulling the
256      file, which is what fopen() below does, would make us read all
257      zeroes from the mmaped region.  */
258   if (unlink (file) < 0 && errno != ENOENT)
259     {
260       logprintf (LOG_NOTQUIET, _("Unable to delete %s: %s\n"),
261                  quote (file), strerror (errno));
262       wget_read_file_free (fm);
263       return;
264     }
265   /* Now open the file for writing.  */
266   fp = fopen (file, "wb");
267   if (!fp)
268     {
269       logprintf (LOG_NOTQUIET, _("Cannot convert links in %s: %s\n"),
270                  file, strerror (errno));
271       wget_read_file_free (fm);
272       return;
273     }
274
275   /* Here we loop through all the URLs in file, replacing those of
276      them that are downloaded with relative references.  */
277   p = fm->content;
278   for (link = links; link; link = link->next)
279     {
280       char *url_start = fm->content + link->pos;
281
282       if (link->pos >= fm->length)
283         {
284           DEBUGP (("Something strange is going on.  Please investigate."));
285           break;
286         }
287       /* If the URL is not to be converted, skip it.  */
288       if (link->convert == CO_NOCONVERT)
289         {
290           DEBUGP (("Skipping %s at position %d.\n", link->url->url, link->pos));
291           continue;
292         }
293
294       /* Echo the file contents, up to the offending URL's opening
295          quote, to the outfile.  */
296       fwrite (p, 1, url_start - p, fp);
297       p = url_start;
298
299       switch (link->convert)
300         {
301         case CO_CONVERT_TO_RELATIVE:
302           /* Convert absolute URL to relative. */
303           {
304             char *newname = construct_relative (file, link->local_name);
305             char *quoted_newname = local_quote_string (newname,
306                                                        link->link_css_p);
307
308             if (link->link_css_p)
309               p = replace_plain (p, link->size, fp, quoted_newname);
310             else if (!link->link_refresh_p)
311               p = replace_attr (p, link->size, fp, quoted_newname);
312             else
313               p = replace_attr_refresh_hack (p, link->size, fp, quoted_newname,
314                                              link->refresh_timeout);
315
316             DEBUGP (("TO_RELATIVE: %s to %s at position %d in %s.\n",
317                      link->url->url, newname, link->pos, file));
318             xfree (newname);
319             xfree (quoted_newname);
320             ++to_file_count;
321             break;
322           }
323         case CO_CONVERT_TO_COMPLETE:
324           /* Convert the link to absolute URL. */
325           {
326             char *newlink = link->url->url;
327             char *quoted_newlink = html_quote_string (newlink);
328
329             if (link->link_css_p)
330               p = replace_plain (p, link->size, fp, newlink);
331             else if (!link->link_refresh_p)
332               p = replace_attr (p, link->size, fp, quoted_newlink);
333             else
334               p = replace_attr_refresh_hack (p, link->size, fp, quoted_newlink,
335                                              link->refresh_timeout);
336
337             DEBUGP (("TO_COMPLETE: <something> to %s at position %d in %s.\n",
338                      newlink, link->pos, file));
339             xfree (quoted_newlink);
340             ++to_url_count;
341             break;
342           }
343         case CO_NULLIFY_BASE:
344           /* Change the base href to "". */
345           p = replace_attr (p, link->size, fp, "");
346           break;
347         case CO_NOCONVERT:
348           abort ();
349           break;
350         }
351     }
352
353   /* Output the rest of the file. */
354   if (p - fm->content < fm->length)
355     fwrite (p, 1, fm->length - (p - fm->content), fp);
356   fclose (fp);
357   wget_read_file_free (fm);
358
359   logprintf (LOG_VERBOSE, "%d-%d\n", to_file_count, to_url_count);
360 }
361
362 /* Construct and return a link that points from BASEFILE to LINKFILE.
363    Both files should be local file names, BASEFILE of the referrering
364    file, and LINKFILE of the referred file.
365
366    Examples:
367
368    cr("foo", "bar")         -> "bar"
369    cr("A/foo", "A/bar")     -> "bar"
370    cr("A/foo", "A/B/bar")   -> "B/bar"
371    cr("A/X/foo", "A/Y/bar") -> "../Y/bar"
372    cr("X/", "Y/bar")        -> "../Y/bar" (trailing slash does matter in BASE)
373
374    Both files should be absolute or relative, otherwise strange
375    results might ensue.  The function makes no special efforts to
376    handle "." and ".." in links, so make sure they're not there
377    (e.g. using path_simplify).  */
378
379 static char *
380 construct_relative (const char *basefile, const char *linkfile)
381 {
382   char *link;
383   int basedirs;
384   const char *b, *l;
385   int i, start;
386
387   /* First, skip the initial directory components common to both
388      files.  */
389   start = 0;
390   for (b = basefile, l = linkfile; *b == *l && *b != '\0'; ++b, ++l)
391     {
392       if (*b == '/')
393         start = (b - basefile) + 1;
394     }
395   basefile += start;
396   linkfile += start;
397
398   /* With common directories out of the way, the situation we have is
399      as follows:
400          b - b1/b2/[...]/bfile
401          l - l1/l2/[...]/lfile
402
403      The link we're constructing needs to be:
404        lnk - ../../l1/l2/[...]/lfile
405
406      Where the number of ".."'s equals the number of bN directory
407      components in B.  */
408
409   /* Count the directory components in B. */
410   basedirs = 0;
411   for (b = basefile; *b; b++)
412     {
413       if (*b == '/')
414         ++basedirs;
415     }
416
417   /* Construct LINK as explained above. */
418   link = xmalloc (3 * basedirs + strlen (linkfile) + 1);
419   for (i = 0; i < basedirs; i++)
420     memcpy (link + 3 * i, "../", 3);
421   strcpy (link + 3 * i, linkfile);
422   return link;
423 }
424
425 /* Used by write_backup_file to remember which files have been
426    written. */
427 static struct hash_table *converted_files;
428
429 static void
430 write_backup_file (const char *file, downloaded_file_t downloaded_file_return)
431 {
432   /* Rather than just writing over the original .html file with the
433      converted version, save the former to *.orig.  Note we only do
434      this for files we've _successfully_ downloaded, so we don't
435      clobber .orig files sitting around from previous invocations.
436      On VMS, use "_orig" instead of ".orig".  See "wget.h". */
437
438   /* Construct the backup filename as the original name plus ".orig". */
439   size_t         filename_len = strlen (file);
440   char*          filename_plus_orig_suffix;
441
442   /* TODO: hack this to work with css files */
443   if (downloaded_file_return == FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED)
444     {
445       /* Just write "orig" over "html".  We need to do it this way
446          because when we're checking to see if we've downloaded the
447          file before (to see if we can skip downloading it), we don't
448          know if it's a text/html file.  Therefore we don't know yet
449          at that stage that -E is going to cause us to tack on
450          ".html", so we need to compare vs. the original URL plus
451          ".orig", not the original URL plus ".html.orig". */
452       filename_plus_orig_suffix = alloca (filename_len + 1);
453       strcpy (filename_plus_orig_suffix, file);
454       strcpy ((filename_plus_orig_suffix + filename_len) - 4, "orig");
455     }
456   else /* downloaded_file_return == FILE_DOWNLOADED_NORMALLY */
457     {
458       /* Append ".orig" to the name. */
459       filename_plus_orig_suffix = alloca (filename_len + sizeof (ORIG_SFX));
460       strcpy (filename_plus_orig_suffix, file);
461       strcpy (filename_plus_orig_suffix + filename_len, ORIG_SFX);
462     }
463
464   if (!converted_files)
465     converted_files = make_string_hash_table (0);
466
467   /* We can get called twice on the same URL thanks to the
468      convert_all_links() call in main().  If we write the .orig file
469      each time in such a case, it'll end up containing the first-pass
470      conversion, not the original file.  So, see if we've already been
471      called on this file. */
472   if (!string_set_contains (converted_files, file))
473     {
474       /* Rename <file> to <file>.orig before former gets written over. */
475       if (rename (file, filename_plus_orig_suffix) != 0)
476         logprintf (LOG_NOTQUIET, _("Cannot back up %s as %s: %s\n"),
477                    file, filename_plus_orig_suffix, strerror (errno));
478
479       /* Remember that we've already written a .orig backup for this file.
480          Note that we never free this memory since we need it till the
481          convert_all_links() call, which is one of the last things the
482          program does before terminating.  BTW, I'm not sure if it would be
483          safe to just set 'converted_file_ptr->string' to 'file' below,
484          rather than making a copy of the string...  Another note is that I
485          thought I could just add a field to the urlpos structure saying
486          that we'd written a .orig file for this URL, but that didn't work,
487          so I had to make this separate list.
488          -- Dan Harkless <wget@harkless.org>
489
490          This [adding a field to the urlpos structure] didn't work
491          because convert_file() is called from convert_all_links at
492          the end of the retrieval with a freshly built new urlpos
493          list.
494          -- Hrvoje Niksic <hniksic@xemacs.org>
495       */
496       string_set_add (converted_files, file);
497     }
498 }
499
500 static bool find_fragment (const char *, int, const char **, const char **);
501
502 /* Replace a string with NEW_TEXT.  Ignore quoting. */
503 static const char *
504 replace_plain (const char *p, int size, FILE *fp, const char *new_text)
505 {
506   fputs (new_text, fp);
507   p += size;
508   return p;
509 }
510
511 /* Replace an attribute's original text with NEW_TEXT. */
512
513 static const char *
514 replace_attr (const char *p, int size, FILE *fp, const char *new_text)
515 {
516   bool quote_flag = false;
517   char quote_char = '\"';       /* use "..." for quoting, unless the
518                                    original value is quoted, in which
519                                    case reuse its quoting char. */
520   const char *frag_beg, *frag_end;
521
522   /* Structure of our string is:
523        "...old-contents..."
524        <---    size    --->  (with quotes)
525      OR:
526        ...old-contents...
527        <---    size   -->    (no quotes)   */
528
529   if (*p == '\"' || *p == '\'')
530     {
531       quote_char = *p;
532       quote_flag = true;
533       ++p;
534       size -= 2;                /* disregard opening and closing quote */
535     }
536   putc (quote_char, fp);
537   fputs (new_text, fp);
538
539   /* Look for fragment identifier, if any. */
540   if (find_fragment (p, size, &frag_beg, &frag_end))
541     fwrite (frag_beg, 1, frag_end - frag_beg, fp);
542   p += size;
543   if (quote_flag)
544     ++p;
545   putc (quote_char, fp);
546
547   return p;
548 }
549
550 /* The same as REPLACE_ATTR, but used when replacing
551    <meta http-equiv=refresh content="new_text"> because we need to
552    append "timeout_value; URL=" before the next_text.  */
553
554 static const char *
555 replace_attr_refresh_hack (const char *p, int size, FILE *fp,
556                            const char *new_text, int timeout)
557 {
558   /* "0; URL=..." */
559   char *new_with_timeout = (char *)alloca (numdigit (timeout)
560                                            + 6 /* "; URL=" */
561                                            + strlen (new_text)
562                                            + 1);
563   sprintf (new_with_timeout, "%d; URL=%s", timeout, new_text);
564
565   return replace_attr (p, size, fp, new_with_timeout);
566 }
567
568 /* Find the first occurrence of '#' in [BEG, BEG+SIZE) that is not
569    preceded by '&'.  If the character is not found, return zero.  If
570    the character is found, return true and set BP and EP to point to
571    the beginning and end of the region.
572
573    This is used for finding the fragment indentifiers in URLs.  */
574
575 static bool
576 find_fragment (const char *beg, int size, const char **bp, const char **ep)
577 {
578   const char *end = beg + size;
579   bool saw_amp = false;
580   for (; beg < end; beg++)
581     {
582       switch (*beg)
583         {
584         case '&':
585           saw_amp = true;
586           break;
587         case '#':
588           if (!saw_amp)
589             {
590               *bp = beg;
591               *ep = end;
592               return true;
593             }
594           /* fallthrough */
595         default:
596           saw_amp = false;
597         }
598     }
599   return false;
600 }
601
602 /* Quote FILE for use as local reference to an HTML file.
603
604    We quote ? as %3F to avoid passing part of the file name as the
605    parameter when browsing the converted file through HTTP.  However,
606    it is safe to do this only when `--adjust-extension' is turned on.
607    This is because converting "index.html?foo=bar" to
608    "index.html%3Ffoo=bar" would break local browsing, as the latter
609    isn't even recognized as an HTML file!  However, converting
610    "index.html?foo=bar.html" to "index.html%3Ffoo=bar.html" should be
611    safe for both local and HTTP-served browsing.
612
613    We always quote "#" as "%23", "%" as "%25" and ";" as "%3B"
614    because those characters have special meanings in URLs.  */
615
616 static char *
617 local_quote_string (const char *file, bool no_html_quote)
618 {
619   const char *from;
620   char *newname, *to;
621
622   char *any = strpbrk (file, "?#%;");
623   if (!any)
624     return no_html_quote ? strdup (file) : html_quote_string (file);
625
626   /* Allocate space assuming the worst-case scenario, each character
627      having to be quoted.  */
628   to = newname = (char *)alloca (3 * strlen (file) + 1);
629   for (from = file; *from; from++)
630     switch (*from)
631       {
632       case '%':
633         *to++ = '%';
634         *to++ = '2';
635         *to++ = '5';
636         break;
637       case '#':
638         *to++ = '%';
639         *to++ = '2';
640         *to++ = '3';
641         break;
642       case ';':
643         *to++ = '%';
644         *to++ = '3';
645         *to++ = 'B';
646         break;
647       case '?':
648         if (opt.adjust_extension)
649           {
650             *to++ = '%';
651             *to++ = '3';
652             *to++ = 'F';
653             break;
654           }
655         /* fallthrough */
656       default:
657         *to++ = *from;
658       }
659   *to = '\0';
660
661   return no_html_quote ? strdup (newname) : html_quote_string (newname);
662 }
663 \f
664 /* Book-keeping code for dl_file_url_map, dl_url_file_map,
665    downloaded_html_list, and downloaded_html_set.  Other code calls
666    these functions to let us know that a file has been downloaded.  */
667
668 #define ENSURE_TABLES_EXIST do {                        \
669   if (!dl_file_url_map)                                 \
670     dl_file_url_map = make_string_hash_table (0);       \
671   if (!dl_url_file_map)                                 \
672     dl_url_file_map = make_string_hash_table (0);       \
673 } while (0)
674
675 /* Return true if S1 and S2 are the same, except for "/index.html".
676    The three cases in which it returns one are (substitute any
677    substring for "foo"):
678
679    m("foo/index.html", "foo/")  ==> 1
680    m("foo/", "foo/index.html")  ==> 1
681    m("foo", "foo/index.html")   ==> 1
682    m("foo", "foo/"              ==> 1
683    m("foo", "foo")              ==> 1  */
684
685 static bool
686 match_except_index (const char *s1, const char *s2)
687 {
688   int i;
689   const char *lng;
690
691   /* Skip common substring. */
692   for (i = 0; *s1 && *s2 && *s1 == *s2; s1++, s2++, i++)
693     ;
694   if (i == 0)
695     /* Strings differ at the very beginning -- bail out.  We need to
696        check this explicitly to avoid `lng - 1' reading outside the
697        array.  */
698     return false;
699
700   if (!*s1 && !*s2)
701     /* Both strings hit EOF -- strings are equal. */
702     return true;
703   else if (*s1 && *s2)
704     /* Strings are randomly different, e.g. "/foo/bar" and "/foo/qux". */
705     return false;
706   else if (*s1)
707     /* S1 is the longer one. */
708     lng = s1;
709   else
710     /* S2 is the longer one. */
711     lng = s2;
712
713   /* foo            */            /* foo/           */
714   /* foo/index.html */  /* or */  /* foo/index.html */
715   /*    ^           */            /*     ^          */
716
717   if (*lng != '/')
718     /* The right-hand case. */
719     --lng;
720
721   if (*lng == '/' && *(lng + 1) == '\0')
722     /* foo  */
723     /* foo/ */
724     return true;
725
726   return 0 == strcmp (lng, "/index.html");
727 }
728
729 static int
730 dissociate_urls_from_file_mapper (void *key, void *value, void *arg)
731 {
732   char *mapping_url = (char *)key;
733   char *mapping_file = (char *)value;
734   char *file = (char *)arg;
735
736   if (0 == strcmp (mapping_file, file))
737     {
738       hash_table_remove (dl_url_file_map, mapping_url);
739       xfree (mapping_url);
740       xfree (mapping_file);
741     }
742
743   /* Continue mapping. */
744   return 0;
745 }
746
747 /* Remove all associations from various URLs to FILE from dl_url_file_map. */
748
749 static void
750 dissociate_urls_from_file (const char *file)
751 {
752   /* Can't use hash_table_iter_* because the table mutates while mapping.  */
753   hash_table_for_each (dl_url_file_map, dissociate_urls_from_file_mapper,
754                        (char *) file);
755 }
756
757 /* Register that URL has been successfully downloaded to FILE.  This
758    is used by the link conversion code to convert references to URLs
759    to references to local files.  It is also being used to check if a
760    URL has already been downloaded.  */
761
762 void
763 register_download (const char *url, const char *file)
764 {
765   char *old_file, *old_url;
766
767   ENSURE_TABLES_EXIST;
768
769   /* With some forms of retrieval, it is possible, although not likely
770      or particularly desirable.  If both are downloaded, the second
771      download will override the first one.  When that happens,
772      dissociate the old file name from the URL.  */
773
774   if (hash_table_get_pair (dl_file_url_map, file, &old_file, &old_url))
775     {
776       if (0 == strcmp (url, old_url))
777         /* We have somehow managed to download the same URL twice.
778            Nothing to do.  */
779         return;
780
781       if (match_except_index (url, old_url)
782           && !hash_table_contains (dl_url_file_map, url))
783         /* The two URLs differ only in the "index.html" ending.  For
784            example, one is "http://www.server.com/", and the other is
785            "http://www.server.com/index.html".  Don't remove the old
786            one, just add the new one as a non-canonical entry.  */
787         goto url_only;
788
789       hash_table_remove (dl_file_url_map, file);
790       xfree (old_file);
791       xfree (old_url);
792
793       /* Remove all the URLs that point to this file.  Yes, there can
794          be more than one such URL, because we store redirections as
795          multiple entries in dl_url_file_map.  For example, if URL1
796          redirects to URL2 which gets downloaded to FILE, we map both
797          URL1 and URL2 to FILE in dl_url_file_map.  (dl_file_url_map
798          only points to URL2.)  When another URL gets loaded to FILE,
799          we want both URL1 and URL2 dissociated from it.
800
801          This is a relatively expensive operation because it performs
802          a linear search of the whole hash table, but it should be
803          called very rarely, only when two URLs resolve to the same
804          file name, *and* the "<file>.1" extensions are turned off.
805          In other words, almost never.  */
806       dissociate_urls_from_file (file);
807     }
808
809   hash_table_put (dl_file_url_map, xstrdup (file), xstrdup (url));
810
811  url_only:
812   /* A URL->FILE mapping is not possible without a FILE->URL mapping.
813      If the latter were present, it should have been removed by the
814      above `if'.  So we could write:
815
816          assert (!hash_table_contains (dl_url_file_map, url));
817
818      The above is correct when running in recursive mode where the
819      same URL always resolves to the same file.  But if you do
820      something like:
821
822          wget URL URL
823
824      then the first URL will resolve to "FILE", and the other to
825      "FILE.1".  In that case, FILE.1 will not be found in
826      dl_file_url_map, but URL will still point to FILE in
827      dl_url_file_map.  */
828   if (hash_table_get_pair (dl_url_file_map, url, &old_url, &old_file))
829     {
830       hash_table_remove (dl_url_file_map, url);
831       xfree (old_url);
832       xfree (old_file);
833     }
834
835   hash_table_put (dl_url_file_map, xstrdup (url), xstrdup (file));
836 }
837
838 /* Register that FROM has been redirected to TO.  This assumes that TO
839    is successfully downloaded and already registered using
840    register_download() above.  */
841
842 void
843 register_redirection (const char *from, const char *to)
844 {
845   char *file;
846
847   ENSURE_TABLES_EXIST;
848
849   file = hash_table_get (dl_url_file_map, to);
850   assert (file != NULL);
851   if (!hash_table_contains (dl_url_file_map, from))
852     hash_table_put (dl_url_file_map, xstrdup (from), xstrdup (file));
853 }
854
855 /* Register that the file has been deleted. */
856
857 void
858 register_delete_file (const char *file)
859 {
860   char *old_url, *old_file;
861
862   ENSURE_TABLES_EXIST;
863
864   if (!hash_table_get_pair (dl_file_url_map, file, &old_file, &old_url))
865     return;
866
867   hash_table_remove (dl_file_url_map, file);
868   xfree (old_file);
869   xfree (old_url);
870   dissociate_urls_from_file (file);
871 }
872
873 /* Register that FILE is an HTML file that has been downloaded. */
874
875 void
876 register_html (const char *file)
877 {
878   if (!downloaded_html_set)
879     downloaded_html_set = make_string_hash_table (0);
880   string_set_add (downloaded_html_set, file);
881 }
882
883 /* Register that FILE is a CSS file that has been downloaded. */
884
885 void
886 register_css (const char *file)
887 {
888   if (!downloaded_css_set)
889     downloaded_css_set = make_string_hash_table (0);
890   string_set_add (downloaded_css_set, file);
891 }
892
893 static void downloaded_files_free (void);
894
895 /* Cleanup the data structures associated with this file.  */
896
897 void
898 convert_cleanup (void)
899 {
900   if (dl_file_url_map)
901     {
902       free_keys_and_values (dl_file_url_map);
903       hash_table_destroy (dl_file_url_map);
904       dl_file_url_map = NULL;
905     }
906   if (dl_url_file_map)
907     {
908       free_keys_and_values (dl_url_file_map);
909       hash_table_destroy (dl_url_file_map);
910       dl_url_file_map = NULL;
911     }
912   if (downloaded_html_set)
913     string_set_free (downloaded_html_set);
914   downloaded_files_free ();
915   if (converted_files)
916     string_set_free (converted_files);
917 }
918 \f
919 /* Book-keeping code for downloaded files that enables extension
920    hacks.  */
921
922 /* This table should really be merged with dl_file_url_map and
923    downloaded_html_files.  This was originally a list, but I changed
924    it to a hash table beause it was actually taking a lot of time to
925    find things in it.  */
926
927 static struct hash_table *downloaded_files_hash;
928
929 /* We're storing "modes" of type downloaded_file_t in the hash table.
930    However, our hash tables only accept pointers for keys and values.
931    So when we need a pointer, we use the address of a
932    downloaded_file_t variable of static storage.  */
933
934 static downloaded_file_t *
935 downloaded_mode_to_ptr (downloaded_file_t mode)
936 {
937   static downloaded_file_t
938     v1 = FILE_NOT_ALREADY_DOWNLOADED,
939     v2 = FILE_DOWNLOADED_NORMALLY,
940     v3 = FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED,
941     v4 = CHECK_FOR_FILE;
942
943   switch (mode)
944     {
945     case FILE_NOT_ALREADY_DOWNLOADED:
946       return &v1;
947     case FILE_DOWNLOADED_NORMALLY:
948       return &v2;
949     case FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED:
950       return &v3;
951     case CHECK_FOR_FILE:
952       return &v4;
953     }
954   return NULL;
955 }
956
957 /* Remembers which files have been downloaded.  In the standard case,
958    should be called with mode == FILE_DOWNLOADED_NORMALLY for each
959    file we actually download successfully (i.e. not for ones we have
960    failures on or that we skip due to -N).
961
962    When we've downloaded a file and tacked on a ".html" extension due
963    to -E, call this function with
964    FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED rather than
965    FILE_DOWNLOADED_NORMALLY.
966
967    If you just want to check if a file has been previously added
968    without adding it, call with mode == CHECK_FOR_FILE.  Please be
969    sure to call this function with local filenames, not remote
970    URLs.  */
971
972 downloaded_file_t
973 downloaded_file (downloaded_file_t mode, const char *file)
974 {
975   downloaded_file_t *ptr;
976
977   if (mode == CHECK_FOR_FILE)
978     {
979       if (!downloaded_files_hash)
980         return FILE_NOT_ALREADY_DOWNLOADED;
981       ptr = hash_table_get (downloaded_files_hash, file);
982       if (!ptr)
983         return FILE_NOT_ALREADY_DOWNLOADED;
984       return *ptr;
985     }
986
987   if (!downloaded_files_hash)
988     downloaded_files_hash = make_string_hash_table (0);
989
990   ptr = hash_table_get (downloaded_files_hash, file);
991   if (ptr)
992     return *ptr;
993
994   ptr = downloaded_mode_to_ptr (mode);
995   hash_table_put (downloaded_files_hash, xstrdup (file), ptr);
996
997   return FILE_NOT_ALREADY_DOWNLOADED;
998 }
999
1000 static void
1001 downloaded_files_free (void)
1002 {
1003   if (downloaded_files_hash)
1004     {
1005       hash_table_iterator iter;
1006       for (hash_table_iterate (downloaded_files_hash, &iter);
1007            hash_table_iter_next (&iter);
1008            )
1009         xfree (iter.key);
1010       hash_table_destroy (downloaded_files_hash);
1011       downloaded_files_hash = NULL;
1012     }
1013 }
1014 \f
1015 /* The function returns the pointer to the malloc-ed quoted version of
1016    string s.  It will recognize and quote numeric and special graphic
1017    entities, as per RFC1866:
1018
1019    `&' -> `&amp;'
1020    `<' -> `&lt;'
1021    `>' -> `&gt;'
1022    `"' -> `&quot;'
1023    SP  -> `&#32;'
1024
1025    No other entities are recognized or replaced.  */
1026 char *
1027 html_quote_string (const char *s)
1028 {
1029   const char *b = s;
1030   char *p, *res;
1031   int i;
1032
1033   /* Pass through the string, and count the new size.  */
1034   for (i = 0; *s; s++, i++)
1035     {
1036       if (*s == '&')
1037         i += 4;                 /* `amp;' */
1038       else if (*s == '<' || *s == '>')
1039         i += 3;                 /* `lt;' and `gt;' */
1040       else if (*s == '\"')
1041         i += 5;                 /* `quot;' */
1042       else if (*s == ' ')
1043         i += 4;                 /* #32; */
1044     }
1045   res = xmalloc (i + 1);
1046   s = b;
1047   for (p = res; *s; s++)
1048     {
1049       switch (*s)
1050         {
1051         case '&':
1052           *p++ = '&';
1053           *p++ = 'a';
1054           *p++ = 'm';
1055           *p++ = 'p';
1056           *p++ = ';';
1057           break;
1058         case '<': case '>':
1059           *p++ = '&';
1060           *p++ = (*s == '<' ? 'l' : 'g');
1061           *p++ = 't';
1062           *p++ = ';';
1063           break;
1064         case '\"':
1065           *p++ = '&';
1066           *p++ = 'q';
1067           *p++ = 'u';
1068           *p++ = 'o';
1069           *p++ = 't';
1070           *p++ = ';';
1071           break;
1072         case ' ':
1073           *p++ = '&';
1074           *p++ = '#';
1075           *p++ = '3';
1076           *p++ = '2';
1077           *p++ = ';';
1078           break;
1079         default:
1080           *p++ = *s;
1081         }
1082     }
1083   *p = '\0';
1084   return res;
1085 }
1086
1087 /*
1088  * vim: et ts=2 sw=2
1089  */
1090