tilde.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:11k
源码类别:

MySQL数据库

开发平台:

Visual C++

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