home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / readline / tilde.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  10KB  |  403 lines

  1. /* tilde.c -- Tilde expansion code (~/foo := $HOME/foo). */
  2.  
  3. /* Copyright (C) 1988,1989 Free Software Foundation, Inc.
  4.  
  5.    This file is part of GNU Readline, a library for reading lines
  6.    of text with interactive input and history editing.
  7.  
  8.    Readline is free software; you can redistribute it and/or modify it
  9.    under the terms of the GNU General Public License as published by the
  10.    Free Software Foundation; either version 1, or (at your option) any
  11.    later version.
  12.  
  13.    Readline is distributed in the hope that it will be useful, but
  14.    WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.    General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with Readline; see the file COPYING.  If not, write to the Free
  20.    Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  21.  
  22. #if defined (__GNUC__)
  23. #  undef alloca
  24. #  define alloca __builtin_alloca
  25. #else /* !__GNUC__ */
  26. #  if defined (_AIX)
  27.      #pragma alloca
  28. #  else /* !_AIX */
  29. #    if defined (HAVE_ALLOCA_H)
  30. #      include <alloca.h>
  31. #    endif /* HAVE_ALLOCA_H */
  32. #  endif /* !AIX */
  33. #endif /* !__GNUC__ */
  34.  
  35. #if defined (HAVE_STRING_H)
  36. #  include <string.h>
  37. #else /* !HAVE_STRING_H */
  38. #  include <strings.h>
  39. #endif /* !HAVE_STRING_H */  
  40.  
  41. #if defined (HAVE_STDLIB_H)
  42. #  include <stdlib.h>
  43. #else
  44. #  include "ansi_stdlib.h"
  45. #endif /* HAVE_STDLIB_H */
  46.  
  47. #if defined (HAVE_UNISTD_H)
  48. #  include <unistd.h>
  49. #endif
  50.  
  51. #include <readline/tilde.h>
  52. #include <pwd.h>
  53.  
  54. #if defined (USG) && !defined (isc386) && !defined (sgi)
  55. extern struct passwd *getpwuid (), *getpwent ();
  56. #endif
  57. #if defined (isc386) && !defined (__STDC__) && defined (_POSIX_SOURCE)
  58. extern struct passwd *getpwent ();
  59. #endif
  60.  
  61. #if !defined (savestring)
  62. extern char *xmalloc ();
  63. #  ifndef strcpy
  64. extern char *strcpy ();
  65. #  endif
  66. #define savestring(x) strcpy (xmalloc (1 + strlen (x)), (x))
  67. #endif /* !savestring */
  68.  
  69. #if !defined (NULL)
  70. #  if defined (__STDC__)
  71. #    define NULL ((void *) 0)
  72. #  else
  73. #    define NULL 0x0
  74. #  endif /* !__STDC__ */
  75. #endif /* !NULL */
  76.  
  77. #if defined (TEST) || defined (STATIC_MALLOC)
  78. static char *xmalloc (), *xrealloc ();
  79. #else
  80. extern char *xmalloc (), *xrealloc ();
  81. #endif /* TEST || STATIC_MALLOC */
  82.  
  83. /* The default value of tilde_additional_prefixes.  This is set to
  84.    whitespace preceding a tilde so that simple programs which do not
  85.    perform any word separation get desired behaviour. */
  86. static char *default_prefixes[] =
  87.   { " ~", "\t~", (char *)NULL };
  88.  
  89. /* The default value of tilde_additional_suffixes.  This is set to
  90.    whitespace or newline so that simple programs which do not
  91.    perform any word separation get desired behaviour. */
  92. static char *default_suffixes[] =
  93.   { " ", "\n", (char *)NULL };
  94.  
  95. /* If non-null, this contains the address of a function to call if the
  96.    standard meaning for expanding a tilde fails.  The function is called
  97.    with the text (sans tilde, as in "foo"), and returns a malloc()'ed string
  98.    which is the expansion, or a NULL pointer if there is no expansion. */
  99. CPFunction *tilde_expansion_failure_hook = (CPFunction *)NULL;
  100.  
  101. /* When non-null, this is a NULL terminated array of strings which
  102.    are duplicates for a tilde prefix.  Bash uses this to expand
  103.    `=~' and `:~'. */
  104. char **tilde_additional_prefixes = default_prefixes;
  105.  
  106. /* When non-null, this is a NULL terminated array of strings which match
  107.    the end of a username, instead of just "/".  Bash sets this to
  108.    `:' and `=~'. */
  109. char **tilde_additional_suffixes = default_suffixes;
  110.  
  111. /* Find the start of a tilde expansion in STRING, and return the index of
  112.    the tilde which starts the expansion.  Place the length of the text
  113.    which identified this tilde starter in LEN, excluding the tilde itself. */
  114. static int
  115. tilde_find_prefix (string, len)
  116.      char *string;
  117.      int *len;
  118. {
  119.   register int i, j, string_len;
  120.   register char **prefixes = tilde_additional_prefixes;
  121.  
  122.   string_len = strlen (string);
  123.   *len = 0;
  124.  
  125.   if (!*string || *string == '~')
  126.     return (0);
  127.  
  128.   if (prefixes)
  129.     {
  130.       for (i = 0; i < string_len; i++)
  131.     {
  132.       for (j = 0; prefixes[j]; j++)
  133.         {
  134.           if (strncmp (string + i, prefixes[j], strlen (prefixes[j])) == 0)
  135.         {
  136.           *len = strlen (prefixes[j]) - 1;
  137.           return (i + *len);
  138.         }
  139.         }
  140.     }
  141.     }
  142.   return (string_len);
  143. }
  144.  
  145. /* Find the end of a tilde expansion in STRING, and return the index of
  146.    the character which ends the tilde definition.  */
  147. static int
  148. tilde_find_suffix (string)
  149.      char *string;
  150. {
  151.   register int i, j, string_len;
  152.   register char **suffixes = tilde_additional_suffixes;
  153.  
  154.   string_len = strlen (string);
  155.  
  156.   for (i = 0; i < string_len; i++)
  157.     {
  158.       if (string[i] == '/' || !string[i])
  159.     break;
  160.  
  161.       for (j = 0; suffixes && suffixes[j]; j++)
  162.     {
  163.       if (strncmp (string + i, suffixes[j], strlen (suffixes[j])) == 0)
  164.         return (i);
  165.     }
  166.     }
  167.   return (i);
  168. }
  169.  
  170. /* Return a new string which is the result of tilde expanding STRING. */
  171. char *
  172. tilde_expand (string)
  173.      char *string;
  174. {
  175.   char *result, *tilde_expand_word ();
  176.   int result_size, result_index;
  177.  
  178.   result_size = result_index = 0;
  179.   result = (char *)NULL;
  180.  
  181.   /* Scan through STRING expanding tildes as we come to them. */
  182.   while (1)
  183.     {
  184.       register int start, end;
  185.       char *tilde_word, *expansion;
  186.       int len;
  187.  
  188.       /* Make START point to the tilde which starts the expansion. */
  189.       start = tilde_find_prefix (string, &len);
  190.  
  191.       /* Copy the skipped text into the result. */
  192.       if ((result_index + start + 1) > result_size)
  193.     result = (char *)xrealloc (result, 1 + (result_size += (start + 20)));
  194.  
  195.       strncpy (result + result_index, string, start);
  196.       result_index += start;
  197.  
  198.       /* Advance STRING to the starting tilde. */
  199.       string += start;
  200.  
  201.       /* Make END be the index of one after the last character of the
  202.      username. */
  203.       end = tilde_find_suffix (string);
  204.  
  205.       /* If both START and END are zero, we are all done. */
  206.       if (!start && !end)
  207.     break;
  208.  
  209.       /* Expand the entire tilde word, and copy it into RESULT. */
  210.       tilde_word = (char *)xmalloc (1 + end);
  211.       strncpy (tilde_word, string, end);
  212.       tilde_word[end] = '\0';
  213.       string += end;
  214.  
  215.       expansion = tilde_expand_word (tilde_word);
  216.       free (tilde_word);
  217.  
  218.       len = strlen (expansion);
  219.       if ((result_index + len + 1) > result_size)
  220.     result = (char *)xrealloc (result, 1 + (result_size += (len + 20)));
  221.  
  222.       strcpy (result + result_index, expansion);
  223.       result_index += len;
  224.       free (expansion);
  225.     }
  226.  
  227.   result[result_index] = '\0';
  228.  
  229.   return (result);
  230. }
  231.  
  232. /* Do the work of tilde expansion on FILENAME.  FILENAME starts with a
  233.    tilde.  If there is no expansion, call tilde_expansion_failure_hook. */
  234. char *
  235. tilde_expand_word (filename)
  236.      char *filename;
  237. {
  238.   char *dirname;
  239.  
  240.   dirname = filename ? savestring (filename) : (char *)NULL;
  241.  
  242.   if (dirname && *dirname == '~')
  243.     {
  244.       char *temp_name;
  245.       if (!dirname[1] || dirname[1] == '/')
  246.     {
  247.       /* Prepend $HOME to the rest of the string. */
  248.       char *temp_home = (char *)getenv ("HOME");
  249.  
  250.       /* If there is no HOME variable, look up the directory in
  251.          the password database. */
  252.       if (!temp_home)
  253.         {
  254.           struct passwd *entry;
  255.  
  256.           entry = getpwuid (getuid ());
  257.           if (entry)
  258.         temp_home = entry->pw_dir;
  259.         }
  260.  
  261.       temp_name = (char *)alloca (1 + strlen (&dirname[1])
  262.                       + (temp_home ? strlen (temp_home) : 0));
  263.       temp_name[0] = '\0';
  264.       if (temp_home)
  265.         strcpy (temp_name, temp_home);
  266.       strcat (temp_name, &dirname[1]);
  267.       free (dirname);
  268.       dirname = savestring (temp_name);
  269.     }
  270.       else
  271.     {
  272.       struct passwd *user_entry;
  273.       char *username = (char *)alloca (257);
  274.       int i, c;
  275.  
  276.       for (i = 1; (c = dirname[i]) != '\0'; i++)
  277.         {
  278.           if (c == '/')
  279.         break;
  280.           else
  281.         username[i - 1] = c;
  282.         }
  283.       username[i - 1] = '\0';
  284.  
  285.       if (!(user_entry = getpwnam (username)))
  286.         {
  287.           /* If the calling program has a special syntax for
  288.          expanding tildes, and we couldn't find a standard
  289.          expansion, then let them try. */
  290.           if (tilde_expansion_failure_hook)
  291.         {
  292.           char *expansion;
  293.  
  294.           expansion = (*tilde_expansion_failure_hook) (username);
  295.  
  296.           if (expansion)
  297.             {
  298.               temp_name = (char *)alloca (1 + strlen (expansion)
  299.                           + strlen (&dirname[i]));
  300.               strcpy (temp_name, expansion);
  301.               strcat (temp_name, &dirname[i]);
  302.               free (expansion);
  303.               goto return_name;
  304.             }
  305.         }
  306.           /* We shouldn't report errors. */
  307.         }
  308.       else
  309.         {
  310.           temp_name = (char *)alloca (1 + strlen (user_entry->pw_dir)
  311.                       + strlen (&dirname[i]));
  312.           strcpy (temp_name, user_entry->pw_dir);
  313.           strcat (temp_name, &dirname[i]);
  314.         return_name:
  315.           free (dirname);
  316.           dirname = savestring (temp_name);
  317.         }
  318.         endpwent ();
  319.     }
  320.     }
  321.   return (dirname);
  322. }
  323.  
  324.  
  325. #if defined (TEST)
  326. #undef NULL
  327. #include <stdio.h>
  328.  
  329. main (argc, argv)
  330.      int argc;
  331.      char **argv;
  332. {
  333.   char *result, line[512];
  334.   int done = 0;
  335.  
  336.   while (!done)
  337.     {
  338.       printf ("~expand: ");
  339.       fflush (stdout);
  340.  
  341.       if (!gets (line))
  342.     strcpy (line, "done");
  343.  
  344.       if ((strcmp (line, "done") == 0) ||
  345.       (strcmp (line, "quit") == 0) ||
  346.       (strcmp (line, "exit") == 0))
  347.     {
  348.       done = 1;
  349.       break;
  350.     }
  351.  
  352.       result = tilde_expand (line);
  353.       printf ("  --> %s\n", result);
  354.       free (result);
  355.     }
  356.   exit (0);
  357. }
  358.  
  359. static void memory_error_and_abort ();
  360.  
  361. static char *
  362. xmalloc (bytes)
  363.      int bytes;
  364. {
  365.   char *temp = (char *)malloc (bytes);
  366.  
  367.   if (!temp)
  368.     memory_error_and_abort ();
  369.   return (temp);
  370. }
  371.  
  372. static char *
  373. xrealloc (pointer, bytes)
  374.      char *pointer;
  375.      int bytes;
  376. {
  377.   char *temp;
  378.  
  379.   if (!pointer)
  380.     temp = (char *)malloc (bytes);
  381.   else
  382.     temp = (char *)realloc (pointer, bytes);
  383.  
  384.   if (!temp)
  385.     memory_error_and_abort ();
  386.  
  387.   return (temp);
  388. }
  389.  
  390. static void
  391. memory_error_and_abort ()
  392. {
  393.   fprintf (stderr, "readline: Out of virtual memory!\n");
  394.   abort ();
  395. }
  396.  
  397. /*
  398.  * Local variables:
  399.  * compile-command: "gcc -g -DTEST -o tilde tilde.c"
  400.  * end:
  401.  */
  402. #endif /* TEST */
  403.