]> sjero.net Git - wget/blob - src/utils.c
Updated copyright dates in manual.
[wget] / src / utils.c
1 /* Various utility functions.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3    2004, 2005, 2006, 2007 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 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 #include "wget.h"
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <time.h>
36 #ifdef HAVE_SYS_TIME_H
37 # include <sys/time.h>
38 #endif
39 #ifdef HAVE_UNISTD_H
40 # include <unistd.h>
41 #endif
42 #ifdef HAVE_MMAP
43 # include <sys/mman.h>
44 #endif
45 #ifdef HAVE_PROCESS_H
46 # include <process.h>  /* getpid() */
47 #endif
48 #ifdef HAVE_UTIME_H
49 # include <utime.h>
50 #endif
51 #ifdef HAVE_SYS_UTIME_H
52 # include <sys/utime.h>
53 #endif
54 #include <errno.h>
55 #include <fcntl.h>
56 #include <assert.h>
57 #include <stdarg.h>
58 #include <locale.h>
59
60 /* For TIOCGWINSZ and friends: */
61 #ifdef HAVE_SYS_IOCTL_H
62 # include <sys/ioctl.h>
63 #endif
64 #ifdef HAVE_TERMIOS_H
65 # include <termios.h>
66 #endif
67
68 /* Needed for Unix version of run_with_timeout. */
69 #include <signal.h>
70 #include <setjmp.h>
71
72 #ifndef HAVE_SIGSETJMP
73 /* If sigsetjmp is a macro, configure won't pick it up. */
74 # ifdef sigsetjmp
75 #  define HAVE_SIGSETJMP
76 # endif
77 #endif
78
79 #if defined HAVE_SIGSETJMP || defined HAVE_SIGBLOCK
80 # define USE_SIGNAL_TIMEOUT
81 #endif
82
83 #include "utils.h"
84 #include "hash.h"
85
86 #ifdef TESTING
87 #include "test.h"
88 #endif 
89
90 /* Utility function: like xstrdup(), but also lowercases S.  */
91
92 char *
93 xstrdup_lower (const char *s)
94 {
95   char *copy = xstrdup (s);
96   char *p = copy;
97   for (; *p; p++)
98     *p = c_tolower (*p);
99   return copy;
100 }
101
102 /* Copy the string formed by two pointers (one on the beginning, other
103    on the char after the last char) to a new, malloc-ed location.
104    0-terminate it.  */
105 char *
106 strdupdelim (const char *beg, const char *end)
107 {
108   char *res = xmalloc (end - beg + 1);
109   memcpy (res, beg, end - beg);
110   res[end - beg] = '\0';
111   return res;
112 }
113
114 /* Parse a string containing comma-separated elements, and return a
115    vector of char pointers with the elements.  Spaces following the
116    commas are ignored.  */
117 char **
118 sepstring (const char *s)
119 {
120   char **res;
121   const char *p;
122   int i = 0;
123
124   if (!s || !*s)
125     return NULL;
126   res = NULL;
127   p = s;
128   while (*s)
129     {
130       if (*s == ',')
131         {
132           res = xrealloc (res, (i + 2) * sizeof (char *));
133           res[i] = strdupdelim (p, s);
134           res[++i] = NULL;
135           ++s;
136           /* Skip the blanks following the ','.  */
137           while (c_isspace (*s))
138             ++s;
139           p = s;
140         }
141       else
142         ++s;
143     }
144   res = xrealloc (res, (i + 2) * sizeof (char *));
145   res[i] = strdupdelim (p, s);
146   res[i + 1] = NULL;
147   return res;
148 }
149 \f
150 /* Like sprintf, but prints into a string of sufficient size freshly
151    allocated with malloc, which is returned.  If unable to print due
152    to invalid format, returns NULL.  Inability to allocate needed
153    memory results in abort, as with xmalloc.  This is in spirit
154    similar to the GNU/BSD extension asprintf, but somewhat easier to
155    use.
156
157    Internally the function either calls vasprintf or loops around
158    vsnprintf until the correct size is found.  Since Wget also ships a
159    fallback implementation of vsnprintf, this should be portable.  */
160
161 char *
162 aprintf (const char *fmt, ...)
163 {
164 #if defined HAVE_VASPRINTF && !defined DEBUG_MALLOC
165   /* Use vasprintf. */
166   int ret;
167   va_list args;
168   char *str;
169   va_start (args, fmt);
170   ret = vasprintf (&str, fmt, args);
171   va_end (args);
172   if (ret < 0 && errno == ENOMEM)
173     abort ();                   /* for consistency with xmalloc/xrealloc */
174   else if (ret < 0)
175     return NULL;
176   return str;
177 #else  /* not HAVE_VASPRINTF */
178
179   /* vasprintf is unavailable.  snprintf into a small buffer and
180      resize it as necessary. */
181   int size = 32;
182   char *str = xmalloc (size);
183
184   /* #### This code will infloop and eventually abort in xrealloc if
185      passed a FMT that causes snprintf to consistently return -1.  */
186
187   while (1)
188     {
189       int n;
190       va_list args;
191
192       va_start (args, fmt);
193       n = vsnprintf (str, size, fmt, args);
194       va_end (args);
195
196       /* If the printing worked, return the string. */
197       if (n > -1 && n < size)
198         return str;
199
200       /* Else try again with a larger buffer. */
201       if (n > -1)               /* C99 */
202         size = n + 1;           /* precisely what is needed */
203       else
204         size <<= 1;             /* twice the old size */
205       str = xrealloc (str, size);
206     }
207 #endif /* not HAVE_VASPRINTF */
208 }
209
210 /* Concatenate the NULL-terminated list of string arguments into
211    freshly allocated space.  */
212
213 char *
214 concat_strings (const char *str0, ...)
215 {
216   va_list args;
217   int saved_lengths[5];         /* inspired by Apache's apr_pstrcat */
218   char *ret, *p;
219
220   const char *next_str;
221   int total_length = 0;
222   int argcount;
223
224   /* Calculate the length of and allocate the resulting string. */
225
226   argcount = 0;
227   va_start (args, str0);
228   for (next_str = str0; next_str != NULL; next_str = va_arg (args, char *))
229     {
230       int len = strlen (next_str);
231       if (argcount < countof (saved_lengths))
232         saved_lengths[argcount++] = len;
233       total_length += len;
234     }
235   va_end (args);
236   p = ret = xmalloc (total_length + 1);
237
238   /* Copy the strings into the allocated space. */
239
240   argcount = 0;
241   va_start (args, str0);
242   for (next_str = str0; next_str != NULL; next_str = va_arg (args, char *))
243     {
244       int len;
245       if (argcount < countof (saved_lengths))
246         len = saved_lengths[argcount++];
247       else
248         len = strlen (next_str);
249       memcpy (p, next_str, len);
250       p += len;
251     }
252   va_end (args);
253   *p = '\0';
254
255   return ret;
256 }
257 \f
258 /* Format the provided time according to the specified format.  The
259    format is a string with format elements supported by strftime.  */
260
261 static char *
262 fmttime (time_t t, const char *fmt)
263 {
264   static char output[32];
265   struct tm *tm = localtime(&t);
266   if (!tm)
267     abort ();
268   if (!strftime(output, sizeof(output), fmt, tm))
269     abort ();
270   return output;
271 }
272
273 /* Return pointer to a static char[] buffer in which zero-terminated
274    string-representation of TM (in form hh:mm:ss) is printed.
275
276    If TM is NULL, the current time will be used.  */
277
278 char *
279 time_str (time_t t)
280 {
281   return fmttime(t, "%H:%M:%S");
282 }
283
284 /* Like the above, but include the date: YYYY-MM-DD hh:mm:ss.  */
285
286 char *
287 datetime_str (time_t t)
288 {
289   return fmttime(t, "%Y-%m-%d %H:%M:%S");
290 }
291 \f
292 /* The Windows versions of the following two functions are defined in
293    mswindows.c. On MSDOS this function should never be called. */
294
295 #if !defined(WINDOWS) && !defined(MSDOS)
296 void
297 fork_to_background (void)
298 {
299   pid_t pid;
300   /* Whether we arrange our own version of opt.lfilename here.  */
301   bool logfile_changed = false;
302
303   if (!opt.lfilename)
304     {
305       /* We must create the file immediately to avoid either a race
306          condition (which arises from using unique_name and failing to
307          use fopen_excl) or lying to the user about the log file name
308          (which arises from using unique_name, printing the name, and
309          using fopen_excl later on.)  */
310       FILE *new_log_fp = unique_create (DEFAULT_LOGFILE, false, &opt.lfilename);
311       if (new_log_fp)
312         {
313           logfile_changed = true;
314           fclose (new_log_fp);
315         }
316     }
317   pid = fork ();
318   if (pid < 0)
319     {
320       /* parent, error */
321       perror ("fork");
322       exit (1);
323     }
324   else if (pid != 0)
325     {
326       /* parent, no error */
327       printf (_("Continuing in background, pid %d.\n"), (int) pid);
328       if (logfile_changed)
329         printf (_("Output will be written to `%s'.\n"), opt.lfilename);
330       exit (0);                 /* #### should we use _exit()? */
331     }
332
333   /* child: give up the privileges and keep running. */
334   setsid ();
335   freopen ("/dev/null", "r", stdin);
336   freopen ("/dev/null", "w", stdout);
337   freopen ("/dev/null", "w", stderr);
338 }
339 #endif /* !WINDOWS && !MSDOS */
340 \f
341 /* "Touch" FILE, i.e. make its mtime ("modified time") equal the time
342    specified with TM.  The atime ("access time") is set to the current
343    time.  */
344
345 void
346 touch (const char *file, time_t tm)
347 {
348 #ifdef HAVE_STRUCT_UTIMBUF
349   struct utimbuf times;
350 #else
351   struct {
352     time_t actime;
353     time_t modtime;
354   } times;
355 #endif
356   times.modtime = tm;
357   times.actime = time (NULL);
358   if (utime (file, &times) == -1)
359     logprintf (LOG_NOTQUIET, "utime(%s): %s\n", file, strerror (errno));
360 }
361
362 /* Checks if FILE is a symbolic link, and removes it if it is.  Does
363    nothing under MS-Windows.  */
364 int
365 remove_link (const char *file)
366 {
367   int err = 0;
368   struct_stat st;
369
370   if (lstat (file, &st) == 0 && S_ISLNK (st.st_mode))
371     {
372       DEBUGP (("Unlinking %s (symlink).\n", file));
373       err = unlink (file);
374       if (err != 0)
375         logprintf (LOG_VERBOSE, _("Failed to unlink symlink `%s': %s\n"),
376                    file, strerror (errno));
377     }
378   return err;
379 }
380
381 /* Does FILENAME exist?  This is quite a lousy implementation, since
382    it supplies no error codes -- only a yes-or-no answer.  Thus it
383    will return that a file does not exist if, e.g., the directory is
384    unreadable.  I don't mind it too much currently, though.  The
385    proper way should, of course, be to have a third, error state,
386    other than true/false, but that would introduce uncalled-for
387    additional complexity to the callers.  */
388 bool
389 file_exists_p (const char *filename)
390 {
391 #ifdef HAVE_ACCESS
392   return access (filename, F_OK) >= 0;
393 #else
394   struct_stat buf;
395   return stat (filename, &buf) >= 0;
396 #endif
397 }
398
399 /* Returns 0 if PATH is a directory, 1 otherwise (any kind of file).
400    Returns 0 on error.  */
401 bool
402 file_non_directory_p (const char *path)
403 {
404   struct_stat buf;
405   /* Use lstat() rather than stat() so that symbolic links pointing to
406      directories can be identified correctly.  */
407   if (lstat (path, &buf) != 0)
408     return false;
409   return S_ISDIR (buf.st_mode) ? false : true;
410 }
411
412 /* Return the size of file named by FILENAME, or -1 if it cannot be
413    opened or seeked into. */
414 wgint
415 file_size (const char *filename)
416 {
417 #if defined(HAVE_FSEEKO) && defined(HAVE_FTELLO)
418   wgint size;
419   /* We use fseek rather than stat to determine the file size because
420      that way we can also verify that the file is readable without
421      explicitly checking for permissions.  Inspired by the POST patch
422      by Arnaud Wylie.  */
423   FILE *fp = fopen (filename, "rb");
424   if (!fp)
425     return -1;
426   fseeko (fp, 0, SEEK_END);
427   size = ftello (fp);
428   fclose (fp);
429   return size;
430 #else
431   struct_stat st;
432   if (stat (filename, &st) < 0)
433     return -1;
434   return st.st_size;
435 #endif
436 }
437
438 /* stat file names named PREFIX.1, PREFIX.2, etc., until one that
439    doesn't exist is found.  Return a freshly allocated copy of the
440    unused file name.  */
441
442 static char *
443 unique_name_1 (const char *prefix)
444 {
445   int count = 1;
446   int plen = strlen (prefix);
447   char *template = (char *)alloca (plen + 1 + 24);
448   char *template_tail = template + plen;
449
450   memcpy (template, prefix, plen);
451   *template_tail++ = '.';
452
453   do
454     number_to_string (template_tail, count++);
455   while (file_exists_p (template));
456
457   return xstrdup (template);
458 }
459
460 /* Return a unique file name, based on FILE.
461
462    More precisely, if FILE doesn't exist, it is returned unmodified.
463    If not, FILE.1 is tried, then FILE.2, etc.  The first FILE.<number>
464    file name that doesn't exist is returned.
465
466    The resulting file is not created, only verified that it didn't
467    exist at the point in time when the function was called.
468    Therefore, where security matters, don't rely that the file created
469    by this function exists until you open it with O_EXCL or
470    equivalent.
471
472    If ALLOW_PASSTHROUGH is 0, it always returns a freshly allocated
473    string.  Otherwise, it may return FILE if the file doesn't exist
474    (and therefore doesn't need changing).  */
475
476 char *
477 unique_name (const char *file, bool allow_passthrough)
478 {
479   /* If the FILE itself doesn't exist, return it without
480      modification. */
481   if (!file_exists_p (file))
482     return allow_passthrough ? (char *)file : xstrdup (file);
483
484   /* Otherwise, find a numeric suffix that results in unused file name
485      and return it.  */
486   return unique_name_1 (file);
487 }
488
489 /* Create a file based on NAME, except without overwriting an existing
490    file with that name.  Providing O_EXCL is correctly implemented,
491    this function does not have the race condition associated with
492    opening the file returned by unique_name.  */
493
494 FILE *
495 unique_create (const char *name, bool binary, char **opened_name)
496 {
497   /* unique file name, based on NAME */
498   char *uname = unique_name (name, false);
499   FILE *fp;
500   while ((fp = fopen_excl (uname, binary)) == NULL && errno == EEXIST)
501     {
502       xfree (uname);
503       uname = unique_name (name, false);
504     }
505   if (opened_name && fp != NULL)
506     {
507       if (fp)
508         *opened_name = uname;
509       else
510         {
511           *opened_name = NULL;
512           xfree (uname);
513         }
514     }
515   else
516     xfree (uname);
517   return fp;
518 }
519
520 /* Open the file for writing, with the addition that the file is
521    opened "exclusively".  This means that, if the file already exists,
522    this function will *fail* and errno will be set to EEXIST.  If
523    BINARY is set, the file will be opened in binary mode, equivalent
524    to fopen's "wb".
525
526    If opening the file fails for any reason, including the file having
527    previously existed, this function returns NULL and sets errno
528    appropriately.  */
529    
530 FILE *
531 fopen_excl (const char *fname, bool binary)
532 {
533   int fd;
534 #ifdef O_EXCL
535   int flags = O_WRONLY | O_CREAT | O_EXCL;
536 # ifdef O_BINARY
537   if (binary)
538     flags |= O_BINARY;
539 # endif
540   fd = open (fname, flags, 0666);
541   if (fd < 0)
542     return NULL;
543   return fdopen (fd, binary ? "wb" : "w");
544 #else  /* not O_EXCL */
545   /* Manually check whether the file exists.  This is prone to race
546      conditions, but systems without O_EXCL haven't deserved
547      better.  */
548   if (file_exists_p (fname))
549     {
550       errno = EEXIST;
551       return NULL;
552     }
553   return fopen (fname, binary ? "wb" : "w");
554 #endif /* not O_EXCL */
555 }
556 \f
557 /* Create DIRECTORY.  If some of the pathname components of DIRECTORY
558    are missing, create them first.  In case any mkdir() call fails,
559    return its error status.  Returns 0 on successful completion.
560
561    The behaviour of this function should be identical to the behaviour
562    of `mkdir -p' on systems where mkdir supports the `-p' option.  */
563 int
564 make_directory (const char *directory)
565 {
566   int i, ret, quit = 0;
567   char *dir;
568
569   /* Make a copy of dir, to be able to write to it.  Otherwise, the
570      function is unsafe if called with a read-only char *argument.  */
571   STRDUP_ALLOCA (dir, directory);
572
573   /* If the first character of dir is '/', skip it (and thus enable
574      creation of absolute-pathname directories.  */
575   for (i = (*dir == '/'); 1; ++i)
576     {
577       for (; dir[i] && dir[i] != '/'; i++)
578         ;
579       if (!dir[i])
580         quit = 1;
581       dir[i] = '\0';
582       /* Check whether the directory already exists.  Allow creation of
583          of intermediate directories to fail, as the initial path components
584          are not necessarily directories!  */
585       if (!file_exists_p (dir))
586         ret = mkdir (dir, 0777);
587       else
588         ret = 0;
589       if (quit)
590         break;
591       else
592         dir[i] = '/';
593     }
594   return ret;
595 }
596
597 /* Merge BASE with FILE.  BASE can be a directory or a file name, FILE
598    should be a file name.
599
600    file_merge("/foo/bar", "baz")  => "/foo/baz"
601    file_merge("/foo/bar/", "baz") => "/foo/bar/baz"
602    file_merge("foo", "bar")       => "bar"
603
604    In other words, it's a simpler and gentler version of uri_merge.  */
605
606 char *
607 file_merge (const char *base, const char *file)
608 {
609   char *result;
610   const char *cut = (const char *)strrchr (base, '/');
611
612   if (!cut)
613     return xstrdup (file);
614
615   result = xmalloc (cut - base + 1 + strlen (file) + 1);
616   memcpy (result, base, cut - base);
617   result[cut - base] = '/';
618   strcpy (result + (cut - base) + 1, file);
619
620   return result;
621 }
622 \f
623 /* Like fnmatch, but performs a case-insensitive match.  */
624
625 int
626 fnmatch_nocase (const char *pattern, const char *string, int flags)
627 {
628 #ifdef FNM_CASEFOLD
629   /* The FNM_CASEFOLD flag started as a GNU extension, but it is now
630      also present on *BSD platforms, and possibly elsewhere.  */
631   return fnmatch (pattern, string, flags | FNM_CASEFOLD);
632 #else
633   /* Turn PATTERN and STRING to lower case and call fnmatch on them. */
634   char *patcopy = (char *) alloca (strlen (pattern) + 1);
635   char *strcopy = (char *) alloca (strlen (string) + 1);
636   char *p;
637   for (p = patcopy; *pattern; pattern++, p++)
638     *p = c_tolower (*pattern);
639   *p = '\0';
640   for (p = strcopy; *string; string++, p++)
641     *p = c_tolower (*string);
642   *p = '\0';
643   return fnmatch (patcopy, strcopy, flags);
644 #endif
645 }
646
647 static bool in_acclist (const char *const *, const char *, bool);
648
649 /* Determine whether a file is acceptable to be followed, according to
650    lists of patterns to accept/reject.  */
651 bool
652 acceptable (const char *s)
653 {
654   int l = strlen (s);
655
656   while (l && s[l] != '/')
657     --l;
658   if (s[l] == '/')
659     s += (l + 1);
660   if (opt.accepts)
661     {
662       if (opt.rejects)
663         return (in_acclist ((const char *const *)opt.accepts, s, true)
664                 && !in_acclist ((const char *const *)opt.rejects, s, true));
665       else
666         return in_acclist ((const char *const *)opt.accepts, s, true);
667     }
668   else if (opt.rejects)
669     return !in_acclist ((const char *const *)opt.rejects, s, true);
670   return true;
671 }
672
673 /* Check if D2 is a subdirectory of D1.  E.g. if D1 is `/something', subdir_p()
674    will return true if and only if D2 begins with `/something/' or is exactly 
675    '/something'.  */
676 bool
677 subdir_p (const char *d1, const char *d2)
678 {
679   if (!opt.ignore_case)
680     for (; *d1 && *d2 && (*d1 == *d2); ++d1, ++d2)
681       ;
682   else
683     for (; *d1 && *d2 && (c_tolower (*d1) == c_tolower (*d2)); ++d1, ++d2)
684       ;
685   
686   return *d1 == '\0' && (*d2 == '\0' || *d2 == '/');
687 }
688
689 /* Iterate through DIRLIST (which must be NULL-terminated), and return the
690    first element that matches DIR, through wildcards or front comparison (as
691    appropriate).  */
692 static bool
693 dir_matches_p (char **dirlist, const char *dir)
694 {
695   char **x;
696   int (*matcher) (const char *, const char *, int)
697     = opt.ignore_case ? fnmatch_nocase : fnmatch;
698
699   for (x = dirlist; *x; x++)
700     {
701       /* Remove leading '/' */
702       char *p = *x + (**x == '/');
703       if (has_wildcards_p (p))
704         {
705           if (matcher (p, dir, FNM_PATHNAME) == 0)
706             break;
707         }
708       else
709         {
710           if (subdir_p (p, dir))
711             break;
712         }
713     }
714       
715   return *x ? true : false;
716 }
717
718 /* Returns whether DIRECTORY is acceptable for download, wrt the
719    include/exclude lists.
720
721    The leading `/' is ignored in paths; relative and absolute paths
722    may be freely intermixed.  */
723
724 bool
725 accdir (const char *directory)
726 {
727   /* Remove starting '/'.  */
728   if (*directory == '/')
729     ++directory;
730   if (opt.includes)
731     {
732       if (!dir_matches_p (opt.includes, directory))
733         return false;
734     }
735   if (opt.excludes)
736     {
737       if (dir_matches_p (opt.excludes, directory))
738         return false;
739     }
740   return true;
741 }
742
743 /* Return true if STRING ends with TAIL.  For instance:
744
745    match_tail ("abc", "bc", false)  -> 1
746    match_tail ("abc", "ab", false)  -> 0
747    match_tail ("abc", "abc", false) -> 1
748
749    If FOLD_CASE is true, the comparison will be case-insensitive.  */
750
751 bool
752 match_tail (const char *string, const char *tail, bool fold_case)
753 {
754   int i, j;
755
756   /* We want this to be fast, so we code two loops, one with
757      case-folding, one without. */
758
759   if (!fold_case)
760     {
761       for (i = strlen (string), j = strlen (tail); i >= 0 && j >= 0; i--, j--)
762         if (string[i] != tail[j])
763           break;
764     }
765   else
766     {
767       for (i = strlen (string), j = strlen (tail); i >= 0 && j >= 0; i--, j--)
768         if (c_tolower (string[i]) != c_tolower (tail[j]))
769           break;
770     }
771
772   /* If the tail was exhausted, the match was succesful.  */
773   if (j == -1)
774     return true;
775   else
776     return false;
777 }
778
779 /* Checks whether string S matches each element of ACCEPTS.  A list
780    element are matched either with fnmatch() or match_tail(),
781    according to whether the element contains wildcards or not.
782
783    If the BACKWARD is false, don't do backward comparison -- just compare
784    them normally.  */
785 static bool
786 in_acclist (const char *const *accepts, const char *s, bool backward)
787 {
788   for (; *accepts; accepts++)
789     {
790       if (has_wildcards_p (*accepts))
791         {
792           int res = opt.ignore_case
793             ? fnmatch_nocase (*accepts, s, 0) : fnmatch (*accepts, s, 0);
794           /* fnmatch returns 0 if the pattern *does* match the string.  */
795           if (res == 0)
796             return true;
797         }
798       else
799         {
800           if (backward)
801             {
802               if (match_tail (s, *accepts, opt.ignore_case))
803                 return true;
804             }
805           else
806             {
807               int cmp = opt.ignore_case
808                 ? strcasecmp (s, *accepts) : strcmp (s, *accepts);
809               if (cmp == 0)
810                 return true;
811             }
812         }
813     }
814   return false;
815 }
816
817 /* Return the location of STR's suffix (file extension).  Examples:
818    suffix ("foo.bar")       -> "bar"
819    suffix ("foo.bar.baz")   -> "baz"
820    suffix ("/foo/bar")      -> NULL
821    suffix ("/foo.bar/baz")  -> NULL  */
822 char *
823 suffix (const char *str)
824 {
825   int i;
826
827   for (i = strlen (str); i && str[i] != '/' && str[i] != '.'; i--)
828     ;
829
830   if (str[i++] == '.')
831     return (char *)str + i;
832   else
833     return NULL;
834 }
835
836 /* Return true if S contains globbing wildcards (`*', `?', `[' or
837    `]').  */
838
839 bool
840 has_wildcards_p (const char *s)
841 {
842   for (; *s; s++)
843     if (*s == '*' || *s == '?' || *s == '[' || *s == ']')
844       return true;
845   return false;
846 }
847
848 /* Return true if FNAME ends with a typical HTML suffix.  The
849    following (case-insensitive) suffixes are presumed to be HTML
850    files:
851    
852      html
853      htm
854      ?html (`?' matches one character)
855
856    #### CAVEAT.  This is not necessarily a good indication that FNAME
857    refers to a file that contains HTML!  */
858 bool
859 has_html_suffix_p (const char *fname)
860 {
861   char *suf;
862
863   if ((suf = suffix (fname)) == NULL)
864     return false;
865   if (!strcasecmp (suf, "html"))
866     return true;
867   if (!strcasecmp (suf, "htm"))
868     return true;
869   if (suf[0] && !strcasecmp (suf + 1, "html"))
870     return true;
871   return false;
872 }
873
874 /* Read a line from FP and return the pointer to freshly allocated
875    storage.  The storage space is obtained through malloc() and should
876    be freed with free() when it is no longer needed.
877
878    The length of the line is not limited, except by available memory.
879    The newline character at the end of line is retained.  The line is
880    terminated with a zero character.
881
882    After end-of-file is encountered without anything being read, NULL
883    is returned.  NULL is also returned on error.  To distinguish
884    between these two cases, use the stdio function ferror().  */
885
886 char *
887 read_whole_line (FILE *fp)
888 {
889   int length = 0;
890   int bufsize = 82;
891   char *line = xmalloc (bufsize);
892
893   while (fgets (line + length, bufsize - length, fp))
894     {
895       length += strlen (line + length);
896       if (length == 0)
897         /* Possible for example when reading from a binary file where
898            a line begins with \0.  */
899         continue;
900
901       if (line[length - 1] == '\n')
902         break;
903
904       /* fgets() guarantees to read the whole line, or to use up the
905          space we've given it.  We can double the buffer
906          unconditionally.  */
907       bufsize <<= 1;
908       line = xrealloc (line, bufsize);
909     }
910   if (length == 0 || ferror (fp))
911     {
912       xfree (line);
913       return NULL;
914     }
915   if (length + 1 < bufsize)
916     /* Relieve the memory from our exponential greediness.  We say
917        `length + 1' because the terminating \0 is not included in
918        LENGTH.  We don't need to zero-terminate the string ourselves,
919        though, because fgets() does that.  */
920     line = xrealloc (line, length + 1);
921   return line;
922 }
923 \f
924 /* Read FILE into memory.  A pointer to `struct file_memory' are
925    returned; use struct element `content' to access file contents, and
926    the element `length' to know the file length.  `content' is *not*
927    zero-terminated, and you should *not* read or write beyond the [0,
928    length) range of characters.
929
930    After you are done with the file contents, call read_file_free to
931    release the memory.
932
933    Depending on the operating system and the type of file that is
934    being read, read_file() either mmap's the file into memory, or
935    reads the file into the core using read().
936
937    If file is named "-", fileno(stdin) is used for reading instead.
938    If you want to read from a real file named "-", use "./-" instead.  */
939
940 struct file_memory *
941 read_file (const char *file)
942 {
943   int fd;
944   struct file_memory *fm;
945   long size;
946   bool inhibit_close = false;
947
948   /* Some magic in the finest tradition of Perl and its kin: if FILE
949      is "-", just use stdin.  */
950   if (HYPHENP (file))
951     {
952       fd = fileno (stdin);
953       inhibit_close = true;
954       /* Note that we don't inhibit mmap() in this case.  If stdin is
955          redirected from a regular file, mmap() will still work.  */
956     }
957   else
958     fd = open (file, O_RDONLY);
959   if (fd < 0)
960     return NULL;
961   fm = xnew (struct file_memory);
962
963 #ifdef HAVE_MMAP
964   {
965     struct_fstat buf;
966     if (fstat (fd, &buf) < 0)
967       goto mmap_lose;
968     fm->length = buf.st_size;
969     /* NOTE: As far as I know, the callers of this function never
970        modify the file text.  Relying on this would enable us to
971        specify PROT_READ and MAP_SHARED for a marginal gain in
972        efficiency, but at some cost to generality.  */
973     fm->content = mmap (NULL, fm->length, PROT_READ | PROT_WRITE,
974                         MAP_PRIVATE, fd, 0);
975     if (fm->content == (char *)MAP_FAILED)
976       goto mmap_lose;
977     if (!inhibit_close)
978       close (fd);
979
980     fm->mmap_p = 1;
981     return fm;
982   }
983
984  mmap_lose:
985   /* The most common reason why mmap() fails is that FD does not point
986      to a plain file.  However, it's also possible that mmap() doesn't
987      work for a particular type of file.  Therefore, whenever mmap()
988      fails, we just fall back to the regular method.  */
989 #endif /* HAVE_MMAP */
990
991   fm->length = 0;
992   size = 512;                   /* number of bytes fm->contents can
993                                    hold at any given time. */
994   fm->content = xmalloc (size);
995   while (1)
996     {
997       wgint nread;
998       if (fm->length > size / 2)
999         {
1000           /* #### I'm not sure whether the whole exponential-growth
1001              thing makes sense with kernel read.  On Linux at least,
1002              read() refuses to read more than 4K from a file at a
1003              single chunk anyway.  But other Unixes might optimize it
1004              better, and it doesn't *hurt* anything, so I'm leaving
1005              it.  */
1006
1007           /* Normally, we grow SIZE exponentially to make the number
1008              of calls to read() and realloc() logarithmic in relation
1009              to file size.  However, read() can read an amount of data
1010              smaller than requested, and it would be unreasonable to
1011              double SIZE every time *something* was read.  Therefore,
1012              we double SIZE only when the length exceeds half of the
1013              entire allocated size.  */
1014           size <<= 1;
1015           fm->content = xrealloc (fm->content, size);
1016         }
1017       nread = read (fd, fm->content + fm->length, size - fm->length);
1018       if (nread > 0)
1019         /* Successful read. */
1020         fm->length += nread;
1021       else if (nread < 0)
1022         /* Error. */
1023         goto lose;
1024       else
1025         /* EOF */
1026         break;
1027     }
1028   if (!inhibit_close)
1029     close (fd);
1030   if (size > fm->length && fm->length != 0)
1031     /* Due to exponential growth of fm->content, the allocated region
1032        might be much larger than what is actually needed.  */
1033     fm->content = xrealloc (fm->content, fm->length);
1034   fm->mmap_p = 0;
1035   return fm;
1036
1037  lose:
1038   if (!inhibit_close)
1039     close (fd);
1040   xfree (fm->content);
1041   xfree (fm);
1042   return NULL;
1043 }
1044
1045 /* Release the resources held by FM.  Specifically, this calls
1046    munmap() or xfree() on fm->content, depending whether mmap or
1047    malloc/read were used to read in the file.  It also frees the
1048    memory needed to hold the FM structure itself.  */
1049
1050 void
1051 read_file_free (struct file_memory *fm)
1052 {
1053 #ifdef HAVE_MMAP
1054   if (fm->mmap_p)
1055     {
1056       munmap (fm->content, fm->length);
1057     }
1058   else
1059 #endif
1060     {
1061       xfree (fm->content);
1062     }
1063   xfree (fm);
1064 }
1065 \f
1066 /* Free the pointers in a NULL-terminated vector of pointers, then
1067    free the pointer itself.  */
1068 void
1069 free_vec (char **vec)
1070 {
1071   if (vec)
1072     {
1073       char **p = vec;
1074       while (*p)
1075         xfree (*p++);
1076       xfree (vec);
1077     }
1078 }
1079
1080 /* Append vector V2 to vector V1.  The function frees V2 and
1081    reallocates V1 (thus you may not use the contents of neither
1082    pointer after the call).  If V1 is NULL, V2 is returned.  */
1083 char **
1084 merge_vecs (char **v1, char **v2)
1085 {
1086   int i, j;
1087
1088   if (!v1)
1089     return v2;
1090   if (!v2)
1091     return v1;
1092   if (!*v2)
1093     {
1094       /* To avoid j == 0 */
1095       xfree (v2);
1096       return v1;
1097     }
1098   /* Count v1.  */
1099   for (i = 0; v1[i]; i++)
1100     ;
1101   /* Count v2.  */
1102   for (j = 0; v2[j]; j++)
1103     ;
1104   /* Reallocate v1.  */
1105   v1 = xrealloc (v1, (i + j + 1) * sizeof (char **));
1106   memcpy (v1 + i, v2, (j + 1) * sizeof (char *));
1107   xfree (v2);
1108   return v1;
1109 }
1110
1111 /* Append a freshly allocated copy of STR to VEC.  If VEC is NULL, it
1112    is allocated as needed.  Return the new value of the vector. */
1113
1114 char **
1115 vec_append (char **vec, const char *str)
1116 {
1117   int cnt;                      /* count of vector elements, including
1118                                    the one we're about to append */
1119   if (vec != NULL)
1120     {
1121       for (cnt = 0; vec[cnt]; cnt++)
1122         ;
1123       ++cnt;
1124     }
1125   else
1126     cnt = 1;
1127   /* Reallocate the array to fit the new element and the NULL. */
1128   vec = xrealloc (vec, (cnt + 1) * sizeof (char *));
1129   /* Append a copy of STR to the vector. */
1130   vec[cnt - 1] = xstrdup (str);
1131   vec[cnt] = NULL;
1132   return vec;
1133 }
1134 \f
1135 /* Sometimes it's useful to create "sets" of strings, i.e. special
1136    hash tables where you want to store strings as keys and merely
1137    query for their existence.  Here is a set of utility routines that
1138    makes that transparent.  */
1139
1140 void
1141 string_set_add (struct hash_table *ht, const char *s)
1142 {
1143   /* First check whether the set element already exists.  If it does,
1144      do nothing so that we don't have to free() the old element and
1145      then strdup() a new one.  */
1146   if (hash_table_contains (ht, s))
1147     return;
1148
1149   /* We use "1" as value.  It provides us a useful and clear arbitrary
1150      value, and it consumes no memory -- the pointers to the same
1151      string "1" will be shared by all the key-value pairs in all `set'
1152      hash tables.  */
1153   hash_table_put (ht, xstrdup (s), "1");
1154 }
1155
1156 /* Synonym for hash_table_contains... */
1157
1158 int
1159 string_set_contains (struct hash_table *ht, const char *s)
1160 {
1161   return hash_table_contains (ht, s);
1162 }
1163
1164 /* Convert the specified string set to array.  ARRAY should be large
1165    enough to hold hash_table_count(ht) char pointers.  */
1166
1167 void string_set_to_array (struct hash_table *ht, char **array)
1168 {
1169   hash_table_iterator iter;
1170   for (hash_table_iterate (ht, &iter); hash_table_iter_next (&iter); )
1171     *array++ = iter.key;
1172 }
1173
1174 /* Free the string set.  This frees both the storage allocated for
1175    keys and the actual hash table.  (hash_table_destroy would only
1176    destroy the hash table.)  */
1177
1178 void
1179 string_set_free (struct hash_table *ht)
1180 {
1181   hash_table_iterator iter;
1182   for (hash_table_iterate (ht, &iter); hash_table_iter_next (&iter); )
1183     xfree (iter.key);
1184   hash_table_destroy (ht);
1185 }
1186
1187 /* Utility function: simply call xfree() on all keys and values of HT.  */
1188
1189 void
1190 free_keys_and_values (struct hash_table *ht)
1191 {
1192   hash_table_iterator iter;
1193   for (hash_table_iterate (ht, &iter); hash_table_iter_next (&iter); )
1194     {
1195       xfree (iter.key);
1196       xfree (iter.value);
1197     }
1198 }
1199 \f
1200 /* Get digit grouping data for thousand separors by calling
1201    localeconv().  The data includes separator string and grouping info
1202    and is cached after the first call to the function.
1203
1204    In locales that don't set a thousand separator (such as the "C"
1205    locale), this forces it to be ",".  We are now only showing
1206    thousand separators in one place, so this shouldn't be a problem in
1207    practice.  */
1208
1209 static void
1210 get_grouping_data (const char **sep, const char **grouping)
1211 {
1212   static const char *cached_sep;
1213   static const char *cached_grouping;
1214   static bool initialized;
1215   if (!initialized)
1216     {
1217       /* Get the grouping info from the locale. */
1218       struct lconv *lconv = localeconv ();
1219       cached_sep = lconv->thousands_sep;
1220       cached_grouping = lconv->grouping;
1221       if (!*cached_sep)
1222         {
1223           /* Many locales (such as "C" or "hr_HR") don't specify
1224              grouping, which we still want to use it for legibility.
1225              In those locales set the sep char to ',', unless that
1226              character is used for decimal point, in which case set it
1227              to ".".  */
1228           if (*lconv->decimal_point != ',')
1229             cached_sep = ",";
1230           else
1231             cached_sep = ".";
1232           cached_grouping = "\x03";
1233         }
1234       initialized = true;
1235     }
1236   *sep = cached_sep;
1237   *grouping = cached_grouping;
1238 }
1239
1240 /* Return a printed representation of N with thousand separators.
1241    This should respect locale settings, with the exception of the "C"
1242    locale which mandates no separator, but we use one anyway.
1243
1244    Unfortunately, we cannot use %'d (in fact it would be %'j) to get
1245    the separators because it's too non-portable, and it's hard to test
1246    for this feature at configure time.  Besides, it wouldn't display
1247    separators in the "C" locale, still used by many Unix users.  */
1248
1249 const char *
1250 with_thousand_seps (wgint n)
1251 {
1252   static char outbuf[48];
1253   char *p = outbuf + sizeof outbuf;
1254
1255   /* Info received from locale */
1256   const char *grouping, *sep;
1257   int seplen;
1258
1259   /* State information */
1260   int i = 0, groupsize;
1261   const char *atgroup;
1262
1263   bool negative = n < 0;
1264
1265   /* Initialize grouping data. */
1266   get_grouping_data (&sep, &grouping);
1267   seplen = strlen (sep);
1268   atgroup = grouping;
1269   groupsize = *atgroup++;
1270
1271   /* This would overflow on WGINT_MIN, but printing negative numbers
1272      is not an important goal of this fuinction.  */
1273   if (negative)
1274     n = -n;
1275
1276   /* Write the number into the buffer, backwards, inserting the
1277      separators as necessary.  */
1278   *--p = '\0';
1279   while (1)
1280     {
1281       *--p = n % 10 + '0';
1282       n /= 10;
1283       if (n == 0)
1284         break;
1285       /* Prepend SEP to every groupsize'd digit and get new groupsize.  */
1286       if (++i == groupsize)
1287         {
1288           if (seplen == 1)
1289             *--p = *sep;
1290           else
1291             memcpy (p -= seplen, sep, seplen);
1292           i = 0;
1293           if (*atgroup)
1294             groupsize = *atgroup++;
1295         }
1296     }
1297   if (negative)
1298     *--p = '-';
1299
1300   return p;
1301 }
1302
1303 /* N, a byte quantity, is converted to a human-readable abberviated
1304    form a la sizes printed by `ls -lh'.  The result is written to a
1305    static buffer, a pointer to which is returned.
1306
1307    Unlike `with_thousand_seps', this approximates to the nearest unit.
1308    Quoting GNU libit: "Most people visually process strings of 3-4
1309    digits effectively, but longer strings of digits are more prone to
1310    misinterpretation.  Hence, converting to an abbreviated form
1311    usually improves readability."
1312
1313    This intentionally uses kilobyte (KB), megabyte (MB), etc. in their
1314    original computer-related meaning of "powers of 1024".  We don't
1315    use the "*bibyte" names invented in 1998, and seldom used in
1316    practice.  Wikipedia's entry on "binary prefix" discusses this in
1317    some detail.  */
1318
1319 char *
1320 human_readable (HR_NUMTYPE n)
1321 {
1322   /* These suffixes are compatible with those of GNU `ls -lh'. */
1323   static char powers[] =
1324     {
1325       'K',                      /* kilobyte, 2^10 bytes */
1326       'M',                      /* megabyte, 2^20 bytes */
1327       'G',                      /* gigabyte, 2^30 bytes */
1328       'T',                      /* terabyte, 2^40 bytes */
1329       'P',                      /* petabyte, 2^50 bytes */
1330       'E',                      /* exabyte,  2^60 bytes */
1331     };
1332   static char buf[8];
1333   int i;
1334
1335   /* If the quantity is smaller than 1K, just print it. */
1336   if (n < 1024)
1337     {
1338       snprintf (buf, sizeof (buf), "%d", (int) n);
1339       return buf;
1340     }
1341
1342   /* Loop over powers, dividing N with 1024 in each iteration.  This
1343      works unchanged for all sizes of wgint, while still avoiding
1344      non-portable `long double' arithmetic.  */
1345   for (i = 0; i < countof (powers); i++)
1346     {
1347       /* At each iteration N is greater than the *subsequent* power.
1348          That way N/1024.0 produces a decimal number in the units of
1349          *this* power.  */
1350       if ((n / 1024) < 1024 || i == countof (powers) - 1)
1351         {
1352           double val = n / 1024.0;
1353           /* Print values smaller than 10 with one decimal digits, and
1354              others without any decimals.  */
1355           snprintf (buf, sizeof (buf), "%.*f%c",
1356                     val < 10 ? 1 : 0, val, powers[i]);
1357           return buf;
1358         }
1359       n /= 1024;
1360     }
1361   return NULL;                  /* unreached */
1362 }
1363
1364 /* Count the digits in the provided number.  Used to allocate space
1365    when printing numbers.  */
1366
1367 int
1368 numdigit (wgint number)
1369 {
1370   int cnt = 1;
1371   if (number < 0)
1372     ++cnt;                      /* accomodate '-' */
1373   while ((number /= 10) != 0)
1374     ++cnt;
1375   return cnt;
1376 }
1377
1378 #define PR(mask) *p++ = n / (mask) + '0'
1379
1380 /* DIGITS_<D> is used to print a D-digit number and should be called
1381    with mask==10^(D-1).  It prints n/mask (the first digit), reducing
1382    n to n%mask (the remaining digits), and calling DIGITS_<D-1>.
1383    Recursively this continues until DIGITS_1 is invoked.  */
1384
1385 #define DIGITS_1(mask) PR (mask)
1386 #define DIGITS_2(mask) PR (mask), n %= (mask), DIGITS_1 ((mask) / 10)
1387 #define DIGITS_3(mask) PR (mask), n %= (mask), DIGITS_2 ((mask) / 10)
1388 #define DIGITS_4(mask) PR (mask), n %= (mask), DIGITS_3 ((mask) / 10)
1389 #define DIGITS_5(mask) PR (mask), n %= (mask), DIGITS_4 ((mask) / 10)
1390 #define DIGITS_6(mask) PR (mask), n %= (mask), DIGITS_5 ((mask) / 10)
1391 #define DIGITS_7(mask) PR (mask), n %= (mask), DIGITS_6 ((mask) / 10)
1392 #define DIGITS_8(mask) PR (mask), n %= (mask), DIGITS_7 ((mask) / 10)
1393 #define DIGITS_9(mask) PR (mask), n %= (mask), DIGITS_8 ((mask) / 10)
1394 #define DIGITS_10(mask) PR (mask), n %= (mask), DIGITS_9 ((mask) / 10)
1395
1396 /* DIGITS_<11-20> are only used on machines with 64-bit wgints. */
1397
1398 #define DIGITS_11(mask) PR (mask), n %= (mask), DIGITS_10 ((mask) / 10)
1399 #define DIGITS_12(mask) PR (mask), n %= (mask), DIGITS_11 ((mask) / 10)
1400 #define DIGITS_13(mask) PR (mask), n %= (mask), DIGITS_12 ((mask) / 10)
1401 #define DIGITS_14(mask) PR (mask), n %= (mask), DIGITS_13 ((mask) / 10)
1402 #define DIGITS_15(mask) PR (mask), n %= (mask), DIGITS_14 ((mask) / 10)
1403 #define DIGITS_16(mask) PR (mask), n %= (mask), DIGITS_15 ((mask) / 10)
1404 #define DIGITS_17(mask) PR (mask), n %= (mask), DIGITS_16 ((mask) / 10)
1405 #define DIGITS_18(mask) PR (mask), n %= (mask), DIGITS_17 ((mask) / 10)
1406 #define DIGITS_19(mask) PR (mask), n %= (mask), DIGITS_18 ((mask) / 10)
1407
1408 /* Shorthand for casting to wgint. */
1409 #define W wgint
1410
1411 /* Print NUMBER to BUFFER in base 10.  This is equivalent to
1412    `sprintf(buffer, "%lld", (long long) number)', only typically much
1413    faster and portable to machines without long long.
1414
1415    The speedup may make a difference in programs that frequently
1416    convert numbers to strings.  Some implementations of sprintf,
1417    particularly the one in some versions of GNU libc, have been known
1418    to be quite slow when converting integers to strings.
1419
1420    Return the pointer to the location where the terminating zero was
1421    printed.  (Equivalent to calling buffer+strlen(buffer) after the
1422    function is done.)
1423
1424    BUFFER should be large enough to accept as many bytes as you expect
1425    the number to take up.  On machines with 64-bit wgints the maximum
1426    needed size is 24 bytes.  That includes the digits needed for the
1427    largest 64-bit number, the `-' sign in case it's negative, and the
1428    terminating '\0'.  */
1429
1430 char *
1431 number_to_string (char *buffer, wgint number)
1432 {
1433   char *p = buffer;
1434   wgint n = number;
1435
1436   int last_digit_char = 0;
1437
1438 #if (SIZEOF_WGINT != 4) && (SIZEOF_WGINT != 8)
1439   /* We are running in a very strange environment.  Leave the correct
1440      printing to sprintf.  */
1441   p += sprintf (buf, "%j", (intmax_t) (n));
1442 #else  /* (SIZEOF_WGINT == 4) || (SIZEOF_WGINT == 8) */
1443
1444   if (n < 0)
1445     {
1446       if (n < -WGINT_MAX)
1447         {
1448           /* n = -n would overflow because -n would evaluate to a
1449              wgint value larger than WGINT_MAX.  Need to make n
1450              smaller and handle the last digit separately.  */
1451           int last_digit = n % 10;
1452           /* The sign of n%10 is implementation-defined. */
1453           if (last_digit < 0)
1454             last_digit_char = '0' - last_digit;
1455           else
1456             last_digit_char = '0' + last_digit;
1457           /* After n is made smaller, -n will not overflow. */
1458           n /= 10;
1459         }
1460
1461       *p++ = '-';
1462       n = -n;
1463     }
1464
1465   /* Use the DIGITS_ macro appropriate for N's number of digits.  That
1466      way printing any N is fully open-coded without a loop or jump.
1467      (Also see description of DIGITS_*.)  */
1468
1469   if      (n < 10)                       DIGITS_1 (1);
1470   else if (n < 100)                      DIGITS_2 (10);
1471   else if (n < 1000)                     DIGITS_3 (100);
1472   else if (n < 10000)                    DIGITS_4 (1000);
1473   else if (n < 100000)                   DIGITS_5 (10000);
1474   else if (n < 1000000)                  DIGITS_6 (100000);
1475   else if (n < 10000000)                 DIGITS_7 (1000000);
1476   else if (n < 100000000)                DIGITS_8 (10000000);
1477   else if (n < 1000000000)               DIGITS_9 (100000000);
1478 #if SIZEOF_WGINT == 4
1479   /* wgint is 32 bits wide: no number has more than 10 digits. */
1480   else                                   DIGITS_10 (1000000000);
1481 #else
1482   /* wgint is 64 bits wide: handle numbers with 9-19 decimal digits.
1483      Constants are constructed by compile-time multiplication to avoid
1484      dealing with different notations for 64-bit constants
1485      (nL/nLL/nI64, depending on the compiler and architecture).  */
1486   else if (n < 10*(W)1000000000)         DIGITS_10 (1000000000);
1487   else if (n < 100*(W)1000000000)        DIGITS_11 (10*(W)1000000000);
1488   else if (n < 1000*(W)1000000000)       DIGITS_12 (100*(W)1000000000);
1489   else if (n < 10000*(W)1000000000)      DIGITS_13 (1000*(W)1000000000);
1490   else if (n < 100000*(W)1000000000)     DIGITS_14 (10000*(W)1000000000);
1491   else if (n < 1000000*(W)1000000000)    DIGITS_15 (100000*(W)1000000000);
1492   else if (n < 10000000*(W)1000000000)   DIGITS_16 (1000000*(W)1000000000);
1493   else if (n < 100000000*(W)1000000000)  DIGITS_17 (10000000*(W)1000000000);
1494   else if (n < 1000000000*(W)1000000000) DIGITS_18 (100000000*(W)1000000000);
1495   else                                   DIGITS_19 (1000000000*(W)1000000000);
1496 #endif
1497
1498   if (last_digit_char)
1499     *p++ = last_digit_char;
1500
1501   *p = '\0';
1502 #endif /* (SIZEOF_WGINT == 4) || (SIZEOF_WGINT == 8) */
1503
1504   return p;
1505 }
1506
1507 #undef PR
1508 #undef W
1509 #undef SPRINTF_WGINT
1510 #undef DIGITS_1
1511 #undef DIGITS_2
1512 #undef DIGITS_3
1513 #undef DIGITS_4
1514 #undef DIGITS_5
1515 #undef DIGITS_6
1516 #undef DIGITS_7
1517 #undef DIGITS_8
1518 #undef DIGITS_9
1519 #undef DIGITS_10
1520 #undef DIGITS_11
1521 #undef DIGITS_12
1522 #undef DIGITS_13
1523 #undef DIGITS_14
1524 #undef DIGITS_15
1525 #undef DIGITS_16
1526 #undef DIGITS_17
1527 #undef DIGITS_18
1528 #undef DIGITS_19
1529
1530 #define RING_SIZE 3
1531
1532 /* Print NUMBER to a statically allocated string and return a pointer
1533    to the printed representation.
1534
1535    This function is intended to be used in conjunction with printf.
1536    It is hard to portably print wgint values:
1537     a) you cannot use printf("%ld", number) because wgint can be long
1538        long on 32-bit machines with LFS.
1539     b) you cannot use printf("%lld", number) because NUMBER could be
1540        long on 32-bit machines without LFS, or on 64-bit machines,
1541        which do not require LFS.  Also, Windows doesn't support %lld.
1542     c) you cannot use printf("%j", (int_max_t) number) because not all
1543        versions of printf support "%j", the most notable being the one
1544        on Windows.
1545     d) you cannot #define WGINT_FMT to the appropriate format and use
1546        printf(WGINT_FMT, number) because that would break translations
1547        for user-visible messages, such as printf("Downloaded: %d
1548        bytes\n", number).
1549
1550    What you should use instead is printf("%s", number_to_static_string
1551    (number)).
1552
1553    CAVEAT: since the function returns pointers to static data, you
1554    must be careful to copy its result before calling it again.
1555    However, to make it more useful with printf, the function maintains
1556    an internal ring of static buffers to return.  That way things like
1557    printf("%s %s", number_to_static_string (num1),
1558    number_to_static_string (num2)) work as expected.  Three buffers
1559    are currently used, which means that "%s %s %s" will work, but "%s
1560    %s %s %s" won't.  If you need to print more than three wgints,
1561    bump the RING_SIZE (or rethink your message.)  */
1562
1563 char *
1564 number_to_static_string (wgint number)
1565 {
1566   static char ring[RING_SIZE][24];
1567   static int ringpos;
1568   char *buf = ring[ringpos];
1569   number_to_string (buf, number);
1570   ringpos = (ringpos + 1) % RING_SIZE;
1571   return buf;
1572 }
1573 \f
1574 /* Determine the width of the terminal we're running on.  If that's
1575    not possible, return 0.  */
1576
1577 int
1578 determine_screen_width (void)
1579 {
1580   /* If there's a way to get the terminal size using POSIX
1581      tcgetattr(), somebody please tell me.  */
1582 #ifdef TIOCGWINSZ
1583   int fd;
1584   struct winsize wsz;
1585
1586   if (opt.lfilename != NULL)
1587     return 0;
1588
1589   fd = fileno (stderr);
1590   if (ioctl (fd, TIOCGWINSZ, &wsz) < 0)
1591     return 0;                   /* most likely ENOTTY */
1592
1593   return wsz.ws_col;
1594 #elif defined(WINDOWS)
1595   CONSOLE_SCREEN_BUFFER_INFO csbi;
1596   if (!GetConsoleScreenBufferInfo (GetStdHandle (STD_ERROR_HANDLE), &csbi))
1597     return 0;
1598   return csbi.dwSize.X;
1599 #else  /* neither TIOCGWINSZ nor WINDOWS */
1600   return 0;
1601 #endif /* neither TIOCGWINSZ nor WINDOWS */
1602 }
1603 \f
1604 /* Whether the rnd system (either rand or [dl]rand48) has been
1605    seeded.  */
1606 static int rnd_seeded;
1607
1608 /* Return a random number between 0 and MAX-1, inclusive.
1609
1610    If the system does not support lrand48 and MAX is greater than the
1611    value of RAND_MAX+1 on the system, the returned value will be in
1612    the range [0, RAND_MAX].  This may be fixed in a future release.
1613    The random number generator is seeded automatically the first time
1614    it is called.
1615
1616    This uses lrand48 where available, rand elsewhere.  DO NOT use it
1617    for cryptography.  It is only meant to be used in situations where
1618    quality of the random numbers returned doesn't really matter.  */
1619
1620 int
1621 random_number (int max)
1622 {
1623 #ifdef HAVE_DRAND48
1624   if (!rnd_seeded)
1625     {
1626       srand48 ((long) time (NULL) ^ (long) getpid ());
1627       rnd_seeded = 1;
1628     }
1629   return lrand48 () % max;
1630 #else  /* not HAVE_DRAND48 */
1631
1632   double bounded;
1633   int rnd;
1634   if (!rnd_seeded)
1635     {
1636       srand ((unsigned) time (NULL) ^ (unsigned) getpid ());
1637       rnd_seeded = 1;
1638     }
1639   rnd = rand ();
1640
1641   /* Like rand() % max, but uses the high-order bits for better
1642      randomness on architectures where rand() is implemented using a
1643      simple congruential generator.  */
1644
1645   bounded = (double) max * rnd / (RAND_MAX + 1.0);
1646   return (int) bounded;
1647
1648 #endif /* not HAVE_DRAND48 */
1649 }
1650
1651 /* Return a random uniformly distributed floating point number in the
1652    [0, 1) range.  Uses drand48 where available, and a really lame
1653    kludge elsewhere.  */
1654
1655 double
1656 random_float (void)
1657 {
1658 #ifdef HAVE_DRAND48
1659   if (!rnd_seeded)
1660     {
1661       srand48 ((long) time (NULL) ^ (long) getpid ());
1662       rnd_seeded = 1;
1663     }
1664   return drand48 ();
1665 #else  /* not HAVE_DRAND48 */
1666   return (  random_number (10000) / 10000.0
1667           + random_number (10000) / (10000.0 * 10000.0)
1668           + random_number (10000) / (10000.0 * 10000.0 * 10000.0)
1669           + random_number (10000) / (10000.0 * 10000.0 * 10000.0 * 10000.0));
1670 #endif /* not HAVE_DRAND48 */
1671 }
1672 \f
1673 /* Implementation of run_with_timeout, a generic timeout-forcing
1674    routine for systems with Unix-like signal handling.  */
1675
1676 #ifdef USE_SIGNAL_TIMEOUT
1677 # ifdef HAVE_SIGSETJMP
1678 #  define SETJMP(env) sigsetjmp (env, 1)
1679
1680 static sigjmp_buf run_with_timeout_env;
1681
1682 static void
1683 abort_run_with_timeout (int sig)
1684 {
1685   assert (sig == SIGALRM);
1686   siglongjmp (run_with_timeout_env, -1);
1687 }
1688 # else /* not HAVE_SIGSETJMP */
1689 #  define SETJMP(env) setjmp (env)
1690
1691 static jmp_buf run_with_timeout_env;
1692
1693 static void
1694 abort_run_with_timeout (int sig)
1695 {
1696   assert (sig == SIGALRM);
1697   /* We don't have siglongjmp to preserve the set of blocked signals;
1698      if we longjumped out of the handler at this point, SIGALRM would
1699      remain blocked.  We must unblock it manually. */
1700   int mask = siggetmask ();
1701   mask &= ~sigmask (SIGALRM);
1702   sigsetmask (mask);
1703
1704   /* Now it's safe to longjump. */
1705   longjmp (run_with_timeout_env, -1);
1706 }
1707 # endif /* not HAVE_SIGSETJMP */
1708
1709 /* Arrange for SIGALRM to be delivered in TIMEOUT seconds.  This uses
1710    setitimer where available, alarm otherwise.
1711
1712    TIMEOUT should be non-zero.  If the timeout value is so small that
1713    it would be rounded to zero, it is rounded to the least legal value
1714    instead (1us for setitimer, 1s for alarm).  That ensures that
1715    SIGALRM will be delivered in all cases.  */
1716
1717 static void
1718 alarm_set (double timeout)
1719 {
1720 #ifdef ITIMER_REAL
1721   /* Use the modern itimer interface. */
1722   struct itimerval itv;
1723   xzero (itv);
1724   itv.it_value.tv_sec = (long) timeout;
1725   itv.it_value.tv_usec = 1000000 * (timeout - (long)timeout);
1726   if (itv.it_value.tv_sec == 0 && itv.it_value.tv_usec == 0)
1727     /* Ensure that we wait for at least the minimum interval.
1728        Specifying zero would mean "wait forever".  */
1729     itv.it_value.tv_usec = 1;
1730   setitimer (ITIMER_REAL, &itv, NULL);
1731 #else  /* not ITIMER_REAL */
1732   /* Use the old alarm() interface. */
1733   int secs = (int) timeout;
1734   if (secs == 0)
1735     /* Round TIMEOUTs smaller than 1 to 1, not to zero.  This is
1736        because alarm(0) means "never deliver the alarm", i.e. "wait
1737        forever", which is not what someone who specifies a 0.5s
1738        timeout would expect.  */
1739     secs = 1;
1740   alarm (secs);
1741 #endif /* not ITIMER_REAL */
1742 }
1743
1744 /* Cancel the alarm set with alarm_set. */
1745
1746 static void
1747 alarm_cancel (void)
1748 {
1749 #ifdef ITIMER_REAL
1750   struct itimerval disable;
1751   xzero (disable);
1752   setitimer (ITIMER_REAL, &disable, NULL);
1753 #else  /* not ITIMER_REAL */
1754   alarm (0);
1755 #endif /* not ITIMER_REAL */
1756 }
1757
1758 /* Call FUN(ARG), but don't allow it to run for more than TIMEOUT
1759    seconds.  Returns true if the function was interrupted with a
1760    timeout, false otherwise.
1761
1762    This works by setting up SIGALRM to be delivered in TIMEOUT seconds
1763    using setitimer() or alarm().  The timeout is enforced by
1764    longjumping out of the SIGALRM handler.  This has several
1765    advantages compared to the traditional approach of relying on
1766    signals causing system calls to exit with EINTR:
1767
1768      * The callback function is *forcibly* interrupted after the
1769        timeout expires, (almost) regardless of what it was doing and
1770        whether it was in a syscall.  For example, a calculation that
1771        takes a long time is interrupted as reliably as an IO
1772        operation.
1773
1774      * It works with both SYSV and BSD signals because it doesn't
1775        depend on the default setting of SA_RESTART.
1776
1777      * It doesn't require special handler setup beyond a simple call
1778        to signal().  (It does use sigsetjmp/siglongjmp, but they're
1779        optional.)
1780
1781    The only downside is that, if FUN allocates internal resources that
1782    are normally freed prior to exit from the functions, they will be
1783    lost in case of timeout.  */
1784
1785 bool
1786 run_with_timeout (double timeout, void (*fun) (void *), void *arg)
1787 {
1788   int saved_errno;
1789
1790   if (timeout == 0)
1791     {
1792       fun (arg);
1793       return false;
1794     }
1795
1796   signal (SIGALRM, abort_run_with_timeout);
1797   if (SETJMP (run_with_timeout_env) != 0)
1798     {
1799       /* Longjumped out of FUN with a timeout. */
1800       signal (SIGALRM, SIG_DFL);
1801       return true;
1802     }
1803   alarm_set (timeout);
1804   fun (arg);
1805
1806   /* Preserve errno in case alarm() or signal() modifies it. */
1807   saved_errno = errno;
1808   alarm_cancel ();
1809   signal (SIGALRM, SIG_DFL);
1810   errno = saved_errno;
1811
1812   return false;
1813 }
1814
1815 #else  /* not USE_SIGNAL_TIMEOUT */
1816
1817 #ifndef WINDOWS
1818 /* A stub version of run_with_timeout that just calls FUN(ARG).  Don't
1819    define it under Windows, because Windows has its own version of
1820    run_with_timeout that uses threads.  */
1821
1822 bool
1823 run_with_timeout (double timeout, void (*fun) (void *), void *arg)
1824 {
1825   fun (arg);
1826   return false;
1827 }
1828 #endif /* not WINDOWS */
1829 #endif /* not USE_SIGNAL_TIMEOUT */
1830 \f
1831 #ifndef WINDOWS
1832
1833 /* Sleep the specified amount of seconds.  On machines without
1834    nanosleep(), this may sleep shorter if interrupted by signals.  */
1835
1836 void
1837 xsleep (double seconds)
1838 {
1839 #ifdef HAVE_NANOSLEEP
1840   /* nanosleep is the preferred interface because it offers high
1841      accuracy and, more importantly, because it allows us to reliably
1842      restart receiving a signal such as SIGWINCH.  (There was an
1843      actual Debian bug report about --limit-rate malfunctioning while
1844      the terminal was being resized.)  */
1845   struct timespec sleep, remaining;
1846   sleep.tv_sec = (long) seconds;
1847   sleep.tv_nsec = 1000000000 * (seconds - (long) seconds);
1848   while (nanosleep (&sleep, &remaining) < 0 && errno == EINTR)
1849     /* If nanosleep has been interrupted by a signal, adjust the
1850        sleeping period and return to sleep.  */
1851     sleep = remaining;
1852 #elif defined(HAVE_USLEEP)
1853   /* If usleep is available, use it in preference to select.  */
1854   if (seconds >= 1)
1855     {
1856       /* On some systems, usleep cannot handle values larger than
1857          1,000,000.  If the period is larger than that, use sleep
1858          first, then add usleep for subsecond accuracy.  */
1859       sleep (seconds);
1860       seconds -= (long) seconds;
1861     }
1862   usleep (seconds * 1000000);
1863 #else /* fall back select */
1864   /* Note that, although Windows supports select, it can't be used to
1865      implement sleeping because Winsock's select doesn't implement
1866      timeout when it is passed NULL pointers for all fd sets.  (But it
1867      does under Cygwin, which implements Unix-compatible select.)  */
1868   struct timeval sleep;
1869   sleep.tv_sec = (long) seconds;
1870   sleep.tv_usec = 1000000 * (seconds - (long) seconds);
1871   select (0, NULL, NULL, NULL, &sleep);
1872   /* If select returns -1 and errno is EINTR, it means we were
1873      interrupted by a signal.  But without knowing how long we've
1874      actually slept, we can't return to sleep.  Using gettimeofday to
1875      track sleeps is slow and unreliable due to clock skew.  */
1876 #endif
1877 }
1878
1879 #endif /* not WINDOWS */
1880
1881 /* Encode the octets in DATA of length LENGTH to base64 format,
1882    storing the result to DEST.  The output will be zero-terminated,
1883    and must point to a writable buffer of at least
1884    1+BASE64_LENGTH(length) bytes.  The function returns the length of
1885    the resulting base64 data, not counting the terminating zero.
1886
1887    This implementation does not emit newlines after 76 characters of
1888    base64 data.  */
1889
1890 int
1891 base64_encode (const void *data, int length, char *dest)
1892 {
1893   /* Conversion table.  */
1894   static const char tbl[64] = {
1895     'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P',
1896     'Q','R','S','T','U','V','W','X','Y','Z','a','b','c','d','e','f',
1897     'g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v',
1898     'w','x','y','z','0','1','2','3','4','5','6','7','8','9','+','/'
1899   };
1900   /* Access bytes in DATA as unsigned char, otherwise the shifts below
1901      don't work for data with MSB set. */
1902   const unsigned char *s = data;
1903   /* Theoretical ANSI violation when length < 3. */
1904   const unsigned char *end = (const unsigned char *) data + length - 2;
1905   char *p = dest;
1906
1907   /* Transform the 3x8 bits to 4x6 bits, as required by base64.  */
1908   for (; s < end; s += 3)
1909     {
1910       *p++ = tbl[s[0] >> 2];
1911       *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)];
1912       *p++ = tbl[((s[1] & 0xf) << 2) + (s[2] >> 6)];
1913       *p++ = tbl[s[2] & 0x3f];
1914     }
1915
1916   /* Pad the result if necessary...  */
1917   switch (length % 3)
1918     {
1919     case 1:
1920       *p++ = tbl[s[0] >> 2];
1921       *p++ = tbl[(s[0] & 3) << 4];
1922       *p++ = '=';
1923       *p++ = '=';
1924       break;
1925     case 2:
1926       *p++ = tbl[s[0] >> 2];
1927       *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)];
1928       *p++ = tbl[((s[1] & 0xf) << 2)];
1929       *p++ = '=';
1930       break;
1931     }
1932   /* ...and zero-terminate it.  */
1933   *p = '\0';
1934
1935   return p - dest;
1936 }
1937
1938 /* Store in C the next non-whitespace character from the string, or \0
1939    when end of string is reached.  */
1940 #define NEXT_CHAR(c, p) do {                    \
1941   c = (unsigned char) *p++;                     \
1942 } while (c_isspace (c))
1943
1944 #define IS_ASCII(c) (((c) & 0x80) == 0)
1945
1946 /* Decode data from BASE64 (a null-terminated string) into memory
1947    pointed to by DEST.  DEST is assumed to be large enough to
1948    accomodate the decoded data, which is guaranteed to be no more than
1949    3/4*strlen(base64).
1950
1951    Since DEST is assumed to contain binary data, it is not
1952    NUL-terminated.  The function returns the length of the data
1953    written to TO.  -1 is returned in case of error caused by malformed
1954    base64 input.
1955
1956    This function originates from Free Recode.  */
1957
1958 int
1959 base64_decode (const char *base64, void *dest)
1960 {
1961   /* Table of base64 values for first 128 characters.  Note that this
1962      assumes ASCII (but so does Wget in other places).  */
1963   static const signed char base64_char_to_value[128] =
1964     {
1965       -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  /*   0-  9 */
1966       -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  /*  10- 19 */
1967       -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  /*  20- 29 */
1968       -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  /*  30- 39 */
1969       -1,  -1,  -1,  62,  -1,  -1,  -1,  63,  52,  53,  /*  40- 49 */
1970       54,  55,  56,  57,  58,  59,  60,  61,  -1,  -1,  /*  50- 59 */
1971       -1,  -1,  -1,  -1,  -1,  0,   1,   2,   3,   4,   /*  60- 69 */
1972       5,   6,   7,   8,   9,   10,  11,  12,  13,  14,  /*  70- 79 */
1973       15,  16,  17,  18,  19,  20,  21,  22,  23,  24,  /*  80- 89 */
1974       25,  -1,  -1,  -1,  -1,  -1,  -1,  26,  27,  28,  /*  90- 99 */
1975       29,  30,  31,  32,  33,  34,  35,  36,  37,  38,  /* 100-109 */
1976       39,  40,  41,  42,  43,  44,  45,  46,  47,  48,  /* 110-119 */
1977       49,  50,  51,  -1,  -1,  -1,  -1,  -1             /* 120-127 */
1978     };
1979 #define BASE64_CHAR_TO_VALUE(c) ((int) base64_char_to_value[c])
1980 #define IS_BASE64(c) ((IS_ASCII (c) && BASE64_CHAR_TO_VALUE (c) >= 0) || c == '=')
1981
1982   const char *p = base64;
1983   char *q = dest;
1984
1985   while (1)
1986     {
1987       unsigned char c;
1988       unsigned long value;
1989
1990       /* Process first byte of a quadruplet.  */
1991       NEXT_CHAR (c, p);
1992       if (!c)
1993         break;
1994       if (c == '=' || !IS_BASE64 (c))
1995         return -1;              /* illegal char while decoding base64 */
1996       value = BASE64_CHAR_TO_VALUE (c) << 18;
1997
1998       /* Process second byte of a quadruplet.  */
1999       NEXT_CHAR (c, p);
2000       if (!c)
2001         return -1;              /* premature EOF while decoding base64 */
2002       if (c == '=' || !IS_BASE64 (c))
2003         return -1;              /* illegal char while decoding base64 */
2004       value |= BASE64_CHAR_TO_VALUE (c) << 12;
2005       *q++ = value >> 16;
2006
2007       /* Process third byte of a quadruplet.  */
2008       NEXT_CHAR (c, p);
2009       if (!c)
2010         return -1;              /* premature EOF while decoding base64 */
2011       if (!IS_BASE64 (c))
2012         return -1;              /* illegal char while decoding base64 */
2013
2014       if (c == '=')
2015         {
2016           NEXT_CHAR (c, p);
2017           if (!c)
2018             return -1;          /* premature EOF while decoding base64 */
2019           if (c != '=')
2020             return -1;          /* padding `=' expected but not found */
2021           continue;
2022         }
2023
2024       value |= BASE64_CHAR_TO_VALUE (c) << 6;
2025       *q++ = 0xff & value >> 8;
2026
2027       /* Process fourth byte of a quadruplet.  */
2028       NEXT_CHAR (c, p);
2029       if (!c)
2030         return -1;              /* premature EOF while decoding base64 */
2031       if (c == '=')
2032         continue;
2033       if (!IS_BASE64 (c))
2034         return -1;              /* illegal char while decoding base64 */
2035
2036       value |= BASE64_CHAR_TO_VALUE (c);
2037       *q++ = 0xff & value;
2038     }
2039 #undef IS_BASE64
2040 #undef BASE64_CHAR_TO_VALUE
2041
2042   return q - (char *) dest;
2043 }
2044
2045 #undef IS_ASCII
2046 #undef NEXT_CHAR
2047 \f
2048 /* Simple merge sort for use by stable_sort.  Implementation courtesy
2049    Zeljko Vrba with additional debugging by Nenad Barbutov.  */
2050
2051 static void
2052 mergesort_internal (void *base, void *temp, size_t size, size_t from, size_t to,
2053                     int (*cmpfun) (const void *, const void *))
2054 {
2055 #define ELT(array, pos) ((char *)(array) + (pos) * size)
2056   if (from < to)
2057     {
2058       size_t i, j, k;
2059       size_t mid = (to + from) / 2;
2060       mergesort_internal (base, temp, size, from, mid, cmpfun);
2061       mergesort_internal (base, temp, size, mid + 1, to, cmpfun);
2062       i = from;
2063       j = mid + 1;
2064       for (k = from; (i <= mid) && (j <= to); k++)
2065         if (cmpfun (ELT (base, i), ELT (base, j)) <= 0)
2066           memcpy (ELT (temp, k), ELT (base, i++), size);
2067         else
2068           memcpy (ELT (temp, k), ELT (base, j++), size);
2069       while (i <= mid)
2070         memcpy (ELT (temp, k++), ELT (base, i++), size);
2071       while (j <= to)
2072         memcpy (ELT (temp, k++), ELT (base, j++), size);
2073       for (k = from; k <= to; k++)
2074         memcpy (ELT (base, k), ELT (temp, k), size);
2075     }
2076 #undef ELT
2077 }
2078
2079 /* Stable sort with interface exactly like standard library's qsort.
2080    Uses mergesort internally, allocating temporary storage with
2081    alloca.  */
2082
2083 void
2084 stable_sort (void *base, size_t nmemb, size_t size,
2085              int (*cmpfun) (const void *, const void *))
2086 {
2087   if (size > 1)
2088     {
2089       void *temp = alloca (nmemb * size * sizeof (void *));
2090       mergesort_internal (base, temp, size, 0, nmemb - 1, cmpfun);
2091     }
2092 }
2093 \f
2094 /* Print a decimal number.  If it is equal to or larger than ten, the
2095    number is rounded.  Otherwise it is printed with one significant
2096    digit without trailing zeros and with no more than three fractional
2097    digits total.  For example, 0.1 is printed as "0.1", 0.035 is
2098    printed as "0.04", 0.0091 as "0.009", and 0.0003 as simply "0".
2099
2100    This is useful for displaying durations because it provides
2101    order-of-magnitude information without unnecessary clutter --
2102    long-running downloads are shown without the fractional part, and
2103    short ones still retain one significant digit.  */
2104
2105 const char *
2106 print_decimal (double number)
2107 {
2108   static char buf[32];
2109   double n = number >= 0 ? number : -number;
2110
2111   if (n >= 9.95)
2112     /* Cut off at 9.95 because the below %.1f would round 9.96 to
2113        "10.0" instead of "10".  OTOH 9.94 will print as "9.9".  */
2114     snprintf (buf, sizeof buf, "%.0f", number);
2115   else if (n >= 0.95)
2116     snprintf (buf, sizeof buf, "%.1f", number);
2117   else if (n >= 0.001)
2118     snprintf (buf, sizeof buf, "%.1g", number);
2119   else if (n >= 0.0005)
2120     /* round [0.0005, 0.001) to 0.001 */
2121     snprintf (buf, sizeof buf, "%.3f", number);
2122   else
2123     /* print numbers close to 0 as 0, not 0.000 */
2124     strcpy (buf, "0");
2125
2126   return buf;
2127 }
2128
2129 #ifdef TESTING
2130
2131 const char *
2132 test_subdir_p()
2133 {
2134   int i;
2135   struct {
2136     char *d1;
2137     char *d2;
2138     bool result;
2139   } test_array[] = {
2140     { "/somedir", "/somedir", true },
2141     { "/somedir", "/somedir/d2", true },
2142     { "/somedir/d1", "/somedir", false },
2143   };
2144   
2145   for (i = 0; i < countof(test_array); ++i) 
2146     {
2147       bool res = subdir_p (test_array[i].d1, test_array[i].d2);
2148
2149       mu_assert ("test_subdir_p: wrong result", 
2150                  res == test_array[i].result);
2151     }
2152
2153   return NULL;
2154 }
2155
2156 const char *
2157 test_dir_matches_p()
2158 {
2159   int i;
2160   struct {
2161     char *dirlist[3];
2162     char *dir;
2163     bool result;
2164   } test_array[] = {
2165     { { "/somedir", "/someotherdir", NULL }, "somedir", true },
2166     { { "/somedir", "/someotherdir", NULL }, "anotherdir", false },
2167     { { "/somedir", "/*otherdir", NULL }, "anotherdir", true },
2168     { { "/somedir/d1", "/someotherdir", NULL }, "somedir/d1", true },
2169     { { "/somedir/d1", "/someotherdir", NULL }, "d1", false },
2170   };
2171   
2172   for (i = 0; i < countof(test_array); ++i) 
2173     {
2174       bool res = dir_matches_p (test_array[i].dirlist, test_array[i].dir);
2175       
2176       mu_assert ("test_dir_matches_p: wrong result", 
2177                  res == test_array[i].result);
2178     }
2179
2180   return NULL;
2181 }
2182
2183 #endif /* TESTING */
2184