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 / complete.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  35KB  |  1,347 lines

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