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

MySQL数据库

开发平台:

Visual C++

  1. /* complete.c -- filename completion for readline. */
  2. /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
  3.    This file is part of the GNU Readline Library, a library for
  4.    reading lines of text with interactive input and history editing.
  5.    The GNU Readline Library is free software; you can redistribute it
  6.    and/or modify it under the terms of the GNU General Public License
  7.    as published by the Free Software Foundation; either version 1, or
  8.    (at your option) any later version.
  9.    The GNU Readline Library is distributed in the hope that it will be
  10.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  11.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.    The GNU General Public License is often shipped with GNU software, and
  14.    is generally kept in a file called COPYING or LICENSE.  If you do not
  15.    have a copy of the license, write to the Free Software Foundation,
  16.    675 Mass Ave, Cambridge, MA 02139, USA. */
  17. #define READLINE_LIBRARY
  18. #if defined (HAVE_CONFIG_H)
  19. #  include <config.h>
  20. #endif
  21. #include <sys/types.h>
  22. #include <fcntl.h>
  23. #if defined (HAVE_SYS_FILE_H)
  24. #include <sys/file.h>
  25. #endif
  26. #if defined (HAVE_UNISTD_H)
  27. #  include <unistd.h>
  28. #endif /* HAVE_UNISTD_H */
  29. #if defined (HAVE_STDLIB_H)
  30. #  include <stdlib.h>
  31. #else
  32. #  include "ansi_stdlib.h"
  33. #endif /* HAVE_STDLIB_H */
  34. #include <stdio.h>
  35. #include <errno.h>
  36. #if !defined (errno)
  37. extern int errno;
  38. #endif /* !errno */
  39. #include <pwd.h>
  40. #if !defined (HAVE_GETPW_DECLS)
  41. extern struct passwd *getpwent ();
  42. #endif /* USG && !HAVE_GETPW_DECLS */
  43. /* ISC systems don't define getpwent() if _POSIX_SOURCE is defined. */
  44. #if defined (isc386) && defined (_POSIX_SOURCE)
  45. #  if defined (__STDC__)
  46. extern struct passwd *getpwent (void);
  47. #  else
  48. extern struct passwd *getpwent ();
  49. #  endif /* !__STDC__ */
  50. #endif /* isc386 && _POSIX_SOURCE */
  51. #include "posixdir.h"
  52. #include "posixstat.h"
  53. /* System-specific feature definitions and include files. */
  54. #include "rldefs.h"
  55. /* Some standard library routines. */
  56. #include "readline.h"
  57. extern char *tilde_expand ();
  58. extern char *rl_copy_text ();
  59. extern void _rl_abort_internal ();
  60. extern int _rl_qsort_string_compare ();
  61. extern void _rl_replace_text ();
  62. extern Function *rl_last_func;
  63. extern int rl_editing_mode;
  64. extern int screenwidth;
  65. extern void _rl_move_vert ();
  66. extern int _rl_vis_botlin;
  67. extern int rl_display_fixed;
  68. /* If non-zero, then this is the address of a function to call when
  69.    completing a word would normally display the list of possible matches.
  70.    This function is called instead of actually doing the display.
  71.    It takes three arguments: (char **matches, int num_matches, int max_length)
  72.    where MATCHES is the array of strings that matched, NUM_MATCHES is the
  73.    number of strings in that array, and MAX_LENGTH is the length of the
  74.    longest string in that array. */
  75. VFunction *rl_completion_display_matches_hook = (VFunction *)NULL;
  76. /* Forward declarations for functions defined and used in this file. */
  77. char *filename_completion_function ();
  78. char **completion_matches ();
  79. #if defined (VISIBLE_STATS)
  80. #  if !defined (X_OK)
  81. #    define X_OK 1
  82. #  endif
  83. static int stat_char ();
  84. #endif
  85. static char *rl_quote_filename ();
  86. static char *rl_strpbrk ();
  87. static char **remove_duplicate_matches ();
  88. static void insert_match ();
  89. static int append_to_match ();
  90. static void insert_all_matches ();
  91. static void display_matches ();
  92. static int compute_lcd_of_matches ();
  93. extern char *xmalloc (), *xrealloc ();
  94. /* **************************************************************** */
  95. /*     */
  96. /* Completion matching, from readline's point of view.     */
  97. /*     */
  98. /* **************************************************************** */
  99. /* Variables known only to the readline library. */
  100. /* If non-zero, non-unique completions always show the list of matches. */
  101. int _rl_complete_show_all = 0;
  102. /* If non-zero, completed directory names have a slash appended. */
  103. int _rl_complete_mark_directories = 1;
  104. /* If non-zero, completions are printed horizontally in alphabetical order,
  105.    like `ls -x'. */
  106. int _rl_print_completions_horizontally;
  107. /* Non-zero means that case is not significant in filename completion. */
  108. int _rl_completion_case_fold;
  109. /* Global variables available to applications using readline. */
  110. #if defined (VISIBLE_STATS)
  111. /* Non-zero means add an additional character to each filename displayed
  112.    during listing completion iff rl_filename_completion_desired which helps
  113.    to indicate the type of file being listed. */
  114. int rl_visible_stats = 0;
  115. #endif /* VISIBLE_STATS */
  116. /* If non-zero, then this is the address of a function to call when
  117.    completing on a directory name.  The function is called with
  118.    the address of a string (the current directory name) as an arg. */
  119. Function *rl_directory_completion_hook = (Function *)NULL;
  120. /* Non-zero means readline completion functions perform tilde expansion. */
  121. int rl_complete_with_tilde_expansion = 0;
  122. /* Pointer to the generator function for completion_matches ().
  123.    NULL means to use filename_completion_function (), the default filename
  124.    completer. */
  125. Function *rl_completion_entry_function = (Function *)NULL;
  126. /* Pointer to alternative function to create matches.
  127.    Function is called with TEXT, START, and END.
  128.    START and END are indices in RL_LINE_BUFFER saying what the boundaries
  129.    of TEXT are.
  130.    If this function exists and returns NULL then call the value of
  131.    rl_completion_entry_function to try to match, otherwise use the
  132.    array of strings returned. */
  133. CPPFunction *rl_attempted_completion_function = (CPPFunction *)NULL;
  134. /* Non-zero means to suppress normal filename completion after the
  135.    user-specified completion function has been called. */
  136. int rl_attempted_completion_over = 0;
  137. /* Set to a character indicating the type of completion being performed
  138.    by rl_complete_internal, available for use by application completion
  139.    functions. */
  140. int rl_completion_type = 0;
  141. /* Up to this many items will be displayed in response to a
  142.    possible-completions call.  After that, we ask the user if
  143.    she is sure she wants to see them all. */
  144. int rl_completion_query_items = 100;
  145. /* The basic list of characters that signal a break between words for the
  146.    completer routine.  The contents of this variable is what breaks words
  147.    in the shell, i.e. " tn"\'`@$><=" */
  148. char *rl_basic_word_break_characters = " tn"\'`@$><=;|&{(";
  149. /* List of basic quoting characters. */
  150. char *rl_basic_quote_characters = ""'";
  151. /* The list of characters that signal a break between words for
  152.    rl_complete_internal.  The default list is the contents of
  153.    rl_basic_word_break_characters.  */
  154. char *rl_completer_word_break_characters = (char *)NULL;
  155. /* List of characters which can be used to quote a substring of the line.
  156.    Completion occurs on the entire substring, and within the substring
  157.    rl_completer_word_break_characters are treated as any other character,
  158.    unless they also appear within this list. */
  159. char *rl_completer_quote_characters = (char *)NULL;
  160. /* List of characters that should be quoted in filenames by the completer. */
  161. char *rl_filename_quote_characters = (char *)NULL;
  162. /* List of characters that are word break characters, but should be left
  163.    in TEXT when it is passed to the completion function.  The shell uses
  164.    this to help determine what kind of completing to do. */
  165. char *rl_special_prefixes = (char *)NULL;
  166. /* If non-zero, then disallow duplicates in the matches. */
  167. int rl_ignore_completion_duplicates = 1;
  168. /* Non-zero means that the results of the matches are to be treated
  169.    as filenames.  This is ALWAYS zero on entry, and can only be changed
  170.    within a completion entry finder function. */
  171. int rl_filename_completion_desired = 0;
  172. /* Non-zero means that the results of the matches are to be quoted using
  173.    double quotes (or an application-specific quoting mechanism) if the
  174.    filename contains any characters in rl_filename_quote_chars.  This is
  175.    ALWAYS non-zero on entry, and can only be changed within a completion
  176.    entry finder function. */
  177. int rl_filename_quoting_desired = 1;
  178. /* This function, if defined, is called by the completer when real
  179.    filename completion is done, after all the matching names have been
  180.    generated. It is passed a (char**) known as matches in the code below.
  181.    It consists of a NULL-terminated array of pointers to potential
  182.    matching strings.  The 1st element (matches[0]) is the maximal
  183.    substring that is common to all matches. This function can re-arrange
  184.    the list of matches as required, but all elements of the array must be
  185.    free()'d if they are deleted. The main intent of this function is
  186.    to implement FIGNORE a la SunOS csh. */
  187. Function *rl_ignore_some_completions_function = (Function *)NULL;
  188. /* Set to a function to quote a filename in an application-specific fashion.
  189.    Called with the text to quote, the type of match found (single or multiple)
  190.    and a pointer to the quoting character to be used, which the function can
  191.    reset if desired. */
  192. CPFunction *rl_filename_quoting_function = rl_quote_filename;
  193.          
  194. /* Function to call to remove quoting characters from a filename.  Called
  195.    before completion is attempted, so the embedded quotes do not interfere
  196.    with matching names in the file system.  Readline doesn't do anything
  197.    with this; it's set only by applications. */
  198. CPFunction *rl_filename_dequoting_function = (CPFunction *)NULL;
  199. /* Function to call to decide whether or not a word break character is
  200.    quoted.  If a character is quoted, it does not break words for the
  201.    completer. */
  202. Function *rl_char_is_quoted_p = (Function *)NULL;
  203. /* Character appended to completed words when at the end of the line.  The
  204.    default is a space. */
  205. int rl_completion_append_character = ' ';
  206. /* If non-zero, inhibit completion (temporarily). */
  207. int rl_inhibit_completion;
  208. /* Variables local to this file. */
  209. /* Local variable states what happened during the last completion attempt. */
  210. static int completion_changed_buffer;
  211. /*************************************/
  212. /*      */
  213. /*    Bindable completion functions  */
  214. /*      */
  215. /*************************************/
  216. /* Complete the word at or before point.  You have supplied the function
  217.    that does the initial simple matching selection algorithm (see
  218.    completion_matches ()).  The default is to do filename completion. */
  219. int
  220. rl_complete (ignore, invoking_key)
  221.      int ignore, invoking_key;
  222. {
  223.   if (rl_inhibit_completion)
  224.     return (rl_insert (ignore, invoking_key));
  225.   else if (rl_last_func == rl_complete && !completion_changed_buffer)
  226.     return (rl_complete_internal ('?'));
  227.   else if (_rl_complete_show_all)
  228.     return (rl_complete_internal ('!'));
  229.   else
  230.     return (rl_complete_internal (TAB));
  231. }
  232. /* List the possible completions.  See description of rl_complete (). */
  233. int
  234. rl_possible_completions (ignore, invoking_key)
  235.      int ignore, invoking_key;
  236. {
  237.   return (rl_complete_internal ('?'));
  238. }
  239. int
  240. rl_insert_completions (ignore, invoking_key)
  241.      int ignore, invoking_key;
  242. {
  243.   return (rl_complete_internal ('*'));
  244. }
  245. /************************************/
  246. /*     */
  247. /*    Completion utility functions  */
  248. /*     */
  249. /************************************/
  250. /* Find the first occurrence in STRING1 of any character from STRING2.
  251.    Return a pointer to the character in STRING1. */
  252. static char *
  253. rl_strpbrk (string1, string2)
  254.      char *string1, *string2;
  255. {
  256.   register char *scan;
  257.   for (; *string1; string1++)
  258.     {
  259.       for (scan = string2; *scan; scan++)
  260. {
  261.   if (*string1 == *scan)
  262.     {
  263.       return (string1);
  264.     }
  265. }
  266.     }
  267.   return ((char *)NULL);
  268. }
  269. /* The user must press "y" or "n". Non-zero return means "y" pressed. */
  270. static int
  271. get_y_or_n ()
  272. {
  273.   int c;
  274.   for (;;)
  275.     {
  276.       c = rl_read_key ();
  277.       if (c == 'y' || c == 'Y' || c == ' ')
  278. return (1);
  279.       if (c == 'n' || c == 'N' || c == RUBOUT)
  280. return (0);
  281.       if (c == ABORT_CHAR)
  282. _rl_abort_internal ();
  283.       ding ();
  284.     }
  285. }
  286. #if defined (VISIBLE_STATS)
  287. /* Return the character which best describes FILENAME.
  288.      `@' for symbolic links
  289.      `/' for directories
  290.      `*' for executables
  291.      `=' for sockets
  292.      `|' for FIFOs
  293.      `%' for character special devices
  294.      `#' for block special devices */
  295. static int
  296. stat_char (filename)
  297.      char *filename;
  298. {
  299.   struct stat finfo;
  300.   int character, r;
  301. #if defined (HAVE_LSTAT) && defined (S_ISLNK)
  302.   r = lstat (filename, &finfo);
  303. #else
  304.   r = stat (filename, &finfo);
  305. #endif
  306.   if (r == -1)
  307.     return (0);
  308.   character = 0;
  309.   if (S_ISDIR (finfo.st_mode))
  310.     character = '/';
  311. #if defined (S_ISCHR)
  312.   else if (S_ISCHR (finfo.st_mode))
  313.     character = '%';
  314. #endif /* S_ISCHR */
  315. #if defined (S_ISBLK)
  316.   else if (S_ISBLK (finfo.st_mode))
  317.     character = '#';
  318. #endif /* S_ISBLK */
  319. #if defined (S_ISLNK)
  320.   else if (S_ISLNK (finfo.st_mode))
  321.     character = '@';
  322. #endif /* S_ISLNK */
  323. #if defined (S_ISSOCK)
  324.   else if (S_ISSOCK (finfo.st_mode))
  325.     character = '=';
  326. #endif /* S_ISSOCK */
  327. #if defined (S_ISFIFO)
  328.   else if (S_ISFIFO (finfo.st_mode))
  329.     character = '|';
  330. #endif
  331.   else if (S_ISREG (finfo.st_mode))
  332.     {
  333.       if (access (filename, X_OK) == 0)
  334. character = '*';
  335.     }
  336.   return (character);
  337. }
  338. #endif /* VISIBLE_STATS */
  339. /* Return the portion of PATHNAME that should be output when listing
  340.    possible completions.  If we are hacking filename completion, we
  341.    are only interested in the basename, the portion following the
  342.    final slash.  Otherwise, we return what we were passed. */
  343. static char *
  344. printable_part (pathname)
  345.       char *pathname;
  346. {
  347.   char *temp;
  348.   temp = rl_filename_completion_desired ? strrchr (pathname, '/') : (char *)NULL;
  349.   return (temp ? ++temp : pathname);
  350. }
  351. /* Output TO_PRINT to rl_outstream.  If VISIBLE_STATS is defined and we
  352.    are using it, check for and output a single character for `special'
  353.    filenames.  Return the number of characters we output. */
  354. #define PUTX(c) 
  355.     do { 
  356.       if (CTRL_CHAR (c)) 
  357.         { 
  358.           putc ('^', rl_outstream); 
  359.           putc (UNCTRL (c), rl_outstream); 
  360.           printed_len += 2; 
  361.         } 
  362.       else if (c == RUBOUT) 
  363.   putc ('^', rl_outstream); 
  364.   putc ('?', rl_outstream); 
  365.   printed_len += 2; 
  366.       else 
  367.   putc (c, rl_outstream); 
  368.   printed_len++; 
  369.     } while (0)
  370. static int
  371. print_filename (to_print, full_pathname)
  372.      char *to_print, *full_pathname;
  373. {
  374.   int printed_len = 0;
  375. #if !defined (VISIBLE_STATS)
  376.   char *s;
  377.   for (s = to_print; *s; s++)
  378.     {
  379.       PUTX (*s);
  380.     }
  381. #else  
  382.   char *s, c, *new_full_pathname;
  383.   int extension_char, slen, tlen;
  384.   for (s = to_print; *s; s++)
  385.     {
  386.       PUTX (*s);
  387.     }
  388.  if (rl_filename_completion_desired && rl_visible_stats)
  389.     {
  390.       /* If to_print != full_pathname, to_print is the basename of the
  391.  path passed.  In this case, we try to expand the directory
  392.  name before checking for the stat character. */
  393.       if (to_print != full_pathname)
  394. {
  395.   /* Terminate the directory name. */
  396.   c = to_print[-1];
  397.   to_print[-1] = '';
  398.   s = tilde_expand (full_pathname);
  399.   if (rl_directory_completion_hook)
  400.     (*rl_directory_completion_hook) (&s);
  401.   slen = strlen (s);
  402.   tlen = strlen (to_print);
  403.   new_full_pathname = xmalloc (slen + tlen + 2);
  404.   strcpy (new_full_pathname, s);
  405.   new_full_pathname[slen] = '/';
  406.   strcpy (new_full_pathname + slen + 1, to_print);
  407.   extension_char = stat_char (new_full_pathname);
  408.   free (new_full_pathname);
  409.   to_print[-1] = c;
  410. }
  411.       else
  412. {
  413.   s = tilde_expand (full_pathname);
  414.   extension_char = stat_char (s);
  415. }
  416.       free (s);
  417.       if (extension_char)
  418. {
  419.   putc (extension_char, rl_outstream);
  420.   printed_len++;
  421. }
  422.     }
  423. #endif /* VISIBLE_STATS */
  424.   return printed_len;
  425. }
  426. static char *
  427. rl_quote_filename (s, rtype, qcp)
  428.      char *s;
  429.      int rtype;
  430.      char *qcp;
  431. {
  432.   char *r;
  433.   r = xmalloc (strlen (s) + 2);
  434.   *r = *rl_completer_quote_characters;
  435.   strcpy (r + 1, s);
  436.   if (qcp)
  437.     *qcp = *rl_completer_quote_characters;
  438.   return r;
  439. }
  440. /* Find the bounds of the current word for completion purposes, and leave
  441.    rl_point set to the end of the word.  This function skips quoted
  442.    substrings (characters between matched pairs of characters in
  443.    rl_completer_quote_characters.  First we try to find an unclosed
  444.    quoted substring on which to do matching.  If one is not found, we use
  445.    the word break characters to find the boundaries of the current word.
  446.    We call an application-specific function to decide whether or not a
  447.    particular word break character is quoted; if that function returns a
  448.    non-zero result, the character does not break a word.  This function
  449.    returns the opening quote character if we found an unclosed quoted
  450.    substring, '' otherwise.  FP, if non-null, is set to a value saying
  451.    which (shell-like) quote characters we found (single quote, double
  452.    quote, or backslash) anywhere in the string.  DP, if non-null, is set to
  453.    the value of the delimiter character that caused a word break. */
  454. static char
  455. find_completion_word (fp, dp)
  456.      int *fp, *dp;
  457. {
  458.   int scan, end, found_quote, delimiter, pass_next, isbrk;
  459.   char quote_char;
  460.   end = rl_point;
  461.   found_quote = delimiter = 0;
  462.   quote_char = '';
  463.   if (rl_completer_quote_characters)
  464.     {
  465.       /* We have a list of characters which can be used in pairs to
  466.  quote substrings for the completer.  Try to find the start
  467.  of an unclosed quoted substring. */
  468.       /* FOUND_QUOTE is set so we know what kind of quotes we found. */
  469.       for (scan = pass_next = 0; scan < end; scan++)
  470. {
  471.   if (pass_next)
  472.     {
  473.       pass_next = 0;
  474.       continue;
  475.     }
  476.   if (rl_line_buffer[scan] == '\')
  477.     {
  478.       pass_next = 1;
  479.       found_quote |= RL_QF_BACKSLASH;
  480.       continue;
  481.     }
  482.   if (quote_char != '')
  483.     {
  484.       /* Ignore everything until the matching close quote char. */
  485.       if (rl_line_buffer[scan] == quote_char)
  486. {
  487.   /* Found matching close.  Abandon this substring. */
  488.   quote_char = '';
  489.   rl_point = end;
  490. }
  491.     }
  492.   else if (strchr (rl_completer_quote_characters, rl_line_buffer[scan]))
  493.     {
  494.       /* Found start of a quoted substring. */
  495.       quote_char = rl_line_buffer[scan];
  496.       rl_point = scan + 1;
  497.       /* Shell-like quoting conventions. */
  498.       if (quote_char == ''')
  499. found_quote |= RL_QF_SINGLE_QUOTE;
  500.       else if (quote_char == '"')
  501. found_quote |= RL_QF_DOUBLE_QUOTE;
  502.     }
  503. }
  504.     }
  505.   if (rl_point == end && quote_char == '')
  506.     {
  507.       /* We didn't find an unclosed quoted substring upon which to do
  508.          completion, so use the word break characters to find the
  509.          substring on which to complete. */
  510.       while (--rl_point)
  511. {
  512.   scan = rl_line_buffer[rl_point];
  513.   if (strchr (rl_completer_word_break_characters, scan) == 0)
  514.     continue;
  515.   /* Call the application-specific function to tell us whether
  516.      this word break character is quoted and should be skipped. */
  517.   if (rl_char_is_quoted_p && found_quote &&
  518.       (*rl_char_is_quoted_p) (rl_line_buffer, rl_point))
  519.     continue;
  520.   /* Convoluted code, but it avoids an n^2 algorithm with calls
  521.      to char_is_quoted. */
  522.   break;
  523. }
  524.     }
  525.   /* If we are at an unquoted word break, then advance past it. */
  526.   scan = rl_line_buffer[rl_point];
  527.   /* If there is an application-specific function to say whether or not
  528.      a character is quoted and we found a quote character, let that
  529.      function decide whether or not a character is a word break, even
  530.      if it is found in rl_completer_word_break_characters. */
  531.   if (rl_char_is_quoted_p)
  532.     isbrk = (found_quote == 0 ||
  533.   (*rl_char_is_quoted_p) (rl_line_buffer, rl_point) == 0) &&
  534.       strchr (rl_completer_word_break_characters, scan) != 0;
  535.   else
  536.     isbrk = strchr (rl_completer_word_break_characters, scan) != 0;
  537.   if (isbrk)
  538.     {
  539.       /* If the character that caused the word break was a quoting
  540.  character, then remember it as the delimiter. */
  541.       if (rl_basic_quote_characters && strchr (rl_basic_quote_characters, scan) && (end - rl_point) > 1)
  542. delimiter = scan;
  543.       /* If the character isn't needed to determine something special
  544.  about what kind of completion to perform, then advance past it. */
  545.       if (rl_special_prefixes == 0 || strchr (rl_special_prefixes, scan) == 0)
  546. rl_point++;
  547.     }
  548.   if (fp)
  549.     *fp = found_quote;
  550.   if (dp)
  551.     *dp = delimiter;
  552.   return (quote_char);
  553. }
  554. static char **
  555. gen_completion_matches (text, start, end, our_func, found_quote, quote_char)
  556.      char *text;
  557.      int start, end;
  558.      Function *our_func;
  559.      int found_quote, quote_char;
  560. {
  561.   char **matches, *temp;
  562.   /* If the user wants to TRY to complete, but then wants to give
  563.      up and use the default completion function, they set the
  564.      variable rl_attempted_completion_function. */
  565.   if (rl_attempted_completion_function)
  566.     {
  567.       matches = (*rl_attempted_completion_function) (text, start, end);
  568.       if (matches || rl_attempted_completion_over)
  569. {
  570.   rl_attempted_completion_over = 0;
  571.   return (matches);
  572. }
  573.     }
  574.   /* Beware -- we're stripping the quotes here.  Do this only if we know
  575.      we are doing filename completion and the application has defined a
  576.      filename dequoting function. */
  577.   temp = (char *)NULL;
  578.   if (found_quote && our_func == (Function *)filename_completion_function &&
  579.       rl_filename_dequoting_function)
  580.     {
  581.       /* delete single and double quotes */
  582.       temp = (*rl_filename_dequoting_function) (text, quote_char);
  583.       text = temp; /* not freeing text is not a memory leak */
  584.     }
  585.   matches = completion_matches (text, (CPFunction *)our_func);
  586.   FREE (temp);
  587.   return matches;  
  588. }
  589. /* Filter out duplicates in MATCHES.  This frees up the strings in
  590.    MATCHES. */
  591. static char **
  592. remove_duplicate_matches (matches)
  593.      char **matches;
  594. {
  595.   char *lowest_common;
  596.   int i, j, newlen;
  597.   char dead_slot;
  598.   char **temp_array;
  599.   /* Sort the items. */
  600.   for (i = 0; matches[i]; i++)
  601.     ;
  602.   /* Sort the array without matches[0], since we need it to
  603.      stay in place no matter what. */
  604.   if (i)
  605.     qsort (matches+1, i-1, sizeof (char *), _rl_qsort_string_compare);
  606.   /* Remember the lowest common denominator for it may be unique. */
  607.   lowest_common = savestring (matches[0]);
  608.   for (i = newlen = 0; matches[i + 1]; i++)
  609.     {
  610.       if (strcmp (matches[i], matches[i + 1]) == 0)
  611. {
  612.   free (matches[i]);
  613.   matches[i] = (char *)&dead_slot;
  614. }
  615.       else
  616. newlen++;
  617.     }
  618.   /* We have marked all the dead slots with (char *)&dead_slot.
  619.      Copy all the non-dead entries into a new array. */
  620.   temp_array = (char **)xmalloc ((3 + newlen) * sizeof (char *));
  621.   for (i = j = 1; matches[i]; i++)
  622.     {
  623.       if (matches[i] != (char *)&dead_slot)
  624. temp_array[j++] = matches[i];
  625.     }
  626.   temp_array[j] = (char *)NULL;
  627.   if (matches[0] != (char *)&dead_slot)
  628.     free (matches[0]);
  629.   /* Place the lowest common denominator back in [0]. */
  630.   temp_array[0] = lowest_common;
  631.   /* If there is one string left, and it is identical to the
  632.      lowest common denominator, then the LCD is the string to
  633.      insert. */
  634.   if (j == 2 && strcmp (temp_array[0], temp_array[1]) == 0)
  635.     {
  636.       free (temp_array[1]);
  637.       temp_array[1] = (char *)NULL;
  638.     }
  639.   return (temp_array);
  640. }
  641. /* Find the common prefix of the list of matches, and put it into
  642.    matches[0]. */
  643. static int
  644. compute_lcd_of_matches (match_list, matches, text)
  645.      char **match_list;
  646.      int matches;
  647.      char *text;
  648. {
  649.   register int i, c1, c2, si;
  650.   int low; /* Count of max-matched characters. */
  651.   /* If only one match, just use that.  Otherwise, compare each
  652.      member of the list with the next, finding out where they
  653.      stop matching. */
  654.   if (matches == 1)
  655.     {
  656.       match_list[0] = match_list[1];
  657.       match_list[1] = (char *)NULL;
  658.       return 1;
  659.     }
  660.   for (i = 1, low = 100000; i < matches; i++)
  661.     {
  662.       if (_rl_completion_case_fold)
  663. {
  664.   for (si = 0;
  665.        (c1 = _rl_to_lower(match_list[i][si])) &&
  666.        (c2 = _rl_to_lower(match_list[i + 1][si]));
  667.        si++)
  668.     if (c1 != c2)
  669.       break;
  670. }
  671.       else
  672. {
  673.   for (si = 0;
  674.        (c1 = match_list[i][si]) &&
  675.        (c2 = match_list[i + 1][si]);
  676.        si++)
  677.     if (c1 != c2)
  678.       break;
  679. }
  680.       if (low > si)
  681. low = si;
  682.     }
  683.   /* If there were multiple matches, but none matched up to even the
  684.      first character, and the user typed something, use that as the
  685.      value of matches[0]. */
  686.   if (low == 0 && text && *text)
  687.     {
  688.       match_list[0] = xmalloc (strlen (text) + 1);
  689.       strcpy (match_list[0], text);
  690.     }
  691.   else
  692.     {
  693.       match_list[0] = xmalloc (low + 1);
  694.       strncpy (match_list[0], match_list[1], low);
  695.       match_list[0][low] = '';
  696.     }
  697.   return matches;
  698. }
  699. static int
  700. postprocess_matches (matchesp, matching_filenames)
  701.      char ***matchesp;
  702.      int matching_filenames;
  703. {
  704.   char *t, **matches, **temp_matches;
  705.   int nmatch, i;
  706.   matches = *matchesp;
  707.   /* It seems to me that in all the cases we handle we would like
  708.      to ignore duplicate possiblilities.  Scan for the text to
  709.      insert being identical to the other completions. */
  710.   if (rl_ignore_completion_duplicates)
  711.     {
  712.       temp_matches = remove_duplicate_matches (matches);
  713.       free (matches);
  714.       matches = temp_matches;
  715.     }
  716.   /* If we are matching filenames, then here is our chance to
  717.      do clever processing by re-examining the list.  Call the
  718.      ignore function with the array as a parameter.  It can
  719.      munge the array, deleting matches as it desires. */
  720.   if (rl_ignore_some_completions_function && matching_filenames)
  721.     {
  722.       for (nmatch = 1; matches[nmatch]; nmatch++)
  723. ;
  724.       (void)(*rl_ignore_some_completions_function) (matches);
  725.       if (matches == 0 || matches[0] == 0)
  726. {
  727.   FREE (matches);
  728.   *matchesp = (char **)0;
  729.   return 0;
  730.         }
  731.       else
  732. {
  733.   /* If we removed some matches, recompute the common prefix. */
  734.   for (i = 1; matches[i]; i++)
  735.     ;
  736.   if (i > 1 && i < nmatch)
  737.     {
  738.       t = matches[0];
  739.       compute_lcd_of_matches (matches, i - 1, t);
  740.       FREE (t);
  741.     }
  742. }
  743.     }
  744.   *matchesp = matches;
  745.   return (1);
  746. }
  747. /* A convenience function for displaying a list of strings in
  748.    columnar format on readline's output stream.  MATCHES is the list
  749.    of strings, in argv format, LEN is the number of strings in MATCHES,
  750.    and MAX is the length of the longest string in MATCHES. */
  751. void
  752. rl_display_match_list (matches, len, max)
  753.      char **matches;
  754.      int len, max;
  755. {
  756.   int count, limit, printed_len;
  757.   int i, j, k, l;
  758.   char *temp;
  759.   /* How many items of MAX length can we fit in the screen window? */
  760.   max += 2;
  761.   limit = screenwidth / max;
  762.   if (limit != 1 && (limit * max == screenwidth))
  763.     limit--;
  764.   /* Avoid a possible floating exception.  If max > screenwidth,
  765.      limit will be 0 and a divide-by-zero fault will result. */
  766.   if (limit == 0)
  767.     limit = 1;
  768.   /* How many iterations of the printing loop? */
  769.   count = (len + (limit - 1)) / limit;
  770.   /* Watch out for special case.  If LEN is less than LIMIT, then
  771.      just do the inner printing loop.
  772.    0 < len <= limit  implies  count = 1. */
  773.   /* Sort the items if they are not already sorted. */
  774.   if (rl_ignore_completion_duplicates == 0)
  775.     qsort (matches + 1, len, sizeof (char *), _rl_qsort_string_compare);
  776.   crlf ();
  777.   if (_rl_print_completions_horizontally == 0)
  778.     {
  779.       /* Print the sorted items, up-and-down alphabetically, like ls. */
  780.       for (i = 1; i <= count; i++)
  781. {
  782.   for (j = 0, l = i; j < limit; j++)
  783.     {
  784.       if (l > len || matches[l] == 0)
  785. break;
  786.       else
  787. {
  788.   temp = printable_part (matches[l]);
  789.   printed_len = print_filename (temp, matches[l]);
  790.   if (j + 1 < limit)
  791.     for (k = 0; k < max - printed_len; k++)
  792.       putc (' ', rl_outstream);
  793. }
  794.       l += count;
  795.     }
  796.   crlf ();
  797. }
  798.     }
  799.   else
  800.     {
  801.       /* Print the sorted items, across alphabetically, like ls -x. */
  802.       for (i = 1; matches[i]; i++)
  803. {
  804.   temp = printable_part (matches[i]);
  805.   printed_len = print_filename (temp, matches[i]);
  806.   /* Have we reached the end of this line? */
  807.   if (matches[i+1])
  808.     {
  809.       if (i && (limit > 1) && (i % limit) == 0)
  810. crlf ();
  811.       else
  812. for (k = 0; k < max - printed_len; k++)
  813.   putc (' ', rl_outstream);
  814.     }
  815. }
  816.       crlf ();
  817.     }
  818. }
  819. /* Display MATCHES, a list of matching filenames in argv format.  This
  820.    handles the simple case -- a single match -- first.  If there is more
  821.    than one match, we compute the number of strings in the list and the
  822.    length of the longest string, which will be needed by the display
  823.    function.  If the application wants to handle displaying the list of
  824.    matches itself, it sets RL_COMPLETION_DISPLAY_MATCHES_HOOK to the
  825.    address of a function, and we just call it.  If we're handling the
  826.    display ourselves, we just call rl_display_match_list.  We also check
  827.    that the list of matches doesn't exceed the user-settable threshold,
  828.    and ask the user if he wants to see the list if there are more matches
  829.    than RL_COMPLETION_QUERY_ITEMS. */
  830. static void
  831. display_matches (matches)
  832.      char **matches;
  833. {
  834.   int len, max, i;
  835.   char *temp;
  836.   /* Move to the last visible line of a possibly-multiple-line command. */
  837.   _rl_move_vert (_rl_vis_botlin);
  838.   /* Handle simple case first.  What if there is only one answer? */
  839.   if (matches[1] == 0)
  840.     {
  841.       temp = printable_part (matches[0]);
  842.       crlf ();
  843.       print_filename (temp, matches[0]);
  844.       crlf ();
  845.       rl_forced_update_display ();
  846.       rl_display_fixed = 1;
  847.       return;
  848.     }
  849.   /* There is more than one answer.  Find out how many there are,
  850.      and find the maximum printed length of a single entry. */
  851.   for (max = 0, i = 1; matches[i]; i++)
  852.     {
  853.       temp = printable_part (matches[i]);
  854.       len = strlen (temp);
  855.       if (len > max)
  856. max = len;
  857.     }
  858.   len = i - 1;
  859.   /* If the caller has defined a display hook, then call that now. */
  860.   if (rl_completion_display_matches_hook)
  861.     {
  862.       (*rl_completion_display_matches_hook) (matches, len, max);
  863.       return;
  864.     }
  865.   /* If there are many items, then ask the user if she really wants to
  866.      see them all. */
  867.   if (len >= rl_completion_query_items)
  868.     {
  869.       crlf ();
  870.       fprintf (rl_outstream, "Display all %d possibilities? (y or n)", len);
  871.       fflush (rl_outstream);
  872.       if (get_y_or_n () == 0)
  873. {
  874.   crlf ();
  875.   rl_forced_update_display ();
  876.   rl_display_fixed = 1;
  877.   return;
  878. }
  879.     }
  880.   rl_display_match_list (matches, len, max);
  881.   rl_forced_update_display ();
  882.   rl_display_fixed = 1;
  883. }
  884. static char *
  885. make_quoted_replacement (match, mtype, qc)
  886.      char *match;
  887.      int mtype;
  888.      char *qc; /* Pointer to quoting character, if any */
  889. {
  890.   int should_quote, do_replace;
  891.   char *replacement;
  892.   /* If we are doing completion on quoted substrings, and any matches
  893.      contain any of the completer_word_break_characters, then auto-
  894.      matically prepend the substring with a quote character (just pick
  895.      the first one from the list of such) if it does not already begin
  896.      with a quote string.  FIXME: Need to remove any such automatically
  897.      inserted quote character when it no longer is necessary, such as
  898.      if we change the string we are completing on and the new set of
  899.      matches don't require a quoted substring. */
  900.   replacement = match;
  901.   should_quote = match && rl_completer_quote_characters &&
  902. rl_filename_completion_desired &&
  903. rl_filename_quoting_desired;
  904.   if (should_quote)
  905.     should_quote = should_quote && (!qc || !*qc ||
  906.      (rl_completer_quote_characters && strchr (rl_completer_quote_characters, *qc)));
  907.   if (should_quote)
  908.     {
  909.       /* If there is a single match, see if we need to quote it.
  910.          This also checks whether the common prefix of several
  911.  matches needs to be quoted. */
  912.       should_quote = rl_filename_quote_characters
  913. ? (rl_strpbrk (match, rl_filename_quote_characters) != 0)
  914. : 0;
  915.       do_replace = should_quote ? mtype : NO_MATCH;
  916.       /* Quote the replacement, since we found an embedded
  917.  word break character in a potential match. */
  918.       if (do_replace != NO_MATCH && rl_filename_quoting_function)
  919. replacement = (*rl_filename_quoting_function) (match, do_replace, qc);
  920.     }
  921.   return (replacement);
  922. }
  923. static void
  924. insert_match (match, start, mtype, qc)
  925.      char *match;
  926.      int start, mtype;
  927.      char *qc;
  928. {
  929.   char *replacement;
  930.   char oqc;
  931.   oqc = qc ? *qc : '';
  932.   replacement = make_quoted_replacement (match, mtype, qc);
  933.   /* Now insert the match. */
  934.   if (replacement)
  935.     {
  936.       /* Don't double an opening quote character. */
  937.       if (qc && *qc && start && rl_line_buffer[start - 1] == *qc &&
  938.     replacement[0] == *qc)
  939. start--;
  940.       /* If make_quoted_replacement changed the quoting character, remove
  941.  the opening quote and insert the (fully-quoted) replacement. */
  942.       else if (qc && (*qc != oqc) && start && rl_line_buffer[start - 1] == oqc &&
  943.     replacement[0] != oqc)
  944. start--;
  945.       _rl_replace_text (replacement, start, rl_point - 1);
  946.       if (replacement != match)
  947.         free (replacement);
  948.     }
  949. }
  950. /* Append any necessary closing quote and a separator character to the
  951.    just-inserted match.  If the user has specified that directories
  952.    should be marked by a trailing `/', append one of those instead.  The
  953.    default trailing character is a space.  Returns the number of characters
  954.    appended. */
  955. static int
  956. append_to_match (text, delimiter, quote_char)
  957.      char *text;
  958.      int delimiter, quote_char;
  959. {
  960.   char temp_string[4], *filename;
  961.   int temp_string_index;
  962.   struct stat finfo;
  963.   temp_string_index = 0;
  964.   if (quote_char && rl_point && rl_line_buffer[rl_point - 1] != quote_char)
  965.     temp_string[temp_string_index++] = quote_char;
  966.   if (delimiter)
  967.     temp_string[temp_string_index++] = delimiter;
  968.   else if (rl_completion_append_character)
  969.     temp_string[temp_string_index++] = rl_completion_append_character;
  970.   temp_string[temp_string_index++] = '';
  971.   if (rl_filename_completion_desired)
  972.     {
  973.       filename = tilde_expand (text);
  974.       if (stat (filename, &finfo) == 0 && S_ISDIR (finfo.st_mode))
  975. {
  976.   if (_rl_complete_mark_directories && rl_line_buffer[rl_point] != '/')
  977.     rl_insert_text ("/");
  978. }
  979.       else
  980. {
  981.   if (rl_point == rl_end)
  982.     rl_insert_text (temp_string);
  983. }
  984.       free (filename);
  985.     }
  986.   else
  987.     {
  988.       if (rl_point == rl_end)
  989. rl_insert_text (temp_string);
  990.     }
  991.   return (temp_string_index);
  992. }
  993. static void
  994. insert_all_matches (matches, point, qc)
  995.      char **matches;
  996.      int point;
  997.      char *qc;
  998. {
  999.   int i;
  1000.   char *rp;
  1001.   rl_begin_undo_group ();
  1002.   /* remove any opening quote character; make_quoted_replacement will add
  1003.      it back. */
  1004.   if (qc && *qc && point && rl_line_buffer[point - 1] == *qc)
  1005.     point--;
  1006.   rl_delete_text (point, rl_point);
  1007.   rl_point = point;
  1008.   if (matches[1])
  1009.     {
  1010.       for (i = 1; matches[i]; i++)
  1011. {
  1012.   rp = make_quoted_replacement (matches[i], SINGLE_MATCH, qc);
  1013.   rl_insert_text (rp);
  1014.   rl_insert_text (" ");
  1015.   if (rp != matches[i])
  1016.     free (rp);
  1017. }
  1018.     }
  1019.   else
  1020.     {
  1021.       rp = make_quoted_replacement (matches[0], SINGLE_MATCH, qc);
  1022.       rl_insert_text (rp);
  1023.       rl_insert_text (" ");
  1024.       if (rp != matches[0])
  1025. free (rp);
  1026.     }
  1027.   rl_end_undo_group ();
  1028. }
  1029. static void
  1030. free_match_list (matches)
  1031.      char **matches;
  1032. {
  1033.   register int i;
  1034.   for (i = 0; matches[i]; i++)
  1035.     free (matches[i]);
  1036.   free (matches);
  1037. }
  1038. /* Complete the word at or before point.
  1039.    WHAT_TO_DO says what to do with the completion.
  1040.    `?' means list the possible completions.
  1041.    TAB means do standard completion.
  1042.    `*' means insert all of the possible completions.
  1043.    `!' means to do standard completion, and list all possible completions if
  1044.    there is more than one. */
  1045. int
  1046. rl_complete_internal (what_to_do)
  1047.      int what_to_do;
  1048. {
  1049.   char **matches;
  1050.   Function *our_func;
  1051.   int start, end, delimiter, found_quote, i;
  1052.   char *text, *saved_line_buffer;
  1053.   char quote_char;
  1054.   /* Only the completion entry function can change these. */
  1055.   rl_filename_completion_desired = 0;
  1056.   rl_filename_quoting_desired = 1;
  1057.   rl_completion_type = what_to_do;
  1058.   saved_line_buffer = rl_line_buffer ? savestring (rl_line_buffer) : (char *)NULL;
  1059.   our_func = rl_completion_entry_function
  1060. ? rl_completion_entry_function
  1061. : (Function *)filename_completion_function;
  1062.   /* We now look backwards for the start of a filename/variable word. */
  1063.   end = rl_point;
  1064.   found_quote = delimiter = 0;
  1065.   quote_char = '';
  1066.   if (rl_point)
  1067.     /* This (possibly) changes rl_point.  If it returns a non-zero char,
  1068.        we know we have an open quote. */
  1069.     quote_char = find_completion_word (&found_quote, &delimiter);
  1070.   start = rl_point;
  1071.   rl_point = end;
  1072.   text = rl_copy_text (start, end);
  1073.   matches = gen_completion_matches (text, start, end, our_func, found_quote, quote_char);
  1074.   free (text);
  1075.   if (matches == 0)
  1076.     {
  1077.       ding ();
  1078.       FREE (saved_line_buffer);
  1079.       return (0);
  1080.     }
  1081. #if 0
  1082.   /* If we are matching filenames, our_func will have been set to
  1083.      filename_completion_function */
  1084.   i = our_func == (Function *)filename_completion_function;
  1085. #else
  1086.   /* If we are matching filenames, the attempted completion function will
  1087.      have set rl_filename_completion_desired to a non-zero value.  The basic
  1088.      filename_completion_function does this. */
  1089.   i = rl_filename_completion_desired;
  1090. #endif
  1091.   if (postprocess_matches (&matches, i) == 0)
  1092.     {
  1093.       ding ();
  1094.       FREE (saved_line_buffer);
  1095.       completion_changed_buffer = 0;
  1096.       return (0);
  1097.     }
  1098.   switch (what_to_do)
  1099.     {
  1100.     case TAB:
  1101.     case '!':
  1102.       /* Insert the first match with proper quoting. */
  1103.       if (*matches[0])
  1104. insert_match (matches[0], start, matches[1] ? MULT_MATCH : SINGLE_MATCH, &quote_char);
  1105.       /* If there are more matches, ring the bell to indicate.
  1106.  If we are in vi mode, Posix.2 says to not ring the bell.
  1107.  If the `show-all-if-ambiguous' variable is set, display
  1108.  all the matches immediately.  Otherwise, if this was the
  1109.  only match, and we are hacking files, check the file to
  1110.  see if it was a directory.  If so, and the `mark-directories'
  1111.  variable is set, add a '/' to the name.  If not, and we
  1112.  are at the end of the line, then add a space.  */
  1113.       if (matches[1])
  1114. {
  1115.   if (what_to_do == '!')
  1116.     {
  1117.       display_matches (matches);
  1118.       break;
  1119.     }
  1120.   else if (rl_editing_mode != vi_mode)
  1121.     ding (); /* There are other matches remaining. */
  1122. }
  1123.       else
  1124. append_to_match (matches[0], delimiter, quote_char);
  1125.       break;
  1126.     case '*':
  1127.       insert_all_matches (matches, start, &quote_char);
  1128.       break;
  1129.     case '?':
  1130.       display_matches (matches);
  1131.       break;
  1132.     default:
  1133.       fprintf (stderr, "rnreadline: bad value %d for what_to_do in rl_completen", what_to_do);
  1134.       ding ();
  1135.       FREE (saved_line_buffer);
  1136.       return 1;
  1137.     }
  1138.   free_match_list (matches);
  1139.   /* Check to see if the line has changed through all of this manipulation. */
  1140.   if (saved_line_buffer)
  1141.     {
  1142.       completion_changed_buffer = strcmp (rl_line_buffer, saved_line_buffer) != 0;
  1143.       free (saved_line_buffer);
  1144.     }
  1145.   return 0;
  1146. }
  1147. /***************************************************************/
  1148. /*        */
  1149. /*  Application-callable completion match generator functions  */
  1150. /*        */
  1151. /***************************************************************/
  1152. /* Return an array of (char *) which is a list of completions for TEXT.
  1153.    If there are no completions, return a NULL pointer.
  1154.    The first entry in the returned array is the substitution for TEXT.
  1155.    The remaining entries are the possible completions.
  1156.    The array is terminated with a NULL pointer.
  1157.    ENTRY_FUNCTION is a function of two args, and returns a (char *).
  1158.      The first argument is TEXT.
  1159.      The second is a state argument; it should be zero on the first call, and
  1160.      non-zero on subsequent calls.  It returns a NULL pointer to the caller
  1161.      when there are no more matches.
  1162.  */
  1163. char **
  1164. completion_matches (text, entry_function)
  1165.      char *text;
  1166.      CPFunction *entry_function;
  1167. {
  1168.   /* Number of slots in match_list. */
  1169.   int match_list_size;
  1170.   /* The list of matches. */
  1171.   char **match_list;
  1172.   /* Number of matches actually found. */
  1173.   int matches;
  1174.   /* Temporary string binder. */
  1175.   char *string;
  1176.   matches = 0;
  1177.   match_list_size = 10;
  1178.   match_list = (char **)xmalloc ((match_list_size + 1) * sizeof (char *));
  1179.   match_list[1] = (char *)NULL;
  1180.   while ((string = (*entry_function) (text, matches)))
  1181.     {
  1182.       if (matches + 1 == match_list_size)
  1183. match_list = (char **)xrealloc
  1184.   (match_list, ((match_list_size += 10) + 1) * sizeof (char *));
  1185.       match_list[++matches] = string;
  1186.       match_list[matches + 1] = (char *)NULL;
  1187.     }
  1188.   /* If there were any matches, then look through them finding out the
  1189.      lowest common denominator.  That then becomes match_list[0]. */
  1190.   if (matches)
  1191.     compute_lcd_of_matches (match_list, matches, text);
  1192.   else /* There were no matches. */
  1193.     {
  1194.       free (match_list);
  1195.       match_list = (char **)NULL;
  1196.     }
  1197.   return (match_list);
  1198. }
  1199. /* A completion function for usernames.
  1200.    TEXT contains a partial username preceded by a random
  1201.    character (usually `~').  */
  1202. char *
  1203. username_completion_function (text, state)
  1204.      char *text;
  1205.      int state;
  1206. {
  1207. #if defined (__GO32__) || defined (__WIN__) || defined (__OPENNT)
  1208.   return (char *)NULL;
  1209. #else /* !__GO32__ */
  1210.   static char *username = (char *)NULL;
  1211.   static struct passwd *entry;
  1212.   static int namelen, first_char, first_char_loc;
  1213.   char *value;
  1214.   if (state == 0)
  1215.     {
  1216.       FREE (username);
  1217.       first_char = *text;
  1218.       first_char_loc = first_char == '~';
  1219.       username = savestring (&text[first_char_loc]);
  1220.       namelen = strlen (username);
  1221.       setpwent ();
  1222.     }
  1223.   while ((entry = getpwent ()))
  1224.     {
  1225.       /* Null usernames should result in all users as possible completions. */
  1226.       if (namelen == 0 || (STREQN (username, entry->pw_name, namelen)))
  1227. break;
  1228.     }
  1229.   if (entry == 0)
  1230.     {
  1231.       endpwent ();
  1232.       return ((char *)NULL);
  1233.     }
  1234.   else
  1235.     {
  1236.       value = xmalloc (2 + strlen (entry->pw_name));
  1237.       *value = *text;
  1238.       strcpy (value + first_char_loc, entry->pw_name);
  1239.       if (first_char == '~')
  1240. rl_filename_completion_desired = 1;
  1241.       return (value);
  1242.     }
  1243. #endif /* !__GO32__ */
  1244. }
  1245. /* Okay, now we write the entry_function for filename completion.  In the
  1246.    general case.  Note that completion in the shell is a little different
  1247.    because of all the pathnames that must be followed when looking up the
  1248.    completion for a command. */
  1249. char *
  1250. filename_completion_function (text, state)
  1251.      char *text;
  1252.      int state;
  1253. {
  1254.   static DIR *directory = (DIR *)NULL;
  1255.   static char *filename = (char *)NULL;
  1256.   static char *dirname = (char *)NULL;
  1257.   static char *users_dirname = (char *)NULL;
  1258.   static int filename_len;
  1259.   char *temp;
  1260.   int dirlen;
  1261.   struct dirent *entry;
  1262.   /* If we don't have any state, then do some initialization. */
  1263.   if (state == 0)
  1264.     {
  1265.       /* If we were interrupted before closing the directory or reading
  1266.  all of its contents, close it. */
  1267.       if (directory)
  1268. {
  1269.   closedir (directory);
  1270.   directory = (DIR *)NULL;
  1271. }
  1272.       FREE (dirname);
  1273.       FREE (filename);
  1274.       FREE (users_dirname);
  1275.       filename = savestring (text);
  1276.       if (*text == 0)
  1277. text = ".";
  1278.       dirname = savestring (text);
  1279.       temp = strrchr (dirname, '/');
  1280.       if (temp)
  1281. {
  1282.   strcpy (filename, ++temp);
  1283.   *temp = '';
  1284. }
  1285.       else
  1286. {
  1287.   dirname[0] = '.';
  1288.   dirname[1] = '';
  1289. }
  1290.       /* We aren't done yet.  We also support the "~user" syntax. */
  1291.       /* Save the version of the directory that the user typed. */
  1292.       users_dirname = savestring (dirname);
  1293.       if (*dirname == '~')
  1294. {
  1295.   temp = tilde_expand (dirname);
  1296.   free (dirname);
  1297.   dirname = temp;
  1298. }
  1299.       if (rl_directory_completion_hook && (*rl_directory_completion_hook) (&dirname))
  1300. {
  1301.   free (users_dirname);
  1302.   users_dirname = savestring (dirname);
  1303. }
  1304.       directory = opendir (dirname);
  1305.       filename_len = strlen (filename);
  1306.       rl_filename_completion_desired = 1;
  1307.     }
  1308.   /* At this point we should entertain the possibility of hacking wildcarded
  1309.      filenames, like /usr/man/man<WILD>/te<TAB>.  If the directory name
  1310.      contains globbing characters, then build an array of directories, and
  1311.      then map over that list while completing. */
  1312.   /* *** UNIMPLEMENTED *** */
  1313.   /* Now that we have some state, we can read the directory. */
  1314.   entry = (struct dirent *)NULL;
  1315.   while (directory && (entry = readdir (directory)))
  1316.     {
  1317.       /* Special case for no filename.
  1318.  All entries except "." and ".." match. */
  1319.       if (filename_len == 0)
  1320. {
  1321.   if (entry->d_name[0] != '.' ||
  1322.        (entry->d_name[1] &&
  1323.  (entry->d_name[1] != '.' || entry->d_name[2])))
  1324.     break;
  1325. }
  1326.       else
  1327. {
  1328.   /* Otherwise, if these match up to the length of filename, then
  1329.      it is a match. */
  1330.   if (_rl_completion_case_fold)
  1331.     {
  1332.       if ((_rl_to_lower (entry->d_name[0]) == _rl_to_lower (filename[0])) &&
  1333.   (((int)D_NAMLEN (entry)) >= filename_len) &&
  1334.   (_rl_strnicmp (filename, entry->d_name, filename_len) == 0))
  1335. break;
  1336.     }
  1337.   else
  1338.     {
  1339.       if ((entry->d_name[0] == filename[0]) &&
  1340.   (((int)D_NAMLEN (entry)) >= filename_len) &&
  1341.   (strncmp (filename, entry->d_name, filename_len) == 0))
  1342. break;
  1343.     }
  1344. }
  1345.     }
  1346.   if (entry == 0)
  1347.     {
  1348.       if (directory)
  1349. {
  1350.   closedir (directory);
  1351.   directory = (DIR *)NULL;
  1352. }
  1353.       if (dirname)
  1354. {
  1355.   free (dirname);
  1356.   dirname = (char *)NULL;
  1357. }
  1358.       if (filename)
  1359. {
  1360.   free (filename);
  1361.   filename = (char *)NULL;
  1362. }
  1363.       if (users_dirname)
  1364. {
  1365.   free (users_dirname);
  1366.   users_dirname = (char *)NULL;
  1367. }
  1368.       return (char *)NULL;
  1369.     }
  1370.   else
  1371.     {
  1372.       /* dirname && (strcmp (dirname, ".") != 0) */
  1373.       if (dirname && (dirname[0] != '.' || dirname[1]))
  1374. {
  1375.   if (rl_complete_with_tilde_expansion && *users_dirname == '~')
  1376.     {
  1377.       dirlen = strlen (dirname);
  1378.       temp = xmalloc (2 + dirlen + D_NAMLEN (entry));
  1379.       strcpy (temp, dirname);
  1380.       /* Canonicalization cuts off any final slash present.  We
  1381.  may need to add it back. */
  1382.       if (dirname[dirlen - 1] != '/')
  1383.         {
  1384.           temp[dirlen++] = '/';
  1385.           temp[dirlen] = '';
  1386.         }
  1387.     }
  1388.   else
  1389.     {
  1390.       dirlen = strlen (users_dirname);
  1391.       temp = xmalloc (1 + dirlen + D_NAMLEN (entry));
  1392.       strcpy (temp, users_dirname);
  1393.     }
  1394.   strcpy (temp + dirlen, entry->d_name);
  1395. }
  1396.       else
  1397. temp = savestring (entry->d_name);
  1398.       return (temp);
  1399.     }
  1400. }
  1401. /* An initial implementation of a menu completion function a la tcsh.  The
  1402.    first time (if the last readline command was not rl_menu_complete), we
  1403.    generate the list of matches.  This code is very similar to the code in
  1404.    rl_complete_internal -- there should be a way to combine the two.  Then,
  1405.    for each item in the list of matches, we insert the match in an undoable
  1406.    fashion, with the appropriate character appended (this happens on the
  1407.    second and subsequent consecutive calls to rl_menu_complete).  When we
  1408.    hit the end of the match list, we restore the original unmatched text,
  1409.    ring the bell, and reset the counter to zero. */
  1410. int
  1411. rl_menu_complete (count, ignore)
  1412.      int count, ignore;
  1413. {
  1414.   Function *our_func;
  1415.   int matching_filenames, found_quote;
  1416.   static char *orig_text;
  1417.   static char **matches = (char **)0;
  1418.   static int match_list_index = 0;
  1419.   static int match_list_size = 0;
  1420.   static int orig_start, orig_end;
  1421.   static char quote_char;
  1422.   static int delimiter;
  1423.   /* The first time through, we generate the list of matches and set things
  1424.      up to insert them. */
  1425.   if (rl_last_func != rl_menu_complete)
  1426.     {
  1427.       /* Clean up from previous call, if any. */
  1428.       FREE (orig_text);
  1429.       if (matches)
  1430. {
  1431.   for (match_list_index = 0; matches[match_list_index]; match_list_index++)
  1432.     free (matches[match_list_index]);
  1433.   free (matches);
  1434. }
  1435.       match_list_index = match_list_size = 0;
  1436.       matches = (char **)NULL;
  1437.       /* Only the completion entry function can change these. */
  1438.       rl_filename_completion_desired = 0;
  1439.       rl_filename_quoting_desired = 1;
  1440.       rl_completion_type = '%';
  1441.       our_func = rl_completion_entry_function
  1442. ? rl_completion_entry_function
  1443. : (Function *)filename_completion_function;
  1444.       /* We now look backwards for the start of a filename/variable word. */
  1445.       orig_end = rl_point;
  1446.       found_quote = delimiter = 0;
  1447.       quote_char = '';
  1448.       if (rl_point)
  1449. /* This (possibly) changes rl_point.  If it returns a non-zero char,
  1450.    we know we have an open quote. */
  1451. quote_char = find_completion_word (&found_quote, &delimiter);
  1452.       orig_start = rl_point;
  1453.       rl_point = orig_end;
  1454.       orig_text = rl_copy_text (orig_start, orig_end);
  1455.       matches = gen_completion_matches (orig_text, orig_start, orig_end,
  1456. our_func, found_quote, quote_char);
  1457. #if 0
  1458.       /* If we are matching filenames, our_func will have been set to
  1459.  filename_completion_function */
  1460.       matching_filenames = our_func == (Function *)filename_completion_function;
  1461. #else
  1462.       /* If we are matching filenames, the attempted completion function will
  1463.  have set rl_filename_completion_desired to a non-zero value.  The basic
  1464.  filename_completion_function does this. */
  1465.       matching_filenames = rl_filename_completion_desired;
  1466. #endif
  1467.       if (matches == 0 || postprocess_matches (&matches, matching_filenames) == 0)
  1468. {
  1469.        ding ();
  1470.   FREE (matches);
  1471.   matches = (char **)0;
  1472.   FREE (orig_text);
  1473.   orig_text = (char *)0;
  1474.        completion_changed_buffer = 0;
  1475.           return (0);
  1476. }
  1477.       for (match_list_size = 0; matches[match_list_size]; match_list_size++)
  1478.         ;
  1479.       /* matches[0] is lcd if match_list_size > 1, but the circular buffer
  1480.  code below should take care of it. */
  1481.     }
  1482.   /* Now we have the list of matches.  Replace the text between
  1483.      rl_line_buffer[orig_start] and rl_line_buffer[rl_point] with
  1484.      matches[match_list_index], and add any necessary closing char. */
  1485.   if (matches == 0 || match_list_size == 0) 
  1486.     {
  1487.       ding ();
  1488.       FREE (matches);
  1489.       matches = (char **)0;
  1490.       completion_changed_buffer = 0;
  1491.       return (0);
  1492.     }
  1493.   match_list_index = (match_list_index + count) % match_list_size;
  1494.   if (match_list_index < 0)
  1495.     match_list_index += match_list_size;
  1496.   if (match_list_index == 0 && match_list_size > 1)
  1497.     {
  1498.       ding ();
  1499.       insert_match (orig_text, orig_start, MULT_MATCH, &quote_char);
  1500.     }
  1501.   else
  1502.     {
  1503.       insert_match (matches[match_list_index], orig_start, SINGLE_MATCH, &quote_char);
  1504.       append_to_match (matches[match_list_index], delimiter, quote_char);
  1505.     }
  1506.   completion_changed_buffer = 1;
  1507.   return (0);
  1508. }