home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / Shells / bashsrc.zoo / glob.c < prev    next >
C/C++ Source or Header  |  1991-06-05  |  13KB  |  564 lines

  1. /* File-name wildcard pattern matching for GNU.
  2.    Copyright (C) 1985, 1988, 1989 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 1, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* To whomever it may concern: I have never seen the code which most
  19.    Unix programs use to perform this function.  I wrote this from scratch
  20.    based on specifications for the pattern matching.  --RMS.  */
  21.  
  22. #include "config.h"
  23.  
  24. #if defined (SYSV) && !defined (Xenix)
  25. #  define SYSVr3
  26. #endif
  27.  
  28. #include <sys/types.h>
  29.  
  30. #if defined (SYSVr3) || defined (DIRENT)
  31. #  include <dirent.h>
  32. #  define direct dirent
  33. #  define    D_NAMLEN(d) strlen((d)->d_name)
  34. #else
  35. #  define D_NAMLEN(d) ((d)->d_namlen)
  36. #  if defined (xenix)
  37. #    include <sys/ndir.h>
  38. #  else
  39. #    if defined (SYSV)
  40. #      include "ndir.h"
  41. #     else
  42. #      include <sys/dir.h>
  43. #    endif
  44. #  endif
  45. #endif    /* SYSVr3 or DIRENT.  */
  46.  
  47. #if defined (NeXT)
  48. #include <string.h>
  49. #else
  50. #if defined (SYSV)
  51. #include <memory.h>
  52. #include <string.h>
  53. #define bcopy(s, d, n) ((void) memcpy ((d), (s), (n)))
  54. #define rindex    strrchr
  55.  
  56. #else /* not SYSV */
  57. #include <strings.h>
  58.  
  59. extern void bcopy ();
  60. #endif /* not SYSV */
  61. #endif /* not NeXT */
  62.  
  63. extern char *malloc (), *realloc ();
  64. extern void free ();
  65.  
  66. #ifndef NULL
  67. #define NULL 0
  68. #endif
  69.  
  70. /* Global variable which controls whether or not * matches .*.
  71.    Non-zero means don't match .*.  */
  72. int noglob_dot_filenames = 1;
  73.  
  74.  
  75. static int glob_match_after_star ();
  76.  
  77. /* Return nonzero if PATTERN has any special globbing chars in it.  */
  78. int
  79. glob_pattern_p (pattern)
  80.      char *pattern;
  81. {
  82.   register char *p = pattern;
  83.   register char c;
  84.  
  85.   while ((c = *p++) != '\0')
  86.     switch (c)
  87.       {
  88.       case '?':
  89.       case '[':
  90.       case '*':
  91.     return 1;
  92.  
  93.       case '\\':
  94.     if (*p++ == '\0')
  95.       return 0;
  96.       }
  97.  
  98.   return 0;
  99. }
  100.  
  101. /* Match the pattern PATTERN against the string TEXT;
  102.    return 1 if it matches, 0 otherwise.
  103.  
  104.    A match means the entire string TEXT is used up in matching.
  105.  
  106.    In the pattern string, `*' matches any sequence of characters,
  107.    `?' matches any character, [SET] matches any character in the specified set,
  108.    [!SET] matches any character not in the specified set.
  109.  
  110.    A set is composed of characters or ranges; a range looks like
  111.    character hyphen character (as in 0-9 or A-Z).
  112.    [0-9a-zA-Z_] is the set of characters allowed in C identifiers.
  113.    Any other character in the pattern must be matched exactly.
  114.  
  115.    To suppress the special syntactic significance of any of `[]*?!-\',
  116.    and match the character exactly, precede it with a `\'.
  117.  
  118.    If DOT_SPECIAL is nonzero,
  119.    `*' and `?' do not match `.' at the beginning of TEXT.  */
  120.  
  121. int
  122. glob_match (pattern, text, dot_special)
  123.      char *pattern, *text;
  124.      int dot_special;
  125. {
  126.   register char *p = pattern, *t = text;
  127.   register char c;
  128.  
  129.   while ((c = *p++) != '\0')
  130.     switch (c)
  131.       {
  132.       case '?':
  133.     if (*t == '\0' || (dot_special && t == text && *t == '.'))
  134.       return 0;
  135.     else
  136.       ++t;
  137.     break;
  138.  
  139.       case '\\':
  140.     if (*p++ != *t++)
  141.       return 0;
  142.     break;
  143.  
  144.       case '*':
  145.     if (dot_special && t == text && *t == '.')
  146.       return 0;
  147.     return glob_match_after_star (p, t);
  148.  
  149.       case '[':
  150.     {
  151.       register char c1 = *t++;
  152.       int invert;
  153.  
  154.       if (!c1)
  155.         return (0);
  156.  
  157.       invert = ((*p == '!') || (*p == '^'));
  158.       if (invert)
  159.         p++;
  160.  
  161.       c = *p++;
  162.       while (1)
  163.         {
  164.           register char cstart = c, cend = c;
  165.  
  166.           if (c == '\\')
  167.         {
  168.           cstart = *p++;
  169.           cend = cstart;
  170.         }
  171.  
  172.           if (c == '\0')
  173.         return 0;
  174.  
  175.           c = *p++;
  176.           if (c == '-')
  177.         {
  178.           cend = *p++;
  179.           if (cend == '\\')
  180.             cend = *p++;
  181.           if (cend == '\0')
  182.             return 0;
  183.           c = *p++;
  184.         }
  185.           if (c1 >= cstart && c1 <= cend)
  186.         goto match;
  187.           if (c == ']')
  188.         break;
  189.         }
  190.       if (!invert)
  191.         return 0;
  192.       break;
  193.  
  194.     match:
  195.       /* Skip the rest of the [...] construct that already matched.  */
  196.       while (c != ']')
  197.         { 
  198.           if (c == '\0')
  199.         return 0;
  200.           c = *p++;
  201.           if (c == '\0')
  202.         return 0;
  203.           else if (c == '\\')
  204.         ++p;
  205.         }
  206.       if (invert)
  207.         return 0;
  208.       break;
  209.     }
  210.  
  211.       default:
  212.     if (c != *t++)
  213.       return 0;
  214.       }
  215.  
  216.   return *t == '\0';
  217. }
  218.  
  219. /* Like glob_match, but match PATTERN against any final segment of TEXT.  */
  220.  
  221. static int
  222. glob_match_after_star (pattern, text)
  223.      char *pattern, *text;
  224. {
  225.   register char *p = pattern, *t = text;
  226.   register char c, c1;
  227.  
  228.   while ((c = *p++) == '?' || c == '*')
  229.     if (c == '?' && *t++ == '\0')
  230.       return 0;
  231.  
  232.   if (c == '\0')
  233.     return 1;
  234.  
  235.   if (c == '\\')
  236.     c1 = *p;
  237.   else
  238.     c1 = c;
  239.  
  240.   while (1)
  241.     {
  242.       if ((c == '[' || *t == c1) && glob_match (p - 1, t, 0))
  243.     return 1;
  244.       if (*t++ == '\0')
  245.     return 0;
  246.     }
  247. }
  248.  
  249. /* Return a vector of names of files in directory DIR
  250.    whose names match glob pattern PAT.
  251.    The names are not in any particular order.
  252.    Wildcards at the beginning of PAT do not match an initial period.
  253.  
  254.    The vector is terminated by an element that is a null pointer.
  255.  
  256.    To free the space allocated, first free the vector's elements,
  257.    then free the vector.
  258.  
  259.    Return 0 if cannot get enough memory to hold the pointer
  260.    and the names.
  261.  
  262.    Return -1 if cannot access directory DIR.
  263.    Look in errno for more information.  */
  264.  
  265. char **
  266. glob_vector (pat, dir)
  267.      char *pat;
  268.      char *dir;
  269. {
  270.   struct globval
  271.     {
  272.       struct globval *next;
  273.       char *name;
  274.     };
  275.  
  276.   DIR *d;
  277.   register struct direct *dp;
  278.   struct globval *lastlink;
  279.   register struct globval *nextlink;
  280.   register char *nextname;
  281.   unsigned int count;
  282.   int lose;
  283.   register char **name_vector;
  284.   register unsigned int i;
  285.  
  286.   d = opendir (dir);
  287.   if (d == NULL)
  288.     return (char **) -1;
  289.  
  290.   lastlink = 0;
  291.   count = 0;
  292.   lose = 0;
  293.  
  294.   /* Scan the directory, finding all names that match.
  295.      For each name that matches, allocate a struct globval
  296.      on the stack and store the name in it.
  297.      Chain those structs together; lastlink is the front of the chain.  */
  298.   while (1)
  299.     {
  300.       dp = readdir (d);
  301.       if (dp == NULL)
  302.     break;
  303.       if (dp->d_ino != 0
  304.       && glob_match (pat, dp->d_name, noglob_dot_filenames))
  305.     {
  306.       nextlink = (struct globval *) alloca (sizeof (struct globval));
  307.       nextlink->next = lastlink;
  308.       nextname = (char *) malloc (D_NAMLEN(dp) + 1);
  309.       if (nextname == NULL)
  310.         {
  311.           lose = 1;
  312.           break;
  313.         }
  314.       lastlink = nextlink;
  315.       nextlink->name = nextname;
  316.       bcopy (dp->d_name, nextname, D_NAMLEN(dp) + 1);
  317.       ++count;
  318.     }
  319.     }
  320.   (void) closedir (d);
  321.  
  322.   if (!lose)
  323.     {
  324.       name_vector = (char **) malloc ((count + 1) * sizeof (char *));
  325.       lose |= name_vector == NULL;
  326.     }
  327.  
  328.   /* Have we run out of memory?  */
  329.   if (lose)
  330.     {
  331.       /* Here free the strings we have got.  */
  332.       while (lastlink)
  333.     {
  334.       free (lastlink->name);
  335.       lastlink = lastlink->next;
  336.     }
  337.       return NULL;
  338.     }
  339.  
  340.   /* Copy the name pointers from the linked list into the vector.  */
  341.   for (i = 0; i < count; ++i)
  342.     {
  343.       name_vector[i] = lastlink->name;
  344.       lastlink = lastlink->next;
  345.     }
  346.  
  347.   name_vector[count] = NULL;
  348.   return name_vector;
  349. }
  350.  
  351. /* Return a new array which is the concatenation
  352.    of each string in ARRAY to DIR. */
  353.  
  354. static char **
  355. glob_dir_to_array (dir, array)
  356.      char *dir, **array;
  357. {
  358.   register unsigned int i, l;
  359.   int add_slash;
  360.   char **result;
  361.  
  362.   l = strlen (dir);
  363.   if (l == 0)
  364.     return array;
  365.  
  366.   add_slash = dir[l - 1] != '/';
  367.  
  368.   i = 0;
  369.   while (array[i] != NULL)
  370.     ++i;
  371.  
  372.   result = (char **) malloc ((i + 1) * sizeof (char *));
  373.   if (result == NULL)
  374.     return NULL;
  375.  
  376.   for (i = 0; array[i] != NULL; i++)
  377.     {
  378.       result[i] = (char *) malloc (l + (add_slash ? 1 : 0)
  379.                    + strlen (array[i]) + 1);
  380.       if (result[i] == NULL)
  381.     return NULL;
  382.       sprintf (result[i], "%s%s%s", dir, add_slash ? "/" : "", array[i]);
  383.     }
  384.   result[i] = NULL;
  385.  
  386.   /* Free the input array.  */
  387.   for (i = 0; array[i] != NULL; i++)
  388.     free (array[i]);
  389.   free ((char *) array);
  390.  
  391.   return result;
  392. }
  393.  
  394. /* Do globbing on PATHNAME.  Return an array of pathnames that match,
  395.    marking the end of the array with a null-pointer as an element.
  396.    If no pathnames match, then the array is empty (first element is null).
  397.    If there isn't enough memory, then return NULL.
  398.    If a file system error occurs, return -1; `errno' has the error code.  */
  399. char **
  400. glob_filename (pathname)
  401.      char *pathname;
  402. {
  403.   char **result;
  404.   unsigned int result_size;
  405.   char *directory_name, *filename;
  406.   unsigned int directory_len;
  407.  
  408.   result = (char **) malloc (sizeof (char *));
  409.   result_size = 1;
  410.   if (result == NULL)
  411.     return NULL;
  412.  
  413.   result[0] = NULL;
  414.  
  415.   /* Find the filename.  */
  416.   filename = rindex (pathname, '/');
  417.   if (filename == NULL)
  418.     {
  419.       filename = pathname;
  420.       directory_name = "";
  421.       directory_len = 0;
  422.     }
  423.   else
  424.     {
  425.       directory_len = (filename - pathname) + 1;
  426.       directory_name = (char *) alloca (directory_len + 1);
  427.  
  428.       bcopy (pathname, directory_name, directory_len);
  429.       directory_name[directory_len] = '\0';
  430.       ++filename;
  431.     }
  432.  
  433.   /* If directory_name contains globbing characters, then we
  434.      have to expand the previous levels.  Just recurse. */
  435.   if (glob_pattern_p (directory_name))
  436.     {
  437.       char **directories;
  438.       register unsigned int i;
  439.  
  440.       if (directory_name[directory_len - 1] == '/')
  441.     directory_name[directory_len - 1] = '\0';
  442.  
  443.       directories = glob_filename (directory_name);
  444.  
  445.       if (directories == NULL)
  446.     goto memory_error;
  447.       else if ((int) directories == -1)
  448.     return (char **) -1;
  449.       else if (*directories == NULL)
  450.     {
  451.       free ((char *) directories);
  452.       return (char **) -1;
  453.     }
  454.  
  455.       /* We have successfully globbed the preceding directory name.
  456.      For each name in DIRECTORIES, call glob_vector on it and
  457.      FILENAME.  Concatenate the results together.  */
  458.       for (i = 0; directories[i] != NULL; ++i)
  459.     {
  460.       char **temp_results = glob_vector (filename, directories[i]);
  461.  
  462.       /* Handle error cases. */
  463.       if (temp_results == NULL)
  464.         goto memory_error;
  465.       else if (temp_results == (char **)-1)
  466.         /* This filename is probably not a directory.  Ignore it.  */
  467.         ;
  468.       else
  469.         {
  470.           char **array = glob_dir_to_array (directories[i], temp_results);
  471.           register unsigned int l;
  472.  
  473.           l = 0;
  474.           while (array[l] != NULL)
  475.         ++l;
  476.  
  477.           result =
  478.         (char **)realloc (result, (result_size + l) * sizeof (char *));
  479.  
  480.           if (result == NULL)
  481.         goto memory_error;
  482.  
  483.           for (l = 0; array[l] != NULL; ++l)
  484.         result[result_size++ - 1] = array[l];
  485.  
  486.           result[result_size - 1] = NULL;
  487.  
  488.           /* Note that the elements of ARRAY are not freed.  */
  489.           free ((char *) array);
  490.         }
  491.     }
  492.       /* Free the directories.  */
  493.       for (i = 0; directories[i]; i++)
  494.     free (directories[i]);
  495.  
  496.       free ((char *) directories);
  497.  
  498.       return result;
  499.     }
  500.  
  501.   /* If there is only a directory name, return it. */
  502.   if (*filename == '\0')
  503.     {
  504.       result = (char **) realloc ((char *) result, 2 * sizeof (char *));
  505.       if (result == NULL)
  506.     return NULL;
  507.       result[0] = (char *) malloc (directory_len + 1);
  508.       if (result[0] == NULL)
  509.     goto memory_error;
  510.       bcopy (directory_name, result[0], directory_len + 1);
  511.       result[1] = NULL;
  512.       return result;
  513.     }
  514.   else
  515.     {
  516.       /* Otherwise, just return what glob_vector
  517.      returns appended to the directory name. */
  518.       char **temp_results = glob_vector (filename,
  519.                      (directory_len == 0
  520.                       ? "." : directory_name));
  521.  
  522.       if (temp_results == NULL || temp_results == (char **)-1)
  523.     return temp_results;
  524.  
  525.       return glob_dir_to_array (directory_name, temp_results);
  526.     }
  527.  
  528.  memory_error:;
  529.   if (result != NULL)
  530.     {
  531.       register unsigned int i;
  532.       for (i = 0; result[i] != NULL; ++i)
  533.     free (result[i]);
  534.       free ((char *) result);
  535.     }
  536.   return NULL;
  537. }
  538.  
  539. #ifdef TEST
  540.  
  541. main (argc, argv)
  542.      int argc;
  543.      char **argv;
  544. {
  545.   unsigned int i;
  546.  
  547.   for (i = 1; i < argc; ++i)
  548.     {
  549.       char **value = glob_filename (argv[i]);
  550.       if (value == NULL)
  551.     puts ("Out of memory.");
  552.       else if ((int) value == -1)
  553.     perror (argv[i]);
  554.       else
  555.     for (i = 0; value[i] != NULL; i++)
  556.       puts (value[i]);
  557.     }
  558.  
  559.   exit (0);
  560. }
  561. #endif    /* TEST.  */
  562.  
  563.  
  564.